Class NodeGroupsSettings (1.7.2)

public class NodeGroupsSettings extends ClientSettings<NodeGroupsSettings>

Settings class to configure an instance of NodeGroupsClient.

The default instance has everything set to sensible defaults:

  • The default service address (compute.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 total timeout of get to 30 seconds:


 NodeGroupsSettings.Builder nodeGroupsSettingsBuilder = NodeGroupsSettings.newBuilder();
 nodeGroupsSettingsBuilder
     .getSettings()
     .setRetrySettings(
         nodeGroupsSettingsBuilder
             .getSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 NodeGroupsSettings nodeGroupsSettings = nodeGroupsSettingsBuilder.build();
 

Inheritance

java.lang.Object > ClientSettings > NodeGroupsSettings

Static Methods

create(NodeGroupsStubSettings stub)

public static final NodeGroupsSettings create(NodeGroupsStubSettings stub)
Parameter
NameDescription
stubNodeGroupsStubSettings
Returns
TypeDescription
NodeGroupsSettings
Exceptions
TypeDescription
IOException

defaultApiClientHeaderProviderBuilder()

public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()
Returns
TypeDescription
Builder

defaultCredentialsProviderBuilder()

public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()

Returns a builder for the default credentials for this service.

Returns
TypeDescription
Builder

defaultExecutorProviderBuilder()

public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()

Returns a builder for the default ExecutorProvider for this service.

Returns
TypeDescription
Builder

defaultHttpJsonTransportProviderBuilder()

public static InstantiatingHttpJsonChannelProvider.Builder defaultHttpJsonTransportProviderBuilder()

Returns a builder for the default ChannelProvider for this service.

Returns
TypeDescription
Builder

defaultTransportChannelProvider()

public static TransportChannelProvider defaultTransportChannelProvider()
Returns

getDefaultEndpoint()

public static String getDefaultEndpoint()

Returns the default service endpoint.

Returns
TypeDescription
String

getDefaultServiceScopes()

public static List<String> getDefaultServiceScopes()

Returns the default service scopes.

Returns
TypeDescription
List<String>

newBuilder()

public static NodeGroupsSettings.Builder newBuilder()

Returns a new builder for this class.

Returns

newBuilder(ClientContext clientContext)

public static NodeGroupsSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
NameDescription
clientContextClientContext
Returns

Constructors

NodeGroupsSettings(NodeGroupsSettings.Builder settingsBuilder)

protected NodeGroupsSettings(NodeGroupsSettings.Builder settingsBuilder)
Parameter
NameDescription
settingsBuilderNodeGroupsSettings.Builder

Methods

addNodesOperationSettings()

public OperationCallSettings<AddNodesNodeGroupRequest,Operation,Operation> addNodesOperationSettings()

Returns the object with the settings used for calls to addNodes.

Returns

addNodesSettings()

public UnaryCallSettings<AddNodesNodeGroupRequest,Operation> addNodesSettings()

Returns the object with the settings used for calls to addNodes.

Returns

aggregatedListSettings()

public PagedCallSettings<AggregatedListNodeGroupsRequest,NodeGroupAggregatedList,NodeGroupsClient.AggregatedListPagedResponse> aggregatedListSettings()

Returns the object with the settings used for calls to aggregatedList.

Returns

deleteNodesOperationSettings()

public OperationCallSettings<DeleteNodesNodeGroupRequest,Operation,Operation> deleteNodesOperationSettings()

Returns the object with the settings used for calls to deleteNodes.

Returns

deleteNodesSettings()

public UnaryCallSettings<DeleteNodesNodeGroupRequest,Operation> deleteNodesSettings()

Returns the object with the settings used for calls to deleteNodes.

Returns

deleteOperationSettings()

public OperationCallSettings<DeleteNodeGroupRequest,Operation,Operation> deleteOperationSettings()

Returns the object with the settings used for calls to delete.

Returns

deleteSettings()

public UnaryCallSettings<DeleteNodeGroupRequest,Operation> deleteSettings()

Returns the object with the settings used for calls to delete.

Returns

getIamPolicySettings()

public UnaryCallSettings<GetIamPolicyNodeGroupRequest,Policy> getIamPolicySettings()

Returns the object with the settings used for calls to getIamPolicy.

Returns

getSettings()

public UnaryCallSettings<GetNodeGroupRequest,NodeGroup> getSettings()

Returns the object with the settings used for calls to get.

Returns

insertOperationSettings()

public OperationCallSettings<InsertNodeGroupRequest,Operation,Operation> insertOperationSettings()

Returns the object with the settings used for calls to insert.

Returns

insertSettings()

public UnaryCallSettings<InsertNodeGroupRequest,Operation> insertSettings()

Returns the object with the settings used for calls to insert.

Returns

listNodesSettings()

public PagedCallSettings<ListNodesNodeGroupsRequest,NodeGroupsListNodes,NodeGroupsClient.ListNodesPagedResponse> listNodesSettings()

Returns the object with the settings used for calls to listNodes.

Returns

listSettings()

public PagedCallSettings<ListNodeGroupsRequest,NodeGroupList,NodeGroupsClient.ListPagedResponse> listSettings()

Returns the object with the settings used for calls to list.

Returns

patchOperationSettings()

public OperationCallSettings<PatchNodeGroupRequest,Operation,Operation> patchOperationSettings()

Returns the object with the settings used for calls to patch.

Returns

patchSettings()

public UnaryCallSettings<PatchNodeGroupRequest,Operation> patchSettings()

Returns the object with the settings used for calls to patch.

Returns

setIamPolicySettings()

public UnaryCallSettings<SetIamPolicyNodeGroupRequest,Policy> setIamPolicySettings()

Returns the object with the settings used for calls to setIamPolicy.

Returns

setNodeTemplateOperationSettings()

public OperationCallSettings<SetNodeTemplateNodeGroupRequest,Operation,Operation> setNodeTemplateOperationSettings()

Returns the object with the settings used for calls to setNodeTemplate.

Returns

setNodeTemplateSettings()

public UnaryCallSettings<SetNodeTemplateNodeGroupRequest,Operation> setNodeTemplateSettings()

Returns the object with the settings used for calls to setNodeTemplate.

Returns

testIamPermissionsSettings()

public UnaryCallSettings<TestIamPermissionsNodeGroupRequest,TestPermissionsResponse> testIamPermissionsSettings()

Returns the object with the settings used for calls to testIamPermissions.

Returns

toBuilder()

public NodeGroupsSettings.Builder toBuilder()

Returns a builder containing all the values of this settings class.

Returns Overrides