pub struct GoogleCloudAiplatformV1MetadataStore {
pub name: Option<String>,
pub dataplex_config: Option<GoogleCloudAiplatformV1MetadataStoreDataplexConfig>,
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub update_time: Option<DateTime<Utc>>,
pub encryption_spec: Option<GoogleCloudAiplatformV1EncryptionSpec>,
pub state: Option<GoogleCloudAiplatformV1MetadataStoreMetadataStoreState>,
}Expand description
Instance of a metadata store. Contains a set of metadata that can be queried.
§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 get projects (response)
- locations metadata stores create projects (request)
Fields§
§name: Option<String>Output only. The resource name of the MetadataStore instance.
dataplex_config: Option<GoogleCloudAiplatformV1MetadataStoreDataplexConfig>Optional. Dataplex integration settings.
create_time: Option<DateTime<Utc>>Output only. Timestamp when this MetadataStore was created.
description: Option<String>Description of the MetadataStore.
update_time: Option<DateTime<Utc>>Output only. Timestamp when this MetadataStore was last updated.
encryption_spec: Option<GoogleCloudAiplatformV1EncryptionSpec>Customer-managed encryption key spec for a Metadata Store. If set, this Metadata Store and all sub-resources of this Metadata Store are secured using this key.
state: Option<GoogleCloudAiplatformV1MetadataStoreMetadataStoreState>Output only. State information of the MetadataStore.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1MetadataStore
impl Clone for GoogleCloudAiplatformV1MetadataStore
Source§fn clone(&self) -> GoogleCloudAiplatformV1MetadataStore
fn clone(&self) -> GoogleCloudAiplatformV1MetadataStore
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1MetadataStore
impl Default for GoogleCloudAiplatformV1MetadataStore
Source§fn default() -> GoogleCloudAiplatformV1MetadataStore
fn default() -> GoogleCloudAiplatformV1MetadataStore
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1MetadataStore
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1MetadataStore
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 GoogleCloudAiplatformV1MetadataStore
impl ResponseResult for GoogleCloudAiplatformV1MetadataStore
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1MetadataStore
impl RefUnwindSafe for GoogleCloudAiplatformV1MetadataStore
impl Send for GoogleCloudAiplatformV1MetadataStore
impl Sync for GoogleCloudAiplatformV1MetadataStore
impl Unpin for GoogleCloudAiplatformV1MetadataStore
impl UnwindSafe for GoogleCloudAiplatformV1MetadataStore
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