模板名称
ACS-ECS-BulkyDeleteExpiredSnapshot 批量删除过期的快照
模板描述
批量删除过期的快照
模板类型
自动化
所有者
Alibaba Cloud
输入参数
参数名称 | 描述 | 类型 | 是否必填 | 默认值 | 约束 |
expiredDays | 快照过期天数 | Number | 是 | ||
regionId | 地域ID | String | 否 | {{ ACS::RegionId }} | |
force | 是否强制删除快照 | Boolean | 否 | False | |
snapshotName | 用于过滤快照的名称字段 | String | 否 | ||
tags | 快照标签 | Json | 否 | [] | |
rateControl | 任务执行的并发比率 | Json | 否 | {‘Mode’: ‘Concurrency’, ‘MaxErrors’: 0, ‘Concurrency’: 10} | |
OOSAssumeRole | OOS扮演的RAM角色 | String | 否 | “” |
输出参数
参数名称 | 描述 | 类型 |
deletedSnapshotIds | List |
执行此模板需要的权限策略
{
"Version": "1",
"Statement": [
{
"Action": [
"ecs:DeleteSnapshot",
"ecs:DescribeSnapshots"
],
"Resource": "*",
"Effect": "Allow"
}
]
}
详情
ACS-ECS-BulkyDeleteExpiredSnapshot详情
模板内容
FormatVersion: OOS-2019-06-01
Description:
en: Bulky delete expired snapshot
zh-cn: 批量删除过期的快照
name-en: ACS-ECS-BulkyDeleteExpiredSnapshot
name-zh-cn: 批量删除过期的快照
categories:
- data_backup
Parameters:
regionId:
Label:
en: RegionId
zh-cn: 地域ID
Type: String
AssociationProperty: RegionId
Default: '{{ ACS::RegionId }}'
force:
Label:
en: Forced deletion of Snapshot
zh-cn: 是否强制删除快照
Type: Boolean
Default: false
expiredDays:
Label:
en: Snapshot Expiration Days
zh-cn: 快照过期天数
Type: Number
snapshotName:
Label:
en: Name Field Used To Filter Snapshot
zh-cn: 用于过滤快照的名称字段
Type: String
Default: " "
tags:
Label:
en: Snapshot Tags
zh-cn: 快照标签
Type: Json
AssociationProperty: Tags
AssociationPropertyMetadata:
ShowSystem: false
Default: [ ]
rateControl:
Label:
en: Rate Control
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: describeSnapshots
Action: 'ACS::ExecuteAPI'
Description:
en: Get the snapshots
zh-cn: 获取快照
Properties:
Service: ECS
API: DescribeSnapshots
Parameters:
RegionId: '{{ regionId }}'
Tags: '{{ tags }}'
Filter2Key: CreationEndTime
Filter2Value:
'Fn::FormatUTCTime':
- 'Fn::AddHour':
- '{{ ACS::CurrentUTCTime }}'
- "Fn::Eval":
- '-{{ expiredDays }}*24'
- '%Y-%m-%dT00:00Z'
Outputs:
snapshotIds:
Type: List
ValueSelector: '.Snapshots.Snapshot[] | select( .SnapshotName | test("{{snapshotName}}")) | .SnapshotId'
- Name: deleteSnapshots
Action: 'ACS::ExecuteAPI'
Description:
en: Delete the snapshots
zh-cn: 删除快照
Properties:
Service: ECS
API: DeleteSnapshot
Parameters:
RegionId: '{{ regionId }}'
SnapshotId: '{{ ACS::TaskLoopItem }}'
Force: '{{ force }}'
Loop:
Items: '{{ describeSnapshots.snapshotIds }}'
RateControl: '{{ rateControl }}'
Outputs:
deletedSnapshotIds:
Type: List
Value: '{{ describeSnapshots.snapshotIds }}'
Metadata:
ALIYUN::OOS::Interface:
ParameterGroups:
- Parameters:
- regionId
- expiredDays
- snapshotName
- tags
- force
Label:
default:
zh-cn: 配置参数
en: Configure Parameters
- Parameters:
- rateControl
- OOSAssumeRole
Label:
default:
zh-cn: 高级选项
en: Control Options