class Google::Apis::MonitoringV3::ListNotificationChannelsResponse
The ListNotificationChannels response.
Attributes
next_page_token[RW]
If not empty, indicates that there may be more results that match the request. Use the value in the page_token field in a subsequent request to fetch the next set of results. If empty, all results have been returned. Corresponds to the JSON property `nextPageToken` @return [String]
notification_channels[RW]
The notification channels defined for the specified project. Corresponds to the JSON property `notificationChannels` @return [Array<Google::Apis::MonitoringV3::NotificationChannel>]
total_size[RW]
The total number of notification channels in all pages. This number is only an estimate, and may change in subsequent pages. aip.dev/158 Corresponds to the JSON property `totalSize` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 2202 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/monitoring_v3/classes.rb, line 2207 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @notification_channels = args[:notification_channels] if args.key?(:notification_channels) @total_size = args[:total_size] if args.key?(:total_size) end