Struct google_logging2::api::MonitoredResourceMetadata [−][src]
pub struct MonitoredResourceMetadata {
pub system_labels: Option<HashMap<String, String>>,
pub user_labels: Option<HashMap<String, String>>,
}Expand description
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
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for MonitoredResourceMetadata
impl Send for MonitoredResourceMetadata
impl Sync for MonitoredResourceMetadata
impl Unpin for MonitoredResourceMetadata
impl UnwindSafe for MonitoredResourceMetadata
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more