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.
4068 4069 4070 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 4068 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
4061 4062 4063 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 4061 def group_id @group_id end |
#resource_type ⇒ String
The resource type of the group members.
Corresponds to the JSON property resourceType
4066 4067 4068 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 4066 def resource_type @resource_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4073 4074 4075 4076 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 4073 def update!(**args) @group_id = args[:group_id] if args.key?(:group_id) @resource_type = args[:resource_type] if args.key?(:resource_type) end |