Microsoft.MachineLearningServices 레지스트리/data/versions 2024-01-01-preview

Bicep 리소스 정의

레지스트리/데이터/버전 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그참조하세요.

리소스 형식

Microsoft.MachineLearningServices/registries/data/versions 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.

resource symbolicname 'Microsoft.MachineLearningServices/registries/data/versions@2024-01-01-preview' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    autoDeleteSetting: {
      condition: 'string'
      value: 'string'
    }
    dataUri: 'string'
    description: 'string'
    intellectualProperty: {
      protectionLevel: 'string'
      publisher: 'string'
    }
    isAnonymous: bool
    isArchived: bool
    properties: {
      {customized property}: 'string'
    }
    stage: 'string'
    tags: {}
    dataType: 'string'
    // For remaining properties, see DataVersionBaseProperties objects
  }
}

DataVersionBaseProperties 개체

dataType 속성을 설정하여 개체 유형을 지정합니다.

mltable경우 다음을 사용합니다.

  dataType: 'mltable'
  referencedUris: [
    'string'
  ]

uri_file경우 다음을 사용합니다.

  dataType: 'uri_file'

uri_folder경우 다음을 사용합니다.

  dataType: 'uri_folder'

속성 값

registries/data/versions

이름 묘사
이름 리소스 이름

Bicep자식 리소스의 이름과 형식을 설정하는 방법을 알아보세요.
string(필수)
부모 Bicep에서 자식 리소스에 대한 부모 리소스를 지정할 수 있습니다. 자식 리소스가 부모 리소스 외부에서 선언된 경우에만 이 속성을 추가해야 합니다.

자세한 내용은 부모 리소스외부의 자식 리소스 참조하세요.
형식 리소스의 기호 이름: 데이터
속성 [필수] 엔터티의 추가 특성입니다. dataVersionBaseProperties (필수)

DataVersionBaseProperties

이름 묘사
autoDeleteSetting 관리되는 데이터 자산의 수명 주기 설정을 지정합니다. autoDeleteSetting
dataUri [필수] 데이터의 URI입니다. 예: https://go.microsoft.com/fwlink/?linkid=2202330 string(필수)

제약 조건:
최소 길이 = 1
패턴 = [a-zA-Z0-9_]
묘사 자산 설명 텍스트입니다. 문자열
intellectualProperty 지적 재산권 세부 정보입니다. 데이터가 지적 재산권인 경우 사용됩니다. IntellectualProperty
isAnonymous 이름 버전이 시스템 생성(익명 등록)인 경우 스테이지가 정의된 형식의 경우 스테이지가 제공되면 IsAnonymous를 채우는 데 사용됩니다. bool
isArchived 자산이 보관되어 있나요? 스테이지가 정의된 형식의 경우 스테이지가 제공되면 IsArchived를 채우는 데 사용됩니다. bool
속성 자산 속성 사전입니다. ResourceBaseProperties
무대 이 데이터 자산에 할당된 데이터 수명 주기의 단계 문자열
태그 태그 사전입니다. 태그를 추가, 제거 및 업데이트할 수 있습니다. 객체
dataType 개체 유형 설정 mltable
uri_file
uri_folder(필수)

AutoDeleteSetting

이름 묘사
조건 자산이 만료되었는지 확인하는 경우 'CreatedGreaterThan'
'LastAccessedGreaterThan'
만료 조건 값입니다. 문자열

IntellectualProperty

이름 묘사
protectionLevel 지적 재산권의 보호 수준입니다. 'All'
'None'
게시자 [필수] 지적 재산권의 게시자입니다. 레지스트리 게시자 이름과 동일해야 합니다. string(필수)

제약 조건:
최소 길이 = 1
패턴 = [a-zA-Z0-9_]

ResourceBaseProperties

이름 묘사
{customized property} 문자열

MLTableData

이름 묘사
dataType [필수] 데이터 형식을 지정합니다. 'mltable'(필수)
referencedUris MLTable 정의에서 참조되는 Uri(계보에 필요) string[]

UriFileDataVersion

이름 묘사
dataType [필수] 데이터 형식을 지정합니다. 'uri_file'(필수)

