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

Constructor Details

#initialize(**args) ⇒ ListMonitoredResourceDescriptorsResponse

Returns a new instance of ListMonitoredResourceDescriptorsResponse.



1855
1856
1857
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1855

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 page_token in the next call to this method. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1847
1848
1849
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1847

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



1853
1854
1855
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1853

def resource_descriptors
  @resource_descriptors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1860
1861
1862
1863
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1860

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