Microsoft.DesktopVirtualization 工作區 2020-09-21-preview
- 最新
- 2023-11-01-preview
- 2023-10-04-preview
- 2023-09-05
- 2023-07-07-preview
- 2022-10-14-preview
- 2022-09-09
- 2022-04-01-preview
- 2022-02-10-preview
- 2021-09-03-preview
- 2021-07-12
- 2021-04-01-preview
- 2021-03-09-preview
- 2021-02-01-preview
- 2021-01-14-preview
- 2020-11-10-preview
- 2020-11-02-preview
- 2020-10-19-preview
- 2020-09-21-preview
- 2019-12-10-preview
- 2019-09-24-preview
- 2019-01-23-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 | 工作區的易記名稱。 | 字串 |