-
Notifications
You must be signed in to change notification settings - Fork 17
/
ACS::ECS::DeletePrepaidInstance.yml
68 lines (68 loc) · 1.77 KB
/
ACS::ECS::DeletePrepaidInstance.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
FormatVersion: OOS-2019-06-01
Description:
name-en: ACS::ECS::DeletePrepaidInstance
name-zh-cn: 释放预付费ECS实例
en: Deletes prepaid ECS instance
zh-cn: 释放预付费ECS实例
Parameters:
regionId:
Description:
en: The ID of region
zh-cn: 地域ID
Type: String
Default: '{{ ACS::RegionId }}'
instanceId:
Description:
en: The ID of ECS instance
zh-cn: ECS实例ID
Type: String
MinLength: 1
MaxLength: 30
Tasks:
- Name: modifyInstanceChargeType
Action: 'ACS::ExecuteAPI'
Description:
en: Modifies the charge type for prepaid instances to postpaid
zh-cn: 预付费实例转换为按量付费
Properties:
Service: ECS
API: ModifyInstanceChargeType
Parameters:
RegionId: '{{ regionId }}'
InstanceIds:
- '{{ instanceId }}'
InstanceChargeType: PostPaid
- Name: untilInstanceChargeTypeReady
Action: 'ACS::WaitFor'
Description:
en: Waits for the instances ChargeType ready
zh-cn: 等待实例付费方式修改完成
Properties:
Service: ECS
API: DescribeInstances
Parameters:
RegionId: '{{ regionId }}'
InstanceIds:
- '{{ instanceId }}'
DesiredValues:
- PostPaid
PropertySelector: 'Instances.Instance[].InstanceChargeType'
- Name: pauseTask
Action: 'ACS::Sleep'
Description:
en: Pause the task
zh-cn: 暂停任务
Properties:
Duration: PT1S
- Name: deleteInstance
Action: 'ACS::ExecuteAPI'
Description:
en: Deletes ECS instance
zh-cn: 释放实例
Properties:
Service: ECS
API: DeleteInstance
Parameters:
RegionId: '{{ regionId }}'
InstanceId: '{{ instanceId }}'
Force: true