Struct google_logging2_beta1::api::MonitoredResourceMetadata[][src]

pub struct MonitoredResourceMetadata {
    pub system_labels: Option<HashMap<String, String>>,
    pub user_labels: Option<HashMap<String, String>>,
}

Auxiliary metadata for a MonitoredResource object. MonitoredResource objects contain the minimum set of information to uniquely identify a monitored resource instance. There is some other useful auxiliary metadata. Monitoring and Logging use an ingestion pipeline to extract metadata for cloud resources of all types, and store the metadata in this message.

This type is not used in any activity, and only used as part of another schema.

Fields

system_labels: Option<HashMap<String, String>>

Output only. Values for predefined system metadata labels. System labels are a kind of metadata extracted by Google, including “machine_image”, “vpc”, “subnet_id”, “security_group”, “name”, etc. System label values can be only strings, Boolean values, or a list of strings. For example: { “name”: “my-test-instance”, “security_group”: [“a”, “b”, “c”], “spot_instance”: false }

user_labels: Option<HashMap<String, String>>

Output only. A map of user-defined metadata labels.

Trait Implementations

impl Clone for MonitoredResourceMetadata[src]

impl Debug for MonitoredResourceMetadata[src]

impl Default for MonitoredResourceMetadata[src]

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

impl Part for MonitoredResourceMetadata[src]

impl Serialize for MonitoredResourceMetadata[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> Instrument 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.