public class CloudShellServiceStubSettings extends StubSettings<CloudShellServiceStubSettings>
Settings class to configure an instance of CloudShellServiceStub.
The default instance has everything set to sensible defaults:
- The default service address (cloudshell.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 getEnvironment to 30 seconds:
// 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
CloudShellServiceStubSettings.Builder cloudShellServiceSettingsBuilder =
CloudShellServiceStubSettings.newBuilder();
cloudShellServiceSettingsBuilder
.getEnvironmentSettings()
.setRetrySettings(
cloudShellServiceSettingsBuilder
.getEnvironmentSettings()
.getRetrySettings()
.toBuilder()
.setTotalTimeout(Duration.ofSeconds(30))
.build());
CloudShellServiceStubSettings cloudShellServiceSettings =
cloudShellServiceSettingsBuilder.build();
Static Methods
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()
defaultCredentialsProviderBuilder()
public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()
Returns a builder for the default credentials for this service.
defaultExecutorProviderBuilder()
public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()
Returns a builder for the default ExecutorProvider for this service.
public static ApiClientHeaderProvider.Builder defaultGrpcApiClientHeaderProviderBuilder()
defaultGrpcTransportProviderBuilder()
public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder()
Returns a builder for the default gRPC ChannelProvider for this service.
public static ApiClientHeaderProvider.Builder defaultHttpJsonApiClientHeaderProviderBuilder()
defaultHttpJsonTransportProviderBuilder()
public static InstantiatingHttpJsonChannelProvider.Builder defaultHttpJsonTransportProviderBuilder()
Returns a builder for the default REST ChannelProvider for this service.
defaultTransportChannelProvider()
public static TransportChannelProvider defaultTransportChannelProvider()
getDefaultEndpoint()
public static String getDefaultEndpoint()
Returns the default service endpoint.
getDefaultMtlsEndpoint()
public static String getDefaultMtlsEndpoint()
Returns the default mTLS service endpoint.
getDefaultServiceScopes()
public static List<String> getDefaultServiceScopes()
Returns the default service scopes.
newBuilder()
public static CloudShellServiceStubSettings.Builder newBuilder()
Returns a new gRPC builder for this class.
newBuilder(ClientContext clientContext)
public static CloudShellServiceStubSettings.Builder newBuilder(ClientContext clientContext)
Returns a new builder for this class.
newHttpJsonBuilder()
public static CloudShellServiceStubSettings.Builder newHttpJsonBuilder()
Returns a new REST builder for this class.
Constructors
CloudShellServiceStubSettings(CloudShellServiceStubSettings.Builder settingsBuilder)
protected CloudShellServiceStubSettings(CloudShellServiceStubSettings.Builder settingsBuilder)
Methods
addPublicKeyOperationSettings()
public OperationCallSettings<AddPublicKeyRequest,AddPublicKeyResponse,AddPublicKeyMetadata> addPublicKeyOperationSettings()
Returns the object with the settings used for calls to addPublicKey.
addPublicKeySettings()
public UnaryCallSettings<AddPublicKeyRequest,Operation> addPublicKeySettings()
Returns the object with the settings used for calls to addPublicKey.
authorizeEnvironmentOperationSettings()
public OperationCallSettings<AuthorizeEnvironmentRequest,AuthorizeEnvironmentResponse,AuthorizeEnvironmentMetadata> authorizeEnvironmentOperationSettings()
Returns the object with the settings used for calls to authorizeEnvironment.
authorizeEnvironmentSettings()
public UnaryCallSettings<AuthorizeEnvironmentRequest,Operation> authorizeEnvironmentSettings()
Returns the object with the settings used for calls to authorizeEnvironment.
createStub()
public CloudShellServiceStub createStub()
getEnvironmentSettings()
public UnaryCallSettings<GetEnvironmentRequest,Environment> getEnvironmentSettings()
Returns the object with the settings used for calls to getEnvironment.
removePublicKeyOperationSettings()
public OperationCallSettings<RemovePublicKeyRequest,RemovePublicKeyResponse,RemovePublicKeyMetadata> removePublicKeyOperationSettings()
Returns the object with the settings used for calls to removePublicKey.
removePublicKeySettings()
public UnaryCallSettings<RemovePublicKeyRequest,Operation> removePublicKeySettings()
Returns the object with the settings used for calls to removePublicKey.
startEnvironmentOperationSettings()
public OperationCallSettings<StartEnvironmentRequest,StartEnvironmentResponse,StartEnvironmentMetadata> startEnvironmentOperationSettings()
Returns the object with the settings used for calls to startEnvironment.
startEnvironmentSettings()
public UnaryCallSettings<StartEnvironmentRequest,Operation> startEnvironmentSettings()
Returns the object with the settings used for calls to startEnvironment.
toBuilder()
public CloudShellServiceStubSettings.Builder toBuilder()
Returns a builder containing all the values of this settings class.
Overrides