Azure CreateDataAsset

Azure CreateDataAsset

Certified

Register a data asset version in Azure Machine Learning

Creates a new version of a data asset (URI_FILE, URI_FOLDER or MLTABLE) pointing to an existing datastore path. Data asset versions are immutable: set dataVersion explicitly to control it, or leave it empty to auto-increment from the asset's latest version.

yaml
type: io.kestra.plugin.azure.ml.CreateDataAsset
yaml
id: azure_ml_create_data_asset
namespace: company.team

tasks:
  - id: register_dataset
    type: io.kestra.plugin.azure.ml.CreateDataAsset
    tenantId: "{{ secret('AZURE_TENANT_ID') }}"
    clientId: "{{ secret('AZURE_CLIENT_ID') }}"
    clientSecret: "{{ secret('AZURE_CLIENT_SECRET') }}"
    subscriptionId: "{{ secret('AZURE_SUBSCRIPTION_ID') }}"
    resourceGroupName: ml-rg
    workspaceName: ml-workspace
    dataName: training-dataset
    dataAssetType: URI_FOLDER
    uri: "azureml://datastores/workspaceblobstore/paths/data/training"
Properties
Possible Values
URI_FILEURI_FOLDERMLTABLE

Data asset type

Kind of data referenced by uri

Data asset name

Resource group name

Resource group containing the Machine Learning workspace

Subscription ID

Azure subscription GUID that owns the Machine Learning workspace

Azure AD tenant ID (GUID)

Data URI

Storage URI for the data, e.g. azureml://datastores/<name>/paths/<path>

Workspace name

Name of the Azure Machine Learning workspace

Client ID of the Azure AD application

Application (client) ID used for service principal authentication.

Client secret for the Azure AD application

Secret value associated with the client ID; store in a Kestra secret.

Description

Free-text description stored with the data asset version

Data asset version

Explicit version to register; when not set, the next version is computed automatically from the asset's current latest version

PEM-encoded certificate content for client authentication

PEM text for certificate-based auth; alternative to clientSecret.

Data asset name

Formaturi

Data URI

Storage URI backing this data asset version

Data asset version

Version registered, either the explicit version or the auto-incremented one