Package com.google.api.servicecontrol.v2
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 com.google.rpc.context.AttributeContextgetAttributes()Describes attributes about the operation being executed by the service.com.google.rpc.context.AttributeContextOrBuildergetAttributesOrBuilder()Describes attributes about the operation being executed by the service.StringgetFlags()Optional.com.google.protobuf.ByteStringgetFlagsBytes()Optional.ResourceInfogetResources(int index)Describes the resources and the policies applied to each resource.intgetResourcesCount()Describes the resources and the policies applied to each resource.List<ResourceInfo>getResourcesList()Describes the resources and the policies applied to each resource.ResourceInfoOrBuildergetResourcesOrBuilder(int index)Describes the resources and the policies applied to each resource.List<? extends ResourceInfoOrBuilder>getResourcesOrBuilderList()Describes the resources and the policies applied to each resource.StringgetServiceConfigId()Specifies the version of the service configuration that should be used to process the request.com.google.protobuf.ByteStringgetServiceConfigIdBytes()Specifies the version of the service configuration that should be used to process the request.StringgetServiceName()The service name as specified in its service configuration.com.google.protobuf.ByteStringgetServiceNameBytes()The service name as specified in its service configuration.booleanhasAttributes()Describes attributes about the operation being executed by the service.-
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.
-
getServiceConfigId
String getServiceConfigId()
Specifies the version of the service configuration that should be used to process the request. Must not be empty. Set this field to 'latest' to specify using the latest configuration.
string service_config_id = 2;- Returns:
- The serviceConfigId.
-
getServiceConfigIdBytes
com.google.protobuf.ByteString getServiceConfigIdBytes()
Specifies the version of the service configuration that should be used to process the request. Must not be empty. Set this field to 'latest' to specify using the latest configuration.
string service_config_id = 2;- Returns:
- The bytes for serviceConfigId.
-
hasAttributes
boolean hasAttributes()
Describes attributes about the operation being executed by the service.
.google.rpc.context.AttributeContext attributes = 3;- Returns:
- Whether the attributes field is set.
-
getAttributes
com.google.rpc.context.AttributeContext getAttributes()
Describes attributes about the operation being executed by the service.
.google.rpc.context.AttributeContext attributes = 3;- Returns:
- The attributes.
-
getAttributesOrBuilder
com.google.rpc.context.AttributeContextOrBuilder getAttributesOrBuilder()
Describes attributes about the operation being executed by the service.
.google.rpc.context.AttributeContext attributes = 3;
-
getResourcesList
List<ResourceInfo> getResourcesList()
Describes the resources and the policies applied to each resource.
repeated .google.api.servicecontrol.v2.ResourceInfo resources = 4;
-
getResources
ResourceInfo getResources(int index)
Describes the resources and the policies applied to each resource.
repeated .google.api.servicecontrol.v2.ResourceInfo resources = 4;
-
getResourcesCount
int getResourcesCount()
Describes the resources and the policies applied to each resource.
repeated .google.api.servicecontrol.v2.ResourceInfo resources = 4;
-
getResourcesOrBuilderList
List<? extends ResourceInfoOrBuilder> getResourcesOrBuilderList()
Describes the resources and the policies applied to each resource.
repeated .google.api.servicecontrol.v2.ResourceInfo resources = 4;
-
getResourcesOrBuilder
ResourceInfoOrBuilder getResourcesOrBuilder(int index)
Describes the resources and the policies applied to each resource.
repeated .google.api.servicecontrol.v2.ResourceInfo resources = 4;
-
getFlags
String getFlags()
Optional. Contains a comma-separated list of flags.
string flags = 5;- Returns:
- The flags.
-
getFlagsBytes
com.google.protobuf.ByteString getFlagsBytes()
Optional. Contains a comma-separated list of flags.
string flags = 5;- Returns:
- The bytes for flags.
-
-