Class: Google::Apis::MonitoringV3::ListMonitoredResourceDescriptorsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::ListMonitoredResourceDescriptorsResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/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.
 
Constructor Details
#initialize(**args) ⇒ ListMonitoredResourceDescriptorsResponse
Returns a new instance of ListMonitoredResourceDescriptorsResponse.
      2397 2398 2399  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2397 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 page_token
in the next call to this method.
Corresponds to the JSON property nextPageToken
      2389 2390 2391  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2389 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
      2395 2396 2397  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2395 def resource_descriptors @resource_descriptors end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2402 2403 2404 2405  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2402 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  |