Class: Google::Apis::MonitoringV3::ListMonitoredResourceDescriptorsResponse

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 ListMonitoredResourceDescriptors response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListMonitoredResourceDescriptorsResponse

Returns a new instance of ListMonitoredResourceDescriptorsResponse



1417
1418
1419
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1417

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

Instance Attribute Details

#next_page_tokenString

If there are more results than have been returned, then this field is set to a non-empty value. To see the additional results, use that value as pageToken in the next call to this method. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1409
1410
1411
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1409

def next_page_token
  @next_page_token
end

#resource_descriptorsArray<Google::Apis::MonitoringV3::MonitoredResourceDescriptor>

The monitored resource descriptors that are available to this project and that match filter, if present. Corresponds to the JSON property resourceDescriptors



1415
1416
1417
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1415

def resource_descriptors
  @resource_descriptors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1422
1423
1424
1425
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1422

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