Package com.google.monitoring.v3
Interface ListNotificationChannelsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListNotificationChannelsResponse
,ListNotificationChannelsResponse.Builder
public interface ListNotificationChannelsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
If not empty, indicates that there may be more results that match the request.com.google.protobuf.ByteString
getNextPageTokenBytes()
If not empty, indicates that there may be more results that match the request.NotificationChannel
getNotificationChannels(int index)
The notification channels defined for the specified project.int
getNotificationChannelsCount()
The notification channels defined for the specified project.List<NotificationChannel>
getNotificationChannelsList()
The notification channels defined for the specified project.NotificationChannelOrBuilder
getNotificationChannelsOrBuilder(int index)
The notification channels defined for the specified project.List<? extends NotificationChannelOrBuilder>
getNotificationChannelsOrBuilderList()
The notification channels defined for the specified project.int
getTotalSize()
The total number of notification channels in all pages.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNotificationChannelsList
List<NotificationChannel> getNotificationChannelsList()
The notification channels defined for the specified project.
repeated .google.monitoring.v3.NotificationChannel notification_channels = 3;
-
getNotificationChannels
NotificationChannel getNotificationChannels(int index)
The notification channels defined for the specified project.
repeated .google.monitoring.v3.NotificationChannel notification_channels = 3;
-
getNotificationChannelsCount
int getNotificationChannelsCount()
The notification channels defined for the specified project.
repeated .google.monitoring.v3.NotificationChannel notification_channels = 3;
-
getNotificationChannelsOrBuilderList
List<? extends NotificationChannelOrBuilder> getNotificationChannelsOrBuilderList()
The notification channels defined for the specified project.
repeated .google.monitoring.v3.NotificationChannel notification_channels = 3;
-
getNotificationChannelsOrBuilder
NotificationChannelOrBuilder getNotificationChannelsOrBuilder(int index)
The notification channels defined for the specified project.
repeated .google.monitoring.v3.NotificationChannel notification_channels = 3;
-
getNextPageToken
String getNextPageToken()
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.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
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.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getTotalSize
int getTotalSize()
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
int32 total_size = 4;
- Returns:
- The totalSize.
-
-