全部產品
Search
文件中心

CloudOps Orchestration Service:ACS-ResourceManager-BulkyMoveResources

更新時間:Sep 05, 2024

模板名稱

ACS-ResourceManager-BulkyMoveResources 資源管理批量轉資源群組

立即執行

模板描述

批量將資源從一個資源群組轉移到另一個資源群組

模板類型

自動化

所有者

Alibaba Cloud

輸入參數

參數名稱

描述

類型

是否必填

預設值

約束

resourceIds

資源ID

List

resourceGroupId

資源群組ID

String

resourceType

資源類型

String

regionId

地區ID

String

{{ ACS::RegionId }}

rateControl

任務執行的並發比率

Json

{‘Mode’: ‘Concurrency’, ‘MaxErrors’: 0, ‘Concurrency’: 10}

OOSAssumeRole

OOS扮演的RAM角色

String

“”

輸出參數

執行此模板需要的權限原則

{
    "Version": "1",
    "Statement": [
        {
            "Action": [
                "resourcemanager:MoveResources"
            ],
            "Resource": "*",
            "Effect": "Allow"
        }
    ]
}

詳情

ACS-ResourceManager-BulkyMoveResources詳情

模板內容

FormatVersion: OOS-2019-06-01
Description:
  en: Bulky move resources from one resource group to another
  zh-cn: 批量將資源從一個資源群組轉移到另一個資源群組
  name-en: ACS-ResourceManager-BulkyMoveResources
  name-zh-cn: 資源管理批量轉資源群組
  categories:
    - security
Parameters:
  regionId:
    Type: String
    Label:
      en: RegionId
      zh-cn: 地區ID
    AssociationProperty: RegionId
    Default: '{{ ACS::RegionId }}'
  resourceIds:
    Label:
      en: resourceIds
      zh-cn: 資源ID
    Type: List
  resourceGroupId:
    Label:
      en: resourceGroup Id
      zh-cn: 資源群組ID
    Type: String
  resourceType:
    Label:
      en: resource type
      zh-cn: 資源類型
    Type: String
    AllowedValues:
      - ACS::ECS::Disk
      - ACS::ECS::NetworkInterface
      - ACS::EIP::EipAddress
      - ACS::ECS::Snapshot

  rateControl:
    Label:
      en: RateControl
      zh-cn: 任務執行的並發比率
    Type: Json
    AssociationProperty: RateControl
    Default:
      Mode: Concurrency
      MaxErrors: 0
      Concurrency: 10
  OOSAssumeRole:
    Label:
      en: OOSAssumeRole
      zh-cn: OOS扮演的RAM角色
    Type: String
    Default: ''
RamRole: '{{ OOSAssumeRole }}'
Tasks:
  - Name: moveResources
    Action: ACS::ExecuteAPI
    Description:
      en: 將資源從一個資源群組轉移到另一個資源群組
      zh-cn: 將資源從一個資源群組轉移到另一個資源群組
    Properties:
      Service: ResourceManager
      API: MoveResources
      Parameters:
        ResourceGroupId: '{{ resourceGroupId }}'
        Resources:
          - ResourceId: '{{ACS::TaskLoopItem }}'
            ResourceType:
              Fn::Select:
                - '{{ resourceType }}'
                - ACS::ECS::Disk: disk
                  ACS::ECS::NetworkInterface: eni
                  ACS::EIP::EipAddress: eip
                  ACS::ECS::Snapshot: snapshot
            RegionId: '{{ regionId }}'
            Service:
              Fn::Select:
                - '{{ resourceType }}'
                - ACS::ECS::Disk: ecs
                  ACS::ECS::NetworkInterface: ecs
                  ACS::EIP::EipAddress: eip
                  ACS::ECS::Snapshot: ecs
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ resourceIds }}'
Metadata:
  ALIYUN::OOS::Interface:
    ParameterGroups:
      - Parameters:
          - regionId
          - resourceGroupId
          - resourceType
          - resourceIds
        Label:
          default:
            zh-cn: 配置參數
            en: Configure Parameters
      - Parameters:
          - OOSAssumeRole
          - RateControl
        Label:
          default:
            zh-cn: 進階選項
            en: Control Options