@Generated("by gapic-generator-java")

Package com.google.api.servicecontrol.v1

A client to Service Control API

The interfaces provided are listed below, along with usage samples.

======================= QuotaControllerClient =======================

Service Description: [Google Quota Control API](/service-control/overview)

Allows clients to allocate and release quota against a [managed service](https://cloud.google.com/service-management/reference/rpc/google.api/servicemanagement.v1#google.api.servicemanagement.v1.ManagedService).

Sample for QuotaControllerClient:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (QuotaControllerClient quotaControllerClient = QuotaControllerClient.create()) {
   AllocateQuotaRequest request =
       AllocateQuotaRequest.newBuilder()
           .setServiceName("serviceName-1928572192")
           .setAllocateOperation(QuotaOperation.newBuilder().build())
           .setServiceConfigId("serviceConfigId650537426")
           .build();
   AllocateQuotaResponse response = quotaControllerClient.allocateQuota(request);
 }
 

======================= ServiceControllerClient =======================

Service Description: [Google Service Control API](/service-control/overview)

Lets clients check and report operations against a [managed service](https://cloud.google.com/service-management/reference/rpc/google.api/servicemanagement.v1#google.api.servicemanagement.v1.ManagedService).

Sample for ServiceControllerClient:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 try (ServiceControllerClient serviceControllerClient = ServiceControllerClient.create()) {
   CheckRequest request =
       CheckRequest.newBuilder()
           .setServiceName("serviceName-1928572192")
           .setOperation(Operation.newBuilder().build())
           .setServiceConfigId("serviceConfigId650537426")
           .build();
   CheckResponse response = serviceControllerClient.check(request);
 }