Package com.google.cloud.orgpolicy.v2
Interface ListPoliciesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListPoliciesResponse,ListPoliciesResponse.Builder
public interface ListPoliciesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()Page token used to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()Page token used to retrieve the next page.PolicygetPolicies(int index)All `Policies` that exist on the resource.intgetPoliciesCount()All `Policies` that exist on the resource.List<Policy>getPoliciesList()All `Policies` that exist on the resource.PolicyOrBuildergetPoliciesOrBuilder(int index)All `Policies` that exist on the resource.List<? extends PolicyOrBuilder>getPoliciesOrBuilderList()All `Policies` that exist on the resource.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPoliciesList
List<Policy> getPoliciesList()
All `Policies` that exist on the resource. It will be empty if no `Policies` are set.
repeated .google.cloud.orgpolicy.v2.Policy policies = 1;
-
getPolicies
Policy getPolicies(int index)
All `Policies` that exist on the resource. It will be empty if no `Policies` are set.
repeated .google.cloud.orgpolicy.v2.Policy policies = 1;
-
getPoliciesCount
int getPoliciesCount()
All `Policies` that exist on the resource. It will be empty if no `Policies` are set.
repeated .google.cloud.orgpolicy.v2.Policy policies = 1;
-
getPoliciesOrBuilderList
List<? extends PolicyOrBuilder> getPoliciesOrBuilderList()
All `Policies` that exist on the resource. It will be empty if no `Policies` are set.
repeated .google.cloud.orgpolicy.v2.Policy policies = 1;
-
getPoliciesOrBuilder
PolicyOrBuilder getPoliciesOrBuilder(int index)
All `Policies` that exist on the resource. It will be empty if no `Policies` are set.
repeated .google.cloud.orgpolicy.v2.Policy policies = 1;
-
getNextPageToken
String getNextPageToken()
Page token used to retrieve the next page. This is currently not used, but the server may at any point start supplying a valid token.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Page token used to retrieve the next page. This is currently not used, but the server may at any point start supplying a valid token.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-