ResourceFile Class
A single file or multiple files to be downloaded to a compute node.
Constructor
ResourceFile(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
auto_storage_container_name
|
The storage container name in the auto storage account. |
|
storage_container_url
|
The URL of the blob container within Azure Blob Storage. |
|
http_url
|
The URL of the file to download. |
|
blob_prefix
|
The blob prefix to use when downloading blobs from an Azure Storage container. Only the blobs whose names begin with the specified prefix will be downloaded. |
|
file_path
|
The location on the compute node to which to download the file, relative to the task's working directory. |
|
file_mode
|
The file permission mode attribute in octal format. |
|
identity_reference
|
The reference to the user assigned identity to use to access Azure Blob Storage specified by storageContainerUrl or httpUrl. |
Attributes
auto_storage_container_name
The storage container name in the auto storage account.
auto_storage_container_name: str | None
blob_prefix
The blob prefix to use when downloading blobs from an Azure Storage container. Only the blobs whose names begin with the specified prefix will be downloaded.
blob_prefix: str | None
file_mode
The file permission mode attribute in octal format.
file_mode: str | None
file_path
The location on the compute node to which to download the file, relative to the task's working directory.
file_path: str | None
http_url
The URL of the file to download.
http_url: str | None
identity_reference
The reference to the user assigned identity to use to access Azure Blob Storage specified by storageContainerUrl or httpUrl.
identity_reference: _models.ComputeNodeIdentityReference | None
storage_container_url
The URL of the blob container within Azure Blob Storage.
storage_container_url: str | None