Microsoft.Storage storageAccounts/storageTaskAssignments 2023-05-01
Bicep 資源定義
storageAccounts/storageTaskAssignments 資源類型可以使用目標作業來部署:
- 資源群組 - 請參閱 資源群組部署命令
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.Storage/storageAccounts/storageTaskAssignments 資源,請將下列 Bicep 新增至範本。
resource symbolicname 'Microsoft.Storage/storageAccounts/storageTaskAssignments@2023-05-01' = {
parent: resourceSymbolicName
name: 'string'
properties: {
description: 'string'
enabled: bool
executionContext: {
target: {
excludePrefix: [
'string'
]
prefix: [
'string'
]
}
trigger: {
parameters: {
endBy: 'string'
interval: int
intervalUnit: 'Days'
startFrom: 'string'
startOn: 'string'
}
type: 'string'
}
}
report: {
prefix: 'string'
}
runStatus: {}
taskId: 'string'
}
}
屬性值
ExecutionTarget
名字 | 描述 | 價值 |
---|---|---|
excludePrefix | 要從工作執行中排除的物件前置詞清單。 如果 include 和 exclude 前置詞之間發生衝突,排除前置詞將會是判斷因素 | string[] |
前綴 | 工作執行所需的物件前置詞清單 | string[] |
ExecutionTrigger
名字 | 描述 | 價值 |
---|---|---|
參數 | 記憶體工作分派執行的觸發程序參數 | TriggerParameters (必要) |
類型 | 記憶體工作分派執行的觸發程序類型 | 'OnSchedule' 'RunOnce' (必要) |
Microsoft.Storage/storageAccounts/storageTaskAssignments
名字 | 描述 | 價值 |
---|---|---|
名字 | 資源名稱 | 字串 約束: 最小長度 = 3 最大長度 = 3 模式 = ^[a-z0-9]{3,24}$ (必要) |
父母 | 在 Bicep 中,您可以指定子資源的父資源。 只有在父資源外部宣告子資源時,才需要新增這個屬性。 如需詳細資訊,請參閱 父資源外部的子資源。 |
類型的資源符號名稱:storageAccounts |
性能 | 記憶體工作分派的屬性。 | StorageTaskAssignmentProperties (必要) |
StorageTaskAssignmentExecutionContext
名字 | 描述 | 價值 |
---|---|---|
目標 | 記憶體工作分派的執行目標 | ExecutionTarget |
觸發 | 記憶體工作分派的執行觸發程式 | ExecutionTrigger (必要) |
StorageTaskAssignmentProperties
名字 | 描述 | 價值 |
---|---|---|
描述 | 描述記憶體工作分派用途的文字 | 字串 (必要) |
啟用 | 是否啟用記憶體工作分派 | 布林 (必要) |
executionContext | 記憶體工作分派執行內容 | StorageTaskAssignmentExecutionContext (必要) |
報告 | 記憶體工作分派報告 | StorageTaskAssignmentReport (必要) |
runStatus | 記憶體工作分派的執行狀態 | StorageTaskReportProperties |
taskId | 對應記憶體工作的識別碼 | 字串 (必要) |
StorageTaskAssignmentReport
名字 | 描述 | 價值 |
---|---|---|
前綴 | 記憶體工作分派報告位置的容器前置詞 | 字串 (必要) |
StorageTaskReportProperties
名字 | 描述 | 價值 |
---|
TriggerParameters
名字 | 描述 | 價值 |
---|---|---|
endBy | 結束工作執行的時機。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | 字串 |
間隔 | 執行工作執行的間隔。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | int 約束: 最小值 = 1 |
intervalUnit | 執行工作執行的間隔單位。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | 'Days' |
startFrom | 開始工作執行的時機。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | 字串 |
startOn | 開始工作執行的時機。 當 ExecutionTrigger.properties.type 為 'RunOnce' 時,這是選擇性字段;當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,不應該有這個屬性 | 字串 |
ARM 樣本資源定義
storageAccounts/storageTaskAssignments 資源類型可以使用目標作業來部署:
- 資源群組 - 請參閱 資源群組部署命令
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.Storage/storageAccounts/storageTaskAssignments 資源,請將下列 JSON 新增至範本。
{
"type": "Microsoft.Storage/storageAccounts/storageTaskAssignments",
"apiVersion": "2023-05-01",
"name": "string",
"properties": {
"description": "string",
"enabled": "bool",
"executionContext": {
"target": {
"excludePrefix": [ "string" ],
"prefix": [ "string" ]
},
"trigger": {
"parameters": {
"endBy": "string",
"interval": "int",
"intervalUnit": "Days",
"startFrom": "string",
"startOn": "string"
},
"type": "string"
}
},
"report": {
"prefix": "string"
},
"runStatus": {
},
"taskId": "string"
}
}
屬性值
ExecutionTarget
名字 | 描述 | 價值 |
---|---|---|
excludePrefix | 要從工作執行中排除的物件前置詞清單。 如果 include 和 exclude 前置詞之間發生衝突,排除前置詞將會是判斷因素 | string[] |
前綴 | 工作執行所需的物件前置詞清單 | string[] |
ExecutionTrigger
名字 | 描述 | 價值 |
---|---|---|
參數 | 記憶體工作分派執行的觸發程序參數 | TriggerParameters (必要) |
類型 | 記憶體工作分派執行的觸發程序類型 | 'OnSchedule' 'RunOnce' (必要) |
Microsoft.Storage/storageAccounts/storageTaskAssignments
名字 | 描述 | 價值 |
---|---|---|
apiVersion | API 版本 | '2023-05-01' |
名字 | 資源名稱 | 字串 約束: 最小長度 = 3 最大長度 = 3 模式 = ^[a-z0-9]{3,24}$ (必要) |
性能 | 記憶體工作分派的屬性。 | StorageTaskAssignmentProperties (必要) |
類型 | 資源類型 | 'Microsoft.Storage/storageAccounts/storageTaskAssignments' |
StorageTaskAssignmentExecutionContext
名字 | 描述 | 價值 |
---|---|---|
目標 | 記憶體工作分派的執行目標 | ExecutionTarget |
觸發 | 記憶體工作分派的執行觸發程式 | ExecutionTrigger (必要) |
StorageTaskAssignmentProperties
名字 | 描述 | 價值 |
---|---|---|
描述 | 描述記憶體工作分派用途的文字 | 字串 (必要) |
啟用 | 是否啟用記憶體工作分派 | 布林 (必要) |
executionContext | 記憶體工作分派執行內容 | StorageTaskAssignmentExecutionContext (必要) |
報告 | 記憶體工作分派報告 | StorageTaskAssignmentReport (必要) |
runStatus | 記憶體工作分派的執行狀態 | StorageTaskReportProperties |
taskId | 對應記憶體工作的識別碼 | 字串 (必要) |
StorageTaskAssignmentReport
名字 | 描述 | 價值 |
---|---|---|
前綴 | 記憶體工作分派報告位置的容器前置詞 | 字串 (必要) |
StorageTaskReportProperties
名字 | 描述 | 價值 |
---|
TriggerParameters
名字 | 描述 | 價值 |
---|---|---|
endBy | 結束工作執行的時機。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | 字串 |
間隔 | 執行工作執行的間隔。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | int 約束: 最小值 = 1 |
intervalUnit | 執行工作執行的間隔單位。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | 'Days' |
startFrom | 開始工作執行的時機。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | 字串 |
startOn | 開始工作執行的時機。 當 ExecutionTrigger.properties.type 為 'RunOnce' 時,這是選擇性字段;當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,不應該有這個屬性 | 字串 |
Terraform (AzAPI 提供者) 資源定義
storageAccounts/storageTaskAssignments 資源類型可以使用目標作業來部署:
- 資源群組
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.Storage/storageAccounts/storageTaskAssignments 資源,請將下列 Terraform 新增至範本。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Storage/storageAccounts/storageTaskAssignments@2023-05-01"
name = "string"
body = jsonencode({
properties = {
description = "string"
enabled = bool
executionContext = {
target = {
excludePrefix = [
"string"
]
prefix = [
"string"
]
}
trigger = {
parameters = {
endBy = "string"
interval = int
intervalUnit = "Days"
startFrom = "string"
startOn = "string"
}
type = "string"
}
}
report = {
prefix = "string"
}
runStatus = {
}
taskId = "string"
}
})
}
屬性值
ExecutionTarget
名字 | 描述 | 價值 |
---|---|---|
excludePrefix | 要從工作執行中排除的物件前置詞清單。 如果 include 和 exclude 前置詞之間發生衝突,排除前置詞將會是判斷因素 | string[] |
前綴 | 工作執行所需的物件前置詞清單 | string[] |
ExecutionTrigger
名字 | 描述 | 價值 |
---|---|---|
參數 | 記憶體工作分派執行的觸發程序參數 | TriggerParameters (必要) |
類型 | 記憶體工作分派執行的觸發程序類型 | 'OnSchedule' 'RunOnce' (必要) |
Microsoft.Storage/storageAccounts/storageTaskAssignments
名字 | 描述 | 價值 |
---|---|---|
名字 | 資源名稱 | 字串 約束: 最小長度 = 3 最大長度 = 3 模式 = ^[a-z0-9]{3,24}$ (必要) |
parent_id | 此資源為父系之資源的標識碼。 | 類型資源的標識碼:storageAccounts |
性能 | 記憶體工作分派的屬性。 | StorageTaskAssignmentProperties (必要) |
類型 | 資源類型 | “Microsoft.Storage/storageAccounts/storageTaskAssignments@2023-05-01” |
StorageTaskAssignmentExecutionContext
名字 | 描述 | 價值 |
---|---|---|
目標 | 記憶體工作分派的執行目標 | ExecutionTarget |
觸發 | 記憶體工作分派的執行觸發程式 | ExecutionTrigger (必要) |
StorageTaskAssignmentProperties
名字 | 描述 | 價值 |
---|---|---|
描述 | 描述記憶體工作分派用途的文字 | 字串 (必要) |
啟用 | 是否啟用記憶體工作分派 | 布林 (必要) |
executionContext | 記憶體工作分派執行內容 | StorageTaskAssignmentExecutionContext (必要) |
報告 | 記憶體工作分派報告 | StorageTaskAssignmentReport (必要) |
runStatus | 記憶體工作分派的執行狀態 | StorageTaskReportProperties |
taskId | 對應記憶體工作的識別碼 | 字串 (必要) |
StorageTaskAssignmentReport
名字 | 描述 | 價值 |
---|---|---|
前綴 | 記憶體工作分派報告位置的容器前置詞 | 字串 (必要) |
StorageTaskReportProperties
名字 | 描述 | 價值 |
---|
TriggerParameters
名字 | 描述 | 價值 |
---|---|---|
endBy | 結束工作執行的時機。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | 字串 |
間隔 | 執行工作執行的間隔。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | int 約束: 最小值 = 1 |
intervalUnit | 執行工作執行的間隔單位。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | 'Days' |
startFrom | 開始工作執行的時機。 當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,這是必要的字段;當 ExecutionTrigger.properties.type 為 'RunOnce' 時,不應該有這個屬性 | 字串 |
startOn | 開始工作執行的時機。 當 ExecutionTrigger.properties.type 為 'RunOnce' 時,這是選擇性字段;當 ExecutionTrigger.properties.type 為 'OnSchedule' 時,不應該有這個屬性 | 字串 |