AzureBlobDatastore Class
Azure blob storage that is linked to an Azure ML workspace.
Constructor
AzureBlobDatastore(*, name: str, account_name: str, container_name: str, description: str | None = None, tags: Dict | None = None, endpoint: str | None = None, protocol: str = 'https', properties: Dict | None = None, credentials: AccountKeyConfiguration | SasTokenConfiguration | None = None, **kwargs: Any)
Parameters
| Name | Description |
|---|---|
|
kwargs
Required
|
A dictionary of additional configuration parameters. |
Keyword-Only Parameters
| Name | Description |
|---|---|
|
name
|
Name of the datastore. |
|
account_name
|
Name of the Azure storage account. |
|
container_name
|
Name of the container. |
|
description
|
Description of the resource. Default value: None
|
|
tags
|
Tag dictionary. Tags can be added, removed, and updated. Default value: None
|
|
endpoint
|
Endpoint to use to connect with the Azure storage account. Default value: None
|
|
protocol
|
Protocol to use to connect with the Azure storage account. Default value: https
|
|
properties
|
The asset property dictionary. Default value: None
|
|
credentials
|
Credentials to use for Azure ML workspace to connect to the storage. Default value: None
|
Methods
| dump |
Dump the datastore content into a file in yaml format. |
dump
Dump the datastore content into a file in yaml format.
dump(dest: str | PathLike | IO, **kwargs: Any) -> None
Parameters
| Name | Description |
|---|---|
|
dest
Required
|
The destination to receive this datastore's content. Must be either a path to a local file, or an already-open file stream. If dest is a file path, a new file will be created, and an exception is raised if the file exists. If dest is an open file, the file will be written to directly, and an exception will be raised if the file is not writable. |
Attributes
base_path
creation_context
The creation context of the resource.
Returns
| Type | Description |
|---|---|
|
The creation metadata for the resource. |