Package com.google.api.servicecontrol.v1
Interface CheckResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CheckResponse
,CheckResponse.Builder
public interface CheckResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CheckError
getCheckErrors(int index)
Indicate the decision of the check.int
getCheckErrorsCount()
Indicate the decision of the check.List<CheckError>
getCheckErrorsList()
Indicate the decision of the check.CheckErrorOrBuilder
getCheckErrorsOrBuilder(int index)
Indicate the decision of the check.List<? extends CheckErrorOrBuilder>
getCheckErrorsOrBuilderList()
Indicate the decision of the check.CheckResponse.CheckInfo
getCheckInfo()
Feedback data returned from the server during processing a Check request.CheckResponse.CheckInfoOrBuilder
getCheckInfoOrBuilder()
Feedback data returned from the server during processing a Check request.String
getOperationId()
The same operation_id value used in the [CheckRequest][google.api.servicecontrol.v1.CheckRequest].com.google.protobuf.ByteString
getOperationIdBytes()
The same operation_id value used in the [CheckRequest][google.api.servicecontrol.v1.CheckRequest].String
getServiceConfigId()
The actual config id used to process the request.com.google.protobuf.ByteString
getServiceConfigIdBytes()
The actual config id used to process the request.String
getServiceRolloutId()
The current service rollout id used to process the request.com.google.protobuf.ByteString
getServiceRolloutIdBytes()
The current service rollout id used to process the request.boolean
hasCheckInfo()
Feedback data returned from the server during processing a Check request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOperationId
String getOperationId()
The same operation_id value used in the [CheckRequest][google.api.servicecontrol.v1.CheckRequest]. Used for logging and diagnostics purposes.
string operation_id = 1;
- Returns:
- The operationId.
-
getOperationIdBytes
com.google.protobuf.ByteString getOperationIdBytes()
The same operation_id value used in the [CheckRequest][google.api.servicecontrol.v1.CheckRequest]. Used for logging and diagnostics purposes.
string operation_id = 1;
- Returns:
- The bytes for operationId.
-
getCheckErrorsList
List<CheckError> getCheckErrorsList()
Indicate the decision of the check. If no check errors are present, the service should process the operation. Otherwise the service should use the list of errors to determine the appropriate action.
repeated .google.api.servicecontrol.v1.CheckError check_errors = 2;
-
getCheckErrors
CheckError getCheckErrors(int index)
Indicate the decision of the check. If no check errors are present, the service should process the operation. Otherwise the service should use the list of errors to determine the appropriate action.
repeated .google.api.servicecontrol.v1.CheckError check_errors = 2;
-
getCheckErrorsCount
int getCheckErrorsCount()
Indicate the decision of the check. If no check errors are present, the service should process the operation. Otherwise the service should use the list of errors to determine the appropriate action.
repeated .google.api.servicecontrol.v1.CheckError check_errors = 2;
-
getCheckErrorsOrBuilderList
List<? extends CheckErrorOrBuilder> getCheckErrorsOrBuilderList()
Indicate the decision of the check. If no check errors are present, the service should process the operation. Otherwise the service should use the list of errors to determine the appropriate action.
repeated .google.api.servicecontrol.v1.CheckError check_errors = 2;
-
getCheckErrorsOrBuilder
CheckErrorOrBuilder getCheckErrorsOrBuilder(int index)
Indicate the decision of the check. If no check errors are present, the service should process the operation. Otherwise the service should use the list of errors to determine the appropriate action.
repeated .google.api.servicecontrol.v1.CheckError check_errors = 2;
-
getServiceConfigId
String getServiceConfigId()
The actual config id used to process the request.
string service_config_id = 5;
- Returns:
- The serviceConfigId.
-
getServiceConfigIdBytes
com.google.protobuf.ByteString getServiceConfigIdBytes()
The actual config id used to process the request.
string service_config_id = 5;
- Returns:
- The bytes for serviceConfigId.
-
getServiceRolloutId
String getServiceRolloutId()
The current service rollout id used to process the request.
string service_rollout_id = 11;
- Returns:
- The serviceRolloutId.
-
getServiceRolloutIdBytes
com.google.protobuf.ByteString getServiceRolloutIdBytes()
The current service rollout id used to process the request.
string service_rollout_id = 11;
- Returns:
- The bytes for serviceRolloutId.
-
hasCheckInfo
boolean hasCheckInfo()
Feedback data returned from the server during processing a Check request.
.google.api.servicecontrol.v1.CheckResponse.CheckInfo check_info = 6;
- Returns:
- Whether the checkInfo field is set.
-
getCheckInfo
CheckResponse.CheckInfo getCheckInfo()
Feedback data returned from the server during processing a Check request.
.google.api.servicecontrol.v1.CheckResponse.CheckInfo check_info = 6;
- Returns:
- The checkInfo.
-
getCheckInfoOrBuilder
CheckResponse.CheckInfoOrBuilder getCheckInfoOrBuilder()
Feedback data returned from the server during processing a Check request.
.google.api.servicecontrol.v1.CheckResponse.CheckInfo check_info = 6;
-
-