com.google.api.servicecontrol.v1.CheckResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of endpoints-management-protos Show documentation
Show all versions of endpoints-management-protos Show documentation
Contains the generated protocol buffer surface used by Endpoints
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/servicecontrol/v1/service_controller.proto
package com.google.api.servicecontrol.v1;
public interface CheckResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.servicecontrol.v1.CheckResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The same operation_id value used in the CheckRequest.
* Used for logging and diagnostics purposes.
*
*
* string operation_id = 1;
*/
java.lang.String getOperationId();
/**
*
* The same operation_id value used in the CheckRequest.
* Used for logging and diagnostics purposes.
*
*
* string operation_id = 1;
*/
com.google.protobuf.ByteString
getOperationIdBytes();
/**
*
* 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;
*/
java.util.List
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;
*/
com.google.api.servicecontrol.v1.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;
*/
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;
*/
java.util.List extends com.google.api.servicecontrol.v1.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;
*/
com.google.api.servicecontrol.v1.CheckErrorOrBuilder getCheckErrorsOrBuilder(
int index);
/**
*
* The actual config id used to process the request.
*
*
* string service_config_id = 5;
*/
java.lang.String getServiceConfigId();
/**
*
* The actual config id used to process the request.
*
*
* string service_config_id = 5;
*/
com.google.protobuf.ByteString
getServiceConfigIdBytes();
/**
*
* Feedback data returned from the server during processing a Check request.
*
*
* .google.api.servicecontrol.v1.CheckResponse.CheckInfo check_info = 6;
*/
boolean hasCheckInfo();
/**
*
* Feedback data returned from the server during processing a Check request.
*
*
* .google.api.servicecontrol.v1.CheckResponse.CheckInfo check_info = 6;
*/
com.google.api.servicecontrol.v1.CheckResponse.CheckInfo getCheckInfo();
/**
*
* Feedback data returned from the server during processing a Check request.
*
*
* .google.api.servicecontrol.v1.CheckResponse.CheckInfo check_info = 6;
*/
com.google.api.servicecontrol.v1.CheckResponse.CheckInfoOrBuilder getCheckInfoOrBuilder();
}