Class: Google::Apis::MonitoringV3::ListNotificationChannelDescriptorsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::ListNotificationChannelDescriptorsResponse
 
 
- 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 ListNotificationChannelDescriptors response.
Instance Attribute Summary collapse
- 
  
    
      #channel_descriptors  ⇒ Array<Google::Apis::MonitoringV3::NotificationChannelDescriptor> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The monitored resource descriptors supported for the specified project, optionally filtered.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If not empty, indicates that there may be more results that match the request.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListNotificationChannelDescriptorsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListNotificationChannelDescriptorsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListNotificationChannelDescriptorsResponse
Returns a new instance of ListNotificationChannelDescriptorsResponse.
      2425 2426 2427  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2425 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#channel_descriptors ⇒ Array<Google::Apis::MonitoringV3::NotificationChannelDescriptor>
The monitored resource descriptors supported for the specified project,
optionally filtered.
Corresponds to the JSON property channelDescriptors
      2416 2417 2418  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2416 def channel_descriptors @channel_descriptors end  | 
  
#next_page_token ⇒ String
If not empty, indicates that there may be more results that match the request.
Use the value in the page_token field in a subsequent request to fetch the
next set of results. If empty, all results have been returned.
Corresponds to the JSON property nextPageToken
      2423 2424 2425  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2423 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2430 2431 2432 2433  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2430 def update!(**args) @channel_descriptors = args[:channel_descriptors] if args.key?(:channel_descriptors) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |