-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathACS::ECD::ApplyPatchBaseline.json
354 lines (354 loc) · 9.39 KB
/
ACS::ECD::ApplyPatchBaseline.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
{
"FormatVersion": "OOS-2019-06-01",
"Description": {
"name-en": "ACS::ECD::ApplyPatchBaseline",
"name-zh-cn": "在ECD实例中配置补丁基线",
"en": "Apply patch baseline on ECD instance",
"zh-cn": "在ECD实例中配置补丁基线"
},
"Parameters": {
"regionId": {
"Description": {
"en": "The ID of region",
"zh-cn": "地域ID"
},
"Type": "String"
},
"desktopId": {
"Description": {
"en": "The ID of ECD instance",
"zh-cn": "ECD实例ID"
},
"Type": "String"
},
"action": {
"Description": {
"en": "The action to apply patch baseline",
"zh-cn": "配置补丁基线的方式"
},
"Type": "String",
"AllowedValues": [
"install",
"scan"
],
"Default": "install"
},
"rebootIfNeed": {
"Description": {
"en": "Whether to reboot",
"zh-cn": "是否重启"
},
"Type": "Boolean",
"Default": false
},
"whetherCreateSnapshot": {
"Description": {
"en": "Whether to create snapshot",
"zh-cn": "是否创建快照"
},
"Type": "Boolean",
"Default": false
},
"timeout": {
"Description": {
"en": "The value of the invocation timeout period of a command on ECD instances",
"zh-cn": "ECD实例中执行命令的超时时间"
},
"Type": "Number",
"Default": 7200
}
},
"Tasks": [
{
"Name": "whetherCreateSnapshot",
"Action": "ACS::Choice",
"Description": {
"en": "Choose the next task based on whether to create snapshot",
"zh-cn": "根据是否创建快照选择下一个任务"
},
"Properties": {
"DefaultTask": "queryDesktop",
"Choices": [
{
"When": {
"Fn::Equals": [
true,
"{{ whetherCreateSnapshot }}"
]
},
"NextTask": "createSnapshot"
}
]
}
},
{
"Name": "createSnapshot",
"Action": "ACS::ExecuteAPI",
"Description": {
"en": "Creates a snapshot with the specified disk ID and snapshot name",
"zh-cn": "通过云盘ID创建一个快照"
},
"Properties": {
"Service": "ECD",
"API": "CreateSnapshot",
"Parameters": {
"RegionId": "{{ regionId }}",
"DesktopId": "{{ desktopId }}",
"SnapshotName": "Snapshot-{{ ACS::ExecutionId }}",
"SourceDiskType": "system"
}
},
"Outputs": {
"snapshotId": {
"Type": "String",
"ValueSelector": "SnapshotId"
}
}
},
{
"Name": "untilSnapshotsReady",
"Action": "ACS::WaitFor",
"Description": {
"en": "Waits for the snapshot to be accomplished",
"zh-cn": "等待快照创建完成"
},
"Retries": 57,
"Properties": {
"Service": "ECD",
"API": "DescribeSnapshots",
"Parameters": {
"RegionId": "{{ regionId }}",
"SnapshotId": "{{ createSnapshot.snapshotId }}"
},
"DesiredValues": [
"ACCOMPLISHED"
],
"StopRetryValues": [
"FAILED"
],
"PropertySelector": "Snapshots[].Status"
}
},
{
"Name": "queryDesktop",
"Action": "ACS::ExecuteAPI",
"Description": {
"en": "Query ECD instance",
"zh-cn": "获取ECD实例信息"
},
"Properties": {
"Service": "ECD",
"API": "DescribeDesktops",
"Parameters": {
"RegionId": "{{ regionId }}",
"DesktopId": [
"{{ desktopId }}"
]
}
},
"Outputs": {
"desktopId": {
"Type": "Json",
"ValueSelector": "."
}
}
},
{
"Name": "applyPatchBaseline",
"Description": {
"en": "Apply patch baseline on ECD instance",
"zh-cn": "在ECD实例中配置补丁基线"
},
"Action": "ACS::ECD::RunCommand",
"Properties": {
"regionId": "{{ regionId }}",
"desktopId": "{{ desktopId }}",
"timeout": "{{ timeout }}",
"commandType": "RunPowerShellScript",
"commandContent": "if ('{{ action }}' -eq 'scan'){\n acs-plugin-manager.exe --exec --plugin=patch_manager_win --params \"-operation scan -aliUid {{ACS::AccountId}} -instanceId {{ desktopId }}\"\n}else{\n acs-plugin-manager.exe --exec --plugin=patch_manager_win --params \"-operation install -reboot no -aliUid {{ACS::AccountId}} -instanceId {{ desktopId }}\"\n}"
},
"Outputs": {
"commandOutput": {
"Type": "String",
"ValueSelector": "invocationOutput"
}
}
},
{
"Name": "whetherToRebootInstance",
"Action": "ACS::Choice",
"Description": {
"en": "Choose next task by instance reboot status",
"zh-cn": "根据实例是否重启状态选择下一个任务"
},
"Properties": {
"DefaultTask": "ACS::END",
"Choices": [
{
"When": {
"Fn::Equals": [
true,
"{{ rebootIfNeed }}"
]
},
"NextTask": "listInstancePatchStates"
}
]
}
},
{
"Name": "listInstancePatchStates",
"Action": "ACS::ExecuteAPI",
"Description": {
"en": "Gets the instance patch repair status",
"zh-cn": "获取实例补丁修复状态"
},
"Properties": {
"Service": "OOS",
"API": "ListInstancePatchStates",
"Parameters": {
"RegionId": "{{ regionId }}",
"InstanceIds": {
"Fn::Jq": [
"First",
"[.Desktops[].DesktopId] | tostring",
"{{ queryDesktop.desktopId }}"
]
}
}
},
"Outputs": {
"installedPendingRebootCount": {
"Type": "Json",
"ValueSelector": "."
}
}
},
{
"Name": "checkDiscountThreshold",
"Action": "ACS::Choice",
"Description": {
"en": "Choose next task by instance patch repair status",
"zh-cn": "根据实例补丁修复状态选择下一个任务"
},
"Properties": {
"DefaultTask": "ACS::END",
"Choices": [
{
"When": {
"Fn::Equals": [
true,
{
"Fn::Jq": [
"First",
".InstancePatchStates[0].InstalledPendingRebootCount > 0",
"{{ listInstancePatchStates.installedPendingRebootCount }}"
]
}
]
},
"NextTask": "rebootDesktop"
}
]
}
},
{
"Name": "rebootDesktop",
"Action": "ACS::ExecuteAPI",
"Description": {
"en": "Restarts the ECD instance",
"zh-cn": "重启ECD实例"
},
"Properties": {
"Service": "ECD",
"API": "RebootDesktops",
"Parameters": {
"RegionId": "{{ regionId }}",
"DesktopId": [
"{{ desktopId }}"
]
}
}
},
{
"Name": "untilDesktopReady",
"Action": "ACS::WaitFor",
"Description": {
"en": "Waits for the ECD instance to enter Running status",
"zh-cn": "等待ECD实例至运行中状态"
},
"DelayType": "Constant",
"Delay": 60,
"Retries": 30,
"Properties": {
"Service": "ECD",
"API": "DescribeDesktops",
"Parameters": {
"RegionId": "{{ regionId }}",
"DesktopId": [
"{{ desktopId }}"
]
},
"DesiredValues": [
"Running"
],
"PropertySelector": "Desktops[].DesktopStatus"
},
"Outputs": {
"startTime": {
"Type": "String",
"ValueSelector": "Desktops[].StartTime"
}
}
},
{
"Name": "describeCloudAssistantStatus",
"Action": "ACS::WaitFor",
"Description": {
"en": "Gets the instance cloud assistant status",
"zh-cn": "获取实例云助手状态"
},
"Properties": {
"Service": "ECD",
"API": "DescribeCloudAssistantStatus",
"Parameters": {
"RegionId": "{{ regionId }}",
"DesktopId": [
"{{ desktopId }}"
]
},
"DesiredValues": [
true
],
"PropertySelector": ".StatusModels[].LastHeartbeatTime > \"{{untilDesktopReady.startTime}}\""
}
},
{
"Name": "scanWindowsPatch",
"Description": {
"en": "Scan patch on ECD instance",
"zh-cn": "在ECD实例中扫描补丁"
},
"Action": "ACS::ECD::RunCommand",
"Properties": {
"regionId": "{{ regionId }}",
"desktopId": "{{ desktopId }}",
"timeout": "{{ timeout }}",
"commandType": "RunPowerShellScript",
"commandContent": "acs-plugin-manager.exe --exec --plugin=patch_manager_win --params \"-operation scan -aliUid {{ACS::AccountId}} -instanceId {{ desktopId }}\""
},
"Outputs": {
"commandOutput": {
"Type": "String",
"ValueSelector": "invocationOutput"
}
}
}
],
"Outputs": {
"commandOutput": {
"Type": "String",
"Value": "{{ applyPatchBaseline.commandOutput }}"
}
}
}