[][src]Struct gcp_client::google::cloud::asset::v1p1beta1::StandardResourceMetadata

pub struct StandardResourceMetadata {
    pub name: String,
    pub asset_type: String,
    pub project: String,
    pub display_name: String,
    pub description: String,
    pub additional_attributes: Vec<String>,
    pub location: String,
    pub labels: HashMap<String, String>,
    pub network_tags: Vec<String>,
}

The standard metadata of a cloud resource.

Fields

name: String

The full resource name. For example: //compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1. See Resource Names for more information.

asset_type: String

The type of this resource. For example: "compute.googleapis.com/Disk".

project: String

The project that this resource belongs to, in the form of projects/{project_number}.

display_name: String

The display name of this resource.

description: String

One or more paragraphs of text description of this resource. Maximum length could be up to 1M bytes.

additional_attributes: Vec<String>

Additional searchable attributes of this resource. Informational only. The exact set of attributes is subject to change. For example: project id, DNS name etc.

location: String

Location can be "global", regional like "us-east1", or zonal like "us-west1-b".

labels: HashMap<String, String>

Labels associated with this resource. See Labelling and grouping GCP resources for more information.

network_tags: Vec<String>

Network tags associated with this resource. Like labels, network tags are a type of annotations used to group GCP resources. See Labelling GCP resources for more information.

Trait Implementations

impl Clone for StandardResourceMetadata[src]

impl Debug for StandardResourceMetadata[src]

impl Default for StandardResourceMetadata[src]

impl Message for StandardResourceMetadata[src]

impl PartialEq<StandardResourceMetadata> for StandardResourceMetadata[src]

impl StructuralPartialEq for StandardResourceMetadata[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]