Class: Google::Apis::MonitoringV3::ListAlertPoliciesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::ListAlertPoliciesResponse
 
 
- 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 protocol for the ListAlertPolicies response.
Instance Attribute Summary collapse
- 
  
    
      #alert_policies  ⇒ Array<Google::Apis::MonitoringV3::AlertPolicy> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The returned alert policies.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If there might be more results than were returned, then this field is set to a non-empty value.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListAlertPoliciesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListAlertPoliciesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListAlertPoliciesResponse
Returns a new instance of ListAlertPoliciesResponse
      1330 1331 1332  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 1330 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#alert_policies ⇒ Array<Google::Apis::MonitoringV3::AlertPolicy>
The returned alert policies.
Corresponds to the JSON property alertPolicies
      1321 1322 1323  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 1321 def alert_policies @alert_policies end  | 
  
#next_page_token ⇒ String
If there might be more results than were 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
      1328 1329 1330  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 1328 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1335 1336 1337 1338  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 1335 def update!(**args) @alert_policies = args[:alert_policies] if args.key?(:alert_policies) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |