共用方式為


Microsoft.Resources 部署 2015-11-01

言論

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

Bicep 資源定義

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

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

資源格式

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

resource symbolicname 'Microsoft.Resources/deployments@2015-11-01' = {
  name: 'string'
  properties: {
    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'
    }
  }
}

屬性值

DeploymentPropertiesOrDeploymentPropertiesExtended

名字 描述 價值
模式 取得或設定部署模式。 'Complete'
'Incremental'
參數 部署參數。 只使用其中一個 Parameters 或 ParametersLink。 任何
parametersLink 取得或設定參考參數的 URI。 只使用其中一個 Parameters 或 ParametersLink。 ParametersLink
範本 取得或設定範本內容。 只使用其中一個 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": "2015-11-01",
  "name": "string",
  "properties": {
    "mode": "string",
    "parameters": {},
    "parametersLink": {
      "contentVersion": "string",
      "uri": "string"
    },
    "template": {},
    "templateLink": {
      "contentVersion": "string",
      "uri": "string"
    }
  }
}

屬性值

DeploymentPropertiesOrDeploymentPropertiesExtended

名字 描述 價值
模式 取得或設定部署模式。 'Complete'
'Incremental'
參數 部署參數。 只使用其中一個 Parameters 或 ParametersLink。 任何
parametersLink 取得或設定參考參數的 URI。 只使用其中一個 Parameters 或 ParametersLink。 ParametersLink
範本 取得或設定範本內容。 只使用其中一個 Template 或 TemplateLink。 任何
templateLink 取得或設定參考範本的 URI。 只使用其中一個 Template 或 TemplateLink。 TemplateLink

Microsoft.Resources/deployments

名字 描述 價值
apiVersion API 版本 '2015-11-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@2015-11-01"
  name = "string"
  body = jsonencode({
    properties = {
      mode = "string"
      parameters = ?
      parametersLink = {
        contentVersion = "string"
        uri = "string"
      }
      template = ?
      templateLink = {
        contentVersion = "string"
        uri = "string"
      }
    }
  })
}

屬性值

DeploymentPropertiesOrDeploymentPropertiesExtended

名字 描述 價值
模式 取得或設定部署模式。 'Complete'
'Incremental'
參數 部署參數。 只使用其中一個 Parameters 或 ParametersLink。 任何
parametersLink 取得或設定參考參數的 URI。 只使用其中一個 Parameters 或 ParametersLink。 ParametersLink
範本 取得或設定範本內容。 只使用其中一個 Template 或 TemplateLink。 任何
templateLink 取得或設定參考範本的 URI。 只使用其中一個 Template 或 TemplateLink。 TemplateLink

Microsoft.Resources/deployments

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