Class: Google::Apis::MonitoringV3::ListAlertPoliciesResponse

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 protocol for the ListAlertPolicies 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) ⇒ ListAlertPoliciesResponse

Returns a new instance of ListAlertPoliciesResponse



1344
1345
1346
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1344

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#alert_policiesArray<Google::Apis::MonitoringV3::AlertPolicy>

The returned alert policies. Corresponds to the JSON property alertPolicies



1335
1336
1337
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1335

def alert_policies
  @alert_policies
end

#next_page_tokenString

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

Returns:

  • (String)


1342
1343
1344
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1342

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1349
1350
1351
1352
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1349

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