調用DeleteResourceGroup刪除資源組。

說明 刪除資源組前,請先刪除資源組中的資源。

本文將提供一個示例,刪除ID為rg-9gLOoK****的資源組。

調試

您可以在OpenAPI Explorer中直接運行該接口,免去您計算簽名的困擾。運行成功后,OpenAPI Explorer可以自動生成SDK代碼示例。

請求參數

名稱 類型 是否必選 示例值 描述
Action String DeleteResourceGroup

要執行的操作。取值:DeleteResourceGroup

ResourceGroupId String rg-9gLOoK****

資源組ID。

您可以調用ListResourceGroups查詢資源組ID。

關于公共請求參數的詳情,請參見公共參數

返回數據

名稱 類型 示例值 描述
RequestId String 1C488B66-B819-4D14-8711-C4EAAA13AC01

請求ID。

ResourceGroup Object

資源組信息。

DisplayName String my-project

資源組顯示名稱。

Status String PendingDelete

資源組狀態。

  • Creating:創建中。
  • OK:創建成功。
  • PendingDelete:等待刪除。
RegionStatuses Array of RegionStatus

各個地域的資源組狀態。

RegionStatus
Status String PendingDelete

資源組狀態。

  • Creating:創建中。
  • OK:創建成功。
  • PendingDelete:等待刪除。
  • Deleting:刪除中。
RegionId String cn-qingdao

地域ID。

AccountId String 123456789****

資源組所屬的阿里云賬號ID。

Name String my-project

資源組唯一標識。

CreateDate String 2015-01-23T12:33:18Z

資源組創建時間(UTC時間)。

Id String rg-9gLOoK****

資源組ID。

示例

請求示例

https://resourcemanager.aliyuncs.com/?Action=DeleteResourceGroup
&ResourceGroupId=rg-9gLOoK****
&<公共請求參數>

正常返回示例

XML格式

HTTP/1.1 200 OK
Content-Type:application/xml

<?xml version="1.0" encoding="UTF-8" ?>
<DeleteResourceGroupResponse>
	<RequestId>1C488B66-B819-4D14-8711-C4EAAA13AC01</RequestId>
	<ResourceGroup>
		<Id>rg-9gLOoK****</Id>
		<AccountId>123456789****</AccountId>
		<Name>my-project</Name>
		<DisplayName>my-project</DisplayName>
		<Status>PendingDelete</Status>
		<RegionStatuses>
			<RegionStatus>
				<RegionId>cn-hangzhou</RegionId>
				<Status>PendingDelete</Status>
			</RegionStatus>
			<RegionStatus>
				<RegionId>cn-qingdao</RegionId>
				<Status>PendingDelete</Status>
			</RegionStatus>
		</RegionStatuses>
		<CreateDate>2015-01-23T12:33:18Z</CreateDate>
	</ResourceGroup>
</DeleteResourceGroupResponse>

JSON格式

HTTP/1.1 200 OK
Content-Type:application/json

{
  "RequestId" : "1C488B66-B819-4D14-8711-C4EAAA13AC01",
  "ResourceGroup" : {
    "Id" : "rg-9gLOoK****",
    "AccountId" : "123456789****",
    "Name" : "my-project",
    "DisplayName" : "my-project",
    "Status" : "PendingDelete",
    "RegionStatuses" : {
      "RegionStatus" : [ {
        "RegionId" : "cn-hangzhou",
        "Status" : "PendingDelete"
      }, {
        "RegionId" : "cn-qingdao",
        "Status" : "PendingDelete"
      } ]
    },
    "CreateDate" : "2015-01-23T12:33:18Z"
  }
}

錯誤碼

HttpCode 錯誤碼 錯誤信息 描述
400 InvalidParameter.ResourceGroupId The ResourceGroupId is invalid. 資源組ID無效。
404 EntityNotExists.ResourceGroup The specified resource group does not exist. You must first create a resource group. 資源組不存在,請先創建資源組。
409 DeleteConflict.ResourceGroup.Resource Failed to delete the resource group because one or more cloud resources exist in the resource group. Try again later after you release the cloud resources. 資源組下存在云資源,請先釋放資源。

訪問錯誤中心查看更多錯誤碼。