Struct gapi_grpc::google::api::MonitoredResourceMetadata[][src]

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

Auxiliary metadata for a [MonitoredResource][google.api.MonitoredResource] object. [MonitoredResource][google.api.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.

Fields

system_labels: Option<Struct>

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

impl PartialEq<MonitoredResourceMetadata> for MonitoredResourceMetadata[src]

impl StructuralPartialEq for MonitoredResourceMetadata[src]

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

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]