pub struct GoogleCloudDataplexV1Zone {
pub asset_status: Option<GoogleCloudDataplexV1AssetStatus>,
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub discovery_spec: Option<GoogleCloudDataplexV1ZoneDiscoverySpec>,
pub display_name: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub resource_spec: Option<GoogleCloudDataplexV1ZoneResourceSpec>,
pub state: Option<String>,
pub type_: Option<String>,
pub uid: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
A zone represents a logical group of related assets within a lake. A zone can be used to map to organizational structure or represent stages of data readiness from raw to curated. It provides managing behavior that is shared or inherited by all contained assets.
§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 lakes zones create projects (request)
- locations lakes zones get projects (response)
- locations lakes zones patch projects (request)
Fields§
§asset_status: Option<GoogleCloudDataplexV1AssetStatus>
Output only. Aggregated status of the underlying assets of the zone.
create_time: Option<DateTime<Utc>>
Output only. The time when the zone was created.
description: Option<String>
Optional. Description of the zone.
discovery_spec: Option<GoogleCloudDataplexV1ZoneDiscoverySpec>
Optional. Specification of the discovery feature applied to data in this zone.
display_name: Option<String>
Optional. User friendly display name.
labels: Option<HashMap<String, String>>
Optional. User defined labels for the zone.
name: Option<String>
Output only. The relative resource name of the zone, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}.
resource_spec: Option<GoogleCloudDataplexV1ZoneResourceSpec>
Required. Specification of the resources that are referenced by the assets within this zone.
state: Option<String>
Output only. Current state of the zone.
type_: Option<String>
Required. Immutable. The type of the zone.
uid: Option<String>
Output only. System generated globally unique ID for the zone. This ID will be different if the zone is deleted and re-created with the same name.
update_time: Option<DateTime<Utc>>
Output only. The time when the zone was last updated.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1Zone
impl Clone for GoogleCloudDataplexV1Zone
Source§fn clone(&self) -> GoogleCloudDataplexV1Zone
fn clone(&self) -> GoogleCloudDataplexV1Zone
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GoogleCloudDataplexV1Zone
impl Debug for GoogleCloudDataplexV1Zone
Source§impl Default for GoogleCloudDataplexV1Zone
impl Default for GoogleCloudDataplexV1Zone
Source§fn default() -> GoogleCloudDataplexV1Zone
fn default() -> GoogleCloudDataplexV1Zone
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Zone
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Zone
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 GoogleCloudDataplexV1Zone
impl ResponseResult for GoogleCloudDataplexV1Zone
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1Zone
impl RefUnwindSafe for GoogleCloudDataplexV1Zone
impl Send for GoogleCloudDataplexV1Zone
impl Sync for GoogleCloudDataplexV1Zone
impl Unpin for GoogleCloudDataplexV1Zone
impl UnwindSafe for GoogleCloudDataplexV1Zone
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