共用方式為


Microsoft.Resources 部署 2016-02-01

言論

針對 Bicep,請考慮使用模組 而非此資源類型

Bicep 資源定義

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

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

資源格式

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

resource symbolicname 'Microsoft.Resources/deployments@2016-02-01' = {
  name: 'string'
  properties: {
    debugSetting: {
      detailLevel: 'string'
    }
    mode: 'string'
    parameters: any(Azure.Bicep.Types.Concrete.AnyType)
    parametersLink: {
      contentVersion: 'string'
      uri: 'string'
    }
    template: any(Azure.Bicep.Types.Concrete.AnyType)
    templateLink: {
      contentVersion: 'string'
      uri: 'string'
    }
  }
}

屬性值

DebugSetting

名字 描述 價值
detailLevel 偵錯詳細數據層級。 字串

DeploymentPropertiesOrDeploymentPropertiesExtended

名字 描述 價值
debugSetting 部署的偵錯設定。 DebugSetting
模式 部署模式。 'Complete'
'Incremental' (必要)
參數 部署參數。 它可以是 JObject 或格式正確的 JSON 字串。 只使用其中一個 Parameters 或 ParametersLink。 任何
parametersLink 參數 URI。 只使用其中一個 Parameters 或 ParametersLink。 ParametersLink
範本 範本內容。 它可以是 JObject 或格式正確的 JSON 字串。 只使用其中一個 Template 或 TemplateLink。 任何
templateLink 範本 URI。 只使用其中一個 Template 或 TemplateLink。 TemplateLink

Microsoft.Resources/deployments

名字 描述 價值
名字 資源名稱 字串 (必要)
性能 部署屬性。 DeploymentPropertiesOrDeploymentPropertiesExtended
名字 描述 價值
contentVersion 如果包含它,它必須符合範本中的 ContentVersion。 字串
uri 參考範本的 URI。 字串 (必要)
名字 描述 價值
contentVersion 如果包含它,它必須符合範本中的 ContentVersion。 字串
uri 參考範本的 URI。 字串 (必要)

ARM 樣本資源定義

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

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

資源格式

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

{
  "type": "Microsoft.Resources/deployments",
  "apiVersion": "2016-02-01",
  "name": "string",
  "properties": {
    "debugSetting": {
      "detailLevel": "string"
    },
    "mode": "string",
    "parameters": {},
    "parametersLink": {
      "contentVersion": "string",
      "uri": "string"
    },
    "template": {},
    "templateLink": {
      "contentVersion": "string",
      "uri": "string"
    }
  }
}

屬性值

DebugSetting

名字 描述 價值
detailLevel 偵錯詳細數據層級。 字串

DeploymentPropertiesOrDeploymentPropertiesExtended

名字 描述 價值
debugSetting 部署的偵錯設定。 DebugSetting
模式 部署模式。 'Complete'
'Incremental' (必要)
參數 部署參數。 它可以是 JObject 或格式正確的 JSON 字串。 只使用其中一個 Parameters 或 ParametersLink。 任何
parametersLink 參數 URI。 只使用其中一個 Parameters 或 ParametersLink。 ParametersLink
範本 範本內容。 它可以是 JObject 或格式正確的 JSON 字串。 只使用其中一個 Template 或 TemplateLink。 任何
templateLink 範本 URI。 只使用其中一個 Template 或 TemplateLink。 TemplateLink

Microsoft.Resources/deployments

名字 描述 價值
apiVersion API 版本 '2016-02-01'
名字 資源名稱 字串 (必要)
性能 部署屬性。 DeploymentPropertiesOrDeploymentPropertiesExtended
類型 資源類型 'Microsoft.Resources/deployments'
名字 描述 價值
contentVersion 如果包含它,它必須符合範本中的 ContentVersion。 字串
uri 參考範本的 URI。 字串 (必要)
名字 描述 價值
contentVersion 如果包含它,它必須符合範本中的 ContentVersion。 字串
uri 參考範本的 URI。 字串 (必要)

Terraform (AzAPI 提供者) 資源定義

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

  • 資源群組

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

資源格式

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Resources/deployments@2016-02-01"
  name = "string"
  body = jsonencode({
    properties = {
      debugSetting = {
        detailLevel = "string"
      }
      mode = "string"
      parameters = ?
      parametersLink = {
        contentVersion = "string"
        uri = "string"
      }
      template = ?
      templateLink = {
        contentVersion = "string"
        uri = "string"
      }
    }
  })
}

屬性值

DebugSetting

名字 描述 價值
detailLevel 偵錯詳細數據層級。 字串

DeploymentPropertiesOrDeploymentPropertiesExtended

名字 描述 價值
debugSetting 部署的偵錯設定。 DebugSetting
模式 部署模式。 'Complete'
'Incremental' (必要)
參數 部署參數。 它可以是 JObject 或格式正確的 JSON 字串。 只使用其中一個 Parameters 或 ParametersLink。 任何
parametersLink 參數 URI。 只使用其中一個 Parameters 或 ParametersLink。 ParametersLink
範本 範本內容。 它可以是 JObject 或格式正確的 JSON 字串。 只使用其中一個 Template 或 TemplateLink。 任何
templateLink 範本 URI。 只使用其中一個 Template 或 TemplateLink。 TemplateLink

Microsoft.Resources/deployments

名字 描述 價值
名字 資源名稱 字串 (必要)
性能 部署屬性。 DeploymentPropertiesOrDeploymentPropertiesExtended
類型 資源類型 “Microsoft.Resources/deployments@2016-02-01”
名字 描述 價值
contentVersion 如果包含它,它必須符合範本中的 ContentVersion。 字串
uri 參考範本的 URI。 字串 (必要)
名字 描述 價值
contentVersion 如果包含它,它必須符合範本中的 ContentVersion。 字串
uri 參考範本的 URI。 字串 (必要)