Interface ListViolationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListViolationsResponse,ListViolationsResponse.Builder
public interface ListViolationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()The next page token.com.google.protobuf.ByteStringgetNextPageTokenBytes()The next page token.ViolationgetViolations(int index)List of Violations under a Workload.intgetViolationsCount()List of Violations under a Workload.List<Violation>getViolationsList()List of Violations under a Workload.ViolationOrBuildergetViolationsOrBuilder(int index)List of Violations under a Workload.List<? extends ViolationOrBuilder>getViolationsOrBuilderList()List of Violations under a Workload.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getViolationsList
List<Violation> getViolationsList()
List of Violations under a Workload.
repeated .google.cloud.assuredworkloads.v1.Violation violations = 1;
-
getViolations
Violation getViolations(int index)
List of Violations under a Workload.
repeated .google.cloud.assuredworkloads.v1.Violation violations = 1;
-
getViolationsCount
int getViolationsCount()
List of Violations under a Workload.
repeated .google.cloud.assuredworkloads.v1.Violation violations = 1;
-
getViolationsOrBuilderList
List<? extends ViolationOrBuilder> getViolationsOrBuilderList()
List of Violations under a Workload.
repeated .google.cloud.assuredworkloads.v1.Violation violations = 1;
-
getViolationsOrBuilder
ViolationOrBuilder getViolationsOrBuilder(int index)
List of Violations under a Workload.
repeated .google.cloud.assuredworkloads.v1.Violation violations = 1;
-
getNextPageToken
String getNextPageToken()
The next page token. Returns empty if reached the last page.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The next page token. Returns empty if reached the last page.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-