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
1254 1255 1256 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1254 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
1245 1246 1247 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1245 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
1252 1253 1254 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1252 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1259 1260 1261 1262 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1259 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 |