Class: Google::Apis::LoggingV2::MonitoredResourceMetadata
- Inherits:
-
Object
- Object
- Google::Apis::LoggingV2::MonitoredResourceMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/logging_v2/classes.rb,
generated/google/apis/logging_v2/representations.rb,
generated/google/apis/logging_v2/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#system_labels ⇒ Hash<String,Object>
Output only.
-
#user_labels ⇒ Hash<String,String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MonitoredResourceMetadata
constructor
A new instance of MonitoredResourceMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MonitoredResourceMetadata
Returns a new instance of MonitoredResourceMetadata
1468 1469 1470 |
# File 'generated/google/apis/logging_v2/classes.rb', line 1468 def initialize(**args) update!(**args) end |
Instance Attribute Details
#system_labels ⇒ Hash<String,Object>
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
1461 1462 1463 |
# File 'generated/google/apis/logging_v2/classes.rb', line 1461 def system_labels @system_labels end |
#user_labels ⇒ Hash<String,String>
Output only. A map of user-defined metadata labels.
Corresponds to the JSON property userLabels
1466 1467 1468 |
# File 'generated/google/apis/logging_v2/classes.rb', line 1466 def user_labels @user_labels end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1473 1474 1475 1476 |
# File 'generated/google/apis/logging_v2/classes.rb', line 1473 def update!(**args) @system_labels = args[:system_labels] if args.key?(:system_labels) @user_labels = args[:user_labels] if args.key?(:user_labels) end |