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

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_policiesArray<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_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 page_token in the next call to this method. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1730
1731
1732
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1730

def next_page_token
  @next_page_token
end

#total_sizeFixnum

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

Returns:

  • (Fixnum)


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