Microsoft.Batch batchAccounts 2015-12-01
Bicep 資源定義
batchAccounts 資源類型可以使用目標作業來部署:
- 資源群組 - 請參閱 資源群組部署命令
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.Batch/batchAccounts 資源,請將下列 Bicep 新增至範本。
resource symbolicname 'Microsoft.Batch/batchAccounts@2015-12-01' = {
location: 'string'
name: 'string'
properties: {
autoStorage: {
storageAccountId: 'string'
}
}
tags: {
{customized property}: 'string'
}
}
屬性值
AutoStorageBasePropertiesOrAutoStorageProperties
名字 | 描述 | 價值 |
---|---|---|
storageAccountId | 要用於自動記憶體帳戶之記憶體帳戶的記憶體帳戶的資源識別碼。 | 字串 (必要) |
BatchAccountBasePropertiesOrBatchAccountProperties
名字 | 描述 | 價值 |
---|---|---|
autoStorage | 與自動記憶體帳戶相關的屬性。 | AutoStorageBasePropertiesOrAutoStorageProperties |
BatchAccountCreateParametersTags
名字 | 描述 | 價值 |
---|
Microsoft.Batch/batchAccounts
名字 | 描述 | 價值 |
---|---|---|
位置 | 要在其中建立帳戶的區域。 | 字串 (必要) |
名字 | 資源名稱 | 字串 約束: 最小長度 = 3 最大長度 = 3 模式 = ^[-\w\._]+$ (必要) |
性能 | 帳戶的屬性。 | BatchAccountBasePropertiesOrBatchAccountProperties |
標籤 | 資源標籤 | 標記名稱和值的字典。 請參閱範本中的 標籤 |
快速入門範例
下列快速入門範例會部署此資源類型。
Bicep 檔案 | 描述 |
---|---|
沒有公用IP位址的 Azure Batch 集區 | 此範本會建立 Azure Batch 簡化的節點通訊集區,而不需要公用 IP 位址。 |
使用範本建立 Batch 帳戶 | 此範本會建立 Batch 帳戶和記憶體帳戶。 |
ARM 樣本資源定義
batchAccounts 資源類型可以使用目標作業來部署:
- 資源群組 - 請參閱 資源群組部署命令
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.Batch/batchAccounts 資源,請將下列 JSON 新增至範本。
{
"type": "Microsoft.Batch/batchAccounts",
"apiVersion": "2015-12-01",
"name": "string",
"location": "string",
"properties": {
"autoStorage": {
"storageAccountId": "string"
}
},
"tags": {
"{customized property}": "string"
}
}
屬性值
AutoStorageBasePropertiesOrAutoStorageProperties
名字 | 描述 | 價值 |
---|---|---|
storageAccountId | 要用於自動記憶體帳戶之記憶體帳戶的記憶體帳戶的資源識別碼。 | 字串 (必要) |
BatchAccountBasePropertiesOrBatchAccountProperties
名字 | 描述 | 價值 |
---|---|---|
autoStorage | 與自動記憶體帳戶相關的屬性。 | AutoStorageBasePropertiesOrAutoStorageProperties |
BatchAccountCreateParametersTags
名字 | 描述 | 價值 |
---|
Microsoft.Batch/batchAccounts
名字 | 描述 | 價值 |
---|---|---|
apiVersion | API 版本 | '2015-12-01' |
位置 | 要在其中建立帳戶的區域。 | 字串 (必要) |
名字 | 資源名稱 | 字串 約束: 最小長度 = 3 最大長度 = 3 模式 = ^[-\w\._]+$ (必要) |
性能 | 帳戶的屬性。 | BatchAccountBasePropertiesOrBatchAccountProperties |
標籤 | 資源標籤 | 標記名稱和值的字典。 請參閱範本中的 標籤 |
類型 | 資源類型 | 'Microsoft.Batch/batchAccounts' |
快速入門範本
下列快速入門範本會部署此資源類型。
範本 | 描述 |
---|---|
沒有公用IP位址的 Azure Batch 集區 |
此範本會建立 Azure Batch 簡化的節點通訊集區,而不需要公用 IP 位址。 |
使用範本建立 Batch 帳戶 |
此範本會建立 Batch 帳戶和記憶體帳戶。 |
Terraform (AzAPI 提供者) 資源定義
batchAccounts 資源類型可以使用目標作業來部署:
- 資源群組
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.Batch/batchAccounts 資源,請將下列 Terraform 新增至範本。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Batch/batchAccounts@2015-12-01"
name = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
autoStorage = {
storageAccountId = "string"
}
}
})
}
屬性值
AutoStorageBasePropertiesOrAutoStorageProperties
名字 | 描述 | 價值 |
---|---|---|
storageAccountId | 要用於自動記憶體帳戶之記憶體帳戶的記憶體帳戶的資源識別碼。 | 字串 (必要) |
BatchAccountBasePropertiesOrBatchAccountProperties
名字 | 描述 | 價值 |
---|---|---|
autoStorage | 與自動記憶體帳戶相關的屬性。 | AutoStorageBasePropertiesOrAutoStorageProperties |
BatchAccountCreateParametersTags
名字 | 描述 | 價值 |
---|
Microsoft.Batch/batchAccounts
名字 | 描述 | 價值 |
---|---|---|
位置 | 要在其中建立帳戶的區域。 | 字串 (必要) |
名字 | 資源名稱 | 字串 約束: 最小長度 = 3 最大長度 = 3 模式 = ^[-\w\._]+$ (必要) |
性能 | 帳戶的屬性。 | BatchAccountBasePropertiesOrBatchAccountProperties |
標籤 | 資源標籤 | 標記名稱和值的字典。 |
類型 | 資源類型 | “Microsoft.Batch/batchAccounts@2015-12-01” |