UriFolderDataVersion

이름 묘사
dataType [필수] 데이터 형식을 지정합니다. 'uri_folder'(필수)

ARM 템플릿 리소스 정의

레지스트리/데이터/버전 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그참조하세요.

리소스 형식

Microsoft.MachineLearningServices/registries/data/versions 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.

{
  "type": "Microsoft.MachineLearningServices/registries/data/versions",
  "apiVersion": "2024-01-01-preview",
  "name": "string",
  "properties": {
    "autoDeleteSetting": {
      "condition": "string",
      "value": "string"
    },
    "dataUri": "string",
    "description": "string",
    "intellectualProperty": {
      "protectionLevel": "string",
      "publisher": "string"
    },
    "isAnonymous": "bool",
    "isArchived": "bool",
    "properties": {
      "{customized property}": "string"
    },
    "stage": "string",
    "tags": {},
    "dataType": "string"
    // For remaining properties, see DataVersionBaseProperties objects
  }
}

DataVersionBaseProperties 개체

dataType 속성을 설정하여 개체 유형을 지정합니다.

mltable경우 다음을 사용합니다.

  "dataType": "mltable",
  "referencedUris": [ "string" ]

uri_file경우 다음을 사용합니다.

  "dataType": "uri_file"

uri_folder경우 다음을 사용합니다.

  "dataType": "uri_folder"

속성 값

registries/data/versions

이름 묘사
리소스 종류 'Microsoft.MachineLearningServices/registries/data/versions'
apiVersion 리소스 api 버전 '2024-01-01-preview'
이름 리소스 이름

JSON ARM 템플릿자식 리소스의 이름과 형식을 설정하는 방법을 참조하세요.
string(필수)
속성 [필수] 엔터티의 추가 특성입니다. dataVersionBaseProperties (필수)

DataVersionBaseProperties

이름 묘사
autoDeleteSetting 관리되는 데이터 자산의 수명 주기 설정을 지정합니다. autoDeleteSetting
dataUri [필수] 데이터의 URI입니다. 예: https://go.microsoft.com/fwlink/?linkid=2202330 string(필수)

제약 조건:
최소 길이 = 1
패턴 = [a-zA-Z0-9_]
묘사 자산 설명 텍스트입니다. 문자열
intellectualProperty 지적 재산권 세부 정보입니다. 데이터가 지적 재산권인 경우 사용됩니다. IntellectualProperty
isAnonymous 이름 버전이 시스템 생성(익명 등록)인 경우 스테이지가 정의된 형식의 경우 스테이지가 제공되면 IsAnonymous를 채우는 데 사용됩니다. bool
isArchived 자산이 보관되어 있나요? 스테이지가 정의된 형식의 경우 스테이지가 제공되면 IsArchived를 채우는 데 사용됩니다. bool
속성 자산 속성 사전입니다. ResourceBaseProperties
무대 이 데이터 자산에 할당된 데이터 수명 주기의 단계 문자열
태그 태그 사전입니다. 태그를 추가, 제거 및 업데이트할 수 있습니다. 객체
dataType 개체 유형 설정 mltable
uri_file
uri_folder(필수)

AutoDeleteSetting

이름 묘사
조건 자산이 만료되었는지 확인하는 경우 'CreatedGreaterThan'
'LastAccessedGreaterThan'
만료 조건 값입니다. 문자열

IntellectualProperty

이름 묘사
protectionLevel 지적 재산권의 보호 수준입니다. 'All'
'None'
게시자 [필수] 지적 재산권의 게시자입니다. 레지스트리 게시자 이름과 동일해야 합니다. string(필수)

제약 조건:
최소 길이 = 1
패턴 = [a-zA-Z0-9_]

ResourceBaseProperties

이름 묘사
{customized property} 문자열

MLTableData

이름 묘사
dataType [필수] 데이터 형식을 지정합니다. 'mltable'(필수)
referencedUris MLTable 정의에서 참조되는 Uri(계보에 필요) string[]

UriFileDataVersion

이름 묘사
dataType [필수] 데이터 형식을 지정합니다. 'uri_file'(필수)

