Package com.google.api.servicecontrol.v1
Interface CheckRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CheckRequest
,CheckRequest.Builder
public interface CheckRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Operation
getOperation()
The operation to be checked.OperationOrBuilder
getOperationOrBuilder()
The operation to be checked.String
getServiceConfigId()
Specifies which version of service configuration should be used to process the request.com.google.protobuf.ByteString
getServiceConfigIdBytes()
Specifies which version of service configuration should be used to process the request.String
getServiceName()
The service name as specified in its service configuration.com.google.protobuf.ByteString
getServiceNameBytes()
The service name as specified in its service configuration.boolean
hasOperation()
The operation to be checked.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServiceName
String getServiceName()
The service name as specified in its service configuration. For example, `"pubsub.googleapis.com"`. See [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service) for the definition of a service name.
string service_name = 1;
- Returns:
- The serviceName.
-
getServiceNameBytes
com.google.protobuf.ByteString getServiceNameBytes()
The service name as specified in its service configuration. For example, `"pubsub.googleapis.com"`. See [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service) for the definition of a service name.
string service_name = 1;
- Returns:
- The bytes for serviceName.
-
hasOperation
boolean hasOperation()
The operation to be checked.
.google.api.servicecontrol.v1.Operation operation = 2;
- Returns:
- Whether the operation field is set.
-
getOperation
Operation getOperation()
The operation to be checked.
.google.api.servicecontrol.v1.Operation operation = 2;
- Returns:
- The operation.
-
getOperationOrBuilder
OperationOrBuilder getOperationOrBuilder()
The operation to be checked.
.google.api.servicecontrol.v1.Operation operation = 2;
-
getServiceConfigId
String getServiceConfigId()
Specifies which version of service configuration should be used to process the request. If unspecified or no matching version can be found, the latest one will be used.
string service_config_id = 4;
- Returns:
- The serviceConfigId.
-
getServiceConfigIdBytes
com.google.protobuf.ByteString getServiceConfigIdBytes()
Specifies which version of service configuration should be used to process the request. If unspecified or no matching version can be found, the latest one will be used.
string service_config_id = 4;
- Returns:
- The bytes for serviceConfigId.
-
-