Struct gapi_grpc::google::cloud::aiplatform::v1beta1::MetadataSchema[][src]

pub struct MetadataSchema {
    pub name: String,
    pub schema_version: String,
    pub schema: String,
    pub schema_type: i32,
    pub create_time: Option<Timestamp>,
    pub description: String,
}

Instance of a general MetadataSchema.

Fields

name: String

Output only. The resource name of the MetadataSchema.

schema_version: String

The version of the MetadataSchema. The version’s format must match the following regular expression: ^[0-9]+[.][0-9]+[.][0-9]+$, which would allow to order/compare different versions.Example: 1.0.0, 1.0.1, etc.

schema: 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

schema_type: i32

The type of the MetadataSchema. This is a property that identifies which metadata types will use the MetadataSchema.

create_time: Option<Timestamp>

Output only. Timestamp when this MetadataSchema was created.

description: String

Description of the Metadata Schema

Implementations

impl MetadataSchema[src]

pub fn schema_type(&self) -> MetadataSchemaType[src]

Returns the enum value of schema_type, or the default if the field is set to an invalid enum value.

pub fn set_schema_type(&mut self, value: MetadataSchemaType)[src]

Sets schema_type to the provided enum value.

Trait Implementations

impl Clone for MetadataSchema[src]

impl Debug for MetadataSchema[src]

impl Default for MetadataSchema[src]

impl Message for MetadataSchema[src]

impl PartialEq<MetadataSchema> for MetadataSchema[src]

impl StructuralPartialEq for MetadataSchema[src]

Auto Trait Implementations

impl RefUnwindSafe for MetadataSchema

impl Send for MetadataSchema

impl Sync for MetadataSchema

impl Unpin for MetadataSchema

impl UnwindSafe for MetadataSchema

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]