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



1032
1033
1034
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1032

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)


1024
1025
1026
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1024

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



1030
1031
1032
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1030

def resource_descriptors
  @resource_descriptors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1037
1038
1039
1040
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1037

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