class Google::Apis::MonitoringV3::MonitoredResourceMetadata

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.

Attributes

system_labels[RW]

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 ` Corresponds to the JSON property `systemLabels` @return [Hash<String,Object>]

user_labels[RW]

Output only. A map of user-defined metadata labels. Corresponds to the JSON property `userLabels` @return [Hash<String,String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 2763
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/monitoring_v3/classes.rb, line 2768
def update!(**args)
  @system_labels = args[:system_labels] if args.key?(:system_labels)
  @user_labels = args[:user_labels] if args.key?(:user_labels)
end