Struct google_logging2::MonitoredResourceMetadata[][src]

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

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

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 Default for MonitoredResourceMetadata
[src]

Returns the "default value" for a type. Read more

impl Clone for MonitoredResourceMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MonitoredResourceMetadata
[src]

Formats the value using the given formatter. Read more

impl Part for MonitoredResourceMetadata
[src]

Auto Trait Implementations