[][src]Struct google_logging2::MonitoredResourceMetadata

pub struct MonitoredResourceMetadata {
    pub user_labels: Option<HashMap<String, String>>,
    pub system_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

user_labels: Option<HashMap<String, String>>

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

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 }

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, 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