pub struct GoogleCloudDataplexV1AspectType {
pub authorization: Option<GoogleCloudDataplexV1AspectTypeAuthorization>,
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub display_name: Option<String>,
pub etag: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub metadata_template: Option<GoogleCloudDataplexV1AspectTypeMetadataTemplate>,
pub name: Option<String>,
pub transfer_status: Option<String>,
pub uid: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
Aspect Type is a template for creating Aspects, and represents the JSON-schema for a given Entry, e.g., BigQuery Table Schema.
§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 aspect types create projects (request)
- locations aspect types get projects (response)
- locations aspect types patch projects (request)
Fields§
Immutable. Authorization defined for this type.
create_time: Option<DateTime<Utc>>
Output only. The time when the AspectType was created.
description: Option<String>
Optional. Description of the AspectType.
display_name: Option<String>
Optional. User friendly display name.
etag: Option<String>
This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
labels: Option<HashMap<String, String>>
Optional. User-defined labels for the AspectType.
metadata_template: Option<GoogleCloudDataplexV1AspectTypeMetadataTemplate>
Required. MetadataTemplate of the aspect.
name: Option<String>
Output only. The relative resource name of the AspectType, of the form: projects/{project_number}/locations/{location_id}/aspectTypes/{aspect_type_id}.
transfer_status: Option<String>
Output only. Denotes the transfer status of the Aspect Type. It is unspecified for Aspect Types created from Dataplex API.
uid: Option<String>
Output only. System generated globally unique ID for the AspectType. This ID will be different if the AspectType is deleted and re-created with the same name.
update_time: Option<DateTime<Utc>>
Output only. The time when the AspectType was last updated.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1AspectType
impl Clone for GoogleCloudDataplexV1AspectType
Source§fn clone(&self) -> GoogleCloudDataplexV1AspectType
fn clone(&self) -> GoogleCloudDataplexV1AspectType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1AspectType
impl Default for GoogleCloudDataplexV1AspectType
Source§fn default() -> GoogleCloudDataplexV1AspectType
fn default() -> GoogleCloudDataplexV1AspectType
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1AspectType
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1AspectType
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 GoogleCloudDataplexV1AspectType
impl ResponseResult for GoogleCloudDataplexV1AspectType
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1AspectType
impl RefUnwindSafe for GoogleCloudDataplexV1AspectType
impl Send for GoogleCloudDataplexV1AspectType
impl Sync for GoogleCloudDataplexV1AspectType
impl Unpin for GoogleCloudDataplexV1AspectType
impl UnwindSafe for GoogleCloudDataplexV1AspectType
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