Package com.google.cloud.orgpolicy.v2
Interface ListConstraintsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListConstraintsResponse,ListConstraintsResponse.Builder
public interface ListConstraintsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConstraintgetConstraints(int index)The collection of constraints that are available on the targeted resource.intgetConstraintsCount()The collection of constraints that are available on the targeted resource.List<Constraint>getConstraintsList()The collection of constraints that are available on the targeted resource.ConstraintOrBuildergetConstraintsOrBuilder(int index)The collection of constraints that are available on the targeted resource.List<? extends ConstraintOrBuilder>getConstraintsOrBuilderList()The collection of constraints that are available on the targeted resource.StringgetNextPageToken()Page token used to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()Page token used to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getConstraintsList
List<Constraint> getConstraintsList()
The collection of constraints that are available on the targeted resource.
repeated .google.cloud.orgpolicy.v2.Constraint constraints = 1;
-
getConstraints
Constraint getConstraints(int index)
The collection of constraints that are available on the targeted resource.
repeated .google.cloud.orgpolicy.v2.Constraint constraints = 1;
-
getConstraintsCount
int getConstraintsCount()
The collection of constraints that are available on the targeted resource.
repeated .google.cloud.orgpolicy.v2.Constraint constraints = 1;
-
getConstraintsOrBuilderList
List<? extends ConstraintOrBuilder> getConstraintsOrBuilderList()
The collection of constraints that are available on the targeted resource.
repeated .google.cloud.orgpolicy.v2.Constraint constraints = 1;
-
getConstraintsOrBuilder
ConstraintOrBuilder getConstraintsOrBuilder(int index)
The collection of constraints that are available on the targeted resource.
repeated .google.cloud.orgpolicy.v2.Constraint constraints = 1;
-
getNextPageToken
String getNextPageToken()
Page token used to retrieve the next page. This is currently not used.
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.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-