UriFolderDataVersion

이름 묘사
dataType [필수] 데이터 형식을 지정합니다. 'uri_folder'(필수)

Terraform(AzAPI 공급자) 리소스 정의

레지스트리/데이터/버전 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

  • 리소스 그룹

각 API 버전에서 변경된 속성 목록은 변경 로그참조하세요.

리소스 형식

Microsoft.MachineLearningServices/registries/data/versions 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.MachineLearningServices/registries/data/versions@2024-01-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      autoDeleteSetting = {
        condition = "string"
        value = "string"
      }
      dataUri = "string"
      description = "string"
      intellectualProperty = {
        protectionLevel = "string"
        publisher = "string"
      }
      isAnonymous = bool
      isArchived = bool
      properties = {
        {customized property} = "string"
      }
      stage = "string"
      tags = {}
      dataType = "string"
      // For remaining properties, see DataVersionBaseProperties objects
    }
  })
}

DataVersionBaseProperties 개체

dataType 속성을 설정하여 개체 유형을 지정합니다.

mltable경우 다음을 사용합니다.

  dataType = "mltable"
  referencedUris = [
    "string"
  ]

uri_file경우 다음을 사용합니다.

  dataType = "uri_file"

uri_folder경우 다음을 사용합니다.

  dataType = "uri_folder"

속성 값

registries/data/versions

이름 묘사
리소스 종류 "Microsoft.MachineLearningServices/registries/data/versions@2024-01-01-preview"
이름 리소스 이름 string(필수)
parent_id 이 리소스의 부모인 리소스의 ID입니다. 형식의 리소스 ID: 데이터
속성 [필수] 엔터티의 추가 특성입니다. dataVersionBaseProperties (필수)

DataVersionBaseProperties

이름 묘사
autoDeleteSetting 관리되는 데이터 자산의 수명 주기 설정을 지정합니다. autoDeleteSetting
dataUri [필수] 데이터의 URI입니다. 예: https://go.microsoft.com/fwlink/?linkid=2202330 string(필수)

제약 조건:
최소 길이 = 1
패턴 = [a-zA-Z0-9_]
묘사 자산 설명 텍스트입니다. 문자열
intellectualProperty 지적 재산권 세부 정보입니다. 데이터가 지적 재산권인 경우 사용됩니다. IntellectualProperty
isAnonymous 이름 버전이 시스템 생성(익명 등록)인 경우 스테이지가 정의된 형식의 경우 스테이지가 제공되면 IsAnonymous를 채우는 데 사용됩니다. bool
isArchived 자산이 보관되어 있나요? 스테이지가 정의된 형식의 경우 스테이지가 제공되면 IsArchived를 채우는 데 사용됩니다. bool
속성 자산 속성 사전입니다. ResourceBaseProperties
무대 이 데이터 자산에 할당된 데이터 수명 주기의 단계 문자열
태그 태그 사전입니다. 태그를 추가, 제거 및 업데이트할 수 있습니다. 객체
dataType 개체 유형 설정 mltable
uri_file
uri_folder(필수)

AutoDeleteSetting

이름 묘사
조건 자산이 만료되었는지 확인하는 경우 "CreatedGreaterThan"
"LastAccessedGreaterThan"
만료 조건 값입니다. 문자열

IntellectualProperty

이름 묘사
protectionLevel 지적 재산권의 보호 수준입니다. "모두"
"없음"
게시자 [필수] 지적 재산권의 게시자입니다. 레지스트리 게시자 이름과 동일해야 합니다. string(필수)

제약 조건:
최소 길이 = 1
패턴 = [a-zA-Z0-9_]

ResourceBaseProperties

이름 묘사
{customized property} 문자열

MLTableData

이름 묘사
dataType [필수] 데이터 형식을 지정합니다. "mltable"(필수)
referencedUris MLTable 정의에서 참조되는 Uri(계보에 필요) string[]

UriFileDataVersion

이름 묘사
dataType [필수] 데이터 형식을 지정합니다. "uri_file"(필수)

UriFolderDataVersion

이름 묘사
dataType [필수] 데이터 형식을 지정합니다. "uri_folder"(필수)