Data Class
Represents how to consume data in a run configuration.
This class is used in the RunConfiguration class.
Class DataSetPathRunConfiguration constructor.
- Inheritance
-
azureml._base_sdk_common.abstract_run_config_element._AbstractRunConfigElementData
Constructor
Data(data_location=None, create_output_directories=None, mechanism='direct', environment_variable_name=None, path_on_compute=None, overwrite=False, options=None)
Parameters
Name | Description |
---|---|
data_location
|
The location of the data. Default value: None
|
create_output_directories
|
Indcates whether to create new folder. Default value: None
|
mechanism
|
Direct, mount, download, or upload. Default value: direct
|
environment_variable_name
|
The environment variable name which points to the delivered data on the compute target. Default value: None
|
path_on_compute
|
The target path on the compute to make the data available at. Default value: None
|
overwrite
|
Whether to overwrite existing data. Default value: False
|
options
|
Default value: None
|
Methods
create |
Create a DataConfiguration from a DatasetConsumptionConfig. |
create
Create a DataConfiguration from a DatasetConsumptionConfig.
static create(data)
Parameters
Name | Description |
---|---|
data
Required
|
the DatasetConsumptionConfig to create the DataConfiguration from. |
Returns
Type | Description |
---|---|
<xref:DataConfiguration>
|
the DataConfiguration representing how to deliver the data to the compute target. |