Class: Google::Apis::MonitoringV3::ResourceGroup
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::ResourceGroup
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb
Overview
The resource submessage for group checks. It can be used instead of a monitored resource, when multiple resources are being monitored.
Instance Attribute Summary collapse
-
#group_id ⇒ String
The group of resources being monitored.
-
#resource_type ⇒ String
The resource type of the group members.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResourceGroup
constructor
A new instance of ResourceGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResourceGroup
Returns a new instance of ResourceGroup.
4058 4059 4060 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 4058 def initialize(**args) update!(**args) end |
Instance Attribute Details
#group_id ⇒ String
The group of resources being monitored. Should be only the [GROUP_ID], and not
the full-path projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID].
Corresponds to the JSON property groupId
4051 4052 4053 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 4051 def group_id @group_id end |
#resource_type ⇒ String
The resource type of the group members.
Corresponds to the JSON property resourceType
4056 4057 4058 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 4056 def resource_type @resource_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4063 4064 4065 4066 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 4063 def update!(**args) @group_id = args[:group_id] if args.key?(:group_id) @resource_type = args[:resource_type] if args.key?(:resource_type) end |