Delen via


CLI-register (v2) YAML-schema

VAN TOEPASSING OP: Azure CLI ml-extensie v2 (huidige)

Het JSON-bronschema vindt u op https://azuremlschemasprod.azureedge.net/latest/registry.schema.json.

Notitie

De YAML-syntaxis die in dit document wordt beschreven, is gebaseerd op het JSON-schema voor de nieuwste versie van de ML CLI v2-extensie. Deze syntaxis werkt gegarandeerd alleen met de nieuwste versie van de ML CLI v2-extensie. U vindt de schema's voor oudere extensieversies op https://azuremlschemasprod.azureedge.net/.

YAML-syntaxis

Sleutel Type Description Toegestane waarden Default value
$schema tekenreeks Het YAML-schema. Als u de Azure Machine Learning VS Code-extensie gebruikt om het YAML-bestand te ontwerpen, inclusief $schema bovenaan het bestand, kunt u schema- en resourcevoltooiingen aanroepen.
name tekenreeks Vereist. Naam van het register.
tags object Woordenlijst met tags voor het register.
location tekenreeks Vereist. De primaire locatie van het register.
replication_locations object Vereist. Lijst met locaties waar de gekoppelde resources van het register worden gerepliceerd. De lijst moet de primaire locatie van het register bevatten.
public_network_access tekenreeks Of openbare eindpunttoegang is toegestaan als het register Private Link gebruikt. enabled, disabled enabled

Opmerkingen

De az ml registry opdracht kan worden gebruikt voor het beheren van Azure Machine Learning-registers.

Voorbeelden

Voorbeelden zijn beschikbaar in de GitHub-voorbeeldenopslagplaats. Er worden verschillende weergegeven in de volgende secties.

YAML: basic

name: DemoRegistry
tags:
  foo: bar
  description: Basic registry with one primary region and to additional regions
location: eastus
replication_locations:
  - location: eastus
  - location: eastus2
  - location: westus
  - location: westus2

YAML: met opslagopties

name: DemoRegistry2
tags:
  foo: bar
  description: Registry with additional configuration for storage accounts
location: eastus
replication_locations:
  - location: eastus
    storage_config:
      storage_account_hns: False
      storage_account_type: Standard_LRS
  - location: eastus2
    storage_config:
      storage_account_hns: False
      storage_account_type: Standard_LRS
  - location: westus
    storage_config:
      storage_account_hns: False
      storage_account_type: Standard_LRS

Volgende stappen