共用方式為


Microsoft.ManagementGroups

言論

部署在租用戶範圍時,請勿設定 scope 屬性。 請參閱在 Bicep 檔案ARM 樣本中建立管理群組,

在其他範圍部署時,請將 scope 屬性設定為 Bicep 檔案的 tenant(),或針對 ARM 範本 /。 請參閱在 Bicep 檔案ARM 樣本中建立管理群組,

Bicep 資源定義

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

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

資源格式

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

resource symbolicname 'Microsoft.Management/managementGroups@2023-04-01' = {
  name: 'string'
  properties: {
    details: {
      parent: {
        id: 'string'
      }
    }
    displayName: 'string'
  }
}

屬性值

CreateManagementGroupDetailsOrManagementGroupDetails

名字 描述 價值
父母 (選擇性)建立期間所使用父管理群組的標識碼。 CreateParentGroupInfoOrParentGroupInfo

CreateManagementGroupPropertiesOrManagementGroupProperties

名字 描述 價值
建立期間使用之管理群組的詳細數據。 CreateManagementGroupDetailsOrManagementGroupDetails
displayName 管理群組的易記名稱。 如果未傳遞任何值,此字段將會設定為 groupId。 字串

CreateParentGroupInfoOrParentGroupInfo

名字 描述 價值
id 父管理群組的完整標識碼。 例如,/providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 字串

Microsoft.Management/managementGroups

名字 描述 價值
名字 資源名稱 字串 (必要)
性能 建立期間所使用之管理群組的泛型屬性。 CreateManagementGroupPropertiesOrManagementGroupProperties

ARM 樣本資源定義

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

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

資源格式

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

{
  "type": "Microsoft.Management/managementGroups",
  "apiVersion": "2023-04-01",
  "name": "string",
  "properties": {
    "details": {
      "parent": {
        "id": "string"
      }
    },
    "displayName": "string"
  }
}

屬性值

CreateManagementGroupDetailsOrManagementGroupDetails

名字 描述 價值
父母 (選擇性)建立期間所使用父管理群組的標識碼。 CreateParentGroupInfoOrParentGroupInfo

CreateManagementGroupPropertiesOrManagementGroupProperties

名字 描述 價值
建立期間使用之管理群組的詳細數據。 CreateManagementGroupDetailsOrManagementGroupDetails
displayName 管理群組的易記名稱。 如果未傳遞任何值,此字段將會設定為 groupId。 字串

CreateParentGroupInfoOrParentGroupInfo

名字 描述 價值
id 父管理群組的完整標識碼。 例如,/providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 字串

Microsoft.Management/managementGroups

名字 描述 價值
apiVersion API 版本 '2023-04-01'
名字 資源名稱 字串 (必要)
性能 建立期間所使用之管理群組的泛型屬性。 CreateManagementGroupPropertiesOrManagementGroupProperties
類型 資源類型 'Microsoft.Management/managementGroups'

快速入門範本

下列快速入門範本會部署此資源類型。

範本 描述
建立新的管理群組

部署至 Azure
此範本是將建立新管理群組的租用戶層級範本。

Terraform (AzAPI 提供者) 資源定義

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

  • 租使用者

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

資源格式

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Management/managementGroups@2023-04-01"
  name = "string"
  body = jsonencode({
    properties = {
      details = {
        parent = {
          id = "string"
        }
      }
      displayName = "string"
    }
  })
}

屬性值

CreateManagementGroupDetailsOrManagementGroupDetails

名字 描述 價值
父母 (選擇性)建立期間所使用父管理群組的標識碼。 CreateParentGroupInfoOrParentGroupInfo

CreateManagementGroupPropertiesOrManagementGroupProperties

名字 描述 價值
建立期間使用之管理群組的詳細數據。 CreateManagementGroupDetailsOrManagementGroupDetails
displayName 管理群組的易記名稱。 如果未傳遞任何值,此字段將會設定為 groupId。 字串

CreateParentGroupInfoOrParentGroupInfo

名字 描述 價值
id 父管理群組的完整標識碼。 例如,/providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 字串

Microsoft.Management/managementGroups

名字 描述 價值
名字 資源名稱 字串 (必要)
性能 建立期間所使用之管理群組的泛型屬性。 CreateManagementGroupPropertiesOrManagementGroupProperties
類型 資源類型 “Microsoft.Management/managementGroups@2023-04-01”