Package com.google.cloud.gkehub.v1alpha2
Class GkeHubGrpc.GkeHubBlockingStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractBlockingStub<GkeHubGrpc.GkeHubBlockingStub>
-
- com.google.cloud.gkehub.v1alpha2.GkeHubGrpc.GkeHubBlockingStub
-
- Enclosing class:
- GkeHubGrpc
public static final class GkeHubGrpc.GkeHubBlockingStub extends io.grpc.stub.AbstractBlockingStub<GkeHubGrpc.GkeHubBlockingStub>
A stub to allow clients to do synchronous rpc calls to service GkeHub.The GKE Hub service handles the registration of many Kubernetes clusters to Google Cloud, represented with the [Membership][google.cloud.gkehub.v1alpha2.Membership] resource. 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 Concrete Methods Modifier and Type Method Description protected GkeHubGrpc.GkeHubBlockingStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
com.google.longrunning.Operation
createMembership(CreateMembershipRequest request)
Creates a new Membership.com.google.longrunning.Operation
deleteMembership(DeleteMembershipRequest request)
Removes a Membership.GenerateConnectManifestResponse
generateConnectManifest(GenerateConnectManifestRequest request)
Generates the manifest for deployment of the GKE connect agent.Membership
getMembership(GetMembershipRequest request)
Gets the details of a Membership.InitializeHubResponse
initializeHub(InitializeHubRequest request)
Initializes the Hub in this project, which includes creating the default Hub Service Account and the Hub Workload Identity Pool.ListMembershipsResponse
listMemberships(ListMembershipsRequest request)
Lists Memberships in a given project and location.com.google.longrunning.Operation
updateMembership(UpdateMembershipRequest request)
Updates an existing Membership.
-
-
-
Method Detail
-
build
protected GkeHubGrpc.GkeHubBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<GkeHubGrpc.GkeHubBlockingStub>
-
listMemberships
public ListMembershipsResponse listMemberships(ListMembershipsRequest request)
Lists Memberships in a given project and location.
-
getMembership
public Membership getMembership(GetMembershipRequest request)
Gets the details of a Membership.
-
createMembership
public com.google.longrunning.Operation createMembership(CreateMembershipRequest request)
Creates a new Membership. **This is currently only supported for GKE clusters on Google Cloud**. To register other clusters, follow the instructions at https://cloud.google.com/anthos/multicluster-management/connect/registering-a-cluster.
-
deleteMembership
public com.google.longrunning.Operation deleteMembership(DeleteMembershipRequest request)
Removes a Membership. **This is currently only supported for GKE clusters on Google Cloud**. To unregister other clusters, follow the instructions at https://cloud.google.com/anthos/multicluster-management/connect/unregistering-a-cluster.
-
updateMembership
public com.google.longrunning.Operation updateMembership(UpdateMembershipRequest request)
Updates an existing Membership.
-
generateConnectManifest
public GenerateConnectManifestResponse generateConnectManifest(GenerateConnectManifestRequest request)
Generates the manifest for deployment of the GKE connect agent. **This method is used internally by Google-provided libraries.** Most clients should not need to call this method directly.
-
initializeHub
public InitializeHubResponse initializeHub(InitializeHubRequest request)
Initializes the Hub in this project, which includes creating the default Hub Service Account and the Hub Workload Identity Pool. Initialization is optional, and happens automatically when the first Membership is created. InitializeHub should be called when the first Membership cannot be registered without these resources. A common example is granting the Hub Service Account access to another project, which requires the account to exist first.
-
-