Interface SearchProtectedResourcesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchProtectedResourcesResponse
,SearchProtectedResourcesResponse.Builder
public interface SearchProtectedResourcesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token that can be sent as `page_token` to retrieve the next page.ProtectedResource
getProtectedResources(int index)
Protected resources for this page.int
getProtectedResourcesCount()
Protected resources for this page.List<ProtectedResource>
getProtectedResourcesList()
Protected resources for this page.ProtectedResourceOrBuilder
getProtectedResourcesOrBuilder(int index)
Protected resources for this page.List<? extends ProtectedResourceOrBuilder>
getProtectedResourcesOrBuilderList()
Protected resources for this page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProtectedResourcesList
List<ProtectedResource> getProtectedResourcesList()
Protected resources for this page.
repeated .google.cloud.kms.inventory.v1.ProtectedResource protected_resources = 1;
-
getProtectedResources
ProtectedResource getProtectedResources(int index)
Protected resources for this page.
repeated .google.cloud.kms.inventory.v1.ProtectedResource protected_resources = 1;
-
getProtectedResourcesCount
int getProtectedResourcesCount()
Protected resources for this page.
repeated .google.cloud.kms.inventory.v1.ProtectedResource protected_resources = 1;
-
getProtectedResourcesOrBuilderList
List<? extends ProtectedResourceOrBuilder> getProtectedResourcesOrBuilderList()
Protected resources for this page.
repeated .google.cloud.kms.inventory.v1.ProtectedResource protected_resources = 1;
-
getProtectedResourcesOrBuilder
ProtectedResourceOrBuilder getProtectedResourcesOrBuilder(int index)
Protected resources for this page.
repeated .google.cloud.kms.inventory.v1.ProtectedResource protected_resources = 1;
-
getNextPageToken
String getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-