Package com.google.cloud.gkehub.v1beta
Interface GkeHubGrpc.AsyncService
-
- All Known Implementing Classes:
GkeHubGrpc.GkeHubImplBase
- Enclosing class:
- GkeHubGrpc
public static interface GkeHubGrpc.AsyncServiceThe GKE Hub service handles the registration of many Kubernetes clusters to Google Cloud, and the management of multi-cluster features over those clusters. The GKE Hub service operates on the following resources: * [Membership][google.cloud.gkehub.v1beta.Membership] * [Feature][google.cloud.gkehub.v1beta.Feature] GKE Hub is currently only available in the global region. **Membership management may be non-trivial:** it is recommended to use one of the Google-provided client libraries or tools where possible when working with Membership resources.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidcreateFeature(CreateFeatureRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)Adds a new Feature.default voiddeleteFeature(DeleteFeatureRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)Removes a Feature.default voidgetFeature(GetFeatureRequest request, io.grpc.stub.StreamObserver<Feature> responseObserver)Gets details of a single Feature.default voidlistFeatures(ListFeaturesRequest request, io.grpc.stub.StreamObserver<ListFeaturesResponse> responseObserver)Lists Features in a given project and location.default voidupdateFeature(UpdateFeatureRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)Updates an existing Feature.
-
-
-
Method Detail
-
listFeatures
default void listFeatures(ListFeaturesRequest request, io.grpc.stub.StreamObserver<ListFeaturesResponse> responseObserver)
Lists Features in a given project and location.
-
getFeature
default void getFeature(GetFeatureRequest request, io.grpc.stub.StreamObserver<Feature> responseObserver)
Gets details of a single Feature.
-
createFeature
default void createFeature(CreateFeatureRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Adds a new Feature.
-
deleteFeature
default void deleteFeature(DeleteFeatureRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Removes a Feature.
-
updateFeature
default void updateFeature(UpdateFeatureRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Updates an existing Feature.
-
-