Interface ListNotificationConfigsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListNotificationConfigsResponse
,ListNotificationConfigsResponse.Builder
public interface ListNotificationConfigsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results.NotificationConfig
getNotificationConfigs(int index)
Notification configs belonging to the requested parent.int
getNotificationConfigsCount()
Notification configs belonging to the requested parent.List<NotificationConfig>
getNotificationConfigsList()
Notification configs belonging to the requested parent.NotificationConfigOrBuilder
getNotificationConfigsOrBuilder(int index)
Notification configs belonging to the requested parent.List<? extends NotificationConfigOrBuilder>
getNotificationConfigsOrBuilderList()
Notification configs belonging to the requested parent.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNotificationConfigsList
List<NotificationConfig> getNotificationConfigsList()
Notification configs belonging to the requested parent.
repeated .google.cloud.securitycenter.v1.NotificationConfig notification_configs = 1;
-
getNotificationConfigs
NotificationConfig getNotificationConfigs(int index)
Notification configs belonging to the requested parent.
repeated .google.cloud.securitycenter.v1.NotificationConfig notification_configs = 1;
-
getNotificationConfigsCount
int getNotificationConfigsCount()
Notification configs belonging to the requested parent.
repeated .google.cloud.securitycenter.v1.NotificationConfig notification_configs = 1;
-
getNotificationConfigsOrBuilderList
List<? extends NotificationConfigOrBuilder> getNotificationConfigsOrBuilderList()
Notification configs belonging to the requested parent.
repeated .google.cloud.securitycenter.v1.NotificationConfig notification_configs = 1;
-
getNotificationConfigsOrBuilder
NotificationConfigOrBuilder getNotificationConfigsOrBuilder(int index)
Notification configs belonging to the requested parent.
repeated .google.cloud.securitycenter.v1.NotificationConfig notification_configs = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-