
Azure DownloadModel
CertifiedDownload an Azure Machine Learning model to Kestra's internal storage
Azure DownloadModel
Download an Azure Machine Learning model to Kestra's internal storage
Resolves a model version's storage location and downloads its artifact(s) into Kestra's internal storage. A single-file model is stored as-is; a folder-based model is packaged into a single ZIP archive.
type: io.kestra.plugin.azure.ml.DownloadModelExamples
id: azure_ml_download_model
namespace: company.team
tasks:
- id: download
type: io.kestra.plugin.azure.ml.DownloadModel
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
modelName: fraud-detector
modelVersion: latest
Properties
modelName *Requiredstring
Model name
resourceGroupName *Requiredstring
Resource group name
Resource group containing the Machine Learning workspace
subscriptionId *Requiredstring
Subscription ID
Azure subscription GUID that owns the Machine Learning workspace
tenantId *Requiredstring
Azure AD tenant ID (GUID)
workspaceName *Requiredstring
Workspace name
Name of the Azure Machine Learning workspace
clientId string
Client ID of the Azure AD application
Application (client) ID used for service principal authentication.
clientSecret string
Client secret for the Azure AD application
Secret value associated with the client ID; store in a Kestra secret.
modelVersion string
latestModel version
Specific version to download, or latest (default) to resolve the most recent one
pemCertificate string
PEM-encoded certificate content for client authentication
PEM text for certificate-based auth; alternative to clientSecret.
Outputs
archive boolean
Archive
True when the model had multiple files and was packaged into a single ZIP archive
modelName string
Model name
uri string
uriInternal storage URI
kestra:// URI of the downloaded model artifact
version string
Model version
Resolved version, useful when version=latest was requested