-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathACS::ECS::ModifyInstanceSpec.json
88 lines (88 loc) · 2.21 KB
/
ACS::ECS::ModifyInstanceSpec.json
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"FormatVersion": "OOS-2019-06-01",
"Description": {
"name-en": "ACS::ECS::ModifyInstanceSpec",
"name-zh-cn": "修改按量付费ECS实例的实例规格",
"en": "Modify postpaid ECS instance spec",
"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"
},
"instanceType": {
"Description": {
"en": "The Instance type of ECS instance",
"zh-cn": "ECS实例类型"
},
"Type": "String"
}
},
"Tasks": [
{
"Name": "stopInstance",
"Action": "ACS::ECS::StopInstance",
"Description": {
"en": "Stops the ECS instances",
"zh-cn": "停止ECS实例"
},
"Properties": {
"regionId": "{{ regionId }}",
"instanceId": "{{ instanceId }}"
}
},
{
"Name": "modifyPostPaidInstanceSpec",
"Action": "ACS::ExecuteAPI",
"OnError": "startInstance",
"Description": {
"en": "Modifies the instance type of a pay-as-you-go instance",
"zh-cn": "修改按量付费ECS实例的实例规格"
},
"Properties": {
"Service": "ECS",
"API": "ModifyInstanceSpec",
"Parameters": {
"RegionId": "{{ regionId }}",
"InstanceId": "{{ instanceId }}",
"InstanceType": "{{ instanceType }}"
}
}
},
{
"Name": "waitInstanceReady",
"Action": "ACS::Sleep",
"Description": {
"en": "Waits for the instance type modify successfully",
"zh-cn": "等待实例规格修改成功"
},
"Properties": {
"Duration": "PT10S"
}
},
{
"Name": "startInstance",
"Action": "ACS::ECS::StartInstance",
"Description": {
"en": "Starts the ECS instances",
"zh-cn": "启动ECS实例"
},
"Properties": {
"regionId": "{{ regionId }}",
"instanceId": "{{ instanceId }}"
}
}
]
}