Class: Google::Apis::MonitoringV3::ListNotificationChannelsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb

Overview

The ListNotificationChannels response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListNotificationChannelsResponse

Returns a new instance of ListNotificationChannelsResponse.



2458
2459
2460
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2458

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


2445
2446
2447
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2445

def next_page_token
  @next_page_token
end

#notification_channelsArray<Google::Apis::MonitoringV3::NotificationChannel>

The notification channels defined for the specified project. Corresponds to the JSON property notificationChannels



2450
2451
2452
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2450

def notification_channels
  @notification_channels
end

#total_sizeFixnum

The total number of notification channels 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)


2456
2457
2458
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2456

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2463
2464
2465
2466
2467
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2463

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