Package com.google.appengine.v1
Interface ServicesGrpc.AsyncService
-
- All Known Implementing Classes:
ServicesGrpc.ServicesImplBase
- Enclosing class:
- ServicesGrpc
public static interface ServicesGrpc.AsyncService
Manages services of an application.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
deleteService(DeleteServiceRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Deletes the specified service and all enclosed versions.default void
getService(GetServiceRequest request, io.grpc.stub.StreamObserver<Service> responseObserver)
Gets the current configuration of the specified service.default void
listServices(ListServicesRequest request, io.grpc.stub.StreamObserver<ListServicesResponse> responseObserver)
Lists all the services in the application.default void
updateService(UpdateServiceRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Updates the configuration of the specified service.
-
-
-
Method Detail
-
listServices
default void listServices(ListServicesRequest request, io.grpc.stub.StreamObserver<ListServicesResponse> responseObserver)
Lists all the services in the application.
-
getService
default void getService(GetServiceRequest request, io.grpc.stub.StreamObserver<Service> responseObserver)
Gets the current configuration of the specified service.
-
updateService
default void updateService(UpdateServiceRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Updates the configuration of the specified service.
-
deleteService
default void deleteService(DeleteServiceRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Deletes the specified service and all enclosed versions.
-
-