Package com.google.api.serviceusage.v1
Interface ServiceUsageGrpc.AsyncService
-
- All Known Implementing Classes:
ServiceUsageGrpc.ServiceUsageImplBase
- Enclosing class:
- ServiceUsageGrpc
public static interface ServiceUsageGrpc.AsyncService
Enables services that service consumers want to use on Google Cloud Platform, lists the available or enabled services, or disables services that service consumers no longer use. See [Service Usage API](https://cloud.google.com/service-usage/docs/overview)
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
batchEnableServices(BatchEnableServicesRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Enable multiple services on a project.default void
batchGetServices(BatchGetServicesRequest request, io.grpc.stub.StreamObserver<BatchGetServicesResponse> responseObserver)
Returns the service configurations and enabled states for a given list of services.default void
disableService(DisableServiceRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Disable a service so that it can no longer be used with a project.default void
enableService(EnableServiceRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Enable a service so that it can be used with a project.default void
getService(GetServiceRequest request, io.grpc.stub.StreamObserver<Service> responseObserver)
Returns the service configuration and enabled state for a given service.default void
listServices(ListServicesRequest request, io.grpc.stub.StreamObserver<ListServicesResponse> responseObserver)
List all services available to the specified project, and the current state of those services with respect to the project.
-
-
-
Method Detail
-
enableService
default void enableService(EnableServiceRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Enable a service so that it can be used with a project.
-
disableService
default void disableService(DisableServiceRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Disable a service so that it can no longer be used with a project. This prevents unintended usage that may cause unexpected billing charges or security leaks. It is not valid to call the disable method on a service that is not currently enabled. Callers will receive a `FAILED_PRECONDITION` status if the target service is not currently enabled.
-
getService
default void getService(GetServiceRequest request, io.grpc.stub.StreamObserver<Service> responseObserver)
Returns the service configuration and enabled state for a given service.
-
listServices
default void listServices(ListServicesRequest request, io.grpc.stub.StreamObserver<ListServicesResponse> responseObserver)
List all services available to the specified project, and the current state of those services with respect to the project. The list includes all public services, all services for which the calling user has the `servicemanagement.services.bind` permission, and all services that have already been enabled on the project. The list can be filtered to only include services in a specific state, for example to only include services enabled on the project. WARNING: If you need to query enabled services frequently or across an organization, you should use [Cloud Asset Inventory API](https://cloud.google.com/asset-inventory/docs/apis), which provides higher throughput and richer filtering capability.
-
batchEnableServices
default void batchEnableServices(BatchEnableServicesRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Enable multiple services on a project. The operation is atomic: if enabling any service fails, then the entire batch fails, and no state changes occur. To enable a single service, use the `EnableService` method instead.
-
batchGetServices
default void batchGetServices(BatchGetServicesRequest request, io.grpc.stub.StreamObserver<BatchGetServicesResponse> responseObserver)
Returns the service configurations and enabled states for a given list of services.
-
-