pub struct GoogleCloudAiplatformV1MetadataSchema {
pub description: Option<String>,
pub schema: Option<String>,
pub name: Option<String>,
pub schema_version: Option<String>,
pub create_time: Option<DateTime<Utc>>,
pub schema_type: Option<String>,
}Expand description
Instance of a general MetadataSchema.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations metadata stores metadata schemas create projects (request|response)
- locations metadata stores metadata schemas get projects (response)
Fields§
§description: Option<String>Description of the Metadata Schema
schema: Option<String>Required. The raw YAML string representation of the MetadataSchema. The combination of [MetadataSchema.version] and the schema name given by title in [MetadataSchema.schema] must be unique within a MetadataStore. The schema is defined as an OpenAPI 3.0.2 MetadataSchema Object
name: Option<String>Output only. The resource name of the MetadataSchema.
schema_version: Option<String>The version of the MetadataSchema. The version’s format must match the following regular expression: ^[0-9]+.+.+$, which would allow to order/compare different versions. Example: 1.0.0, 1.0.1, etc.
create_time: Option<DateTime<Utc>>Output only. Timestamp when this MetadataSchema was created.
schema_type: Option<String>The type of the MetadataSchema. This is a property that identifies which metadata types will use the MetadataSchema.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1MetadataSchema
impl Clone for GoogleCloudAiplatformV1MetadataSchema
Source§fn clone(&self) -> GoogleCloudAiplatformV1MetadataSchema
fn clone(&self) -> GoogleCloudAiplatformV1MetadataSchema
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1MetadataSchema
impl Default for GoogleCloudAiplatformV1MetadataSchema
Source§fn default() -> GoogleCloudAiplatformV1MetadataSchema
fn default() -> GoogleCloudAiplatformV1MetadataSchema
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1MetadataSchema
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1MetadataSchema
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GoogleCloudAiplatformV1MetadataSchema
impl ResponseResult for GoogleCloudAiplatformV1MetadataSchema
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1MetadataSchema
impl RefUnwindSafe for GoogleCloudAiplatformV1MetadataSchema
impl Send for GoogleCloudAiplatformV1MetadataSchema
impl Sync for GoogleCloudAiplatformV1MetadataSchema
impl Unpin for GoogleCloudAiplatformV1MetadataSchema
impl UnwindSafe for GoogleCloudAiplatformV1MetadataSchema
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more