日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

ACS-VPC-BulkyEnableDeletionProtection

更新時(shí)間:

模板名稱

ACS-VPC-BulkyEnableDeletionProtection 批量設(shè)置實(shí)例保護(hù)

立即執(zhí)行

模板描述

批量設(shè)置實(shí)例保護(hù)

模板類型

自動(dòng)化

所有者

Alibaba Cloud

輸入?yún)?shù)

參數(shù)名稱

描述

類型

是否必填

默認(rèn)值

約束

instanceIds

Vpc實(shí)例Id

List

regionId

地域ID

String

{{ ACS::RegionId }}

type

要設(shè)置刪除保護(hù)功能的實(shí)例類型

String

NATGW

protectionEnable

是否開(kāi)啟刪除保護(hù)功能

Boolean

True

rateControl

任務(wù)執(zhí)行的并發(fā)比率

Json

{'Mode': 'Concurrency', 'MaxErrors': 0, 'Concurrency': 10}

OOSAssumeRole

OOS扮演的RAM角色

String

""

輸出參數(shù)

無(wú)

執(zhí)行此模板需要的權(quán)限策略

{
    "Version": "1",
    "Statement": [
        {
            "Action": [
                "vpc:DeletionProtection"
            ],
            "Resource": "*",
            "Effect": "Allow"
        }
    ]
}

詳情

ACS-VPC-BulkyEnableDeletionProtection詳情

模板內(nèi)容

FormatVersion: OOS-2019-06-01
Description:
  en: Bulky enable deletion protection for instances
  zh-cn: 批量設(shè)置實(shí)例保護(hù)
  name-en: ACS-VPC-BulkyEnableDeletionProtection
  name-zh-cn: 批量設(shè)置實(shí)例保護(hù)
  categories:
    - security
Parameters:
  regionId:
    Type: String
    Label:
      en: RegionId
      zh-cn: 地域ID
    AssociationProperty: RegionId
    Default: '{{ ACS::RegionId }}'
  type:
    Label:
      en: Type
      zh-cn: 要設(shè)置刪除保護(hù)功能的實(shí)例類型
    Type: String
    AllowedValues:
      - EIP
      - CBWP
      - NATGW
    Default: NATGW
  instanceIds:
    Label:
      en: InstanceIds
      zh-cn: Vpc實(shí)例Id
    Type: List
  protectionEnable:
    Label:
      en: ProtectionEnable
      zh-cn: 是否開(kāi)啟刪除保護(hù)功能
    Type: Boolean
    Default: true
  rateControl:
    Label:
      en: RateControl
      zh-cn: 任務(wù)執(zhí)行的并發(fā)比率
    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: enableDeletionProtection
    Action: 'ACS::ExecuteApi'
    Description:
      en: Enables deletion protection for an instance
      zh-cn: 設(shè)置實(shí)例刪除保護(hù)功能
    Properties:
      Service: VPC
      API: DeletionProtection
      Parameters:
        RegionId: '{{ regionId }}'
        Type: '{{ type }}'
        InstanceId: '{{ ACS::TaskLoopItem }}'
        ProtectionEnable: '{{ protectionEnable }}'
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ instanceIds }}'