Interface StorageService
-
@Generated public interface StorageService
These APIs manage storage configurations for this workspace. A root storage S3 bucket in your account is required to store objects like cluster logs, notebook revisions, and job results. You can also use the root storage S3 bucket for storage of non-production DBFS data. A storage configuration encapsulates this bucket information, and its ID is used when creating a new workspace.This is the high-level interface, that contains generated methods.
Evolving: this interface is under development. Method signatures may change.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StorageConfiguration
create(CreateStorageConfigurationRequest createStorageConfigurationRequest)
Create new storage configuration.void
delete(DeleteStorageRequest deleteStorageRequest)
Delete storage configuration.StorageConfiguration
get(GetStorageRequest getStorageRequest)
Get storage configuration.Collection<StorageConfiguration>
list()
Get all storage configurations.
-
-
-
Method Detail
-
create
StorageConfiguration create(CreateStorageConfigurationRequest createStorageConfigurationRequest)
Create new storage configuration.Creates new storage configuration for an account, specified by ID. Uploads a storage configuration object that represents the root AWS S3 bucket in your account. Databricks stores related workspace assets including DBFS, cluster logs, and job results. For the AWS S3 bucket, you need to configure the required bucket policy.
For information about how to create a new workspace with this API, see [Create a new workspace using the Account API]
[Create a new workspace using the Account API]: http://docs.databricks.com/administration-guide/account-api/new-workspace.html
-
delete
void delete(DeleteStorageRequest deleteStorageRequest)
Delete storage configuration.Deletes a Databricks storage configuration. You cannot delete a storage configuration that is associated with any workspace.
-
get
StorageConfiguration get(GetStorageRequest getStorageRequest)
Get storage configuration.Gets a Databricks storage configuration for an account, both specified by ID.
-
list
Collection<StorageConfiguration> list()
Get all storage configurations.Gets a list of all Databricks storage configurations for your account, specified by ID.
-
-