Package com.google.api.servicecontrol.v1
Interface AllocateQuotaRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AllocateQuotaRequest
,AllocateQuotaRequest.Builder
public interface AllocateQuotaRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QuotaOperation
getAllocateOperation()
Operation that describes the quota allocation.QuotaOperationOrBuilder
getAllocateOperationOrBuilder()
Operation that describes the quota allocation.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()
Name of the service as specified in the service configuration.com.google.protobuf.ByteString
getServiceNameBytes()
Name of the service as specified in the service configuration.boolean
hasAllocateOperation()
Operation that describes the quota allocation.-
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()
Name of the service as specified in the service configuration. For example, `"pubsub.googleapis.com"`. See [google.api.Service][google.api.Service] for the definition of a service name.
string service_name = 1;
- Returns:
- The serviceName.
-
getServiceNameBytes
com.google.protobuf.ByteString getServiceNameBytes()
Name of the service as specified in the service configuration. For example, `"pubsub.googleapis.com"`. See [google.api.Service][google.api.Service] for the definition of a service name.
string service_name = 1;
- Returns:
- The bytes for serviceName.
-
hasAllocateOperation
boolean hasAllocateOperation()
Operation that describes the quota allocation.
.google.api.servicecontrol.v1.QuotaOperation allocate_operation = 2;
- Returns:
- Whether the allocateOperation field is set.
-
getAllocateOperation
QuotaOperation getAllocateOperation()
Operation that describes the quota allocation.
.google.api.servicecontrol.v1.QuotaOperation allocate_operation = 2;
- Returns:
- The allocateOperation.
-
getAllocateOperationOrBuilder
QuotaOperationOrBuilder getAllocateOperationOrBuilder()
Operation that describes the quota allocation.
.google.api.servicecontrol.v1.QuotaOperation allocate_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.
-
-