class Google::Apis::MonitoringV3::ListNotificationChannelDescriptorsResponse
The ListNotificationChannelDescriptors response.
Attributes
channel_descriptors[RW]
The monitored resource descriptors supported for the specified project, optionally filtered. Corresponds to the JSON property `channelDescriptors` @return [Array<Google::Apis::MonitoringV3::NotificationChannelDescriptor>]
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]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 2169 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 2174 def update!(**args) @channel_descriptors = args[:channel_descriptors] if args.key?(:channel_descriptors) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end