Skip to content

Files

Latest commit

 

History

History
56 lines (37 loc) · 2.23 KB

reference-yaml-registry.md

File metadata and controls

56 lines (37 loc) · 2.23 KB
title titleSuffix description services ms.service ms.subservice ms.topic ms.custom author ms.author ms.date ms.reviewer
CLI (v2) registry YAML schema
Azure Machine Learning
Reference documentation for the CLI (v2) registry YAML schema.
machine-learning
machine-learning
core
reference
cliv2, build-2023
Blackmist
larryfr
04/29/2024
kritifaujdar

CLI (v2) registry YAML schema

[!INCLUDE cli v2]

The source JSON schema can be found at https://azuremlschemasprod.azureedge.net/latest/registry.schema.json.

[!INCLUDE schema note]

YAML syntax

Key Type Description Allowed values Default value
$schema string The YAML schema. If you use the Azure Machine Learning VS Code extension to author the YAML file, including $schema at the top of your file enables you to invoke schema and resource completions.
name string Required. Name of the registry.
tags object Dictionary of tags for the registry.
location string Required. The primary location of the registry.
replication_locations object Required. List of locations where the associated resources of the registry will be replicated. The list must include the primary location of registry.
public_network_access string Whether public endpoint access is allowed if the registry will be using Private Link. enabled, disabled enabled

Remarks

The az ml registry command can be used for managing Azure Machine Learning registries.

Examples

Examples are available in the examples GitHub repository. Several are shown in the following sections.

YAML: basic

:::code language="yaml" source="~/azureml-examples-main/cli/resources/registry/registry.yml":::

YAML: with storage options

:::code language="yaml" source="~/azureml-examples-main/cli/resources/registry/registry-storage-options.yml":::

Next steps