Class: Google::Apis::MonitoringV3::ListMonitoredResourceDescriptorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::ListMonitoredResourceDescriptorsResponse
- 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
-
#next_page_token ⇒ String
If there are more results than have been returned, then this field is set to a non-empty value.
-
#resource_descriptors ⇒ Array<Google::Apis::MonitoringV3::MonitoredResourceDescriptor>
The monitored resource descriptors that are available to this project and that match filter, if present.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListMonitoredResourceDescriptorsResponse
constructor
A new instance of ListMonitoredResourceDescriptorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListMonitoredResourceDescriptorsResponse
Returns a new instance of ListMonitoredResourceDescriptorsResponse
1370 1371 1372 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1370 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
1362 1363 1364 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1362 def next_page_token @next_page_token end |
#resource_descriptors ⇒ Array<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
1368 1369 1370 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1368 def resource_descriptors @resource_descriptors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1375 1376 1377 1378 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1375 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 |