pub struct MonitoredResourceMetadata {
pub system_labels: Option<HashMap<String, Value>>,
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, Value>>
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§
Source§impl Clone for MonitoredResourceMetadata
impl Clone for MonitoredResourceMetadata
Source§fn clone(&self) -> MonitoredResourceMetadata
fn clone(&self) -> MonitoredResourceMetadata
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for MonitoredResourceMetadata
impl Debug for MonitoredResourceMetadata
Source§impl Default for MonitoredResourceMetadata
impl Default for MonitoredResourceMetadata
Source§fn default() -> MonitoredResourceMetadata
fn default() -> MonitoredResourceMetadata
Source§impl<'de> Deserialize<'de> for MonitoredResourceMetadata
impl<'de> Deserialize<'de> for MonitoredResourceMetadata
Source§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>,
impl Part for MonitoredResourceMetadata
Auto Trait Implementations§
impl Freeze for MonitoredResourceMetadata
impl RefUnwindSafe for MonitoredResourceMetadata
impl Send for MonitoredResourceMetadata
impl Sync for MonitoredResourceMetadata
impl Unpin for MonitoredResourceMetadata
impl UnwindSafe for MonitoredResourceMetadata
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more