共用方式為


Microsoft.DesktopVirtualization 工作區 2020-09-21-preview

Bicep 資源定義

工作區資源類型可以使用目標作業進行部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。

資源格式

若要建立 Microsoft.DesktopVirtualization/workspaces 資源,請將下列 Bicep 新增至範本。

resource symbolicname 'Microsoft.DesktopVirtualization/workspaces@2020-09-21-preview' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  properties: {
    applicationGroupReferences: [
      'string'
    ]
    description: 'string'
    friendlyName: 'string'
  }
}

屬性值

workspaces

名稱 描述
NAME 資源名稱 需要字串 ()

字元限制:3-64

合法字元:
英數字元、底線、句號和連字號。

以字母或數字開頭。 以字母、數位或底線結尾。
location 資源所在的地理位置 需要字串 ()
tags 資源標籤。 標記名稱和值的字典。 請參閱 範本中的標籤
properties 工作區的詳細屬性 WorkspaceProperties

WorkspaceProperties

名稱 描述
applicationGroupReferences applicationGroup 資源標識符的清單。 string[]
description 工作區的描述。 字串
friendlyName 工作區的易記名稱。 字串

ARM 範本資源定義

工作區資源類型可以使用目標作業進行部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。

資源格式

若要建立 Microsoft.DesktopVirtualization/workspaces 資源,請將下列 JSON 新增至範本。

{
  "type": "Microsoft.DesktopVirtualization/workspaces",
  "apiVersion": "2020-09-21-preview",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "applicationGroupReferences": [ "string" ],
    "description": "string",
    "friendlyName": "string"
  }
}

屬性值

workspaces

名稱 描述
類型 資源類型 'Microsoft.DesktopVirtualization/workspaces'
apiVersion 資源 API 版本 '2020-09-21-preview'
NAME 資源名稱 需要字串 ()

字元限制:3-64

合法字元:
英數字元、底線、句號和連字號。

以字母或數字開頭。 以字母、數位或底線結尾。
location 資源所在的地理位置 需要字串 ()
tags 資源標籤。 標記名稱和值的字典。 請參閱 範本中的標籤
properties 工作區的詳細屬性 WorkspaceProperties

WorkspaceProperties

名稱 描述
applicationGroupReferences applicationGroup 資源標識符的清單。 string[]
description 工作區的描述。 字串
friendlyName 工作區的易記名稱。 字串

Terraform (AzAPI 提供者) 資源定義

工作區資源類型可以使用目標作業來部署:

  • 資源群組

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄

資源格式

若要建立 Microsoft.DesktopVirtualization/workspaces 資源,請將下列 Terraform 新增至範本。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.DesktopVirtualization/workspaces@2020-09-21-preview"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      applicationGroupReferences = [
        "string"
      ]
      description = "string"
      friendlyName = "string"
    }
  })
}

屬性值

workspaces

名稱 描述
類型 資源類型 “Microsoft.DesktopVirtualization/workspaces@2020-09-21-preview”
NAME 資源名稱 字串 (必要)

字元限制:3-64

合法字元:
英數字元、底線、句號和連字號。

以字母或數字開頭。 以字母、數位或底線結尾。
location 資源所在的地理位置 字串 (必要)
parent_id 若要部署至資源群組,請使用該資源群組的標識碼。 字串 (必要)
tags 資源標籤。 標記名稱和值的字典。
properties 工作區的詳細屬性 WorkspaceProperties

WorkspaceProperties

名稱 描述
applicationGroupReferences applicationGroup 資源標識符的清單。 string[]
description 工作區的描述。 字串
friendlyName 工作區的易記名稱。 字串