Struct google_api_proto::google::cloud::gkehub::v1::gke_hub_client::GkeHubClient
source · pub struct GkeHubClient<T> { /* private fields */ }
Expand description
The 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.v1.Membership]
- [Feature][google.cloud.gkehub.v1.Feature]
GKE Hub is currently available in the global region and all regions in https://cloud.google.com/compute/docs/regions-zones. Feature is only available in global region while membership is global region and all the regions.
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.
Implementations§
source§impl<T> GkeHubClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
impl<T> GkeHubClient<T>where
T: GrpcService<BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
pub fn new(inner: T) -> Self
pub fn with_origin(inner: T, origin: Uri) -> Self
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> GkeHubClient<InterceptedService<T, F>>where
F: Interceptor,
T::ResponseBody: Default,
T: Service<Request<BoxBody>, Response = Response<<T as GrpcService<BoxBody>>::ResponseBody>>,
<T as Service<Request<BoxBody>>>::Error: Into<StdError> + Send + Sync,
sourcepub fn send_compressed(self, encoding: CompressionEncoding) -> Self
pub fn send_compressed(self, encoding: CompressionEncoding) -> Self
Compress requests with the given encoding.
This requires the server to support it otherwise it might respond with an error.
sourcepub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
pub fn accept_compressed(self, encoding: CompressionEncoding) -> Self
Enable decompressing responses.
sourcepub fn max_decoding_message_size(self, limit: usize) -> Self
pub fn max_decoding_message_size(self, limit: usize) -> Self
Limits the maximum size of a decoded message.
Default: 4MB
sourcepub fn max_encoding_message_size(self, limit: usize) -> Self
pub fn max_encoding_message_size(self, limit: usize) -> Self
Limits the maximum size of an encoded message.
Default: usize::MAX
sourcepub async fn list_memberships(
&mut self,
request: impl IntoRequest<ListMembershipsRequest>,
) -> Result<Response<ListMembershipsResponse>, Status>
pub async fn list_memberships( &mut self, request: impl IntoRequest<ListMembershipsRequest>, ) -> Result<Response<ListMembershipsResponse>, Status>
Lists Memberships in a given project and location.
sourcepub async fn list_features(
&mut self,
request: impl IntoRequest<ListFeaturesRequest>,
) -> Result<Response<ListFeaturesResponse>, Status>
pub async fn list_features( &mut self, request: impl IntoRequest<ListFeaturesRequest>, ) -> Result<Response<ListFeaturesResponse>, Status>
Lists Features in a given project and location.
sourcepub async fn get_membership(
&mut self,
request: impl IntoRequest<GetMembershipRequest>,
) -> Result<Response<Membership>, Status>
pub async fn get_membership( &mut self, request: impl IntoRequest<GetMembershipRequest>, ) -> Result<Response<Membership>, Status>
Gets the details of a Membership.
sourcepub async fn get_feature(
&mut self,
request: impl IntoRequest<GetFeatureRequest>,
) -> Result<Response<Feature>, Status>
pub async fn get_feature( &mut self, request: impl IntoRequest<GetFeatureRequest>, ) -> Result<Response<Feature>, Status>
Gets details of a single Feature.
sourcepub async fn create_membership(
&mut self,
request: impl IntoRequest<CreateMembershipRequest>,
) -> Result<Response<Operation>, Status>
pub async fn create_membership( &mut self, request: impl IntoRequest<CreateMembershipRequest>, ) -> Result<Response<Operation>, Status>
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.
sourcepub async fn create_feature(
&mut self,
request: impl IntoRequest<CreateFeatureRequest>,
) -> Result<Response<Operation>, Status>
pub async fn create_feature( &mut self, request: impl IntoRequest<CreateFeatureRequest>, ) -> Result<Response<Operation>, Status>
Adds a new Feature.
sourcepub async fn delete_membership(
&mut self,
request: impl IntoRequest<DeleteMembershipRequest>,
) -> Result<Response<Operation>, Status>
pub async fn delete_membership( &mut self, request: impl IntoRequest<DeleteMembershipRequest>, ) -> Result<Response<Operation>, Status>
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.
sourcepub async fn delete_feature(
&mut self,
request: impl IntoRequest<DeleteFeatureRequest>,
) -> Result<Response<Operation>, Status>
pub async fn delete_feature( &mut self, request: impl IntoRequest<DeleteFeatureRequest>, ) -> Result<Response<Operation>, Status>
Removes a Feature.
sourcepub async fn update_membership(
&mut self,
request: impl IntoRequest<UpdateMembershipRequest>,
) -> Result<Response<Operation>, Status>
pub async fn update_membership( &mut self, request: impl IntoRequest<UpdateMembershipRequest>, ) -> Result<Response<Operation>, Status>
Updates an existing Membership.
sourcepub async fn update_feature(
&mut self,
request: impl IntoRequest<UpdateFeatureRequest>,
) -> Result<Response<Operation>, Status>
pub async fn update_feature( &mut self, request: impl IntoRequest<UpdateFeatureRequest>, ) -> Result<Response<Operation>, Status>
Updates an existing Feature.
sourcepub async fn generate_connect_manifest(
&mut self,
request: impl IntoRequest<GenerateConnectManifestRequest>,
) -> Result<Response<GenerateConnectManifestResponse>, Status>
pub async fn generate_connect_manifest( &mut self, request: impl IntoRequest<GenerateConnectManifestRequest>, ) -> Result<Response<GenerateConnectManifestResponse>, Status>
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.
Trait Implementations§
source§impl<T: Clone> Clone for GkeHubClient<T>
impl<T: Clone> Clone for GkeHubClient<T>
source§fn clone(&self) -> GkeHubClient<T>
fn clone(&self) -> GkeHubClient<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<T> !Freeze for GkeHubClient<T>
impl<T> RefUnwindSafe for GkeHubClient<T>where
T: RefUnwindSafe,
impl<T> Send for GkeHubClient<T>where
T: Send,
impl<T> Sync for GkeHubClient<T>where
T: Sync,
impl<T> Unpin for GkeHubClient<T>where
T: Unpin,
impl<T> UnwindSafe for GkeHubClient<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request