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.
-
#total_size ⇒ Fixnum
The total number of alert policies in all pages.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAlertPoliciesResponse
constructor
A new instance of ListAlertPoliciesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAlertPoliciesResponse
Returns a new instance of ListAlertPoliciesResponse.
1738 1739 1740 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1738 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
1723 1724 1725 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1723 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 page_token
in the next call to this method.
Corresponds to the JSON property nextPageToken
1730 1731 1732 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1730 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
The total number of alert policies in all pages. This number is only an
estimate, and may change in subsequent pages. https://aip.dev/158
Corresponds to the JSON property totalSize
1736 1737 1738 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1736 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1743 1744 1745 1746 1747 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1743 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) @total_size = args[:total_size] if args.key?(:total_size) end |