Class: Google::Apis::MonitoringV3::ResourceGroup

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ResourceGroup

Returns a new instance of ResourceGroup.



3198
3199
3200
# File 'generated/google/apis/monitoring_v3/classes.rb', line 3198

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#group_idString

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

Returns:

  • (String)


3191
3192
3193
# File 'generated/google/apis/monitoring_v3/classes.rb', line 3191

def group_id
  @group_id
end

#resource_typeString

The resource type of the group members. Corresponds to the JSON property resourceType

Returns:

  • (String)


3196
3197
3198
# File 'generated/google/apis/monitoring_v3/classes.rb', line 3196

def resource_type
  @resource_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3203
3204
3205
3206
# File 'generated/google/apis/monitoring_v3/classes.rb', line 3203

def update!(**args)
  @group_id = args[:group_id] if args.key?(:group_id)
  @resource_type = args[:resource_type] if args.key?(:resource_type)
end