다음을 통해 공유


CLI(v2) Azure Files 데이터 저장소 YAML 스키마

적용 대상: Azure CLI ml 확장 v2(현재)

원본 JSON 스키마는 .에서 https://azuremlschemas.azureedge.net/latest/azureFile.schema.json찾을 수 있습니다.

참고 항목

이 문서에 자세히 설명된 YAML 구문은 최신 버전의 ML CLI v2 확장에 대한 JSON 스키마를 기반으로 합니다. 이 구문은 최신 버전의 ML CLI v2 확장에서만 작동하도록 보장됩니다. https://azuremlschemasprod.azureedge.net/에서 이전 확장 버전에 대한 스키마를 찾을 수 있습니다.

YAML 구문

형식 설명 허용된 값 기본값
$schema string YAML 스키마입니다. Azure Machine Learning VS Code 확장을 사용하여 YAML 파일을 작성하는 경우 파일 맨 위에 포함 $schema 하여 스키마 및 리소스 완성을 호출합니다.
type string 필수입니다. 데이터 저장소 형식입니다. azure_file
name string 필수입니다. 데이터 저장소 이름입니다.
description string 데이터 저장소 설명입니다.
tags 개체 데이터 저장소 태그 사전입니다.
account_name string 필수입니다. Azure 스토리지 계정 이름.
file_share_name string 필수입니다. 파일 공유 이름입니다.
endpoint string 스토리지 서비스의 엔드포인트 접미사입니다. 스토리지 계정 엔드포인트 URL을 만드는 데 사용됩니다. 스토리지 계정 이름과 endpoint. 스토리지 계정 URL 예제: https://<storage-account-name>.file.core.windows.net. core.windows.net
protocol string 파일 공유에 연결하는 데 사용할 프로토콜입니다. https https
credentials 개체 Azure Storage 계정에 연결할 자격 증명 기반 인증 자격 증명입니다. 이에 대한 계정 키 또는 SAS(공유 액세스 서명) 토큰을 제공합니다. 자격 증명 비밀은 작업 영역 키 자격 증명 모음에 저장됩니다.
credentials.account_key string 스토리지 계정에 액세스할 계정 키입니다. 지정한 경우 credentials 중 하나credentials.account_key이거나 credentials.sas_token 필수입니다.
credentials.sas_token string 스토리지 계정에 액세스하기 위한 SAS 토큰입니다. credentials이 지정된 경우 credentials.account_key 또는 credentials.sas_token 중 하나가 필요합니다.

설명

az ml datastore 명령은 Azure Machine Learning 데이터 저장소를 관리하는 데 사용할 수 있습니다.

예제

예제는 예제 GitHub 리포지토리에서 사용할 수 있습니다. 몇 가지는 다음과 같습니다.

YAML: 계정 키

$schema: https://azuremlschemas.azureedge.net/latest/azureFile.schema.json
name: file_example
type: azure_file
description: Datastore pointing to an Azure File Share.
account_name: mytestfilestore
file_share_name: my-share
credentials:
  account_key: XxXxXxXXXXXXXxXxXxxXxxXXXXXXXXxXxxXXxXXXXXXXxxxXxXXxXXXXXxXXxXXXxXxXxxxXXxXXxXXXXXxXxxXX

YAML: sas 토큰

$schema: https://azuremlschemas.azureedge.net/latest/azureFile.schema.json
name: file_sas_example
type: azure_file
description: Datastore pointing to an Azure File Share using SAS token.
account_name: mytestfilestore
file_share_name: my-share
credentials:
  sas_token: ?xx=XXXX-XX-XX&xx=xxxx&xxx=xxx&xx=xxxxxxxxxxx&xx=XXXX-XX-XXXXX:XX:XXX&xx=XXXX-XX-XXXXX:XX:XXX&xxx=xxxxx&xxx=XXxXXXxxxxxXXXXXXXxXxxxXXXXXxxXXXXXxXXXXxXXXxXXxXX

다음 단계