pub struct GoogleCloudDataplexV1EntryGroup {
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 name: Option<String>,
pub transfer_status: Option<String>,
pub uid: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
An Entry Group represents a logical grouping of one or more Entries.
§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 entry groups create projects (request)
- locations entry groups get projects (response)
- locations entry groups patch projects (request)
Fields§
§create_time: Option<DateTime<Utc>>
Output only. The time when the EntryGroup was created.
description: Option<String>
Optional. Description of the EntryGroup.
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 EntryGroup.
name: Option<String>
Output only. The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}.
transfer_status: Option<String>
Output only. Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
uid: Option<String>
Output only. System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
update_time: Option<DateTime<Utc>>
Output only. The time when the EntryGroup was last updated.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1EntryGroup
impl Clone for GoogleCloudDataplexV1EntryGroup
Source§fn clone(&self) -> GoogleCloudDataplexV1EntryGroup
fn clone(&self) -> GoogleCloudDataplexV1EntryGroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1EntryGroup
impl Default for GoogleCloudDataplexV1EntryGroup
Source§fn default() -> GoogleCloudDataplexV1EntryGroup
fn default() -> GoogleCloudDataplexV1EntryGroup
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1EntryGroup
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1EntryGroup
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 GoogleCloudDataplexV1EntryGroup
impl ResponseResult for GoogleCloudDataplexV1EntryGroup
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1EntryGroup
impl RefUnwindSafe for GoogleCloudDataplexV1EntryGroup
impl Send for GoogleCloudDataplexV1EntryGroup
impl Sync for GoogleCloudDataplexV1EntryGroup
impl Unpin for GoogleCloudDataplexV1EntryGroup
impl UnwindSafe for GoogleCloudDataplexV1EntryGroup
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