- 2.53.0 (latest)
- 2.52.0
- 2.51.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.40.0
- 2.39.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.29.0
- 2.28.0
- 2.27.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.7
- 2.2.8
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
Methods
batchEnableServices(BatchEnableServicesRequest request, StreamObserver<Operation> responseObserver)
public default void batchEnableServices(BatchEnableServicesRequest request, StreamObserver<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.
Parameters | |
---|---|
Name | Description |
request | BatchEnableServicesRequest |
responseObserver | io.grpc.stub.StreamObserver<Operation> |
batchGetServices(BatchGetServicesRequest request, StreamObserver<BatchGetServicesResponse> responseObserver)
public default void batchGetServices(BatchGetServicesRequest request, StreamObserver<BatchGetServicesResponse> responseObserver)
Returns the service configurations and enabled states for a given list of services.
Parameters | |
---|---|
Name | Description |
request | BatchGetServicesRequest |
responseObserver | io.grpc.stub.StreamObserver<BatchGetServicesResponse> |
disableService(DisableServiceRequest request, StreamObserver<Operation> responseObserver)
public default void disableService(DisableServiceRequest request, StreamObserver<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.
Parameters | |
---|---|
Name | Description |
request | DisableServiceRequest |
responseObserver | io.grpc.stub.StreamObserver<Operation> |
enableService(EnableServiceRequest request, StreamObserver<Operation> responseObserver)
public default void enableService(EnableServiceRequest request, StreamObserver<Operation> responseObserver)
Enable a service so that it can be used with a project.
Parameters | |
---|---|
Name | Description |
request | EnableServiceRequest |
responseObserver | io.grpc.stub.StreamObserver<Operation> |
getService(GetServiceRequest request, StreamObserver<Service> responseObserver)
public default void getService(GetServiceRequest request, StreamObserver<Service> responseObserver)
Returns the service configuration and enabled state for a given service.
Parameters | |
---|---|
Name | Description |
request | GetServiceRequest |
responseObserver | io.grpc.stub.StreamObserver<Service> |
listServices(ListServicesRequest request, StreamObserver<ListServicesResponse> responseObserver)
public default void listServices(ListServicesRequest request, 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, which provides
higher throughput and richer filtering capability.
Parameters | |
---|---|
Name | Description |
request | ListServicesRequest |
responseObserver | io.grpc.stub.StreamObserver<ListServicesResponse> |