experiment_artifacts
Creates, updates, deletes, gets or lists an experiment_artifacts
resource.
Overview
Name | experiment_artifacts |
Type | Resource |
Id | databricks_workspace.machinelearning.experiment_artifacts |
Fields
The following fields are returned by SELECT
queries:
- listartifacts
Name | Datatype | Description |
---|---|---|
files | array | |
next_page_token | string | |
root_uri | string |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
listartifacts | select | deployment_name | List artifacts for a run. Takes an optional |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
SELECT
examples
- listartifacts
List artifacts for a run. Takes an optional
SELECT
files,
next_page_token,
root_uri
FROM databricks_workspace.machinelearning.experiment_artifacts
WHERE deployment_name = '{{ deployment_name }}' -- required;