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

pub struct Featurestore {
    pub name: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub etag: String,
    pub labels: HashMap<String, String>,
    pub online_serving_config: Option<OnlineServingConfig>,
    pub state: i32,
}

Featurestore configuration information on how the Featurestore is configured.

Fields

name: String

Output only. Name of the Featurestore. Format: projects/{project}/locations/{location}/featurestores/{featurestore}

create_time: Option<Timestamp>

Output only. Timestamp when this Featurestore was created.

update_time: Option<Timestamp>

Output only. Timestamp when this Featurestore was last updated.

etag: String

Optional. Used to perform consistent read-modify-write updates. If not set, a blind “overwrite” update happens.

labels: HashMap<String, String>

Optional. The labels with user-defined metadata to organize your Featurestore.

Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed.

See https://goo.gl/xmQnxf for more information on and examples of labels. No more than 64 user labels can be associated with one Featurestore(System labels are excluded).“ System reserved label keys are prefixed with “aiplatform.googleapis.com/” and are immutable.

online_serving_config: Option<OnlineServingConfig>

Required. Config for online serving resources.

state: i32

Output only. State of the featurestore.

Implementations

impl Featurestore[src]

pub fn state(&self) -> State[src]

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

pub fn set_state(&mut self, value: State)[src]

Sets state to the provided enum value.

Trait Implementations

impl Clone for Featurestore[src]

impl Debug for Featurestore[src]

impl Default for Featurestore[src]

impl Message for Featurestore[src]

impl PartialEq<Featurestore> for Featurestore[src]

impl StructuralPartialEq for Featurestore[src]

Auto Trait Implementations

impl RefUnwindSafe for Featurestore

impl Send for Featurestore

impl Sync for Featurestore

impl Unpin for Featurestore

impl UnwindSafe for Featurestore

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]