public class StorageStubSettings extends StubSettings<StorageStubSettings>
Settings class to configure an instance of StorageStub.
The default instance has everything set to sensible defaults:
- The default service address (storage.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 deleteBucket to 30 seconds:
StorageStubSettings.Builder storageSettingsBuilder = StorageStubSettings.newBuilder();
storageSettingsBuilder
.deleteBucketSettings()
.setRetrySettings(
storageSettingsBuilder
.deleteBucketSettings()
.getRetrySettings()
.toBuilder()
.setTotalTimeout(Duration.ofSeconds(30))
.build());
StorageStubSettings storageSettings = storageSettingsBuilder.build();
Static Methods
defaultApiClientHeaderProviderBuilder()
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()
Type | Description |
Builder |
defaultCredentialsProviderBuilder()
public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()
Returns a builder for the default credentials for this service.
Type | Description |
Builder |
defaultExecutorProviderBuilder()
public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()
Returns a builder for the default ExecutorProvider for this service.
Type | Description |
Builder |
defaultGrpcTransportProviderBuilder()
public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder()
Returns a builder for the default ChannelProvider for this service.
Type | Description |
Builder |
defaultTransportChannelProvider()
public static TransportChannelProvider defaultTransportChannelProvider()
Type | Description |
TransportChannelProvider |
getDefaultEndpoint()
public static String getDefaultEndpoint()
Returns the default service endpoint.
Type | Description |
String |
getDefaultMtlsEndpoint()
public static String getDefaultMtlsEndpoint()
Returns the default mTLS service endpoint.
Type | Description |
String |
getDefaultServiceScopes()
public static List<String> getDefaultServiceScopes()
Returns the default service scopes.
Type | Description |
List<String> |
newBuilder()
public static StorageStubSettings.Builder newBuilder()
Returns a new builder for this class.
Type | Description |
StorageStubSettings.Builder |
newBuilder(ClientContext clientContext)
public static StorageStubSettings.Builder newBuilder(ClientContext clientContext)
Returns a new builder for this class.
Name | Description |
clientContext | ClientContext |
Type | Description |
StorageStubSettings.Builder |
Constructors
StorageStubSettings(StorageStubSettings.Builder settingsBuilder)
protected StorageStubSettings(StorageStubSettings.Builder settingsBuilder)
Name | Description |
settingsBuilder | StorageStubSettings.Builder |
Methods
composeObjectSettings()
public UnaryCallSettings<ComposeObjectRequest,Object> composeObjectSettings()
Returns the object with the settings used for calls to composeObject.
Type | Description |
UnaryCallSettings<ComposeObjectRequest,Object> |
createBucketSettings()
public UnaryCallSettings<CreateBucketRequest,Bucket> createBucketSettings()
Returns the object with the settings used for calls to createBucket.
Type | Description |
UnaryCallSettings<CreateBucketRequest,Bucket> |
createHmacKeySettings()
public UnaryCallSettings<CreateHmacKeyRequest,CreateHmacKeyResponse> createHmacKeySettings()
Returns the object with the settings used for calls to createHmacKey.
Type | Description |
UnaryCallSettings<CreateHmacKeyRequest,CreateHmacKeyResponse> |
createNotificationSettings()
public UnaryCallSettings<CreateNotificationRequest,Notification> createNotificationSettings()
Returns the object with the settings used for calls to createNotification.
Type | Description |
UnaryCallSettings<CreateNotificationRequest,Notification> |
createStub()
public StorageStub createStub()
Type | Description |
StorageStub |
Type | Description |
IOException |
deleteBucketSettings()
public UnaryCallSettings<DeleteBucketRequest,Empty> deleteBucketSettings()
Returns the object with the settings used for calls to deleteBucket.
Type | Description |
UnaryCallSettings<DeleteBucketRequest,Empty> |
deleteHmacKeySettings()
public UnaryCallSettings<DeleteHmacKeyRequest,Empty> deleteHmacKeySettings()
Returns the object with the settings used for calls to deleteHmacKey.
Type | Description |
UnaryCallSettings<DeleteHmacKeyRequest,Empty> |
deleteNotificationSettings()
public UnaryCallSettings<DeleteNotificationRequest,Empty> deleteNotificationSettings()
Returns the object with the settings used for calls to deleteNotification.
Type | Description |
UnaryCallSettings<DeleteNotificationRequest,Empty> |
deleteObjectSettings()
public UnaryCallSettings<DeleteObjectRequest,Empty> deleteObjectSettings()
Returns the object with the settings used for calls to deleteObject.
Type | Description |
UnaryCallSettings<DeleteObjectRequest,Empty> |
getBucketSettings()
public UnaryCallSettings<GetBucketRequest,Bucket> getBucketSettings()
Returns the object with the settings used for calls to getBucket.
Type | Description |
UnaryCallSettings<GetBucketRequest,Bucket> |
getHmacKeySettings()
public UnaryCallSettings<GetHmacKeyRequest,HmacKeyMetadata> getHmacKeySettings()
Returns the object with the settings used for calls to getHmacKey.
Type | Description |
UnaryCallSettings<GetHmacKeyRequest,HmacKeyMetadata> |
getIamPolicySettings()
public UnaryCallSettings<GetIamPolicyRequest,Policy> getIamPolicySettings()
Returns the object with the settings used for calls to getIamPolicy.
Type | Description |
UnaryCallSettings<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> |
getNotificationSettings()
public UnaryCallSettings<GetNotificationRequest,Notification> getNotificationSettings()
Returns the object with the settings used for calls to getNotification.
Type | Description |
UnaryCallSettings<GetNotificationRequest,Notification> |
getObjectSettings()
public UnaryCallSettings<GetObjectRequest,Object> getObjectSettings()
Returns the object with the settings used for calls to getObject.
Type | Description |
UnaryCallSettings<GetObjectRequest,Object> |
getServiceAccountSettings()
public UnaryCallSettings<GetServiceAccountRequest,ServiceAccount> getServiceAccountSettings()
Returns the object with the settings used for calls to getServiceAccount.
Type | Description |
UnaryCallSettings<GetServiceAccountRequest,ServiceAccount> |
listBucketsSettings()
public PagedCallSettings<ListBucketsRequest,ListBucketsResponse,StorageClient.ListBucketsPagedResponse> listBucketsSettings()
Returns the object with the settings used for calls to listBuckets.
Type | Description |
PagedCallSettings<ListBucketsRequest,ListBucketsResponse,ListBucketsPagedResponse> |
listHmacKeysSettings()
public PagedCallSettings<ListHmacKeysRequest,ListHmacKeysResponse,StorageClient.ListHmacKeysPagedResponse> listHmacKeysSettings()
Returns the object with the settings used for calls to listHmacKeys.
Type | Description |
PagedCallSettings<ListHmacKeysRequest,ListHmacKeysResponse,ListHmacKeysPagedResponse> |
listNotificationsSettings()
public PagedCallSettings<ListNotificationsRequest,ListNotificationsResponse,StorageClient.ListNotificationsPagedResponse> listNotificationsSettings()
Returns the object with the settings used for calls to listNotifications.
Type | Description |
PagedCallSettings<ListNotificationsRequest,ListNotificationsResponse,ListNotificationsPagedResponse> |
listObjectsSettings()
public PagedCallSettings<ListObjectsRequest,ListObjectsResponse,StorageClient.ListObjectsPagedResponse> listObjectsSettings()
Returns the object with the settings used for calls to listObjects.
Type | Description |
PagedCallSettings<ListObjectsRequest,ListObjectsResponse,ListObjectsPagedResponse> |
lockBucketRetentionPolicySettings()
public UnaryCallSettings<LockBucketRetentionPolicyRequest,Bucket> lockBucketRetentionPolicySettings()
Returns the object with the settings used for calls to lockBucketRetentionPolicy.
Type | Description |
UnaryCallSettings<LockBucketRetentionPolicyRequest,Bucket> |
queryWriteStatusSettings()
public UnaryCallSettings<QueryWriteStatusRequest,QueryWriteStatusResponse> queryWriteStatusSettings()
Returns the object with the settings used for calls to queryWriteStatus.
Type | Description |
UnaryCallSettings<QueryWriteStatusRequest,QueryWriteStatusResponse> |
readObjectSettings()
public ServerStreamingCallSettings<ReadObjectRequest,ReadObjectResponse> readObjectSettings()
Returns the object with the settings used for calls to readObject.
Type | Description |
ServerStreamingCallSettings<ReadObjectRequest,ReadObjectResponse> |
rewriteObjectSettings()
public UnaryCallSettings<RewriteObjectRequest,RewriteResponse> rewriteObjectSettings()
Returns the object with the settings used for calls to rewriteObject.
Type | Description |
UnaryCallSettings<RewriteObjectRequest,RewriteResponse> |
setIamPolicySettings()
public UnaryCallSettings<SetIamPolicyRequest,Policy> setIamPolicySettings()
Returns the object with the settings used for calls to setIamPolicy.
Type | Description |
UnaryCallSettings<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> |
startResumableWriteSettings()
public UnaryCallSettings<StartResumableWriteRequest,StartResumableWriteResponse> startResumableWriteSettings()
Returns the object with the settings used for calls to startResumableWrite.
Type | Description |
UnaryCallSettings<StartResumableWriteRequest,StartResumableWriteResponse> |
testIamPermissionsSettings()
public UnaryCallSettings<TestIamPermissionsRequest,TestIamPermissionsResponse> testIamPermissionsSettings()
Returns the object with the settings used for calls to testIamPermissions.
Type | Description |
UnaryCallSettings<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> |
toBuilder()
public StorageStubSettings.Builder toBuilder()
Returns a builder containing all the values of this settings class.
Type | Description |
StorageStubSettings.Builder |
updateBucketSettings()
public UnaryCallSettings<UpdateBucketRequest,Bucket> updateBucketSettings()
Returns the object with the settings used for calls to updateBucket.
Type | Description |
UnaryCallSettings<UpdateBucketRequest,Bucket> |
updateHmacKeySettings()
public UnaryCallSettings<UpdateHmacKeyRequest,HmacKeyMetadata> updateHmacKeySettings()
Returns the object with the settings used for calls to updateHmacKey.
Type | Description |
UnaryCallSettings<UpdateHmacKeyRequest,HmacKeyMetadata> |
updateObjectSettings()
public UnaryCallSettings<UpdateObjectRequest,Object> updateObjectSettings()
Returns the object with the settings used for calls to updateObject.
Type | Description |
UnaryCallSettings<UpdateObjectRequest,Object> |
writeObjectSettings()
public StreamingCallSettings<WriteObjectRequest,WriteObjectResponse> writeObjectSettings()
Returns the object with the settings used for calls to writeObject.
Type | Description |
StreamingCallSettings<WriteObjectRequest,WriteObjectResponse> |