Package com.google.cloud.asset.v1
Interface SearchAllIamPoliciesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchAllIamPoliciesResponse,SearchAllIamPoliciesResponse.Builder
public interface SearchAllIamPoliciesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()Set if there are more results than those appearing in this response; to get the next set of results, call this method again, using this value as the `page_token`.com.google.protobuf.ByteStringgetNextPageTokenBytes()Set if there are more results than those appearing in this response; to get the next set of results, call this method again, using this value as the `page_token`.IamPolicySearchResultgetResults(int index)A list of IAM policies that match the search query.intgetResultsCount()A list of IAM policies that match the search query.List<IamPolicySearchResult>getResultsList()A list of IAM policies that match the search query.IamPolicySearchResultOrBuildergetResultsOrBuilder(int index)A list of IAM policies that match the search query.List<? extends IamPolicySearchResultOrBuilder>getResultsOrBuilderList()A list of IAM policies that match the search query.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResultsList
List<IamPolicySearchResult> getResultsList()
A list of IAM policies that match the search query. Related information such as the associated resource is returned along with the policy.
repeated .google.cloud.asset.v1.IamPolicySearchResult results = 1;
-
getResults
IamPolicySearchResult getResults(int index)
A list of IAM policies that match the search query. Related information such as the associated resource is returned along with the policy.
repeated .google.cloud.asset.v1.IamPolicySearchResult results = 1;
-
getResultsCount
int getResultsCount()
A list of IAM policies that match the search query. Related information such as the associated resource is returned along with the policy.
repeated .google.cloud.asset.v1.IamPolicySearchResult results = 1;
-
getResultsOrBuilderList
List<? extends IamPolicySearchResultOrBuilder> getResultsOrBuilderList()
A list of IAM policies that match the search query. Related information such as the associated resource is returned along with the policy.
repeated .google.cloud.asset.v1.IamPolicySearchResult results = 1;
-
getResultsOrBuilder
IamPolicySearchResultOrBuilder getResultsOrBuilder(int index)
A list of IAM policies that match the search query. Related information such as the associated resource is returned along with the policy.
repeated .google.cloud.asset.v1.IamPolicySearchResult results = 1;
-
getNextPageToken
String getNextPageToken()
Set if there are more results than those appearing in this response; to get the next set of results, call this method again, using this value as the `page_token`.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Set if there are more results than those appearing in this response; to get the next set of results, call this method again, using this value as the `page_token`.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-