[][src]Struct google_datacatalog1_beta1::GoogleCloudDatacatalogV1beta1EntryGroup

pub struct GoogleCloudDatacatalogV1beta1EntryGroup {
    pub data_catalog_timestamps: Option<GoogleCloudDatacatalogV1beta1SystemTimestamps>,
    pub display_name: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
}

EntryGroup Metadata. An EntryGroup resource represents a logical grouping of zero or more Data Catalog Entry resources.

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).

Fields

data_catalog_timestamps: Option<GoogleCloudDatacatalogV1beta1SystemTimestamps>

Output only. Timestamps about this EntryGroup. Default value is empty timestamps.

display_name: Option<String>

A short name to identify the entry group, for example, "analytics data - jan 2011". Default value is an empty string.

description: Option<String>

Entry group description, which can consist of several sentences or paragraphs that describe entry group contents. Default value is an empty string.

name: Option<String>

The resource name of the entry group in URL format. Example:

  • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}

Note that this EntryGroup and its child resources may not actually be stored in the location in this name.

Trait Implementations

impl Clone for GoogleCloudDatacatalogV1beta1EntryGroup[src]

impl Debug for GoogleCloudDatacatalogV1beta1EntryGroup[src]

impl Default for GoogleCloudDatacatalogV1beta1EntryGroup[src]

impl<'de> Deserialize<'de> for GoogleCloudDatacatalogV1beta1EntryGroup[src]

impl RequestValue for GoogleCloudDatacatalogV1beta1EntryGroup[src]

impl ResponseResult for GoogleCloudDatacatalogV1beta1EntryGroup[src]

impl Serialize for GoogleCloudDatacatalogV1beta1EntryGroup[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any