- 1.85.0 (latest)
- 1.83.0
- 1.82.0
- 1.81.0
- 1.80.0
- 1.78.0
- 1.76.0
- 1.75.0
- 1.74.0
- 1.73.0
- 1.72.0
- 1.70.0
- 1.68.0
- 1.67.0
- 1.64.0
- 1.63.0
- 1.62.0
- 1.60.0
- 1.59.0
- 1.58.0
- 1.57.0
- 1.56.0
- 1.55.0
- 1.54.0
- 1.53.0
- 1.52.0
- 1.51.0
- 1.49.0
- 1.48.0
- 1.47.0
- 1.46.0
- 1.45.0
- 1.44.0
- 1.43.0
- 1.42.0
- 1.41.0
- 1.40.0
- 1.39.0
- 1.37.0
- 1.36.0
- 1.35.0
- 1.34.0
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.0
- 1.28.0
- 1.27.0
- 1.24.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.0
- 1.12.0
- 1.11.0
- 1.9.0
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.6
- 1.2.1
- 1.1.0
- 1.0.1
- 0.5.4
public class GkeHubSettings extends ClientSettings<GkeHubSettings>Settings class to configure an instance of GkeHubClient.
The default instance has everything set to sensible defaults:
- The default service address (gkehub.googleapis.com) and default port (443) are used.
- Credentials are acquired automatically through Application Default Credentials.
- Retries are configured for idempotent methods but not for non-idempotent methods.
The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.
For example, to set the RetrySettings of getMembership:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
GkeHubSettings.Builder gkeHubSettingsBuilder = GkeHubSettings.newBuilder();
gkeHubSettingsBuilder
.getMembershipSettings()
.setRetrySettings(
gkeHubSettingsBuilder
.getMembershipSettings()
.getRetrySettings()
.toBuilder()
.setInitialRetryDelayDuration(Duration.ofSeconds(1))
.setInitialRpcTimeoutDuration(Duration.ofSeconds(5))
.setMaxAttempts(5)
.setMaxRetryDelayDuration(Duration.ofSeconds(30))
.setMaxRpcTimeoutDuration(Duration.ofSeconds(60))
.setRetryDelayMultiplier(1.3)
.setRpcTimeoutMultiplier(1.5)
.setTotalTimeoutDuration(Duration.ofSeconds(300))
.build());
GkeHubSettings gkeHubSettings = gkeHubSettingsBuilder.build();
Please refer to the Client Side Retry Guide for additional support in setting retries.
To configure the RetrySettings of a Long Running Operation method, create an OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to configure the RetrySettings for createMembership:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
GkeHubSettings.Builder gkeHubSettingsBuilder = GkeHubSettings.newBuilder();
TimedRetryAlgorithm timedRetryAlgorithm =
OperationalTimedPollAlgorithm.create(
RetrySettings.newBuilder()
.setInitialRetryDelayDuration(Duration.ofMillis(500))
.setRetryDelayMultiplier(1.5)
.setMaxRetryDelayDuration(Duration.ofMillis(5000))
.setTotalTimeoutDuration(Duration.ofHours(24))
.build());
gkeHubSettingsBuilder
.createClusterOperationSettings()
.setPollingAlgorithm(timedRetryAlgorithm)
.build();
Static Methods
create(GkeHubStubSettings stub)
public static final GkeHubSettings create(GkeHubStubSettings stub)| Parameter | |
|---|---|
| Name | Description |
stub |
GkeHubStubSettings |
| Returns | |
|---|---|
| Type | Description |
GkeHubSettings |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
defaultApiClientHeaderProviderBuilder()
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()| Returns | |
|---|---|
| Type | Description |
Builder |
|
defaultCredentialsProviderBuilder()
public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()Returns a builder for the default credentials for this service.
| Returns | |
|---|---|
| Type | Description |
Builder |
|
defaultExecutorProviderBuilder()
public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()Returns a builder for the default ExecutorProvider for this service.
| Returns | |
|---|---|
| Type | Description |
Builder |
|
defaultGrpcTransportProviderBuilder()
public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder()Returns a builder for the default gRPC ChannelProvider for this service.
| Returns | |
|---|---|
| Type | Description |
Builder |
|
defaultHttpJsonTransportProviderBuilder()
public static InstantiatingHttpJsonChannelProvider.Builder defaultHttpJsonTransportProviderBuilder()Returns a builder for the default REST ChannelProvider for this service.
| Returns | |
|---|---|
| Type | Description |
Builder |
|
defaultTransportChannelProvider()
public static TransportChannelProvider defaultTransportChannelProvider()| Returns | |
|---|---|
| Type | Description |
TransportChannelProvider |
|
getDefaultEndpoint()
public static String getDefaultEndpoint()Returns the default service endpoint.
| Returns | |
|---|---|
| Type | Description |
String |
|
getDefaultServiceScopes()
public static List<String> getDefaultServiceScopes()Returns the default service scopes.
| Returns | |
|---|---|
| Type | Description |
List<String> |
|
newBuilder()
public static GkeHubSettings.Builder newBuilder()Returns a new gRPC builder for this class.
| Returns | |
|---|---|
| Type | Description |
GkeHubSettings.Builder |
|
newBuilder(ClientContext clientContext)
public static GkeHubSettings.Builder newBuilder(ClientContext clientContext)Returns a new builder for this class.
| Parameter | |
|---|---|
| Name | Description |
clientContext |
ClientContext |
| Returns | |
|---|---|
| Type | Description |
GkeHubSettings.Builder |
|
newHttpJsonBuilder()
public static GkeHubSettings.Builder newHttpJsonBuilder()Returns a new REST builder for this class.
| Returns | |
|---|---|
| Type | Description |
GkeHubSettings.Builder |
|
Constructors
GkeHubSettings(GkeHubSettings.Builder settingsBuilder)
protected GkeHubSettings(GkeHubSettings.Builder settingsBuilder)| Parameter | |
|---|---|
| Name | Description |
settingsBuilder |
GkeHubSettings.Builder |
Methods
createFeatureOperationSettings()
public OperationCallSettings<CreateFeatureRequest,Feature,OperationMetadata> createFeatureOperationSettings()Returns the object with the settings used for calls to createFeature.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<CreateFeatureRequest,Feature,OperationMetadata> |
|
createFeatureSettings()
public UnaryCallSettings<CreateFeatureRequest,Operation> createFeatureSettings()Returns the object with the settings used for calls to createFeature.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<CreateFeatureRequest,Operation> |
|
createFleetOperationSettings()
public OperationCallSettings<CreateFleetRequest,Fleet,OperationMetadata> createFleetOperationSettings()Returns the object with the settings used for calls to createFleet.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<CreateFleetRequest,Fleet,OperationMetadata> |
|
createFleetSettings()
public UnaryCallSettings<CreateFleetRequest,Operation> createFleetSettings()Returns the object with the settings used for calls to createFleet.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<CreateFleetRequest,Operation> |
|
createMembershipBindingOperationSettings()
public OperationCallSettings<CreateMembershipBindingRequest,MembershipBinding,OperationMetadata> createMembershipBindingOperationSettings()Returns the object with the settings used for calls to createMembershipBinding.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<CreateMembershipBindingRequest,MembershipBinding,OperationMetadata> |
|
createMembershipBindingSettings()
public UnaryCallSettings<CreateMembershipBindingRequest,Operation> createMembershipBindingSettings()Returns the object with the settings used for calls to createMembershipBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<CreateMembershipBindingRequest,Operation> |
|
createMembershipOperationSettings()
public OperationCallSettings<CreateMembershipRequest,Membership,OperationMetadata> createMembershipOperationSettings()Returns the object with the settings used for calls to createMembership.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<CreateMembershipRequest,Membership,OperationMetadata> |
|
createMembershipRBACRoleBindingOperationSettings()
public OperationCallSettings<CreateMembershipRBACRoleBindingRequest,RBACRoleBinding,OperationMetadata> createMembershipRBACRoleBindingOperationSettings()Returns the object with the settings used for calls to createMembershipRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<CreateMembershipRBACRoleBindingRequest,RBACRoleBinding,OperationMetadata> |
|
createMembershipRBACRoleBindingSettings()
public UnaryCallSettings<CreateMembershipRBACRoleBindingRequest,Operation> createMembershipRBACRoleBindingSettings()Returns the object with the settings used for calls to createMembershipRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<CreateMembershipRBACRoleBindingRequest,Operation> |
|
createMembershipSettings()
public UnaryCallSettings<CreateMembershipRequest,Operation> createMembershipSettings()Returns the object with the settings used for calls to createMembership.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<CreateMembershipRequest,Operation> |
|
createScopeNamespaceOperationSettings()
public OperationCallSettings<CreateScopeNamespaceRequest,Namespace,OperationMetadata> createScopeNamespaceOperationSettings()Returns the object with the settings used for calls to createScopeNamespace.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<CreateScopeNamespaceRequest,Namespace,OperationMetadata> |
|
createScopeNamespaceSettings()
public UnaryCallSettings<CreateScopeNamespaceRequest,Operation> createScopeNamespaceSettings()Returns the object with the settings used for calls to createScopeNamespace.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<CreateScopeNamespaceRequest,Operation> |
|
createScopeOperationSettings()
public OperationCallSettings<CreateScopeRequest,Scope,OperationMetadata> createScopeOperationSettings()Returns the object with the settings used for calls to createScope.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<CreateScopeRequest,Scope,OperationMetadata> |
|
createScopeRBACRoleBindingOperationSettings()
public OperationCallSettings<CreateScopeRBACRoleBindingRequest,RBACRoleBinding,OperationMetadata> createScopeRBACRoleBindingOperationSettings()Returns the object with the settings used for calls to createScopeRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<CreateScopeRBACRoleBindingRequest,RBACRoleBinding,OperationMetadata> |
|
createScopeRBACRoleBindingSettings()
public UnaryCallSettings<CreateScopeRBACRoleBindingRequest,Operation> createScopeRBACRoleBindingSettings()Returns the object with the settings used for calls to createScopeRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<CreateScopeRBACRoleBindingRequest,Operation> |
|
createScopeSettings()
public UnaryCallSettings<CreateScopeRequest,Operation> createScopeSettings()Returns the object with the settings used for calls to createScope.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<CreateScopeRequest,Operation> |
|
deleteFeatureOperationSettings()
public OperationCallSettings<DeleteFeatureRequest,Empty,OperationMetadata> deleteFeatureOperationSettings()Returns the object with the settings used for calls to deleteFeature.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<DeleteFeatureRequest,Empty,OperationMetadata> |
|
deleteFeatureSettings()
public UnaryCallSettings<DeleteFeatureRequest,Operation> deleteFeatureSettings()Returns the object with the settings used for calls to deleteFeature.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<DeleteFeatureRequest,Operation> |
|
deleteFleetOperationSettings()
public OperationCallSettings<DeleteFleetRequest,Empty,OperationMetadata> deleteFleetOperationSettings()Returns the object with the settings used for calls to deleteFleet.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<DeleteFleetRequest,Empty,OperationMetadata> |
|
deleteFleetSettings()
public UnaryCallSettings<DeleteFleetRequest,Operation> deleteFleetSettings()Returns the object with the settings used for calls to deleteFleet.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<DeleteFleetRequest,Operation> |
|
deleteMembershipBindingOperationSettings()
public OperationCallSettings<DeleteMembershipBindingRequest,Empty,OperationMetadata> deleteMembershipBindingOperationSettings()Returns the object with the settings used for calls to deleteMembershipBinding.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<DeleteMembershipBindingRequest,Empty,OperationMetadata> |
|
deleteMembershipBindingSettings()
public UnaryCallSettings<DeleteMembershipBindingRequest,Operation> deleteMembershipBindingSettings()Returns the object with the settings used for calls to deleteMembershipBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<DeleteMembershipBindingRequest,Operation> |
|
deleteMembershipOperationSettings()
public OperationCallSettings<DeleteMembershipRequest,Empty,OperationMetadata> deleteMembershipOperationSettings()Returns the object with the settings used for calls to deleteMembership.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<DeleteMembershipRequest,Empty,OperationMetadata> |
|
deleteMembershipRBACRoleBindingOperationSettings()
public OperationCallSettings<DeleteMembershipRBACRoleBindingRequest,Empty,OperationMetadata> deleteMembershipRBACRoleBindingOperationSettings()Returns the object with the settings used for calls to deleteMembershipRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<DeleteMembershipRBACRoleBindingRequest,Empty,OperationMetadata> |
|
deleteMembershipRBACRoleBindingSettings()
public UnaryCallSettings<DeleteMembershipRBACRoleBindingRequest,Operation> deleteMembershipRBACRoleBindingSettings()Returns the object with the settings used for calls to deleteMembershipRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<DeleteMembershipRBACRoleBindingRequest,Operation> |
|
deleteMembershipSettings()
public UnaryCallSettings<DeleteMembershipRequest,Operation> deleteMembershipSettings()Returns the object with the settings used for calls to deleteMembership.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<DeleteMembershipRequest,Operation> |
|
deleteScopeNamespaceOperationSettings()
public OperationCallSettings<DeleteScopeNamespaceRequest,Empty,OperationMetadata> deleteScopeNamespaceOperationSettings()Returns the object with the settings used for calls to deleteScopeNamespace.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<DeleteScopeNamespaceRequest,Empty,OperationMetadata> |
|
deleteScopeNamespaceSettings()
public UnaryCallSettings<DeleteScopeNamespaceRequest,Operation> deleteScopeNamespaceSettings()Returns the object with the settings used for calls to deleteScopeNamespace.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<DeleteScopeNamespaceRequest,Operation> |
|
deleteScopeOperationSettings()
public OperationCallSettings<DeleteScopeRequest,Empty,OperationMetadata> deleteScopeOperationSettings()Returns the object with the settings used for calls to deleteScope.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<DeleteScopeRequest,Empty,OperationMetadata> |
|
deleteScopeRBACRoleBindingOperationSettings()
public OperationCallSettings<DeleteScopeRBACRoleBindingRequest,Empty,OperationMetadata> deleteScopeRBACRoleBindingOperationSettings()Returns the object with the settings used for calls to deleteScopeRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<DeleteScopeRBACRoleBindingRequest,Empty,OperationMetadata> |
|
deleteScopeRBACRoleBindingSettings()
public UnaryCallSettings<DeleteScopeRBACRoleBindingRequest,Operation> deleteScopeRBACRoleBindingSettings()Returns the object with the settings used for calls to deleteScopeRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<DeleteScopeRBACRoleBindingRequest,Operation> |
|
deleteScopeSettings()
public UnaryCallSettings<DeleteScopeRequest,Operation> deleteScopeSettings()Returns the object with the settings used for calls to deleteScope.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<DeleteScopeRequest,Operation> |
|
generateConnectManifestSettings()
public UnaryCallSettings<GenerateConnectManifestRequest,GenerateConnectManifestResponse> generateConnectManifestSettings()Returns the object with the settings used for calls to generateConnectManifest.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GenerateConnectManifestRequest,GenerateConnectManifestResponse> |
|
generateMembershipRBACRoleBindingYAMLSettings()
public UnaryCallSettings<GenerateMembershipRBACRoleBindingYAMLRequest,GenerateMembershipRBACRoleBindingYAMLResponse> generateMembershipRBACRoleBindingYAMLSettings()Returns the object with the settings used for calls to generateMembershipRBACRoleBindingYAML.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GenerateMembershipRBACRoleBindingYAMLRequest,GenerateMembershipRBACRoleBindingYAMLResponse> |
|
getFeatureSettings()
public UnaryCallSettings<GetFeatureRequest,Feature> getFeatureSettings()Returns the object with the settings used for calls to getFeature.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GetFeatureRequest,Feature> |
|
getFleetSettings()
public UnaryCallSettings<GetFleetRequest,Fleet> getFleetSettings()Returns the object with the settings used for calls to getFleet.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GetFleetRequest,Fleet> |
|
getMembershipBindingSettings()
public UnaryCallSettings<GetMembershipBindingRequest,MembershipBinding> getMembershipBindingSettings()Returns the object with the settings used for calls to getMembershipBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GetMembershipBindingRequest,MembershipBinding> |
|
getMembershipRBACRoleBindingSettings()
public UnaryCallSettings<GetMembershipRBACRoleBindingRequest,RBACRoleBinding> getMembershipRBACRoleBindingSettings()Returns the object with the settings used for calls to getMembershipRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GetMembershipRBACRoleBindingRequest,RBACRoleBinding> |
|
getMembershipSettings()
public UnaryCallSettings<GetMembershipRequest,Membership> getMembershipSettings()Returns the object with the settings used for calls to getMembership.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GetMembershipRequest,Membership> |
|
getScopeNamespaceSettings()
public UnaryCallSettings<GetScopeNamespaceRequest,Namespace> getScopeNamespaceSettings()Returns the object with the settings used for calls to getScopeNamespace.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GetScopeNamespaceRequest,Namespace> |
|
getScopeRBACRoleBindingSettings()
public UnaryCallSettings<GetScopeRBACRoleBindingRequest,RBACRoleBinding> getScopeRBACRoleBindingSettings()Returns the object with the settings used for calls to getScopeRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GetScopeRBACRoleBindingRequest,RBACRoleBinding> |
|
getScopeSettings()
public UnaryCallSettings<GetScopeRequest,Scope> getScopeSettings()Returns the object with the settings used for calls to getScope.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<GetScopeRequest,Scope> |
|
listBoundMembershipsSettings()
public PagedCallSettings<ListBoundMembershipsRequest,ListBoundMembershipsResponse,GkeHubClient.ListBoundMembershipsPagedResponse> listBoundMembershipsSettings()Returns the object with the settings used for calls to listBoundMemberships.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListBoundMembershipsRequest,ListBoundMembershipsResponse,ListBoundMembershipsPagedResponse> |
|
listFeaturesSettings()
public PagedCallSettings<ListFeaturesRequest,ListFeaturesResponse,GkeHubClient.ListFeaturesPagedResponse> listFeaturesSettings()Returns the object with the settings used for calls to listFeatures.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListFeaturesRequest,ListFeaturesResponse,ListFeaturesPagedResponse> |
|
listFleetsSettings()
public PagedCallSettings<ListFleetsRequest,ListFleetsResponse,GkeHubClient.ListFleetsPagedResponse> listFleetsSettings()Returns the object with the settings used for calls to listFleets.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListFleetsRequest,ListFleetsResponse,ListFleetsPagedResponse> |
|
listMembershipBindingsSettings()
public PagedCallSettings<ListMembershipBindingsRequest,ListMembershipBindingsResponse,GkeHubClient.ListMembershipBindingsPagedResponse> listMembershipBindingsSettings()Returns the object with the settings used for calls to listMembershipBindings.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListMembershipBindingsRequest,ListMembershipBindingsResponse,ListMembershipBindingsPagedResponse> |
|
listMembershipRBACRoleBindingsSettings()
public PagedCallSettings<ListMembershipRBACRoleBindingsRequest,ListMembershipRBACRoleBindingsResponse,GkeHubClient.ListMembershipRBACRoleBindingsPagedResponse> listMembershipRBACRoleBindingsSettings()Returns the object with the settings used for calls to listMembershipRBACRoleBindings.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListMembershipRBACRoleBindingsRequest,ListMembershipRBACRoleBindingsResponse,ListMembershipRBACRoleBindingsPagedResponse> |
|
listMembershipsSettings()
public PagedCallSettings<ListMembershipsRequest,ListMembershipsResponse,GkeHubClient.ListMembershipsPagedResponse> listMembershipsSettings()Returns the object with the settings used for calls to listMemberships.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListMembershipsRequest,ListMembershipsResponse,ListMembershipsPagedResponse> |
|
listPermittedScopesSettings()
public PagedCallSettings<ListPermittedScopesRequest,ListPermittedScopesResponse,GkeHubClient.ListPermittedScopesPagedResponse> listPermittedScopesSettings()Returns the object with the settings used for calls to listPermittedScopes.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListPermittedScopesRequest,ListPermittedScopesResponse,ListPermittedScopesPagedResponse> |
|
listScopeNamespacesSettings()
public PagedCallSettings<ListScopeNamespacesRequest,ListScopeNamespacesResponse,GkeHubClient.ListScopeNamespacesPagedResponse> listScopeNamespacesSettings()Returns the object with the settings used for calls to listScopeNamespaces.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListScopeNamespacesRequest,ListScopeNamespacesResponse,ListScopeNamespacesPagedResponse> |
|
listScopeRBACRoleBindingsSettings()
public PagedCallSettings<ListScopeRBACRoleBindingsRequest,ListScopeRBACRoleBindingsResponse,GkeHubClient.ListScopeRBACRoleBindingsPagedResponse> listScopeRBACRoleBindingsSettings()Returns the object with the settings used for calls to listScopeRBACRoleBindings.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListScopeRBACRoleBindingsRequest,ListScopeRBACRoleBindingsResponse,ListScopeRBACRoleBindingsPagedResponse> |
|
listScopesSettings()
public PagedCallSettings<ListScopesRequest,ListScopesResponse,GkeHubClient.ListScopesPagedResponse> listScopesSettings()Returns the object with the settings used for calls to listScopes.
| Returns | |
|---|---|
| Type | Description |
PagedCallSettings<ListScopesRequest,ListScopesResponse,ListScopesPagedResponse> |
|
toBuilder()
public GkeHubSettings.Builder toBuilder()Returns a builder containing all the values of this settings class.
| Returns | |
|---|---|
| Type | Description |
GkeHubSettings.Builder |
|
updateFeatureOperationSettings()
public OperationCallSettings<UpdateFeatureRequest,Feature,OperationMetadata> updateFeatureOperationSettings()Returns the object with the settings used for calls to updateFeature.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<UpdateFeatureRequest,Feature,OperationMetadata> |
|
updateFeatureSettings()
public UnaryCallSettings<UpdateFeatureRequest,Operation> updateFeatureSettings()Returns the object with the settings used for calls to updateFeature.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<UpdateFeatureRequest,Operation> |
|
updateFleetOperationSettings()
public OperationCallSettings<UpdateFleetRequest,Fleet,OperationMetadata> updateFleetOperationSettings()Returns the object with the settings used for calls to updateFleet.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<UpdateFleetRequest,Fleet,OperationMetadata> |
|
updateFleetSettings()
public UnaryCallSettings<UpdateFleetRequest,Operation> updateFleetSettings()Returns the object with the settings used for calls to updateFleet.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<UpdateFleetRequest,Operation> |
|
updateMembershipBindingOperationSettings()
public OperationCallSettings<UpdateMembershipBindingRequest,MembershipBinding,OperationMetadata> updateMembershipBindingOperationSettings()Returns the object with the settings used for calls to updateMembershipBinding.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<UpdateMembershipBindingRequest,MembershipBinding,OperationMetadata> |
|
updateMembershipBindingSettings()
public UnaryCallSettings<UpdateMembershipBindingRequest,Operation> updateMembershipBindingSettings()Returns the object with the settings used for calls to updateMembershipBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<UpdateMembershipBindingRequest,Operation> |
|
updateMembershipOperationSettings()
public OperationCallSettings<UpdateMembershipRequest,Membership,OperationMetadata> updateMembershipOperationSettings()Returns the object with the settings used for calls to updateMembership.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<UpdateMembershipRequest,Membership,OperationMetadata> |
|
updateMembershipRBACRoleBindingOperationSettings()
public OperationCallSettings<UpdateMembershipRBACRoleBindingRequest,RBACRoleBinding,OperationMetadata> updateMembershipRBACRoleBindingOperationSettings()Returns the object with the settings used for calls to updateMembershipRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<UpdateMembershipRBACRoleBindingRequest,RBACRoleBinding,OperationMetadata> |
|
updateMembershipRBACRoleBindingSettings()
public UnaryCallSettings<UpdateMembershipRBACRoleBindingRequest,Operation> updateMembershipRBACRoleBindingSettings()Returns the object with the settings used for calls to updateMembershipRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<UpdateMembershipRBACRoleBindingRequest,Operation> |
|
updateMembershipSettings()
public UnaryCallSettings<UpdateMembershipRequest,Operation> updateMembershipSettings()Returns the object with the settings used for calls to updateMembership.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<UpdateMembershipRequest,Operation> |
|
updateScopeNamespaceOperationSettings()
public OperationCallSettings<UpdateScopeNamespaceRequest,Namespace,OperationMetadata> updateScopeNamespaceOperationSettings()Returns the object with the settings used for calls to updateScopeNamespace.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<UpdateScopeNamespaceRequest,Namespace,OperationMetadata> |
|
updateScopeNamespaceSettings()
public UnaryCallSettings<UpdateScopeNamespaceRequest,Operation> updateScopeNamespaceSettings()Returns the object with the settings used for calls to updateScopeNamespace.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<UpdateScopeNamespaceRequest,Operation> |
|
updateScopeOperationSettings()
public OperationCallSettings<UpdateScopeRequest,Scope,OperationMetadata> updateScopeOperationSettings()Returns the object with the settings used for calls to updateScope.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<UpdateScopeRequest,Scope,OperationMetadata> |
|
updateScopeRBACRoleBindingOperationSettings()
public OperationCallSettings<UpdateScopeRBACRoleBindingRequest,RBACRoleBinding,OperationMetadata> updateScopeRBACRoleBindingOperationSettings()Returns the object with the settings used for calls to updateScopeRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
OperationCallSettings<UpdateScopeRBACRoleBindingRequest,RBACRoleBinding,OperationMetadata> |
|
updateScopeRBACRoleBindingSettings()
public UnaryCallSettings<UpdateScopeRBACRoleBindingRequest,Operation> updateScopeRBACRoleBindingSettings()Returns the object with the settings used for calls to updateScopeRBACRoleBinding.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<UpdateScopeRBACRoleBindingRequest,Operation> |
|
updateScopeSettings()
public UnaryCallSettings<UpdateScopeRequest,Operation> updateScopeSettings()Returns the object with the settings used for calls to updateScope.
| Returns | |
|---|---|
| Type | Description |
UnaryCallSettings<UpdateScopeRequest,Operation> |
|