文档

ACS-ResourceManager-BulkyMoveResources

更新时间:

模板名称

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