@alicloud/oos20190601 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +1125 -972
- package/dist/client.js +4376 -2012
- package/dist/client.js.map +1 -1
- package/package.json +5 -5
- package/src/client.ts +5660 -2790
package/dist/client.d.ts
CHANGED
|
@@ -5,8 +5,8 @@ import * as $Util from '@alicloud/tea-util';
|
|
|
5
5
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
6
6
|
import * as $tea from '@alicloud/tea-typescript';
|
|
7
7
|
export declare class CancelExecutionRequest extends $tea.Model {
|
|
8
|
-
regionId?: string;
|
|
9
8
|
executionId?: string;
|
|
9
|
+
regionId?: string;
|
|
10
10
|
static names(): {
|
|
11
11
|
[key: string]: string;
|
|
12
12
|
};
|
|
@@ -33,6 +33,7 @@ export declare class CancelExecutionResponse extends $tea.Model {
|
|
|
33
33
|
headers: {
|
|
34
34
|
[key: string]: string;
|
|
35
35
|
};
|
|
36
|
+
statusCode: number;
|
|
36
37
|
body: CancelExecutionResponseBody;
|
|
37
38
|
static names(): {
|
|
38
39
|
[key: string]: string;
|
|
@@ -45,9 +46,9 @@ export declare class CancelExecutionResponse extends $tea.Model {
|
|
|
45
46
|
});
|
|
46
47
|
}
|
|
47
48
|
export declare class ChangeResourceGroupRequest extends $tea.Model {
|
|
49
|
+
newResourceGroupId?: string;
|
|
48
50
|
regionId?: string;
|
|
49
51
|
resourceId?: string;
|
|
50
|
-
newResourceGroupId?: string;
|
|
51
52
|
resourceType?: string;
|
|
52
53
|
static names(): {
|
|
53
54
|
[key: string]: string;
|
|
@@ -75,6 +76,7 @@ export declare class ChangeResourceGroupResponse extends $tea.Model {
|
|
|
75
76
|
headers: {
|
|
76
77
|
[key: string]: string;
|
|
77
78
|
};
|
|
79
|
+
statusCode: number;
|
|
78
80
|
body: ChangeResourceGroupResponseBody;
|
|
79
81
|
static names(): {
|
|
80
82
|
[key: string]: string;
|
|
@@ -86,17 +88,75 @@ export declare class ChangeResourceGroupResponse extends $tea.Model {
|
|
|
86
88
|
[key: string]: any;
|
|
87
89
|
});
|
|
88
90
|
}
|
|
89
|
-
export declare class
|
|
91
|
+
export declare class ContinueDeployApplicationGroupRequest extends $tea.Model {
|
|
92
|
+
applicationName?: string;
|
|
93
|
+
deployParameters?: string;
|
|
94
|
+
name?: string;
|
|
90
95
|
regionId?: string;
|
|
96
|
+
static names(): {
|
|
97
|
+
[key: string]: string;
|
|
98
|
+
};
|
|
99
|
+
static types(): {
|
|
100
|
+
[key: string]: any;
|
|
101
|
+
};
|
|
102
|
+
constructor(map?: {
|
|
103
|
+
[key: string]: any;
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
export declare class ContinueDeployApplicationGroupResponseBody extends $tea.Model {
|
|
107
|
+
requestId?: string;
|
|
108
|
+
static names(): {
|
|
109
|
+
[key: string]: string;
|
|
110
|
+
};
|
|
111
|
+
static types(): {
|
|
112
|
+
[key: string]: any;
|
|
113
|
+
};
|
|
114
|
+
constructor(map?: {
|
|
115
|
+
[key: string]: any;
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
export declare class ContinueDeployApplicationGroupResponse extends $tea.Model {
|
|
119
|
+
headers: {
|
|
120
|
+
[key: string]: string;
|
|
121
|
+
};
|
|
122
|
+
statusCode: number;
|
|
123
|
+
body: ContinueDeployApplicationGroupResponseBody;
|
|
124
|
+
static names(): {
|
|
125
|
+
[key: string]: string;
|
|
126
|
+
};
|
|
127
|
+
static types(): {
|
|
128
|
+
[key: string]: any;
|
|
129
|
+
};
|
|
130
|
+
constructor(map?: {
|
|
131
|
+
[key: string]: any;
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
export declare class CreateApplicationRequest extends $tea.Model {
|
|
135
|
+
clientToken?: string;
|
|
136
|
+
description?: string;
|
|
91
137
|
name?: string;
|
|
138
|
+
regionId?: string;
|
|
139
|
+
resourceGroupId?: string;
|
|
140
|
+
tags?: {
|
|
141
|
+
[key: string]: any;
|
|
142
|
+
};
|
|
143
|
+
static names(): {
|
|
144
|
+
[key: string]: string;
|
|
145
|
+
};
|
|
146
|
+
static types(): {
|
|
147
|
+
[key: string]: any;
|
|
148
|
+
};
|
|
149
|
+
constructor(map?: {
|
|
150
|
+
[key: string]: any;
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
export declare class CreateApplicationShrinkRequest extends $tea.Model {
|
|
154
|
+
clientToken?: string;
|
|
92
155
|
description?: string;
|
|
93
|
-
|
|
156
|
+
name?: string;
|
|
157
|
+
regionId?: string;
|
|
94
158
|
resourceGroupId?: string;
|
|
95
|
-
|
|
96
|
-
cloudMonitorEnableSubscribeEvent?: boolean;
|
|
97
|
-
cloudMonitorEnableInstallAgent?: boolean;
|
|
98
|
-
cloudMonitorTemplateIdList?: string;
|
|
99
|
-
cloudMonitorRuleEnabled?: boolean;
|
|
159
|
+
tagsShrink?: string;
|
|
100
160
|
static names(): {
|
|
101
161
|
[key: string]: string;
|
|
102
162
|
};
|
|
@@ -108,8 +168,8 @@ export declare class CreateApplicationRequest extends $tea.Model {
|
|
|
108
168
|
});
|
|
109
169
|
}
|
|
110
170
|
export declare class CreateApplicationResponseBody extends $tea.Model {
|
|
111
|
-
requestId?: string;
|
|
112
171
|
application?: CreateApplicationResponseBodyApplication;
|
|
172
|
+
requestId?: string;
|
|
113
173
|
static names(): {
|
|
114
174
|
[key: string]: string;
|
|
115
175
|
};
|
|
@@ -124,6 +184,7 @@ export declare class CreateApplicationResponse extends $tea.Model {
|
|
|
124
184
|
headers: {
|
|
125
185
|
[key: string]: string;
|
|
126
186
|
};
|
|
187
|
+
statusCode: number;
|
|
127
188
|
body: CreateApplicationResponseBody;
|
|
128
189
|
static names(): {
|
|
129
190
|
[key: string]: string;
|
|
@@ -136,14 +197,15 @@ export declare class CreateApplicationResponse extends $tea.Model {
|
|
|
136
197
|
});
|
|
137
198
|
}
|
|
138
199
|
export declare class CreateApplicationGroupRequest extends $tea.Model {
|
|
139
|
-
regionId?: string;
|
|
140
200
|
applicationName?: string;
|
|
141
|
-
|
|
201
|
+
clientToken?: string;
|
|
202
|
+
cmsGroupId?: string;
|
|
142
203
|
deployRegionId?: string;
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
204
|
+
description?: string;
|
|
205
|
+
importTagKey?: string;
|
|
206
|
+
importTagValue?: string;
|
|
146
207
|
name?: string;
|
|
208
|
+
regionId?: string;
|
|
147
209
|
static names(): {
|
|
148
210
|
[key: string]: string;
|
|
149
211
|
};
|
|
@@ -155,8 +217,8 @@ export declare class CreateApplicationGroupRequest extends $tea.Model {
|
|
|
155
217
|
});
|
|
156
218
|
}
|
|
157
219
|
export declare class CreateApplicationGroupResponseBody extends $tea.Model {
|
|
158
|
-
requestId?: string;
|
|
159
220
|
applicationGroup?: CreateApplicationGroupResponseBodyApplicationGroup;
|
|
221
|
+
requestId?: string;
|
|
160
222
|
static names(): {
|
|
161
223
|
[key: string]: string;
|
|
162
224
|
};
|
|
@@ -171,6 +233,7 @@ export declare class CreateApplicationGroupResponse extends $tea.Model {
|
|
|
171
233
|
headers: {
|
|
172
234
|
[key: string]: string;
|
|
173
235
|
};
|
|
236
|
+
statusCode: number;
|
|
174
237
|
body: CreateApplicationGroupResponseBody;
|
|
175
238
|
static names(): {
|
|
176
239
|
[key: string]: string;
|
|
@@ -183,17 +246,17 @@ export declare class CreateApplicationGroupResponse extends $tea.Model {
|
|
|
183
246
|
});
|
|
184
247
|
}
|
|
185
248
|
export declare class CreateParameterRequest extends $tea.Model {
|
|
186
|
-
regionId?: string;
|
|
187
|
-
name?: string;
|
|
188
|
-
type?: string;
|
|
189
|
-
value?: string;
|
|
190
|
-
description?: string;
|
|
191
249
|
clientToken?: string;
|
|
192
250
|
constraints?: string;
|
|
251
|
+
description?: string;
|
|
252
|
+
name?: string;
|
|
253
|
+
regionId?: string;
|
|
254
|
+
resourceGroupId?: string;
|
|
193
255
|
tags?: {
|
|
194
256
|
[key: string]: any;
|
|
195
257
|
};
|
|
196
|
-
|
|
258
|
+
type?: string;
|
|
259
|
+
value?: string;
|
|
197
260
|
static names(): {
|
|
198
261
|
[key: string]: string;
|
|
199
262
|
};
|
|
@@ -205,15 +268,15 @@ export declare class CreateParameterRequest extends $tea.Model {
|
|
|
205
268
|
});
|
|
206
269
|
}
|
|
207
270
|
export declare class CreateParameterShrinkRequest extends $tea.Model {
|
|
208
|
-
regionId?: string;
|
|
209
|
-
name?: string;
|
|
210
|
-
type?: string;
|
|
211
|
-
value?: string;
|
|
212
|
-
description?: string;
|
|
213
271
|
clientToken?: string;
|
|
214
272
|
constraints?: string;
|
|
215
|
-
|
|
273
|
+
description?: string;
|
|
274
|
+
name?: string;
|
|
275
|
+
regionId?: string;
|
|
216
276
|
resourceGroupId?: string;
|
|
277
|
+
tagsShrink?: string;
|
|
278
|
+
type?: string;
|
|
279
|
+
value?: string;
|
|
217
280
|
static names(): {
|
|
218
281
|
[key: string]: string;
|
|
219
282
|
};
|
|
@@ -225,8 +288,8 @@ export declare class CreateParameterShrinkRequest extends $tea.Model {
|
|
|
225
288
|
});
|
|
226
289
|
}
|
|
227
290
|
export declare class CreateParameterResponseBody extends $tea.Model {
|
|
228
|
-
requestId?: string;
|
|
229
291
|
parameter?: CreateParameterResponseBodyParameter;
|
|
292
|
+
requestId?: string;
|
|
230
293
|
static names(): {
|
|
231
294
|
[key: string]: string;
|
|
232
295
|
};
|
|
@@ -241,6 +304,7 @@ export declare class CreateParameterResponse extends $tea.Model {
|
|
|
241
304
|
headers: {
|
|
242
305
|
[key: string]: string;
|
|
243
306
|
};
|
|
307
|
+
statusCode: number;
|
|
244
308
|
body: CreateParameterResponseBody;
|
|
245
309
|
static names(): {
|
|
246
310
|
[key: string]: string;
|
|
@@ -253,12 +317,12 @@ export declare class CreateParameterResponse extends $tea.Model {
|
|
|
253
317
|
});
|
|
254
318
|
}
|
|
255
319
|
export declare class CreatePatchBaselineRequest extends $tea.Model {
|
|
256
|
-
|
|
257
|
-
name?: string;
|
|
258
|
-
description?: string;
|
|
320
|
+
approvalRules?: string;
|
|
259
321
|
clientToken?: string;
|
|
322
|
+
description?: string;
|
|
323
|
+
name?: string;
|
|
260
324
|
operationSystem?: string;
|
|
261
|
-
|
|
325
|
+
regionId?: string;
|
|
262
326
|
static names(): {
|
|
263
327
|
[key: string]: string;
|
|
264
328
|
};
|
|
@@ -270,8 +334,8 @@ export declare class CreatePatchBaselineRequest extends $tea.Model {
|
|
|
270
334
|
});
|
|
271
335
|
}
|
|
272
336
|
export declare class CreatePatchBaselineResponseBody extends $tea.Model {
|
|
273
|
-
requestId?: string;
|
|
274
337
|
patchBaseline?: CreatePatchBaselineResponseBodyPatchBaseline;
|
|
338
|
+
requestId?: string;
|
|
275
339
|
static names(): {
|
|
276
340
|
[key: string]: string;
|
|
277
341
|
};
|
|
@@ -286,6 +350,7 @@ export declare class CreatePatchBaselineResponse extends $tea.Model {
|
|
|
286
350
|
headers: {
|
|
287
351
|
[key: string]: string;
|
|
288
352
|
};
|
|
353
|
+
statusCode: number;
|
|
289
354
|
body: CreatePatchBaselineResponseBody;
|
|
290
355
|
static names(): {
|
|
291
356
|
[key: string]: string;
|
|
@@ -298,16 +363,39 @@ export declare class CreatePatchBaselineResponse extends $tea.Model {
|
|
|
298
363
|
});
|
|
299
364
|
}
|
|
300
365
|
export declare class CreateSecretParameterRequest extends $tea.Model {
|
|
301
|
-
|
|
366
|
+
clientToken?: string;
|
|
367
|
+
constraints?: string;
|
|
368
|
+
description?: string;
|
|
369
|
+
keyId?: string;
|
|
302
370
|
name?: string;
|
|
371
|
+
regionId?: string;
|
|
372
|
+
resourceGroupId?: string;
|
|
373
|
+
tags?: {
|
|
374
|
+
[key: string]: any;
|
|
375
|
+
};
|
|
303
376
|
type?: string;
|
|
304
377
|
value?: string;
|
|
305
|
-
|
|
306
|
-
|
|
378
|
+
static names(): {
|
|
379
|
+
[key: string]: string;
|
|
380
|
+
};
|
|
381
|
+
static types(): {
|
|
382
|
+
[key: string]: any;
|
|
383
|
+
};
|
|
384
|
+
constructor(map?: {
|
|
385
|
+
[key: string]: any;
|
|
386
|
+
});
|
|
387
|
+
}
|
|
388
|
+
export declare class CreateSecretParameterShrinkRequest extends $tea.Model {
|
|
307
389
|
clientToken?: string;
|
|
308
390
|
constraints?: string;
|
|
309
|
-
|
|
391
|
+
description?: string;
|
|
392
|
+
keyId?: string;
|
|
393
|
+
name?: string;
|
|
394
|
+
regionId?: string;
|
|
310
395
|
resourceGroupId?: string;
|
|
396
|
+
tagsShrink?: string;
|
|
397
|
+
type?: string;
|
|
398
|
+
value?: string;
|
|
311
399
|
static names(): {
|
|
312
400
|
[key: string]: string;
|
|
313
401
|
};
|
|
@@ -319,8 +407,8 @@ export declare class CreateSecretParameterRequest extends $tea.Model {
|
|
|
319
407
|
});
|
|
320
408
|
}
|
|
321
409
|
export declare class CreateSecretParameterResponseBody extends $tea.Model {
|
|
322
|
-
requestId?: string;
|
|
323
410
|
parameter?: CreateSecretParameterResponseBodyParameter;
|
|
411
|
+
requestId?: string;
|
|
324
412
|
static names(): {
|
|
325
413
|
[key: string]: string;
|
|
326
414
|
};
|
|
@@ -335,6 +423,7 @@ export declare class CreateSecretParameterResponse extends $tea.Model {
|
|
|
335
423
|
headers: {
|
|
336
424
|
[key: string]: string;
|
|
337
425
|
};
|
|
426
|
+
statusCode: number;
|
|
338
427
|
body: CreateSecretParameterResponseBody;
|
|
339
428
|
static names(): {
|
|
340
429
|
[key: string]: string;
|
|
@@ -347,20 +436,20 @@ export declare class CreateSecretParameterResponse extends $tea.Model {
|
|
|
347
436
|
});
|
|
348
437
|
}
|
|
349
438
|
export declare class CreateStateConfigurationRequest extends $tea.Model {
|
|
350
|
-
|
|
439
|
+
clientToken?: string;
|
|
440
|
+
configureMode?: string;
|
|
351
441
|
description?: string;
|
|
352
|
-
templateName?: string;
|
|
353
|
-
templateVersion?: string;
|
|
354
442
|
parameters?: string;
|
|
355
|
-
|
|
356
|
-
|
|
443
|
+
regionId?: string;
|
|
444
|
+
resourceGroupId?: string;
|
|
357
445
|
scheduleExpression?: string;
|
|
358
|
-
|
|
359
|
-
clientToken?: string;
|
|
446
|
+
scheduleType?: string;
|
|
360
447
|
tags?: {
|
|
361
448
|
[key: string]: any;
|
|
362
449
|
};
|
|
363
|
-
|
|
450
|
+
targets?: string;
|
|
451
|
+
templateName?: string;
|
|
452
|
+
templateVersion?: string;
|
|
364
453
|
static names(): {
|
|
365
454
|
[key: string]: string;
|
|
366
455
|
};
|
|
@@ -372,18 +461,18 @@ export declare class CreateStateConfigurationRequest extends $tea.Model {
|
|
|
372
461
|
});
|
|
373
462
|
}
|
|
374
463
|
export declare class CreateStateConfigurationShrinkRequest extends $tea.Model {
|
|
375
|
-
|
|
464
|
+
clientToken?: string;
|
|
465
|
+
configureMode?: string;
|
|
376
466
|
description?: string;
|
|
377
|
-
templateName?: string;
|
|
378
|
-
templateVersion?: string;
|
|
379
467
|
parameters?: string;
|
|
380
|
-
|
|
381
|
-
|
|
468
|
+
regionId?: string;
|
|
469
|
+
resourceGroupId?: string;
|
|
382
470
|
scheduleExpression?: string;
|
|
383
|
-
|
|
384
|
-
clientToken?: string;
|
|
471
|
+
scheduleType?: string;
|
|
385
472
|
tagsShrink?: string;
|
|
386
|
-
|
|
473
|
+
targets?: string;
|
|
474
|
+
templateName?: string;
|
|
475
|
+
templateVersion?: string;
|
|
387
476
|
static names(): {
|
|
388
477
|
[key: string]: string;
|
|
389
478
|
};
|
|
@@ -411,6 +500,7 @@ export declare class CreateStateConfigurationResponse extends $tea.Model {
|
|
|
411
500
|
headers: {
|
|
412
501
|
[key: string]: string;
|
|
413
502
|
};
|
|
503
|
+
statusCode: number;
|
|
414
504
|
body: CreateStateConfigurationResponseBody;
|
|
415
505
|
static names(): {
|
|
416
506
|
[key: string]: string;
|
|
@@ -423,14 +513,14 @@ export declare class CreateStateConfigurationResponse extends $tea.Model {
|
|
|
423
513
|
});
|
|
424
514
|
}
|
|
425
515
|
export declare class CreateTemplateRequest extends $tea.Model {
|
|
426
|
-
regionId?: string;
|
|
427
|
-
templateName?: string;
|
|
428
516
|
content?: string;
|
|
517
|
+
regionId?: string;
|
|
518
|
+
resourceGroupId?: string;
|
|
429
519
|
tags?: {
|
|
430
520
|
[key: string]: any;
|
|
431
521
|
};
|
|
522
|
+
templateName?: string;
|
|
432
523
|
versionName?: string;
|
|
433
|
-
resourceGroupId?: string;
|
|
434
524
|
static names(): {
|
|
435
525
|
[key: string]: string;
|
|
436
526
|
};
|
|
@@ -442,12 +532,12 @@ export declare class CreateTemplateRequest extends $tea.Model {
|
|
|
442
532
|
});
|
|
443
533
|
}
|
|
444
534
|
export declare class CreateTemplateShrinkRequest extends $tea.Model {
|
|
445
|
-
regionId?: string;
|
|
446
|
-
templateName?: string;
|
|
447
535
|
content?: string;
|
|
536
|
+
regionId?: string;
|
|
537
|
+
resourceGroupId?: string;
|
|
448
538
|
tagsShrink?: string;
|
|
539
|
+
templateName?: string;
|
|
449
540
|
versionName?: string;
|
|
450
|
-
resourceGroupId?: string;
|
|
451
541
|
static names(): {
|
|
452
542
|
[key: string]: string;
|
|
453
543
|
};
|
|
@@ -459,9 +549,9 @@ export declare class CreateTemplateShrinkRequest extends $tea.Model {
|
|
|
459
549
|
});
|
|
460
550
|
}
|
|
461
551
|
export declare class CreateTemplateResponseBody extends $tea.Model {
|
|
462
|
-
templateType?: string;
|
|
463
552
|
requestId?: string;
|
|
464
553
|
template?: CreateTemplateResponseBodyTemplate;
|
|
554
|
+
templateType?: string;
|
|
465
555
|
static names(): {
|
|
466
556
|
[key: string]: string;
|
|
467
557
|
};
|
|
@@ -476,6 +566,7 @@ export declare class CreateTemplateResponse extends $tea.Model {
|
|
|
476
566
|
headers: {
|
|
477
567
|
[key: string]: string;
|
|
478
568
|
};
|
|
569
|
+
statusCode: number;
|
|
479
570
|
body: CreateTemplateResponseBody;
|
|
480
571
|
static names(): {
|
|
481
572
|
[key: string]: string;
|
|
@@ -488,8 +579,9 @@ export declare class CreateTemplateResponse extends $tea.Model {
|
|
|
488
579
|
});
|
|
489
580
|
}
|
|
490
581
|
export declare class DeleteApplicationRequest extends $tea.Model {
|
|
491
|
-
|
|
582
|
+
force?: boolean;
|
|
492
583
|
name?: string;
|
|
584
|
+
regionId?: string;
|
|
493
585
|
static names(): {
|
|
494
586
|
[key: string]: string;
|
|
495
587
|
};
|
|
@@ -516,6 +608,7 @@ export declare class DeleteApplicationResponse extends $tea.Model {
|
|
|
516
608
|
headers: {
|
|
517
609
|
[key: string]: string;
|
|
518
610
|
};
|
|
611
|
+
statusCode: number;
|
|
519
612
|
body: DeleteApplicationResponseBody;
|
|
520
613
|
static names(): {
|
|
521
614
|
[key: string]: string;
|
|
@@ -528,8 +621,9 @@ export declare class DeleteApplicationResponse extends $tea.Model {
|
|
|
528
621
|
});
|
|
529
622
|
}
|
|
530
623
|
export declare class DeleteApplicationGroupRequest extends $tea.Model {
|
|
531
|
-
|
|
624
|
+
applicationName?: string;
|
|
532
625
|
name?: string;
|
|
626
|
+
regionId?: string;
|
|
533
627
|
static names(): {
|
|
534
628
|
[key: string]: string;
|
|
535
629
|
};
|
|
@@ -556,6 +650,7 @@ export declare class DeleteApplicationGroupResponse extends $tea.Model {
|
|
|
556
650
|
headers: {
|
|
557
651
|
[key: string]: string;
|
|
558
652
|
};
|
|
653
|
+
statusCode: number;
|
|
559
654
|
body: DeleteApplicationGroupResponseBody;
|
|
560
655
|
static names(): {
|
|
561
656
|
[key: string]: string;
|
|
@@ -568,8 +663,8 @@ export declare class DeleteApplicationGroupResponse extends $tea.Model {
|
|
|
568
663
|
});
|
|
569
664
|
}
|
|
570
665
|
export declare class DeleteExecutionsRequest extends $tea.Model {
|
|
571
|
-
regionId?: string;
|
|
572
666
|
executionIds?: string;
|
|
667
|
+
regionId?: string;
|
|
573
668
|
static names(): {
|
|
574
669
|
[key: string]: string;
|
|
575
670
|
};
|
|
@@ -596,6 +691,7 @@ export declare class DeleteExecutionsResponse extends $tea.Model {
|
|
|
596
691
|
headers: {
|
|
597
692
|
[key: string]: string;
|
|
598
693
|
};
|
|
694
|
+
statusCode: number;
|
|
599
695
|
body: DeleteExecutionsResponseBody;
|
|
600
696
|
static names(): {
|
|
601
697
|
[key: string]: string;
|
|
@@ -608,8 +704,8 @@ export declare class DeleteExecutionsResponse extends $tea.Model {
|
|
|
608
704
|
});
|
|
609
705
|
}
|
|
610
706
|
export declare class DeleteParameterRequest extends $tea.Model {
|
|
611
|
-
regionId?: string;
|
|
612
707
|
name?: string;
|
|
708
|
+
regionId?: string;
|
|
613
709
|
static names(): {
|
|
614
710
|
[key: string]: string;
|
|
615
711
|
};
|
|
@@ -636,6 +732,7 @@ export declare class DeleteParameterResponse extends $tea.Model {
|
|
|
636
732
|
headers: {
|
|
637
733
|
[key: string]: string;
|
|
638
734
|
};
|
|
735
|
+
statusCode: number;
|
|
639
736
|
body: DeleteParameterResponseBody;
|
|
640
737
|
static names(): {
|
|
641
738
|
[key: string]: string;
|
|
@@ -648,8 +745,8 @@ export declare class DeleteParameterResponse extends $tea.Model {
|
|
|
648
745
|
});
|
|
649
746
|
}
|
|
650
747
|
export declare class DeletePatchBaselineRequest extends $tea.Model {
|
|
651
|
-
regionId?: string;
|
|
652
748
|
name?: string;
|
|
749
|
+
regionId?: string;
|
|
653
750
|
static names(): {
|
|
654
751
|
[key: string]: string;
|
|
655
752
|
};
|
|
@@ -676,6 +773,7 @@ export declare class DeletePatchBaselineResponse extends $tea.Model {
|
|
|
676
773
|
headers: {
|
|
677
774
|
[key: string]: string;
|
|
678
775
|
};
|
|
776
|
+
statusCode: number;
|
|
679
777
|
body: DeletePatchBaselineResponseBody;
|
|
680
778
|
static names(): {
|
|
681
779
|
[key: string]: string;
|
|
@@ -688,8 +786,8 @@ export declare class DeletePatchBaselineResponse extends $tea.Model {
|
|
|
688
786
|
});
|
|
689
787
|
}
|
|
690
788
|
export declare class DeleteSecretParameterRequest extends $tea.Model {
|
|
691
|
-
regionId?: string;
|
|
692
789
|
name?: string;
|
|
790
|
+
regionId?: string;
|
|
693
791
|
static names(): {
|
|
694
792
|
[key: string]: string;
|
|
695
793
|
};
|
|
@@ -716,6 +814,7 @@ export declare class DeleteSecretParameterResponse extends $tea.Model {
|
|
|
716
814
|
headers: {
|
|
717
815
|
[key: string]: string;
|
|
718
816
|
};
|
|
817
|
+
statusCode: number;
|
|
719
818
|
body: DeleteSecretParameterResponseBody;
|
|
720
819
|
static names(): {
|
|
721
820
|
[key: string]: string;
|
|
@@ -728,9 +827,9 @@ export declare class DeleteSecretParameterResponse extends $tea.Model {
|
|
|
728
827
|
});
|
|
729
828
|
}
|
|
730
829
|
export declare class DeleteStateConfigurationsRequest extends $tea.Model {
|
|
830
|
+
clientToken?: string;
|
|
731
831
|
regionId?: string;
|
|
732
832
|
stateConfigurationIds?: string;
|
|
733
|
-
clientToken?: string;
|
|
734
833
|
static names(): {
|
|
735
834
|
[key: string]: string;
|
|
736
835
|
};
|
|
@@ -757,6 +856,7 @@ export declare class DeleteStateConfigurationsResponse extends $tea.Model {
|
|
|
757
856
|
headers: {
|
|
758
857
|
[key: string]: string;
|
|
759
858
|
};
|
|
859
|
+
statusCode: number;
|
|
760
860
|
body: DeleteStateConfigurationsResponseBody;
|
|
761
861
|
static names(): {
|
|
762
862
|
[key: string]: string;
|
|
@@ -769,9 +869,9 @@ export declare class DeleteStateConfigurationsResponse extends $tea.Model {
|
|
|
769
869
|
});
|
|
770
870
|
}
|
|
771
871
|
export declare class DeleteTemplateRequest extends $tea.Model {
|
|
872
|
+
autoDeleteExecutions?: boolean;
|
|
772
873
|
regionId?: string;
|
|
773
874
|
templateName?: string;
|
|
774
|
-
autoDeleteExecutions?: boolean;
|
|
775
875
|
static names(): {
|
|
776
876
|
[key: string]: string;
|
|
777
877
|
};
|
|
@@ -798,6 +898,7 @@ export declare class DeleteTemplateResponse extends $tea.Model {
|
|
|
798
898
|
headers: {
|
|
799
899
|
[key: string]: string;
|
|
800
900
|
};
|
|
901
|
+
statusCode: number;
|
|
801
902
|
body: DeleteTemplateResponseBody;
|
|
802
903
|
static names(): {
|
|
803
904
|
[key: string]: string;
|
|
@@ -810,9 +911,9 @@ export declare class DeleteTemplateResponse extends $tea.Model {
|
|
|
810
911
|
});
|
|
811
912
|
}
|
|
812
913
|
export declare class DeleteTemplatesRequest extends $tea.Model {
|
|
914
|
+
autoDeleteExecutions?: boolean;
|
|
813
915
|
regionId?: string;
|
|
814
916
|
templateNames?: string;
|
|
815
|
-
autoDeleteExecutions?: boolean;
|
|
816
917
|
static names(): {
|
|
817
918
|
[key: string]: string;
|
|
818
919
|
};
|
|
@@ -839,6 +940,7 @@ export declare class DeleteTemplatesResponse extends $tea.Model {
|
|
|
839
940
|
headers: {
|
|
840
941
|
[key: string]: string;
|
|
841
942
|
};
|
|
943
|
+
statusCode: number;
|
|
842
944
|
body: DeleteTemplatesResponseBody;
|
|
843
945
|
static names(): {
|
|
844
946
|
[key: string]: string;
|
|
@@ -850,9 +952,52 @@ export declare class DeleteTemplatesResponse extends $tea.Model {
|
|
|
850
952
|
[key: string]: any;
|
|
851
953
|
});
|
|
852
954
|
}
|
|
853
|
-
export declare class
|
|
955
|
+
export declare class DeployApplicationGroupRequest extends $tea.Model {
|
|
956
|
+
applicationName?: string;
|
|
957
|
+
deployParameters?: string;
|
|
958
|
+
name?: string;
|
|
854
959
|
regionId?: string;
|
|
960
|
+
static names(): {
|
|
961
|
+
[key: string]: string;
|
|
962
|
+
};
|
|
963
|
+
static types(): {
|
|
964
|
+
[key: string]: any;
|
|
965
|
+
};
|
|
966
|
+
constructor(map?: {
|
|
967
|
+
[key: string]: any;
|
|
968
|
+
});
|
|
969
|
+
}
|
|
970
|
+
export declare class DeployApplicationGroupResponseBody extends $tea.Model {
|
|
971
|
+
requestId?: string;
|
|
972
|
+
static names(): {
|
|
973
|
+
[key: string]: string;
|
|
974
|
+
};
|
|
975
|
+
static types(): {
|
|
976
|
+
[key: string]: any;
|
|
977
|
+
};
|
|
978
|
+
constructor(map?: {
|
|
979
|
+
[key: string]: any;
|
|
980
|
+
});
|
|
981
|
+
}
|
|
982
|
+
export declare class DeployApplicationGroupResponse extends $tea.Model {
|
|
983
|
+
headers: {
|
|
984
|
+
[key: string]: string;
|
|
985
|
+
};
|
|
986
|
+
statusCode: number;
|
|
987
|
+
body: DeployApplicationGroupResponseBody;
|
|
988
|
+
static names(): {
|
|
989
|
+
[key: string]: string;
|
|
990
|
+
};
|
|
991
|
+
static types(): {
|
|
992
|
+
[key: string]: any;
|
|
993
|
+
};
|
|
994
|
+
constructor(map?: {
|
|
995
|
+
[key: string]: any;
|
|
996
|
+
});
|
|
997
|
+
}
|
|
998
|
+
export declare class DescribeRegionsRequest extends $tea.Model {
|
|
855
999
|
acceptLanguage?: string;
|
|
1000
|
+
regionId?: string;
|
|
856
1001
|
static names(): {
|
|
857
1002
|
[key: string]: string;
|
|
858
1003
|
};
|
|
@@ -864,8 +1009,8 @@ export declare class DescribeRegionsRequest extends $tea.Model {
|
|
|
864
1009
|
});
|
|
865
1010
|
}
|
|
866
1011
|
export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
867
|
-
requestId?: string;
|
|
868
1012
|
regions?: DescribeRegionsResponseBodyRegions[];
|
|
1013
|
+
requestId?: string;
|
|
869
1014
|
static names(): {
|
|
870
1015
|
[key: string]: string;
|
|
871
1016
|
};
|
|
@@ -880,6 +1025,7 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
880
1025
|
headers: {
|
|
881
1026
|
[key: string]: string;
|
|
882
1027
|
};
|
|
1028
|
+
statusCode: number;
|
|
883
1029
|
body: DescribeRegionsResponseBody;
|
|
884
1030
|
static names(): {
|
|
885
1031
|
[key: string]: string;
|
|
@@ -922,6 +1068,7 @@ export declare class GenerateExecutionPolicyResponse extends $tea.Model {
|
|
|
922
1068
|
headers: {
|
|
923
1069
|
[key: string]: string;
|
|
924
1070
|
};
|
|
1071
|
+
statusCode: number;
|
|
925
1072
|
body: GenerateExecutionPolicyResponseBody;
|
|
926
1073
|
static names(): {
|
|
927
1074
|
[key: string]: string;
|
|
@@ -934,8 +1081,8 @@ export declare class GenerateExecutionPolicyResponse extends $tea.Model {
|
|
|
934
1081
|
});
|
|
935
1082
|
}
|
|
936
1083
|
export declare class GetApplicationRequest extends $tea.Model {
|
|
937
|
-
regionId?: string;
|
|
938
1084
|
name?: string;
|
|
1085
|
+
regionId?: string;
|
|
939
1086
|
static names(): {
|
|
940
1087
|
[key: string]: string;
|
|
941
1088
|
};
|
|
@@ -947,8 +1094,8 @@ export declare class GetApplicationRequest extends $tea.Model {
|
|
|
947
1094
|
});
|
|
948
1095
|
}
|
|
949
1096
|
export declare class GetApplicationResponseBody extends $tea.Model {
|
|
950
|
-
requestId?: string;
|
|
951
1097
|
application?: GetApplicationResponseBodyApplication;
|
|
1098
|
+
requestId?: string;
|
|
952
1099
|
static names(): {
|
|
953
1100
|
[key: string]: string;
|
|
954
1101
|
};
|
|
@@ -963,6 +1110,7 @@ export declare class GetApplicationResponse extends $tea.Model {
|
|
|
963
1110
|
headers: {
|
|
964
1111
|
[key: string]: string;
|
|
965
1112
|
};
|
|
1113
|
+
statusCode: number;
|
|
966
1114
|
body: GetApplicationResponseBody;
|
|
967
1115
|
static names(): {
|
|
968
1116
|
[key: string]: string;
|
|
@@ -975,8 +1123,9 @@ export declare class GetApplicationResponse extends $tea.Model {
|
|
|
975
1123
|
});
|
|
976
1124
|
}
|
|
977
1125
|
export declare class GetApplicationGroupRequest extends $tea.Model {
|
|
978
|
-
|
|
1126
|
+
applicationName?: string;
|
|
979
1127
|
name?: string;
|
|
1128
|
+
regionId?: string;
|
|
980
1129
|
static names(): {
|
|
981
1130
|
[key: string]: string;
|
|
982
1131
|
};
|
|
@@ -988,8 +1137,8 @@ export declare class GetApplicationGroupRequest extends $tea.Model {
|
|
|
988
1137
|
});
|
|
989
1138
|
}
|
|
990
1139
|
export declare class GetApplicationGroupResponseBody extends $tea.Model {
|
|
991
|
-
requestId?: string;
|
|
992
1140
|
applicationGroup?: GetApplicationGroupResponseBodyApplicationGroup;
|
|
1141
|
+
requestId?: string;
|
|
993
1142
|
static names(): {
|
|
994
1143
|
[key: string]: string;
|
|
995
1144
|
};
|
|
@@ -1004,6 +1153,7 @@ export declare class GetApplicationGroupResponse extends $tea.Model {
|
|
|
1004
1153
|
headers: {
|
|
1005
1154
|
[key: string]: string;
|
|
1006
1155
|
};
|
|
1156
|
+
statusCode: number;
|
|
1007
1157
|
body: GetApplicationGroupResponseBody;
|
|
1008
1158
|
static names(): {
|
|
1009
1159
|
[key: string]: string;
|
|
@@ -1016,8 +1166,8 @@ export declare class GetApplicationGroupResponse extends $tea.Model {
|
|
|
1016
1166
|
});
|
|
1017
1167
|
}
|
|
1018
1168
|
export declare class GetExecutionTemplateRequest extends $tea.Model {
|
|
1019
|
-
regionId?: string;
|
|
1020
1169
|
executionId?: string;
|
|
1170
|
+
regionId?: string;
|
|
1021
1171
|
static names(): {
|
|
1022
1172
|
[key: string]: string;
|
|
1023
1173
|
};
|
|
@@ -1046,6 +1196,7 @@ export declare class GetExecutionTemplateResponse extends $tea.Model {
|
|
|
1046
1196
|
headers: {
|
|
1047
1197
|
[key: string]: string;
|
|
1048
1198
|
};
|
|
1199
|
+
statusCode: number;
|
|
1049
1200
|
body: GetExecutionTemplateResponseBody;
|
|
1050
1201
|
static names(): {
|
|
1051
1202
|
[key: string]: string;
|
|
@@ -1058,11 +1209,11 @@ export declare class GetExecutionTemplateResponse extends $tea.Model {
|
|
|
1058
1209
|
});
|
|
1059
1210
|
}
|
|
1060
1211
|
export declare class GetInventorySchemaRequest extends $tea.Model {
|
|
1061
|
-
regionId?: string;
|
|
1062
1212
|
aggregator?: boolean;
|
|
1063
|
-
typeName?: string;
|
|
1064
1213
|
maxResults?: number;
|
|
1065
1214
|
nextToken?: string;
|
|
1215
|
+
regionId?: string;
|
|
1216
|
+
typeName?: string;
|
|
1066
1217
|
static names(): {
|
|
1067
1218
|
[key: string]: string;
|
|
1068
1219
|
};
|
|
@@ -1074,9 +1225,9 @@ export declare class GetInventorySchemaRequest extends $tea.Model {
|
|
|
1074
1225
|
});
|
|
1075
1226
|
}
|
|
1076
1227
|
export declare class GetInventorySchemaResponseBody extends $tea.Model {
|
|
1228
|
+
maxResults?: string;
|
|
1077
1229
|
nextToken?: string;
|
|
1078
1230
|
requestId?: string;
|
|
1079
|
-
maxResults?: string;
|
|
1080
1231
|
schemas?: GetInventorySchemaResponseBodySchemas[];
|
|
1081
1232
|
static names(): {
|
|
1082
1233
|
[key: string]: string;
|
|
@@ -1092,6 +1243,7 @@ export declare class GetInventorySchemaResponse extends $tea.Model {
|
|
|
1092
1243
|
headers: {
|
|
1093
1244
|
[key: string]: string;
|
|
1094
1245
|
};
|
|
1246
|
+
statusCode: number;
|
|
1095
1247
|
body: GetInventorySchemaResponseBody;
|
|
1096
1248
|
static names(): {
|
|
1097
1249
|
[key: string]: string;
|
|
@@ -1104,9 +1256,9 @@ export declare class GetInventorySchemaResponse extends $tea.Model {
|
|
|
1104
1256
|
});
|
|
1105
1257
|
}
|
|
1106
1258
|
export declare class GetParameterRequest extends $tea.Model {
|
|
1107
|
-
regionId?: string;
|
|
1108
1259
|
name?: string;
|
|
1109
1260
|
parameterVersion?: number;
|
|
1261
|
+
regionId?: string;
|
|
1110
1262
|
resourceGroupId?: string;
|
|
1111
1263
|
static names(): {
|
|
1112
1264
|
[key: string]: string;
|
|
@@ -1119,8 +1271,8 @@ export declare class GetParameterRequest extends $tea.Model {
|
|
|
1119
1271
|
});
|
|
1120
1272
|
}
|
|
1121
1273
|
export declare class GetParameterResponseBody extends $tea.Model {
|
|
1122
|
-
requestId?: string;
|
|
1123
1274
|
parameter?: GetParameterResponseBodyParameter;
|
|
1275
|
+
requestId?: string;
|
|
1124
1276
|
static names(): {
|
|
1125
1277
|
[key: string]: string;
|
|
1126
1278
|
};
|
|
@@ -1135,6 +1287,7 @@ export declare class GetParameterResponse extends $tea.Model {
|
|
|
1135
1287
|
headers: {
|
|
1136
1288
|
[key: string]: string;
|
|
1137
1289
|
};
|
|
1290
|
+
statusCode: number;
|
|
1138
1291
|
body: GetParameterResponseBody;
|
|
1139
1292
|
static names(): {
|
|
1140
1293
|
[key: string]: string;
|
|
@@ -1147,8 +1300,8 @@ export declare class GetParameterResponse extends $tea.Model {
|
|
|
1147
1300
|
});
|
|
1148
1301
|
}
|
|
1149
1302
|
export declare class GetParametersRequest extends $tea.Model {
|
|
1150
|
-
regionId?: string;
|
|
1151
1303
|
names?: string;
|
|
1304
|
+
regionId?: string;
|
|
1152
1305
|
static names(): {
|
|
1153
1306
|
[key: string]: string;
|
|
1154
1307
|
};
|
|
@@ -1160,9 +1313,9 @@ export declare class GetParametersRequest extends $tea.Model {
|
|
|
1160
1313
|
});
|
|
1161
1314
|
}
|
|
1162
1315
|
export declare class GetParametersResponseBody extends $tea.Model {
|
|
1163
|
-
requestId?: string;
|
|
1164
1316
|
invalidParameters?: string[];
|
|
1165
1317
|
parameters?: GetParametersResponseBodyParameters[];
|
|
1318
|
+
requestId?: string;
|
|
1166
1319
|
static names(): {
|
|
1167
1320
|
[key: string]: string;
|
|
1168
1321
|
};
|
|
@@ -1177,6 +1330,7 @@ export declare class GetParametersResponse extends $tea.Model {
|
|
|
1177
1330
|
headers: {
|
|
1178
1331
|
[key: string]: string;
|
|
1179
1332
|
};
|
|
1333
|
+
statusCode: number;
|
|
1180
1334
|
body: GetParametersResponseBody;
|
|
1181
1335
|
static names(): {
|
|
1182
1336
|
[key: string]: string;
|
|
@@ -1189,11 +1343,11 @@ export declare class GetParametersResponse extends $tea.Model {
|
|
|
1189
1343
|
});
|
|
1190
1344
|
}
|
|
1191
1345
|
export declare class GetParametersByPathRequest extends $tea.Model {
|
|
1192
|
-
|
|
1346
|
+
maxResults?: number;
|
|
1347
|
+
nextToken?: string;
|
|
1193
1348
|
path?: string;
|
|
1194
1349
|
recursive?: boolean;
|
|
1195
|
-
|
|
1196
|
-
maxResults?: number;
|
|
1350
|
+
regionId?: string;
|
|
1197
1351
|
static names(): {
|
|
1198
1352
|
[key: string]: string;
|
|
1199
1353
|
};
|
|
@@ -1205,11 +1359,11 @@ export declare class GetParametersByPathRequest extends $tea.Model {
|
|
|
1205
1359
|
});
|
|
1206
1360
|
}
|
|
1207
1361
|
export declare class GetParametersByPathResponseBody extends $tea.Model {
|
|
1362
|
+
maxResults?: number;
|
|
1208
1363
|
nextToken?: string;
|
|
1364
|
+
parameters?: GetParametersByPathResponseBodyParameters[];
|
|
1209
1365
|
requestId?: string;
|
|
1210
1366
|
totalCount?: number;
|
|
1211
|
-
maxResults?: number;
|
|
1212
|
-
parameters?: GetParametersByPathResponseBodyParameters[];
|
|
1213
1367
|
static names(): {
|
|
1214
1368
|
[key: string]: string;
|
|
1215
1369
|
};
|
|
@@ -1224,6 +1378,7 @@ export declare class GetParametersByPathResponse extends $tea.Model {
|
|
|
1224
1378
|
headers: {
|
|
1225
1379
|
[key: string]: string;
|
|
1226
1380
|
};
|
|
1381
|
+
statusCode: number;
|
|
1227
1382
|
body: GetParametersByPathResponseBody;
|
|
1228
1383
|
static names(): {
|
|
1229
1384
|
[key: string]: string;
|
|
@@ -1236,8 +1391,8 @@ export declare class GetParametersByPathResponse extends $tea.Model {
|
|
|
1236
1391
|
});
|
|
1237
1392
|
}
|
|
1238
1393
|
export declare class GetPatchBaselineRequest extends $tea.Model {
|
|
1239
|
-
regionId?: string;
|
|
1240
1394
|
name?: string;
|
|
1395
|
+
regionId?: string;
|
|
1241
1396
|
static names(): {
|
|
1242
1397
|
[key: string]: string;
|
|
1243
1398
|
};
|
|
@@ -1249,8 +1404,8 @@ export declare class GetPatchBaselineRequest extends $tea.Model {
|
|
|
1249
1404
|
});
|
|
1250
1405
|
}
|
|
1251
1406
|
export declare class GetPatchBaselineResponseBody extends $tea.Model {
|
|
1252
|
-
requestId?: string;
|
|
1253
1407
|
patchBaseline?: GetPatchBaselineResponseBodyPatchBaseline;
|
|
1408
|
+
requestId?: string;
|
|
1254
1409
|
static names(): {
|
|
1255
1410
|
[key: string]: string;
|
|
1256
1411
|
};
|
|
@@ -1265,6 +1420,7 @@ export declare class GetPatchBaselineResponse extends $tea.Model {
|
|
|
1265
1420
|
headers: {
|
|
1266
1421
|
[key: string]: string;
|
|
1267
1422
|
};
|
|
1423
|
+
statusCode: number;
|
|
1268
1424
|
body: GetPatchBaselineResponseBody;
|
|
1269
1425
|
static names(): {
|
|
1270
1426
|
[key: string]: string;
|
|
@@ -1277,9 +1433,9 @@ export declare class GetPatchBaselineResponse extends $tea.Model {
|
|
|
1277
1433
|
});
|
|
1278
1434
|
}
|
|
1279
1435
|
export declare class GetSecretParameterRequest extends $tea.Model {
|
|
1280
|
-
regionId?: string;
|
|
1281
1436
|
name?: string;
|
|
1282
1437
|
parameterVersion?: number;
|
|
1438
|
+
regionId?: string;
|
|
1283
1439
|
withDecryption?: boolean;
|
|
1284
1440
|
static names(): {
|
|
1285
1441
|
[key: string]: string;
|
|
@@ -1292,8 +1448,8 @@ export declare class GetSecretParameterRequest extends $tea.Model {
|
|
|
1292
1448
|
});
|
|
1293
1449
|
}
|
|
1294
1450
|
export declare class GetSecretParameterResponseBody extends $tea.Model {
|
|
1295
|
-
requestId?: string;
|
|
1296
1451
|
parameter?: GetSecretParameterResponseBodyParameter;
|
|
1452
|
+
requestId?: string;
|
|
1297
1453
|
static names(): {
|
|
1298
1454
|
[key: string]: string;
|
|
1299
1455
|
};
|
|
@@ -1308,6 +1464,7 @@ export declare class GetSecretParameterResponse extends $tea.Model {
|
|
|
1308
1464
|
headers: {
|
|
1309
1465
|
[key: string]: string;
|
|
1310
1466
|
};
|
|
1467
|
+
statusCode: number;
|
|
1311
1468
|
body: GetSecretParameterResponseBody;
|
|
1312
1469
|
static names(): {
|
|
1313
1470
|
[key: string]: string;
|
|
@@ -1320,8 +1477,8 @@ export declare class GetSecretParameterResponse extends $tea.Model {
|
|
|
1320
1477
|
});
|
|
1321
1478
|
}
|
|
1322
1479
|
export declare class GetSecretParametersRequest extends $tea.Model {
|
|
1323
|
-
regionId?: string;
|
|
1324
1480
|
names?: string;
|
|
1481
|
+
regionId?: string;
|
|
1325
1482
|
withDecryption?: boolean;
|
|
1326
1483
|
static names(): {
|
|
1327
1484
|
[key: string]: string;
|
|
@@ -1334,9 +1491,9 @@ export declare class GetSecretParametersRequest extends $tea.Model {
|
|
|
1334
1491
|
});
|
|
1335
1492
|
}
|
|
1336
1493
|
export declare class GetSecretParametersResponseBody extends $tea.Model {
|
|
1337
|
-
requestId?: string;
|
|
1338
1494
|
invalidParameters?: string[];
|
|
1339
1495
|
parameters?: GetSecretParametersResponseBodyParameters[];
|
|
1496
|
+
requestId?: string;
|
|
1340
1497
|
static names(): {
|
|
1341
1498
|
[key: string]: string;
|
|
1342
1499
|
};
|
|
@@ -1351,6 +1508,7 @@ export declare class GetSecretParametersResponse extends $tea.Model {
|
|
|
1351
1508
|
headers: {
|
|
1352
1509
|
[key: string]: string;
|
|
1353
1510
|
};
|
|
1511
|
+
statusCode: number;
|
|
1354
1512
|
body: GetSecretParametersResponseBody;
|
|
1355
1513
|
static names(): {
|
|
1356
1514
|
[key: string]: string;
|
|
@@ -1363,11 +1521,11 @@ export declare class GetSecretParametersResponse extends $tea.Model {
|
|
|
1363
1521
|
});
|
|
1364
1522
|
}
|
|
1365
1523
|
export declare class GetSecretParametersByPathRequest extends $tea.Model {
|
|
1366
|
-
|
|
1524
|
+
maxResults?: number;
|
|
1525
|
+
nextToken?: string;
|
|
1367
1526
|
path?: string;
|
|
1368
1527
|
recursive?: boolean;
|
|
1369
|
-
|
|
1370
|
-
maxResults?: number;
|
|
1528
|
+
regionId?: string;
|
|
1371
1529
|
withDecryption?: boolean;
|
|
1372
1530
|
static names(): {
|
|
1373
1531
|
[key: string]: string;
|
|
@@ -1380,11 +1538,11 @@ export declare class GetSecretParametersByPathRequest extends $tea.Model {
|
|
|
1380
1538
|
});
|
|
1381
1539
|
}
|
|
1382
1540
|
export declare class GetSecretParametersByPathResponseBody extends $tea.Model {
|
|
1541
|
+
maxResults?: number;
|
|
1383
1542
|
nextToken?: string;
|
|
1543
|
+
parameters?: GetSecretParametersByPathResponseBodyParameters[];
|
|
1384
1544
|
requestId?: string;
|
|
1385
1545
|
totalCount?: number;
|
|
1386
|
-
maxResults?: number;
|
|
1387
|
-
parameters?: GetSecretParametersByPathResponseBodyParameters[];
|
|
1388
1546
|
static names(): {
|
|
1389
1547
|
[key: string]: string;
|
|
1390
1548
|
};
|
|
@@ -1399,6 +1557,7 @@ export declare class GetSecretParametersByPathResponse extends $tea.Model {
|
|
|
1399
1557
|
headers: {
|
|
1400
1558
|
[key: string]: string;
|
|
1401
1559
|
};
|
|
1560
|
+
statusCode: number;
|
|
1402
1561
|
body: GetSecretParametersByPathResponseBody;
|
|
1403
1562
|
static names(): {
|
|
1404
1563
|
[key: string]: string;
|
|
@@ -1439,6 +1598,7 @@ export declare class GetServiceSettingsResponse extends $tea.Model {
|
|
|
1439
1598
|
headers: {
|
|
1440
1599
|
[key: string]: string;
|
|
1441
1600
|
};
|
|
1601
|
+
statusCode: number;
|
|
1442
1602
|
body: GetServiceSettingsResponseBody;
|
|
1443
1603
|
static names(): {
|
|
1444
1604
|
[key: string]: string;
|
|
@@ -1482,6 +1642,7 @@ export declare class GetTemplateResponse extends $tea.Model {
|
|
|
1482
1642
|
headers: {
|
|
1483
1643
|
[key: string]: string;
|
|
1484
1644
|
};
|
|
1645
|
+
statusCode: number;
|
|
1485
1646
|
body: GetTemplateResponseBody;
|
|
1486
1647
|
static names(): {
|
|
1487
1648
|
[key: string]: string;
|
|
@@ -1494,10 +1655,10 @@ export declare class GetTemplateResponse extends $tea.Model {
|
|
|
1494
1655
|
});
|
|
1495
1656
|
}
|
|
1496
1657
|
export declare class ListActionsRequest extends $tea.Model {
|
|
1497
|
-
regionId?: string;
|
|
1498
|
-
OOSActionName?: string;
|
|
1499
1658
|
maxResults?: number;
|
|
1500
1659
|
nextToken?: string;
|
|
1660
|
+
OOSActionName?: string;
|
|
1661
|
+
regionId?: string;
|
|
1501
1662
|
static names(): {
|
|
1502
1663
|
[key: string]: string;
|
|
1503
1664
|
};
|
|
@@ -1509,10 +1670,10 @@ export declare class ListActionsRequest extends $tea.Model {
|
|
|
1509
1670
|
});
|
|
1510
1671
|
}
|
|
1511
1672
|
export declare class ListActionsResponseBody extends $tea.Model {
|
|
1673
|
+
actions?: ListActionsResponseBodyActions[];
|
|
1674
|
+
maxResults?: number;
|
|
1512
1675
|
nextToken?: string;
|
|
1513
1676
|
requestId?: string;
|
|
1514
|
-
maxResults?: number;
|
|
1515
|
-
actions?: ListActionsResponseBodyActions[];
|
|
1516
1677
|
static names(): {
|
|
1517
1678
|
[key: string]: string;
|
|
1518
1679
|
};
|
|
@@ -1527,6 +1688,7 @@ export declare class ListActionsResponse extends $tea.Model {
|
|
|
1527
1688
|
headers: {
|
|
1528
1689
|
[key: string]: string;
|
|
1529
1690
|
};
|
|
1691
|
+
statusCode: number;
|
|
1530
1692
|
body: ListActionsResponseBody;
|
|
1531
1693
|
static names(): {
|
|
1532
1694
|
[key: string]: string;
|
|
@@ -1539,12 +1701,14 @@ export declare class ListActionsResponse extends $tea.Model {
|
|
|
1539
1701
|
});
|
|
1540
1702
|
}
|
|
1541
1703
|
export declare class ListApplicationGroupsRequest extends $tea.Model {
|
|
1542
|
-
regionId?: string;
|
|
1543
1704
|
applicationName?: string;
|
|
1544
|
-
deployRegionId?:
|
|
1545
|
-
environment?: boolean;
|
|
1705
|
+
deployRegionId?: string;
|
|
1546
1706
|
maxResults?: number;
|
|
1547
1707
|
nextToken?: string;
|
|
1708
|
+
product?: string;
|
|
1709
|
+
regionId?: string;
|
|
1710
|
+
resourceId?: string;
|
|
1711
|
+
resourceType?: string;
|
|
1548
1712
|
static names(): {
|
|
1549
1713
|
[key: string]: string;
|
|
1550
1714
|
};
|
|
@@ -1556,10 +1720,10 @@ export declare class ListApplicationGroupsRequest extends $tea.Model {
|
|
|
1556
1720
|
});
|
|
1557
1721
|
}
|
|
1558
1722
|
export declare class ListApplicationGroupsResponseBody extends $tea.Model {
|
|
1723
|
+
applicationGroups?: ListApplicationGroupsResponseBodyApplicationGroups[];
|
|
1724
|
+
maxResults?: number;
|
|
1559
1725
|
nextToken?: string;
|
|
1560
1726
|
requestId?: string;
|
|
1561
|
-
maxResults?: number;
|
|
1562
|
-
applicationGroups?: ListApplicationGroupsResponseBodyApplicationGroups[];
|
|
1563
1727
|
static names(): {
|
|
1564
1728
|
[key: string]: string;
|
|
1565
1729
|
};
|
|
@@ -1574,6 +1738,7 @@ export declare class ListApplicationGroupsResponse extends $tea.Model {
|
|
|
1574
1738
|
headers: {
|
|
1575
1739
|
[key: string]: string;
|
|
1576
1740
|
};
|
|
1741
|
+
statusCode: number;
|
|
1577
1742
|
body: ListApplicationGroupsResponseBody;
|
|
1578
1743
|
static names(): {
|
|
1579
1744
|
[key: string]: string;
|
|
@@ -1586,10 +1751,31 @@ export declare class ListApplicationGroupsResponse extends $tea.Model {
|
|
|
1586
1751
|
});
|
|
1587
1752
|
}
|
|
1588
1753
|
export declare class ListApplicationsRequest extends $tea.Model {
|
|
1754
|
+
maxResults?: number;
|
|
1755
|
+
name?: string;
|
|
1756
|
+
names?: string;
|
|
1757
|
+
nextToken?: string;
|
|
1589
1758
|
regionId?: string;
|
|
1590
|
-
|
|
1759
|
+
tags?: {
|
|
1760
|
+
[key: string]: any;
|
|
1761
|
+
};
|
|
1762
|
+
static names(): {
|
|
1763
|
+
[key: string]: string;
|
|
1764
|
+
};
|
|
1765
|
+
static types(): {
|
|
1766
|
+
[key: string]: any;
|
|
1767
|
+
};
|
|
1768
|
+
constructor(map?: {
|
|
1769
|
+
[key: string]: any;
|
|
1770
|
+
});
|
|
1771
|
+
}
|
|
1772
|
+
export declare class ListApplicationsShrinkRequest extends $tea.Model {
|
|
1591
1773
|
maxResults?: number;
|
|
1774
|
+
name?: string;
|
|
1775
|
+
names?: string;
|
|
1592
1776
|
nextToken?: string;
|
|
1777
|
+
regionId?: string;
|
|
1778
|
+
tagsShrink?: string;
|
|
1593
1779
|
static names(): {
|
|
1594
1780
|
[key: string]: string;
|
|
1595
1781
|
};
|
|
@@ -1601,10 +1787,10 @@ export declare class ListApplicationsRequest extends $tea.Model {
|
|
|
1601
1787
|
});
|
|
1602
1788
|
}
|
|
1603
1789
|
export declare class ListApplicationsResponseBody extends $tea.Model {
|
|
1790
|
+
applications?: ListApplicationsResponseBodyApplications[];
|
|
1791
|
+
maxResults?: number;
|
|
1604
1792
|
nextToken?: string;
|
|
1605
1793
|
requestId?: string;
|
|
1606
|
-
maxResults?: number;
|
|
1607
|
-
applications?: ListApplicationsResponseBodyApplications[];
|
|
1608
1794
|
static names(): {
|
|
1609
1795
|
[key: string]: string;
|
|
1610
1796
|
};
|
|
@@ -1619,6 +1805,7 @@ export declare class ListApplicationsResponse extends $tea.Model {
|
|
|
1619
1805
|
headers: {
|
|
1620
1806
|
[key: string]: string;
|
|
1621
1807
|
};
|
|
1808
|
+
statusCode: number;
|
|
1622
1809
|
body: ListApplicationsResponseBody;
|
|
1623
1810
|
static names(): {
|
|
1624
1811
|
[key: string]: string;
|
|
@@ -1631,12 +1818,12 @@ export declare class ListApplicationsResponse extends $tea.Model {
|
|
|
1631
1818
|
});
|
|
1632
1819
|
}
|
|
1633
1820
|
export declare class ListExecutionLogsRequest extends $tea.Model {
|
|
1634
|
-
regionId?: string;
|
|
1635
1821
|
executionId?: string;
|
|
1636
|
-
taskExecutionId?: string;
|
|
1637
1822
|
logType?: string;
|
|
1638
1823
|
maxResults?: number;
|
|
1639
1824
|
nextToken?: string;
|
|
1825
|
+
regionId?: string;
|
|
1826
|
+
taskExecutionId?: string;
|
|
1640
1827
|
static names(): {
|
|
1641
1828
|
[key: string]: string;
|
|
1642
1829
|
};
|
|
@@ -1648,11 +1835,11 @@ export declare class ListExecutionLogsRequest extends $tea.Model {
|
|
|
1648
1835
|
});
|
|
1649
1836
|
}
|
|
1650
1837
|
export declare class ListExecutionLogsResponseBody extends $tea.Model {
|
|
1651
|
-
|
|
1652
|
-
requestId?: string;
|
|
1838
|
+
executionLogs?: ListExecutionLogsResponseBodyExecutionLogs[];
|
|
1653
1839
|
isTruncated?: boolean;
|
|
1654
1840
|
maxResults?: number;
|
|
1655
|
-
|
|
1841
|
+
nextToken?: string;
|
|
1842
|
+
requestId?: string;
|
|
1656
1843
|
static names(): {
|
|
1657
1844
|
[key: string]: string;
|
|
1658
1845
|
};
|
|
@@ -1667,6 +1854,7 @@ export declare class ListExecutionLogsResponse extends $tea.Model {
|
|
|
1667
1854
|
headers: {
|
|
1668
1855
|
[key: string]: string;
|
|
1669
1856
|
};
|
|
1857
|
+
statusCode: number;
|
|
1670
1858
|
body: ListExecutionLogsResponseBody;
|
|
1671
1859
|
static names(): {
|
|
1672
1860
|
[key: string]: string;
|
|
@@ -1708,6 +1896,7 @@ export declare class ListExecutionRiskyTasksResponse extends $tea.Model {
|
|
|
1708
1896
|
headers: {
|
|
1709
1897
|
[key: string]: string;
|
|
1710
1898
|
};
|
|
1899
|
+
statusCode: number;
|
|
1711
1900
|
body: ListExecutionRiskyTasksResponseBody;
|
|
1712
1901
|
static names(): {
|
|
1713
1902
|
[key: string]: string;
|
|
@@ -1720,30 +1909,30 @@ export declare class ListExecutionRiskyTasksResponse extends $tea.Model {
|
|
|
1720
1909
|
});
|
|
1721
1910
|
}
|
|
1722
1911
|
export declare class ListExecutionsRequest extends $tea.Model {
|
|
1723
|
-
|
|
1724
|
-
templateName?: string;
|
|
1725
|
-
status?: string;
|
|
1726
|
-
executionId?: string;
|
|
1727
|
-
startDateBefore?: string;
|
|
1728
|
-
startDateAfter?: string;
|
|
1729
|
-
endDateBefore?: string;
|
|
1912
|
+
category?: string;
|
|
1730
1913
|
endDateAfter?: string;
|
|
1731
|
-
|
|
1914
|
+
endDateBefore?: string;
|
|
1732
1915
|
executedBy?: string;
|
|
1733
|
-
|
|
1734
|
-
ramRole?: string;
|
|
1916
|
+
executionId?: string;
|
|
1735
1917
|
includeChildExecution?: boolean;
|
|
1736
|
-
category?: string;
|
|
1737
|
-
tags?: {
|
|
1738
|
-
[key: string]: any;
|
|
1739
|
-
};
|
|
1740
1918
|
maxResults?: number;
|
|
1919
|
+
mode?: string;
|
|
1741
1920
|
nextToken?: string;
|
|
1742
|
-
|
|
1743
|
-
|
|
1921
|
+
parentExecutionId?: string;
|
|
1922
|
+
ramRole?: string;
|
|
1923
|
+
regionId?: string;
|
|
1924
|
+
resourceGroupId?: string;
|
|
1744
1925
|
resourceId?: string;
|
|
1745
1926
|
resourceTemplateName?: string;
|
|
1746
|
-
|
|
1927
|
+
sortField?: string;
|
|
1928
|
+
sortOrder?: string;
|
|
1929
|
+
startDateAfter?: string;
|
|
1930
|
+
startDateBefore?: string;
|
|
1931
|
+
status?: string;
|
|
1932
|
+
tags?: {
|
|
1933
|
+
[key: string]: any;
|
|
1934
|
+
};
|
|
1935
|
+
templateName?: string;
|
|
1747
1936
|
static names(): {
|
|
1748
1937
|
[key: string]: string;
|
|
1749
1938
|
};
|
|
@@ -1755,28 +1944,28 @@ export declare class ListExecutionsRequest extends $tea.Model {
|
|
|
1755
1944
|
});
|
|
1756
1945
|
}
|
|
1757
1946
|
export declare class ListExecutionsShrinkRequest extends $tea.Model {
|
|
1758
|
-
|
|
1759
|
-
templateName?: string;
|
|
1760
|
-
status?: string;
|
|
1761
|
-
executionId?: string;
|
|
1762
|
-
startDateBefore?: string;
|
|
1763
|
-
startDateAfter?: string;
|
|
1764
|
-
endDateBefore?: string;
|
|
1947
|
+
category?: string;
|
|
1765
1948
|
endDateAfter?: string;
|
|
1766
|
-
|
|
1949
|
+
endDateBefore?: string;
|
|
1767
1950
|
executedBy?: string;
|
|
1768
|
-
|
|
1769
|
-
ramRole?: string;
|
|
1951
|
+
executionId?: string;
|
|
1770
1952
|
includeChildExecution?: boolean;
|
|
1771
|
-
category?: string;
|
|
1772
|
-
tagsShrink?: string;
|
|
1773
1953
|
maxResults?: number;
|
|
1954
|
+
mode?: string;
|
|
1774
1955
|
nextToken?: string;
|
|
1775
|
-
|
|
1776
|
-
|
|
1956
|
+
parentExecutionId?: string;
|
|
1957
|
+
ramRole?: string;
|
|
1958
|
+
regionId?: string;
|
|
1959
|
+
resourceGroupId?: string;
|
|
1777
1960
|
resourceId?: string;
|
|
1778
1961
|
resourceTemplateName?: string;
|
|
1779
|
-
|
|
1962
|
+
sortField?: string;
|
|
1963
|
+
sortOrder?: string;
|
|
1964
|
+
startDateAfter?: string;
|
|
1965
|
+
startDateBefore?: string;
|
|
1966
|
+
status?: string;
|
|
1967
|
+
tagsShrink?: string;
|
|
1968
|
+
templateName?: string;
|
|
1780
1969
|
static names(): {
|
|
1781
1970
|
[key: string]: string;
|
|
1782
1971
|
};
|
|
@@ -1788,10 +1977,10 @@ export declare class ListExecutionsShrinkRequest extends $tea.Model {
|
|
|
1788
1977
|
});
|
|
1789
1978
|
}
|
|
1790
1979
|
export declare class ListExecutionsResponseBody extends $tea.Model {
|
|
1980
|
+
executions?: ListExecutionsResponseBodyExecutions[];
|
|
1981
|
+
maxResults?: number;
|
|
1791
1982
|
nextToken?: string;
|
|
1792
1983
|
requestId?: string;
|
|
1793
|
-
maxResults?: number;
|
|
1794
|
-
executions?: ListExecutionsResponseBodyExecutions[];
|
|
1795
1984
|
static names(): {
|
|
1796
1985
|
[key: string]: string;
|
|
1797
1986
|
};
|
|
@@ -1806,6 +1995,7 @@ export declare class ListExecutionsResponse extends $tea.Model {
|
|
|
1806
1995
|
headers: {
|
|
1807
1996
|
[key: string]: string;
|
|
1808
1997
|
};
|
|
1998
|
+
statusCode: number;
|
|
1809
1999
|
body: ListExecutionsResponseBody;
|
|
1810
2000
|
static names(): {
|
|
1811
2001
|
[key: string]: string;
|
|
@@ -1817,12 +2007,11 @@ export declare class ListExecutionsResponse extends $tea.Model {
|
|
|
1817
2007
|
[key: string]: any;
|
|
1818
2008
|
});
|
|
1819
2009
|
}
|
|
1820
|
-
export declare class
|
|
1821
|
-
|
|
1822
|
-
instanceId?: string;
|
|
2010
|
+
export declare class ListInstancePatchStatesRequest extends $tea.Model {
|
|
2011
|
+
instanceIds?: string;
|
|
1823
2012
|
maxResults?: number;
|
|
1824
2013
|
nextToken?: string;
|
|
1825
|
-
|
|
2014
|
+
regionId?: string;
|
|
1826
2015
|
static names(): {
|
|
1827
2016
|
[key: string]: string;
|
|
1828
2017
|
};
|
|
@@ -1833,11 +2022,11 @@ export declare class ListInstancePatchesRequest extends $tea.Model {
|
|
|
1833
2022
|
[key: string]: any;
|
|
1834
2023
|
});
|
|
1835
2024
|
}
|
|
1836
|
-
export declare class
|
|
2025
|
+
export declare class ListInstancePatchStatesResponseBody extends $tea.Model {
|
|
2026
|
+
instancePatchStates?: ListInstancePatchStatesResponseBodyInstancePatchStates[];
|
|
2027
|
+
maxResults?: number;
|
|
1837
2028
|
nextToken?: string;
|
|
1838
2029
|
requestId?: string;
|
|
1839
|
-
maxResults?: number;
|
|
1840
|
-
patches?: ListInstancePatchesResponseBodyPatches[];
|
|
1841
2030
|
static names(): {
|
|
1842
2031
|
[key: string]: string;
|
|
1843
2032
|
};
|
|
@@ -1848,11 +2037,12 @@ export declare class ListInstancePatchesResponseBody extends $tea.Model {
|
|
|
1848
2037
|
[key: string]: any;
|
|
1849
2038
|
});
|
|
1850
2039
|
}
|
|
1851
|
-
export declare class
|
|
2040
|
+
export declare class ListInstancePatchStatesResponse extends $tea.Model {
|
|
1852
2041
|
headers: {
|
|
1853
2042
|
[key: string]: string;
|
|
1854
2043
|
};
|
|
1855
|
-
|
|
2044
|
+
statusCode: number;
|
|
2045
|
+
body: ListInstancePatchStatesResponseBody;
|
|
1856
2046
|
static names(): {
|
|
1857
2047
|
[key: string]: string;
|
|
1858
2048
|
};
|
|
@@ -1863,11 +2053,12 @@ export declare class ListInstancePatchesResponse extends $tea.Model {
|
|
|
1863
2053
|
[key: string]: any;
|
|
1864
2054
|
});
|
|
1865
2055
|
}
|
|
1866
|
-
export declare class
|
|
1867
|
-
|
|
2056
|
+
export declare class ListInstancePatchesRequest extends $tea.Model {
|
|
2057
|
+
instanceId?: string;
|
|
1868
2058
|
maxResults?: number;
|
|
1869
2059
|
nextToken?: string;
|
|
1870
|
-
|
|
2060
|
+
patchStatuses?: string;
|
|
2061
|
+
regionId?: string;
|
|
1871
2062
|
static names(): {
|
|
1872
2063
|
[key: string]: string;
|
|
1873
2064
|
};
|
|
@@ -1878,11 +2069,11 @@ export declare class ListInstancePatchStatesRequest extends $tea.Model {
|
|
|
1878
2069
|
[key: string]: any;
|
|
1879
2070
|
});
|
|
1880
2071
|
}
|
|
1881
|
-
export declare class
|
|
2072
|
+
export declare class ListInstancePatchesResponseBody extends $tea.Model {
|
|
2073
|
+
maxResults?: number;
|
|
1882
2074
|
nextToken?: string;
|
|
2075
|
+
patches?: ListInstancePatchesResponseBodyPatches[];
|
|
1883
2076
|
requestId?: string;
|
|
1884
|
-
maxResults?: number;
|
|
1885
|
-
instancePatchStates?: ListInstancePatchStatesResponseBodyInstancePatchStates[];
|
|
1886
2077
|
static names(): {
|
|
1887
2078
|
[key: string]: string;
|
|
1888
2079
|
};
|
|
@@ -1893,11 +2084,12 @@ export declare class ListInstancePatchStatesResponseBody extends $tea.Model {
|
|
|
1893
2084
|
[key: string]: any;
|
|
1894
2085
|
});
|
|
1895
2086
|
}
|
|
1896
|
-
export declare class
|
|
2087
|
+
export declare class ListInstancePatchesResponse extends $tea.Model {
|
|
1897
2088
|
headers: {
|
|
1898
2089
|
[key: string]: string;
|
|
1899
2090
|
};
|
|
1900
|
-
|
|
2091
|
+
statusCode: number;
|
|
2092
|
+
body: ListInstancePatchesResponseBody;
|
|
1901
2093
|
static names(): {
|
|
1902
2094
|
[key: string]: string;
|
|
1903
2095
|
};
|
|
@@ -1908,12 +2100,13 @@ export declare class ListInstancePatchStatesResponse extends $tea.Model {
|
|
|
1908
2100
|
[key: string]: any;
|
|
1909
2101
|
});
|
|
1910
2102
|
}
|
|
1911
|
-
export declare class
|
|
1912
|
-
|
|
2103
|
+
export declare class ListInventoryEntriesRequest extends $tea.Model {
|
|
2104
|
+
filter?: ListInventoryEntriesRequestFilter[];
|
|
1913
2105
|
instanceId?: string;
|
|
1914
|
-
stateConfigurationId?: string;
|
|
1915
2106
|
maxResults?: number;
|
|
1916
2107
|
nextToken?: string;
|
|
2108
|
+
regionId?: string;
|
|
2109
|
+
typeName?: string;
|
|
1917
2110
|
static names(): {
|
|
1918
2111
|
[key: string]: string;
|
|
1919
2112
|
};
|
|
@@ -1924,11 +2117,17 @@ export declare class ListInstanceStateReportsRequest extends $tea.Model {
|
|
|
1924
2117
|
[key: string]: any;
|
|
1925
2118
|
});
|
|
1926
2119
|
}
|
|
1927
|
-
export declare class
|
|
2120
|
+
export declare class ListInventoryEntriesResponseBody extends $tea.Model {
|
|
2121
|
+
captureTime?: string;
|
|
2122
|
+
entries?: {
|
|
2123
|
+
[key: string]: any;
|
|
2124
|
+
}[];
|
|
2125
|
+
instanceId?: string;
|
|
2126
|
+
maxResults?: number;
|
|
1928
2127
|
nextToken?: string;
|
|
1929
2128
|
requestId?: string;
|
|
1930
|
-
|
|
1931
|
-
|
|
2129
|
+
schemaVersion?: string;
|
|
2130
|
+
typeName?: string;
|
|
1932
2131
|
static names(): {
|
|
1933
2132
|
[key: string]: string;
|
|
1934
2133
|
};
|
|
@@ -1939,11 +2138,12 @@ export declare class ListInstanceStateReportsResponseBody extends $tea.Model {
|
|
|
1939
2138
|
[key: string]: any;
|
|
1940
2139
|
});
|
|
1941
2140
|
}
|
|
1942
|
-
export declare class
|
|
2141
|
+
export declare class ListInventoryEntriesResponse extends $tea.Model {
|
|
1943
2142
|
headers: {
|
|
1944
2143
|
[key: string]: string;
|
|
1945
2144
|
};
|
|
1946
|
-
|
|
2145
|
+
statusCode: number;
|
|
2146
|
+
body: ListInventoryEntriesResponseBody;
|
|
1947
2147
|
static names(): {
|
|
1948
2148
|
[key: string]: string;
|
|
1949
2149
|
};
|
|
@@ -1954,12 +2154,12 @@ export declare class ListInstanceStateReportsResponse extends $tea.Model {
|
|
|
1954
2154
|
[key: string]: any;
|
|
1955
2155
|
});
|
|
1956
2156
|
}
|
|
1957
|
-
export declare class
|
|
1958
|
-
instanceId?: string;
|
|
1959
|
-
typeName?: string;
|
|
2157
|
+
export declare class ListParameterVersionsRequest extends $tea.Model {
|
|
1960
2158
|
maxResults?: number;
|
|
2159
|
+
name?: string;
|
|
1961
2160
|
nextToken?: string;
|
|
1962
|
-
|
|
2161
|
+
regionId?: string;
|
|
2162
|
+
shareType?: string;
|
|
1963
2163
|
static names(): {
|
|
1964
2164
|
[key: string]: string;
|
|
1965
2165
|
};
|
|
@@ -1970,17 +2170,18 @@ export declare class ListInventoryEntriesRequest extends $tea.Model {
|
|
|
1970
2170
|
[key: string]: any;
|
|
1971
2171
|
});
|
|
1972
2172
|
}
|
|
1973
|
-
export declare class
|
|
2173
|
+
export declare class ListParameterVersionsResponseBody extends $tea.Model {
|
|
2174
|
+
createdBy?: string;
|
|
2175
|
+
createdDate?: string;
|
|
2176
|
+
description?: string;
|
|
2177
|
+
id?: string;
|
|
2178
|
+
maxResults?: number;
|
|
2179
|
+
name?: string;
|
|
1974
2180
|
nextToken?: string;
|
|
2181
|
+
parameterVersions?: ListParameterVersionsResponseBodyParameterVersions[];
|
|
1975
2182
|
requestId?: string;
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
captureTime?: string;
|
|
1979
|
-
typeName?: string;
|
|
1980
|
-
instanceId?: string;
|
|
1981
|
-
entries?: {
|
|
1982
|
-
[key: string]: any;
|
|
1983
|
-
}[];
|
|
2183
|
+
totalCount?: number;
|
|
2184
|
+
type?: string;
|
|
1984
2185
|
static names(): {
|
|
1985
2186
|
[key: string]: string;
|
|
1986
2187
|
};
|
|
@@ -1991,11 +2192,12 @@ export declare class ListInventoryEntriesResponseBody extends $tea.Model {
|
|
|
1991
2192
|
[key: string]: any;
|
|
1992
2193
|
});
|
|
1993
2194
|
}
|
|
1994
|
-
export declare class
|
|
2195
|
+
export declare class ListParameterVersionsResponse extends $tea.Model {
|
|
1995
2196
|
headers: {
|
|
1996
2197
|
[key: string]: string;
|
|
1997
2198
|
};
|
|
1998
|
-
|
|
2199
|
+
statusCode: number;
|
|
2200
|
+
body: ListParameterVersionsResponseBody;
|
|
1999
2201
|
static names(): {
|
|
2000
2202
|
[key: string]: string;
|
|
2001
2203
|
};
|
|
@@ -2007,19 +2209,19 @@ export declare class ListInventoryEntriesResponse extends $tea.Model {
|
|
|
2007
2209
|
});
|
|
2008
2210
|
}
|
|
2009
2211
|
export declare class ListParametersRequest extends $tea.Model {
|
|
2010
|
-
regionId?: string;
|
|
2011
|
-
name?: string;
|
|
2012
2212
|
maxResults?: number;
|
|
2213
|
+
name?: string;
|
|
2013
2214
|
nextToken?: string;
|
|
2014
|
-
sortField?: string;
|
|
2015
|
-
sortOrder?: string;
|
|
2016
|
-
type?: string;
|
|
2017
2215
|
path?: string;
|
|
2018
2216
|
recursive?: boolean;
|
|
2217
|
+
regionId?: string;
|
|
2218
|
+
resourceGroupId?: string;
|
|
2219
|
+
sortField?: string;
|
|
2220
|
+
sortOrder?: string;
|
|
2019
2221
|
tags?: {
|
|
2020
2222
|
[key: string]: any;
|
|
2021
2223
|
};
|
|
2022
|
-
|
|
2224
|
+
type?: string;
|
|
2023
2225
|
static names(): {
|
|
2024
2226
|
[key: string]: string;
|
|
2025
2227
|
};
|
|
@@ -2031,17 +2233,17 @@ export declare class ListParametersRequest extends $tea.Model {
|
|
|
2031
2233
|
});
|
|
2032
2234
|
}
|
|
2033
2235
|
export declare class ListParametersShrinkRequest extends $tea.Model {
|
|
2034
|
-
regionId?: string;
|
|
2035
|
-
name?: string;
|
|
2036
2236
|
maxResults?: number;
|
|
2237
|
+
name?: string;
|
|
2037
2238
|
nextToken?: string;
|
|
2038
|
-
sortField?: string;
|
|
2039
|
-
sortOrder?: string;
|
|
2040
|
-
type?: string;
|
|
2041
2239
|
path?: string;
|
|
2042
2240
|
recursive?: boolean;
|
|
2043
|
-
|
|
2241
|
+
regionId?: string;
|
|
2044
2242
|
resourceGroupId?: string;
|
|
2243
|
+
sortField?: string;
|
|
2244
|
+
sortOrder?: string;
|
|
2245
|
+
tagsShrink?: string;
|
|
2246
|
+
type?: string;
|
|
2045
2247
|
static names(): {
|
|
2046
2248
|
[key: string]: string;
|
|
2047
2249
|
};
|
|
@@ -2053,11 +2255,11 @@ export declare class ListParametersShrinkRequest extends $tea.Model {
|
|
|
2053
2255
|
});
|
|
2054
2256
|
}
|
|
2055
2257
|
export declare class ListParametersResponseBody extends $tea.Model {
|
|
2258
|
+
maxResults?: number;
|
|
2056
2259
|
nextToken?: string;
|
|
2260
|
+
parameters?: ListParametersResponseBodyParameters[];
|
|
2057
2261
|
requestId?: string;
|
|
2058
2262
|
totalCount?: number;
|
|
2059
|
-
maxResults?: number;
|
|
2060
|
-
parameters?: ListParametersResponseBodyParameters[];
|
|
2061
2263
|
static names(): {
|
|
2062
2264
|
[key: string]: string;
|
|
2063
2265
|
};
|
|
@@ -2072,6 +2274,7 @@ export declare class ListParametersResponse extends $tea.Model {
|
|
|
2072
2274
|
headers: {
|
|
2073
2275
|
[key: string]: string;
|
|
2074
2276
|
};
|
|
2277
|
+
statusCode: number;
|
|
2075
2278
|
body: ListParametersResponseBody;
|
|
2076
2279
|
static names(): {
|
|
2077
2280
|
[key: string]: string;
|
|
@@ -2083,11 +2286,12 @@ export declare class ListParametersResponse extends $tea.Model {
|
|
|
2083
2286
|
[key: string]: any;
|
|
2084
2287
|
});
|
|
2085
2288
|
}
|
|
2086
|
-
export declare class
|
|
2087
|
-
regionId?: string;
|
|
2088
|
-
name?: string;
|
|
2289
|
+
export declare class ListPatchBaselinesRequest extends $tea.Model {
|
|
2089
2290
|
maxResults?: number;
|
|
2291
|
+
name?: string;
|
|
2090
2292
|
nextToken?: string;
|
|
2293
|
+
operationSystem?: string;
|
|
2294
|
+
regionId?: string;
|
|
2091
2295
|
shareType?: string;
|
|
2092
2296
|
static names(): {
|
|
2093
2297
|
[key: string]: string;
|
|
@@ -2099,18 +2303,11 @@ export declare class ListParameterVersionsRequest extends $tea.Model {
|
|
|
2099
2303
|
[key: string]: any;
|
|
2100
2304
|
});
|
|
2101
2305
|
}
|
|
2102
|
-
export declare class
|
|
2103
|
-
|
|
2306
|
+
export declare class ListPatchBaselinesResponseBody extends $tea.Model {
|
|
2307
|
+
maxResults?: number;
|
|
2104
2308
|
nextToken?: string;
|
|
2309
|
+
patchBaselines?: ListPatchBaselinesResponseBodyPatchBaselines[];
|
|
2105
2310
|
requestId?: string;
|
|
2106
|
-
description?: string;
|
|
2107
|
-
maxResults?: number;
|
|
2108
|
-
createdBy?: string;
|
|
2109
|
-
createdDate?: string;
|
|
2110
|
-
name?: string;
|
|
2111
|
-
totalCount?: number;
|
|
2112
|
-
id?: string;
|
|
2113
|
-
parameterVersions?: ListParameterVersionsResponseBodyParameterVersions[];
|
|
2114
2311
|
static names(): {
|
|
2115
2312
|
[key: string]: string;
|
|
2116
2313
|
};
|
|
@@ -2121,11 +2318,12 @@ export declare class ListParameterVersionsResponseBody extends $tea.Model {
|
|
|
2121
2318
|
[key: string]: any;
|
|
2122
2319
|
});
|
|
2123
2320
|
}
|
|
2124
|
-
export declare class
|
|
2321
|
+
export declare class ListPatchBaselinesResponse extends $tea.Model {
|
|
2125
2322
|
headers: {
|
|
2126
2323
|
[key: string]: string;
|
|
2127
2324
|
};
|
|
2128
|
-
|
|
2325
|
+
statusCode: number;
|
|
2326
|
+
body: ListPatchBaselinesResponseBody;
|
|
2129
2327
|
static names(): {
|
|
2130
2328
|
[key: string]: string;
|
|
2131
2329
|
};
|
|
@@ -2136,13 +2334,11 @@ export declare class ListParameterVersionsResponse extends $tea.Model {
|
|
|
2136
2334
|
[key: string]: any;
|
|
2137
2335
|
});
|
|
2138
2336
|
}
|
|
2139
|
-
export declare class
|
|
2140
|
-
|
|
2141
|
-
name?: string;
|
|
2142
|
-
operationSystem?: string;
|
|
2143
|
-
shareType?: string;
|
|
2337
|
+
export declare class ListResourceExecutionStatusRequest extends $tea.Model {
|
|
2338
|
+
executionId?: string;
|
|
2144
2339
|
maxResults?: number;
|
|
2145
2340
|
nextToken?: string;
|
|
2341
|
+
regionId?: string;
|
|
2146
2342
|
static names(): {
|
|
2147
2343
|
[key: string]: string;
|
|
2148
2344
|
};
|
|
@@ -2153,11 +2349,11 @@ export declare class ListPatchBaselinesRequest extends $tea.Model {
|
|
|
2153
2349
|
[key: string]: any;
|
|
2154
2350
|
});
|
|
2155
2351
|
}
|
|
2156
|
-
export declare class
|
|
2352
|
+
export declare class ListResourceExecutionStatusResponseBody extends $tea.Model {
|
|
2353
|
+
maxResults?: number;
|
|
2157
2354
|
nextToken?: string;
|
|
2158
2355
|
requestId?: string;
|
|
2159
|
-
|
|
2160
|
-
patchBaselines?: ListPatchBaselinesResponseBodyPatchBaselines[];
|
|
2356
|
+
resourceExecutionStatus?: ListResourceExecutionStatusResponseBodyResourceExecutionStatus[];
|
|
2161
2357
|
static names(): {
|
|
2162
2358
|
[key: string]: string;
|
|
2163
2359
|
};
|
|
@@ -2168,11 +2364,12 @@ export declare class ListPatchBaselinesResponseBody extends $tea.Model {
|
|
|
2168
2364
|
[key: string]: any;
|
|
2169
2365
|
});
|
|
2170
2366
|
}
|
|
2171
|
-
export declare class
|
|
2367
|
+
export declare class ListResourceExecutionStatusResponse extends $tea.Model {
|
|
2172
2368
|
headers: {
|
|
2173
2369
|
[key: string]: string;
|
|
2174
2370
|
};
|
|
2175
|
-
|
|
2371
|
+
statusCode: number;
|
|
2372
|
+
body: ListResourceExecutionStatusResponseBody;
|
|
2176
2373
|
static names(): {
|
|
2177
2374
|
[key: string]: string;
|
|
2178
2375
|
};
|
|
@@ -2183,11 +2380,13 @@ export declare class ListPatchBaselinesResponse extends $tea.Model {
|
|
|
2183
2380
|
[key: string]: any;
|
|
2184
2381
|
});
|
|
2185
2382
|
}
|
|
2186
|
-
export declare class
|
|
2187
|
-
regionId?: string;
|
|
2188
|
-
executionId?: string;
|
|
2383
|
+
export declare class ListSecretParameterVersionsRequest extends $tea.Model {
|
|
2189
2384
|
maxResults?: number;
|
|
2385
|
+
name?: string;
|
|
2190
2386
|
nextToken?: string;
|
|
2387
|
+
regionId?: string;
|
|
2388
|
+
shareType?: string;
|
|
2389
|
+
withDecryption?: boolean;
|
|
2191
2390
|
static names(): {
|
|
2192
2391
|
[key: string]: string;
|
|
2193
2392
|
};
|
|
@@ -2198,11 +2397,18 @@ export declare class ListResourceExecutionStatusRequest extends $tea.Model {
|
|
|
2198
2397
|
[key: string]: any;
|
|
2199
2398
|
});
|
|
2200
2399
|
}
|
|
2201
|
-
export declare class
|
|
2400
|
+
export declare class ListSecretParameterVersionsResponseBody extends $tea.Model {
|
|
2401
|
+
createdBy?: string;
|
|
2402
|
+
createdDate?: string;
|
|
2403
|
+
description?: string;
|
|
2404
|
+
id?: string;
|
|
2405
|
+
maxResults?: number;
|
|
2406
|
+
name?: string;
|
|
2202
2407
|
nextToken?: string;
|
|
2408
|
+
parameterVersions?: ListSecretParameterVersionsResponseBodyParameterVersions[];
|
|
2203
2409
|
requestId?: string;
|
|
2204
|
-
|
|
2205
|
-
|
|
2410
|
+
totalCount?: number;
|
|
2411
|
+
type?: string;
|
|
2206
2412
|
static names(): {
|
|
2207
2413
|
[key: string]: string;
|
|
2208
2414
|
};
|
|
@@ -2213,11 +2419,12 @@ export declare class ListResourceExecutionStatusResponseBody extends $tea.Model
|
|
|
2213
2419
|
[key: string]: any;
|
|
2214
2420
|
});
|
|
2215
2421
|
}
|
|
2216
|
-
export declare class
|
|
2422
|
+
export declare class ListSecretParameterVersionsResponse extends $tea.Model {
|
|
2217
2423
|
headers: {
|
|
2218
2424
|
[key: string]: string;
|
|
2219
2425
|
};
|
|
2220
|
-
|
|
2426
|
+
statusCode: number;
|
|
2427
|
+
body: ListSecretParameterVersionsResponseBody;
|
|
2221
2428
|
static names(): {
|
|
2222
2429
|
[key: string]: string;
|
|
2223
2430
|
};
|
|
@@ -2229,18 +2436,18 @@ export declare class ListResourceExecutionStatusResponse extends $tea.Model {
|
|
|
2229
2436
|
});
|
|
2230
2437
|
}
|
|
2231
2438
|
export declare class ListSecretParametersRequest extends $tea.Model {
|
|
2232
|
-
regionId?: string;
|
|
2233
|
-
name?: string;
|
|
2234
2439
|
maxResults?: number;
|
|
2440
|
+
name?: string;
|
|
2235
2441
|
nextToken?: string;
|
|
2236
|
-
sortField?: string;
|
|
2237
|
-
sortOrder?: string;
|
|
2238
2442
|
path?: string;
|
|
2239
2443
|
recursive?: boolean;
|
|
2444
|
+
regionId?: string;
|
|
2445
|
+
resourceGroupId?: string;
|
|
2446
|
+
sortField?: string;
|
|
2447
|
+
sortOrder?: string;
|
|
2240
2448
|
tags?: {
|
|
2241
2449
|
[key: string]: any;
|
|
2242
2450
|
};
|
|
2243
|
-
resourceGroupId?: string;
|
|
2244
2451
|
static names(): {
|
|
2245
2452
|
[key: string]: string;
|
|
2246
2453
|
};
|
|
@@ -2252,16 +2459,16 @@ export declare class ListSecretParametersRequest extends $tea.Model {
|
|
|
2252
2459
|
});
|
|
2253
2460
|
}
|
|
2254
2461
|
export declare class ListSecretParametersShrinkRequest extends $tea.Model {
|
|
2255
|
-
regionId?: string;
|
|
2256
|
-
name?: string;
|
|
2257
2462
|
maxResults?: number;
|
|
2463
|
+
name?: string;
|
|
2258
2464
|
nextToken?: string;
|
|
2259
|
-
sortField?: string;
|
|
2260
|
-
sortOrder?: string;
|
|
2261
2465
|
path?: string;
|
|
2262
2466
|
recursive?: boolean;
|
|
2263
|
-
|
|
2467
|
+
regionId?: string;
|
|
2264
2468
|
resourceGroupId?: string;
|
|
2469
|
+
sortField?: string;
|
|
2470
|
+
sortOrder?: string;
|
|
2471
|
+
tagsShrink?: string;
|
|
2265
2472
|
static names(): {
|
|
2266
2473
|
[key: string]: string;
|
|
2267
2474
|
};
|
|
@@ -2273,10 +2480,10 @@ export declare class ListSecretParametersShrinkRequest extends $tea.Model {
|
|
|
2273
2480
|
});
|
|
2274
2481
|
}
|
|
2275
2482
|
export declare class ListSecretParametersResponseBody extends $tea.Model {
|
|
2276
|
-
nextToken?: string;
|
|
2277
|
-
requestId?: string;
|
|
2278
2483
|
maxResults?: number;
|
|
2484
|
+
nextToken?: string;
|
|
2279
2485
|
parameters?: ListSecretParametersResponseBodyParameters[];
|
|
2486
|
+
requestId?: string;
|
|
2280
2487
|
static names(): {
|
|
2281
2488
|
[key: string]: string;
|
|
2282
2489
|
};
|
|
@@ -2291,6 +2498,7 @@ export declare class ListSecretParametersResponse extends $tea.Model {
|
|
|
2291
2498
|
headers: {
|
|
2292
2499
|
[key: string]: string;
|
|
2293
2500
|
};
|
|
2501
|
+
statusCode: number;
|
|
2294
2502
|
body: ListSecretParametersResponseBody;
|
|
2295
2503
|
static names(): {
|
|
2296
2504
|
[key: string]: string;
|
|
@@ -2302,71 +2510,17 @@ export declare class ListSecretParametersResponse extends $tea.Model {
|
|
|
2302
2510
|
[key: string]: any;
|
|
2303
2511
|
});
|
|
2304
2512
|
}
|
|
2305
|
-
export declare class
|
|
2306
|
-
regionId?: string;
|
|
2307
|
-
name?: string;
|
|
2513
|
+
export declare class ListStateConfigurationsRequest extends $tea.Model {
|
|
2308
2514
|
maxResults?: number;
|
|
2309
2515
|
nextToken?: string;
|
|
2310
|
-
shareType?: string;
|
|
2311
|
-
withDecryption?: boolean;
|
|
2312
|
-
static names(): {
|
|
2313
|
-
[key: string]: string;
|
|
2314
|
-
};
|
|
2315
|
-
static types(): {
|
|
2316
|
-
[key: string]: any;
|
|
2317
|
-
};
|
|
2318
|
-
constructor(map?: {
|
|
2319
|
-
[key: string]: any;
|
|
2320
|
-
});
|
|
2321
|
-
}
|
|
2322
|
-
export declare class ListSecretParameterVersionsResponseBody extends $tea.Model {
|
|
2323
|
-
type?: string;
|
|
2324
|
-
nextToken?: string;
|
|
2325
|
-
requestId?: string;
|
|
2326
|
-
description?: string;
|
|
2327
|
-
maxResults?: number;
|
|
2328
|
-
createdBy?: string;
|
|
2329
|
-
createdDate?: string;
|
|
2330
|
-
name?: string;
|
|
2331
|
-
totalCount?: number;
|
|
2332
|
-
id?: string;
|
|
2333
|
-
parameterVersions?: ListSecretParameterVersionsResponseBodyParameterVersions[];
|
|
2334
|
-
static names(): {
|
|
2335
|
-
[key: string]: string;
|
|
2336
|
-
};
|
|
2337
|
-
static types(): {
|
|
2338
|
-
[key: string]: any;
|
|
2339
|
-
};
|
|
2340
|
-
constructor(map?: {
|
|
2341
|
-
[key: string]: any;
|
|
2342
|
-
});
|
|
2343
|
-
}
|
|
2344
|
-
export declare class ListSecretParameterVersionsResponse extends $tea.Model {
|
|
2345
|
-
headers: {
|
|
2346
|
-
[key: string]: string;
|
|
2347
|
-
};
|
|
2348
|
-
body: ListSecretParameterVersionsResponseBody;
|
|
2349
|
-
static names(): {
|
|
2350
|
-
[key: string]: string;
|
|
2351
|
-
};
|
|
2352
|
-
static types(): {
|
|
2353
|
-
[key: string]: any;
|
|
2354
|
-
};
|
|
2355
|
-
constructor(map?: {
|
|
2356
|
-
[key: string]: any;
|
|
2357
|
-
});
|
|
2358
|
-
}
|
|
2359
|
-
export declare class ListStateConfigurationsRequest extends $tea.Model {
|
|
2360
2516
|
regionId?: string;
|
|
2361
|
-
|
|
2362
|
-
templateVersion?: string;
|
|
2517
|
+
resourceGroupId?: string;
|
|
2363
2518
|
stateConfigurationIds?: string;
|
|
2364
2519
|
tags?: {
|
|
2365
2520
|
[key: string]: any;
|
|
2366
2521
|
};
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
resourceGroupId?: string;
|
|
2522
|
+
templateName?: string;
|
|
2523
|
+
templateVersion?: string;
|
|
2370
2524
|
static names(): {
|
|
2371
2525
|
[key: string]: string;
|
|
2372
2526
|
};
|
|
@@ -2378,14 +2532,14 @@ export declare class ListStateConfigurationsRequest extends $tea.Model {
|
|
|
2378
2532
|
});
|
|
2379
2533
|
}
|
|
2380
2534
|
export declare class ListStateConfigurationsShrinkRequest extends $tea.Model {
|
|
2381
|
-
regionId?: string;
|
|
2382
|
-
templateName?: string;
|
|
2383
|
-
templateVersion?: string;
|
|
2384
|
-
stateConfigurationIds?: string;
|
|
2385
|
-
tagsShrink?: string;
|
|
2386
2535
|
maxResults?: number;
|
|
2387
2536
|
nextToken?: string;
|
|
2537
|
+
regionId?: string;
|
|
2388
2538
|
resourceGroupId?: string;
|
|
2539
|
+
stateConfigurationIds?: string;
|
|
2540
|
+
tagsShrink?: string;
|
|
2541
|
+
templateName?: string;
|
|
2542
|
+
templateVersion?: string;
|
|
2389
2543
|
static names(): {
|
|
2390
2544
|
[key: string]: string;
|
|
2391
2545
|
};
|
|
@@ -2413,6 +2567,7 @@ export declare class ListStateConfigurationsResponse extends $tea.Model {
|
|
|
2413
2567
|
headers: {
|
|
2414
2568
|
[key: string]: string;
|
|
2415
2569
|
};
|
|
2570
|
+
statusCode: number;
|
|
2416
2571
|
body: ListStateConfigurationsResponseBody;
|
|
2417
2572
|
static names(): {
|
|
2418
2573
|
[key: string]: string;
|
|
@@ -2425,9 +2580,9 @@ export declare class ListStateConfigurationsResponse extends $tea.Model {
|
|
|
2425
2580
|
});
|
|
2426
2581
|
}
|
|
2427
2582
|
export declare class ListTagKeysRequest extends $tea.Model {
|
|
2428
|
-
regionId?: string;
|
|
2429
2583
|
maxResults?: number;
|
|
2430
2584
|
nextToken?: string;
|
|
2585
|
+
regionId?: string;
|
|
2431
2586
|
resourceType?: string;
|
|
2432
2587
|
static names(): {
|
|
2433
2588
|
[key: string]: string;
|
|
@@ -2440,10 +2595,10 @@ export declare class ListTagKeysRequest extends $tea.Model {
|
|
|
2440
2595
|
});
|
|
2441
2596
|
}
|
|
2442
2597
|
export declare class ListTagKeysResponseBody extends $tea.Model {
|
|
2598
|
+
keys?: string[];
|
|
2599
|
+
maxResults?: number;
|
|
2443
2600
|
nextToken?: string;
|
|
2444
2601
|
requestId?: string;
|
|
2445
|
-
maxResults?: number;
|
|
2446
|
-
keys?: string[];
|
|
2447
2602
|
static names(): {
|
|
2448
2603
|
[key: string]: string;
|
|
2449
2604
|
};
|
|
@@ -2458,6 +2613,7 @@ export declare class ListTagKeysResponse extends $tea.Model {
|
|
|
2458
2613
|
headers: {
|
|
2459
2614
|
[key: string]: string;
|
|
2460
2615
|
};
|
|
2616
|
+
statusCode: number;
|
|
2461
2617
|
body: ListTagKeysResponseBody;
|
|
2462
2618
|
static names(): {
|
|
2463
2619
|
[key: string]: string;
|
|
@@ -2470,6 +2626,7 @@ export declare class ListTagKeysResponse extends $tea.Model {
|
|
|
2470
2626
|
});
|
|
2471
2627
|
}
|
|
2472
2628
|
export declare class ListTagResourcesRequest extends $tea.Model {
|
|
2629
|
+
nextToken?: string;
|
|
2473
2630
|
regionId?: string;
|
|
2474
2631
|
resourceIds?: {
|
|
2475
2632
|
[key: string]: any;
|
|
@@ -2478,7 +2635,6 @@ export declare class ListTagResourcesRequest extends $tea.Model {
|
|
|
2478
2635
|
tags?: {
|
|
2479
2636
|
[key: string]: any;
|
|
2480
2637
|
};
|
|
2481
|
-
nextToken?: string;
|
|
2482
2638
|
static names(): {
|
|
2483
2639
|
[key: string]: string;
|
|
2484
2640
|
};
|
|
@@ -2490,11 +2646,11 @@ export declare class ListTagResourcesRequest extends $tea.Model {
|
|
|
2490
2646
|
});
|
|
2491
2647
|
}
|
|
2492
2648
|
export declare class ListTagResourcesShrinkRequest extends $tea.Model {
|
|
2649
|
+
nextToken?: string;
|
|
2493
2650
|
regionId?: string;
|
|
2494
2651
|
resourceIdsShrink?: string;
|
|
2495
2652
|
resourceType?: string;
|
|
2496
2653
|
tagsShrink?: string;
|
|
2497
|
-
nextToken?: string;
|
|
2498
2654
|
static names(): {
|
|
2499
2655
|
[key: string]: string;
|
|
2500
2656
|
};
|
|
@@ -2523,6 +2679,7 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
2523
2679
|
headers: {
|
|
2524
2680
|
[key: string]: string;
|
|
2525
2681
|
};
|
|
2682
|
+
statusCode: number;
|
|
2526
2683
|
body: ListTagResourcesResponseBody;
|
|
2527
2684
|
static names(): {
|
|
2528
2685
|
[key: string]: string;
|
|
@@ -2535,11 +2692,11 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
2535
2692
|
});
|
|
2536
2693
|
}
|
|
2537
2694
|
export declare class ListTagValuesRequest extends $tea.Model {
|
|
2538
|
-
|
|
2695
|
+
key?: string;
|
|
2539
2696
|
maxResults?: number;
|
|
2540
2697
|
nextToken?: string;
|
|
2698
|
+
regionId?: string;
|
|
2541
2699
|
resourceType?: string;
|
|
2542
|
-
key?: string;
|
|
2543
2700
|
static names(): {
|
|
2544
2701
|
[key: string]: string;
|
|
2545
2702
|
};
|
|
@@ -2551,9 +2708,9 @@ export declare class ListTagValuesRequest extends $tea.Model {
|
|
|
2551
2708
|
});
|
|
2552
2709
|
}
|
|
2553
2710
|
export declare class ListTagValuesResponseBody extends $tea.Model {
|
|
2711
|
+
maxResults?: number;
|
|
2554
2712
|
nextToken?: string;
|
|
2555
2713
|
requestId?: string;
|
|
2556
|
-
maxResults?: number;
|
|
2557
2714
|
values?: string[];
|
|
2558
2715
|
static names(): {
|
|
2559
2716
|
[key: string]: string;
|
|
@@ -2569,6 +2726,7 @@ export declare class ListTagValuesResponse extends $tea.Model {
|
|
|
2569
2726
|
headers: {
|
|
2570
2727
|
[key: string]: string;
|
|
2571
2728
|
};
|
|
2729
|
+
statusCode: number;
|
|
2572
2730
|
body: ListTagValuesResponseBody;
|
|
2573
2731
|
static names(): {
|
|
2574
2732
|
[key: string]: string;
|
|
@@ -2581,22 +2739,22 @@ export declare class ListTagValuesResponse extends $tea.Model {
|
|
|
2581
2739
|
});
|
|
2582
2740
|
}
|
|
2583
2741
|
export declare class ListTaskExecutionsRequest extends $tea.Model {
|
|
2584
|
-
regionId?: string;
|
|
2585
|
-
executionId?: string;
|
|
2586
|
-
status?: string;
|
|
2587
|
-
startDateBefore?: string;
|
|
2588
|
-
startDateAfter?: string;
|
|
2589
|
-
endDateBefore?: string;
|
|
2590
2742
|
endDateAfter?: string;
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
taskAction?: string;
|
|
2594
|
-
parentTaskExecutionId?: string;
|
|
2743
|
+
endDateBefore?: string;
|
|
2744
|
+
executionId?: string;
|
|
2595
2745
|
includeChildTaskExecution?: boolean;
|
|
2596
2746
|
maxResults?: number;
|
|
2597
2747
|
nextToken?: string;
|
|
2748
|
+
parentTaskExecutionId?: string;
|
|
2749
|
+
regionId?: string;
|
|
2598
2750
|
sortField?: string;
|
|
2599
2751
|
sortOrder?: string;
|
|
2752
|
+
startDateAfter?: string;
|
|
2753
|
+
startDateBefore?: string;
|
|
2754
|
+
status?: string;
|
|
2755
|
+
taskAction?: string;
|
|
2756
|
+
taskExecutionId?: string;
|
|
2757
|
+
taskName?: string;
|
|
2600
2758
|
static names(): {
|
|
2601
2759
|
[key: string]: string;
|
|
2602
2760
|
};
|
|
@@ -2608,9 +2766,9 @@ export declare class ListTaskExecutionsRequest extends $tea.Model {
|
|
|
2608
2766
|
});
|
|
2609
2767
|
}
|
|
2610
2768
|
export declare class ListTaskExecutionsResponseBody extends $tea.Model {
|
|
2769
|
+
maxResults?: number;
|
|
2611
2770
|
nextToken?: string;
|
|
2612
2771
|
requestId?: string;
|
|
2613
|
-
maxResults?: number;
|
|
2614
2772
|
taskExecutions?: ListTaskExecutionsResponseBodyTaskExecutions[];
|
|
2615
2773
|
static names(): {
|
|
2616
2774
|
[key: string]: string;
|
|
@@ -2626,6 +2784,7 @@ export declare class ListTaskExecutionsResponse extends $tea.Model {
|
|
|
2626
2784
|
headers: {
|
|
2627
2785
|
[key: string]: string;
|
|
2628
2786
|
};
|
|
2787
|
+
statusCode: number;
|
|
2629
2788
|
body: ListTaskExecutionsResponseBody;
|
|
2630
2789
|
static names(): {
|
|
2631
2790
|
[key: string]: string;
|
|
@@ -2637,25 +2796,27 @@ export declare class ListTaskExecutionsResponse extends $tea.Model {
|
|
|
2637
2796
|
[key: string]: any;
|
|
2638
2797
|
});
|
|
2639
2798
|
}
|
|
2640
|
-
export declare class
|
|
2799
|
+
export declare class ListTemplateVersionsRequest extends $tea.Model {
|
|
2800
|
+
maxResults?: number;
|
|
2801
|
+
nextToken?: string;
|
|
2641
2802
|
regionId?: string;
|
|
2642
|
-
templateName?: string;
|
|
2643
|
-
templateFormat?: string;
|
|
2644
2803
|
shareType?: string;
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2804
|
+
templateName?: string;
|
|
2805
|
+
static names(): {
|
|
2806
|
+
[key: string]: string;
|
|
2807
|
+
};
|
|
2808
|
+
static types(): {
|
|
2649
2809
|
[key: string]: any;
|
|
2650
2810
|
};
|
|
2651
|
-
|
|
2811
|
+
constructor(map?: {
|
|
2812
|
+
[key: string]: any;
|
|
2813
|
+
});
|
|
2814
|
+
}
|
|
2815
|
+
export declare class ListTemplateVersionsResponseBody extends $tea.Model {
|
|
2652
2816
|
maxResults?: number;
|
|
2653
2817
|
nextToken?: string;
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
hasTrigger?: boolean;
|
|
2657
|
-
templateType?: string;
|
|
2658
|
-
resourceGroupId?: string;
|
|
2818
|
+
requestId?: string;
|
|
2819
|
+
templateVersions?: ListTemplateVersionsResponseBodyTemplateVersions[];
|
|
2659
2820
|
static names(): {
|
|
2660
2821
|
[key: string]: string;
|
|
2661
2822
|
};
|
|
@@ -2666,38 +2827,12 @@ export declare class ListTemplatesRequest extends $tea.Model {
|
|
|
2666
2827
|
[key: string]: any;
|
|
2667
2828
|
});
|
|
2668
2829
|
}
|
|
2669
|
-
export declare class
|
|
2670
|
-
|
|
2671
|
-
templateName?: string;
|
|
2672
|
-
templateFormat?: string;
|
|
2673
|
-
shareType?: string;
|
|
2674
|
-
createdBy?: string;
|
|
2675
|
-
createdDateBefore?: string;
|
|
2676
|
-
createdDateAfter?: string;
|
|
2677
|
-
tagsShrink?: string;
|
|
2678
|
-
category?: string;
|
|
2679
|
-
maxResults?: number;
|
|
2680
|
-
nextToken?: string;
|
|
2681
|
-
sortField?: string;
|
|
2682
|
-
sortOrder?: string;
|
|
2683
|
-
hasTrigger?: boolean;
|
|
2684
|
-
templateType?: string;
|
|
2685
|
-
resourceGroupId?: string;
|
|
2686
|
-
static names(): {
|
|
2830
|
+
export declare class ListTemplateVersionsResponse extends $tea.Model {
|
|
2831
|
+
headers: {
|
|
2687
2832
|
[key: string]: string;
|
|
2688
2833
|
};
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
};
|
|
2692
|
-
constructor(map?: {
|
|
2693
|
-
[key: string]: any;
|
|
2694
|
-
});
|
|
2695
|
-
}
|
|
2696
|
-
export declare class ListTemplatesResponseBody extends $tea.Model {
|
|
2697
|
-
nextToken?: string;
|
|
2698
|
-
requestId?: string;
|
|
2699
|
-
maxResults?: number;
|
|
2700
|
-
templates?: ListTemplatesResponseBodyTemplates[];
|
|
2834
|
+
statusCode: number;
|
|
2835
|
+
body: ListTemplateVersionsResponseBody;
|
|
2701
2836
|
static names(): {
|
|
2702
2837
|
[key: string]: string;
|
|
2703
2838
|
};
|
|
@@ -2708,11 +2843,25 @@ export declare class ListTemplatesResponseBody extends $tea.Model {
|
|
|
2708
2843
|
[key: string]: any;
|
|
2709
2844
|
});
|
|
2710
2845
|
}
|
|
2711
|
-
export declare class
|
|
2712
|
-
|
|
2713
|
-
|
|
2846
|
+
export declare class ListTemplatesRequest extends $tea.Model {
|
|
2847
|
+
category?: string;
|
|
2848
|
+
createdBy?: string;
|
|
2849
|
+
createdDateAfter?: string;
|
|
2850
|
+
createdDateBefore?: string;
|
|
2851
|
+
hasTrigger?: boolean;
|
|
2852
|
+
maxResults?: number;
|
|
2853
|
+
nextToken?: string;
|
|
2854
|
+
regionId?: string;
|
|
2855
|
+
resourceGroupId?: string;
|
|
2856
|
+
shareType?: string;
|
|
2857
|
+
sortField?: string;
|
|
2858
|
+
sortOrder?: string;
|
|
2859
|
+
tags?: {
|
|
2860
|
+
[key: string]: any;
|
|
2714
2861
|
};
|
|
2715
|
-
|
|
2862
|
+
templateFormat?: string;
|
|
2863
|
+
templateName?: string;
|
|
2864
|
+
templateType?: string;
|
|
2716
2865
|
static names(): {
|
|
2717
2866
|
[key: string]: string;
|
|
2718
2867
|
};
|
|
@@ -2723,12 +2872,23 @@ export declare class ListTemplatesResponse extends $tea.Model {
|
|
|
2723
2872
|
[key: string]: any;
|
|
2724
2873
|
});
|
|
2725
2874
|
}
|
|
2726
|
-
export declare class
|
|
2727
|
-
|
|
2728
|
-
|
|
2875
|
+
export declare class ListTemplatesShrinkRequest extends $tea.Model {
|
|
2876
|
+
category?: string;
|
|
2877
|
+
createdBy?: string;
|
|
2878
|
+
createdDateAfter?: string;
|
|
2879
|
+
createdDateBefore?: string;
|
|
2880
|
+
hasTrigger?: boolean;
|
|
2729
2881
|
maxResults?: number;
|
|
2730
2882
|
nextToken?: string;
|
|
2883
|
+
regionId?: string;
|
|
2884
|
+
resourceGroupId?: string;
|
|
2731
2885
|
shareType?: string;
|
|
2886
|
+
sortField?: string;
|
|
2887
|
+
sortOrder?: string;
|
|
2888
|
+
tagsShrink?: string;
|
|
2889
|
+
templateFormat?: string;
|
|
2890
|
+
templateName?: string;
|
|
2891
|
+
templateType?: string;
|
|
2732
2892
|
static names(): {
|
|
2733
2893
|
[key: string]: string;
|
|
2734
2894
|
};
|
|
@@ -2739,11 +2899,11 @@ export declare class ListTemplateVersionsRequest extends $tea.Model {
|
|
|
2739
2899
|
[key: string]: any;
|
|
2740
2900
|
});
|
|
2741
2901
|
}
|
|
2742
|
-
export declare class
|
|
2902
|
+
export declare class ListTemplatesResponseBody extends $tea.Model {
|
|
2903
|
+
maxResults?: number;
|
|
2743
2904
|
nextToken?: string;
|
|
2744
2905
|
requestId?: string;
|
|
2745
|
-
|
|
2746
|
-
templateVersions?: ListTemplateVersionsResponseBodyTemplateVersions[];
|
|
2906
|
+
templates?: ListTemplatesResponseBodyTemplates[];
|
|
2747
2907
|
static names(): {
|
|
2748
2908
|
[key: string]: string;
|
|
2749
2909
|
};
|
|
@@ -2754,11 +2914,12 @@ export declare class ListTemplateVersionsResponseBody extends $tea.Model {
|
|
|
2754
2914
|
[key: string]: any;
|
|
2755
2915
|
});
|
|
2756
2916
|
}
|
|
2757
|
-
export declare class
|
|
2917
|
+
export declare class ListTemplatesResponse extends $tea.Model {
|
|
2758
2918
|
headers: {
|
|
2759
2919
|
[key: string]: string;
|
|
2760
2920
|
};
|
|
2761
|
-
|
|
2921
|
+
statusCode: number;
|
|
2922
|
+
body: ListTemplatesResponseBody;
|
|
2762
2923
|
static names(): {
|
|
2763
2924
|
[key: string]: string;
|
|
2764
2925
|
};
|
|
@@ -2770,16 +2931,16 @@ export declare class ListTemplateVersionsResponse extends $tea.Model {
|
|
|
2770
2931
|
});
|
|
2771
2932
|
}
|
|
2772
2933
|
export declare class NotifyExecutionRequest extends $tea.Model {
|
|
2773
|
-
regionId?: string;
|
|
2774
2934
|
executionId?: string;
|
|
2775
|
-
notifyType?: string;
|
|
2776
|
-
notifyNote?: string;
|
|
2777
|
-
taskName?: string;
|
|
2778
|
-
taskExecutionId?: string;
|
|
2779
2935
|
executionStatus?: string;
|
|
2780
|
-
parameters?: string;
|
|
2781
2936
|
loopItem?: string;
|
|
2937
|
+
notifyNote?: string;
|
|
2938
|
+
notifyType?: string;
|
|
2939
|
+
parameters?: string;
|
|
2940
|
+
regionId?: string;
|
|
2941
|
+
taskExecutionId?: string;
|
|
2782
2942
|
taskExecutionIds?: string;
|
|
2943
|
+
taskName?: string;
|
|
2783
2944
|
static names(): {
|
|
2784
2945
|
[key: string]: string;
|
|
2785
2946
|
};
|
|
@@ -2806,6 +2967,7 @@ export declare class NotifyExecutionResponse extends $tea.Model {
|
|
|
2806
2967
|
headers: {
|
|
2807
2968
|
[key: string]: string;
|
|
2808
2969
|
};
|
|
2970
|
+
statusCode: number;
|
|
2809
2971
|
body: NotifyExecutionResponseBody;
|
|
2810
2972
|
static names(): {
|
|
2811
2973
|
[key: string]: string;
|
|
@@ -2818,8 +2980,8 @@ export declare class NotifyExecutionResponse extends $tea.Model {
|
|
|
2818
2980
|
});
|
|
2819
2981
|
}
|
|
2820
2982
|
export declare class RegisterDefaultPatchBaselineRequest extends $tea.Model {
|
|
2821
|
-
regionId?: string;
|
|
2822
2983
|
name?: string;
|
|
2984
|
+
regionId?: string;
|
|
2823
2985
|
static names(): {
|
|
2824
2986
|
[key: string]: string;
|
|
2825
2987
|
};
|
|
@@ -2831,8 +2993,8 @@ export declare class RegisterDefaultPatchBaselineRequest extends $tea.Model {
|
|
|
2831
2993
|
});
|
|
2832
2994
|
}
|
|
2833
2995
|
export declare class RegisterDefaultPatchBaselineResponseBody extends $tea.Model {
|
|
2834
|
-
requestId?: string;
|
|
2835
2996
|
patchBaseline?: RegisterDefaultPatchBaselineResponseBodyPatchBaseline;
|
|
2997
|
+
requestId?: string;
|
|
2836
2998
|
static names(): {
|
|
2837
2999
|
[key: string]: string;
|
|
2838
3000
|
};
|
|
@@ -2847,6 +3009,7 @@ export declare class RegisterDefaultPatchBaselineResponse extends $tea.Model {
|
|
|
2847
3009
|
headers: {
|
|
2848
3010
|
[key: string]: string;
|
|
2849
3011
|
};
|
|
3012
|
+
statusCode: number;
|
|
2850
3013
|
body: RegisterDefaultPatchBaselineResponseBody;
|
|
2851
3014
|
static names(): {
|
|
2852
3015
|
[key: string]: string;
|
|
@@ -2859,11 +3022,11 @@ export declare class RegisterDefaultPatchBaselineResponse extends $tea.Model {
|
|
|
2859
3022
|
});
|
|
2860
3023
|
}
|
|
2861
3024
|
export declare class SearchInventoryRequest extends $tea.Model {
|
|
2862
|
-
regionId?: string;
|
|
2863
|
-
nextToken?: string;
|
|
2864
|
-
maxResults?: number;
|
|
2865
|
-
filter?: SearchInventoryRequestFilter[];
|
|
2866
3025
|
aggregator?: string[];
|
|
3026
|
+
filter?: SearchInventoryRequestFilter[];
|
|
3027
|
+
maxResults?: number;
|
|
3028
|
+
nextToken?: string;
|
|
3029
|
+
regionId?: string;
|
|
2867
3030
|
static names(): {
|
|
2868
3031
|
[key: string]: string;
|
|
2869
3032
|
};
|
|
@@ -2875,12 +3038,12 @@ export declare class SearchInventoryRequest extends $tea.Model {
|
|
|
2875
3038
|
});
|
|
2876
3039
|
}
|
|
2877
3040
|
export declare class SearchInventoryResponseBody extends $tea.Model {
|
|
2878
|
-
nextToken?: string;
|
|
2879
|
-
requestId?: string;
|
|
2880
|
-
maxResults?: number;
|
|
2881
3041
|
entities?: {
|
|
2882
3042
|
[key: string]: any;
|
|
2883
3043
|
}[];
|
|
3044
|
+
maxResults?: number;
|
|
3045
|
+
nextToken?: string;
|
|
3046
|
+
requestId?: string;
|
|
2884
3047
|
static names(): {
|
|
2885
3048
|
[key: string]: string;
|
|
2886
3049
|
};
|
|
@@ -2895,6 +3058,7 @@ export declare class SearchInventoryResponse extends $tea.Model {
|
|
|
2895
3058
|
headers: {
|
|
2896
3059
|
[key: string]: string;
|
|
2897
3060
|
};
|
|
3061
|
+
statusCode: number;
|
|
2898
3062
|
body: SearchInventoryResponseBody;
|
|
2899
3063
|
static names(): {
|
|
2900
3064
|
[key: string]: string;
|
|
@@ -2907,13 +3071,13 @@ export declare class SearchInventoryResponse extends $tea.Model {
|
|
|
2907
3071
|
});
|
|
2908
3072
|
}
|
|
2909
3073
|
export declare class SetServiceSettingsRequest extends $tea.Model {
|
|
2910
|
-
deliveryOssEnabled?: boolean;
|
|
2911
3074
|
deliveryOssBucketName?: string;
|
|
3075
|
+
deliveryOssEnabled?: boolean;
|
|
2912
3076
|
deliveryOssKeyPrefix?: string;
|
|
2913
|
-
deliverySlsProjectName?: string;
|
|
2914
3077
|
deliverySlsEnabled?: boolean;
|
|
2915
|
-
|
|
3078
|
+
deliverySlsProjectName?: string;
|
|
2916
3079
|
rdcEnterpriseId?: string;
|
|
3080
|
+
regionId?: string;
|
|
2917
3081
|
static names(): {
|
|
2918
3082
|
[key: string]: string;
|
|
2919
3083
|
};
|
|
@@ -2941,6 +3105,7 @@ export declare class SetServiceSettingsResponse extends $tea.Model {
|
|
|
2941
3105
|
headers: {
|
|
2942
3106
|
[key: string]: string;
|
|
2943
3107
|
};
|
|
3108
|
+
statusCode: number;
|
|
2944
3109
|
body: SetServiceSettingsResponseBody;
|
|
2945
3110
|
static names(): {
|
|
2946
3111
|
[key: string]: string;
|
|
@@ -2953,21 +3118,21 @@ export declare class SetServiceSettingsResponse extends $tea.Model {
|
|
|
2953
3118
|
});
|
|
2954
3119
|
}
|
|
2955
3120
|
export declare class StartExecutionRequest extends $tea.Model {
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
templateVersion?: string;
|
|
2959
|
-
mode?: string;
|
|
3121
|
+
clientToken?: string;
|
|
3122
|
+
description?: string;
|
|
2960
3123
|
loopMode?: string;
|
|
3124
|
+
mode?: string;
|
|
3125
|
+
parameters?: string;
|
|
2961
3126
|
parentExecutionId?: string;
|
|
3127
|
+
regionId?: string;
|
|
3128
|
+
resourceGroupId?: string;
|
|
2962
3129
|
safetyCheck?: string;
|
|
2963
|
-
parameters?: string;
|
|
2964
|
-
clientToken?: string;
|
|
2965
3130
|
tags?: {
|
|
2966
3131
|
[key: string]: any;
|
|
2967
3132
|
};
|
|
2968
|
-
description?: string;
|
|
2969
3133
|
templateContent?: string;
|
|
2970
|
-
|
|
3134
|
+
templateName?: string;
|
|
3135
|
+
templateVersion?: string;
|
|
2971
3136
|
static names(): {
|
|
2972
3137
|
[key: string]: string;
|
|
2973
3138
|
};
|
|
@@ -2979,19 +3144,19 @@ export declare class StartExecutionRequest extends $tea.Model {
|
|
|
2979
3144
|
});
|
|
2980
3145
|
}
|
|
2981
3146
|
export declare class StartExecutionShrinkRequest extends $tea.Model {
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
templateVersion?: string;
|
|
2985
|
-
mode?: string;
|
|
3147
|
+
clientToken?: string;
|
|
3148
|
+
description?: string;
|
|
2986
3149
|
loopMode?: string;
|
|
3150
|
+
mode?: string;
|
|
3151
|
+
parameters?: string;
|
|
2987
3152
|
parentExecutionId?: string;
|
|
3153
|
+
regionId?: string;
|
|
3154
|
+
resourceGroupId?: string;
|
|
2988
3155
|
safetyCheck?: string;
|
|
2989
|
-
parameters?: string;
|
|
2990
|
-
clientToken?: string;
|
|
2991
3156
|
tagsShrink?: string;
|
|
2992
|
-
description?: string;
|
|
2993
3157
|
templateContent?: string;
|
|
2994
|
-
|
|
3158
|
+
templateName?: string;
|
|
3159
|
+
templateVersion?: string;
|
|
2995
3160
|
static names(): {
|
|
2996
3161
|
[key: string]: string;
|
|
2997
3162
|
};
|
|
@@ -3003,8 +3168,8 @@ export declare class StartExecutionShrinkRequest extends $tea.Model {
|
|
|
3003
3168
|
});
|
|
3004
3169
|
}
|
|
3005
3170
|
export declare class StartExecutionResponseBody extends $tea.Model {
|
|
3006
|
-
requestId?: string;
|
|
3007
3171
|
execution?: StartExecutionResponseBodyExecution;
|
|
3172
|
+
requestId?: string;
|
|
3008
3173
|
static names(): {
|
|
3009
3174
|
[key: string]: string;
|
|
3010
3175
|
};
|
|
@@ -3019,6 +3184,7 @@ export declare class StartExecutionResponse extends $tea.Model {
|
|
|
3019
3184
|
headers: {
|
|
3020
3185
|
[key: string]: string;
|
|
3021
3186
|
};
|
|
3187
|
+
statusCode: number;
|
|
3022
3188
|
body: StartExecutionResponseBody;
|
|
3023
3189
|
static names(): {
|
|
3024
3190
|
[key: string]: string;
|
|
@@ -3080,6 +3246,7 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
3080
3246
|
headers: {
|
|
3081
3247
|
[key: string]: string;
|
|
3082
3248
|
};
|
|
3249
|
+
statusCode: number;
|
|
3083
3250
|
body: TagResourcesResponseBody;
|
|
3084
3251
|
static names(): {
|
|
3085
3252
|
[key: string]: string;
|
|
@@ -3092,11 +3259,11 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
3092
3259
|
});
|
|
3093
3260
|
}
|
|
3094
3261
|
export declare class TriggerExecutionRequest extends $tea.Model {
|
|
3095
|
-
|
|
3262
|
+
clientToken?: string;
|
|
3263
|
+
content?: string;
|
|
3096
3264
|
executionId?: string;
|
|
3265
|
+
regionId?: string;
|
|
3097
3266
|
type?: string;
|
|
3098
|
-
content?: string;
|
|
3099
|
-
clientToken?: string;
|
|
3100
3267
|
static names(): {
|
|
3101
3268
|
[key: string]: string;
|
|
3102
3269
|
};
|
|
@@ -3123,6 +3290,7 @@ export declare class TriggerExecutionResponse extends $tea.Model {
|
|
|
3123
3290
|
headers: {
|
|
3124
3291
|
[key: string]: string;
|
|
3125
3292
|
};
|
|
3293
|
+
statusCode: number;
|
|
3126
3294
|
body: TriggerExecutionResponseBody;
|
|
3127
3295
|
static names(): {
|
|
3128
3296
|
[key: string]: string;
|
|
@@ -3135,6 +3303,7 @@ export declare class TriggerExecutionResponse extends $tea.Model {
|
|
|
3135
3303
|
});
|
|
3136
3304
|
}
|
|
3137
3305
|
export declare class UntagResourcesRequest extends $tea.Model {
|
|
3306
|
+
all?: boolean;
|
|
3138
3307
|
regionId?: string;
|
|
3139
3308
|
resourceIds?: {
|
|
3140
3309
|
[key: string]: any;
|
|
@@ -3143,7 +3312,6 @@ export declare class UntagResourcesRequest extends $tea.Model {
|
|
|
3143
3312
|
tagKeys?: {
|
|
3144
3313
|
[key: string]: any;
|
|
3145
3314
|
};
|
|
3146
|
-
all?: boolean;
|
|
3147
3315
|
static names(): {
|
|
3148
3316
|
[key: string]: string;
|
|
3149
3317
|
};
|
|
@@ -3155,11 +3323,11 @@ export declare class UntagResourcesRequest extends $tea.Model {
|
|
|
3155
3323
|
});
|
|
3156
3324
|
}
|
|
3157
3325
|
export declare class UntagResourcesShrinkRequest extends $tea.Model {
|
|
3326
|
+
all?: boolean;
|
|
3158
3327
|
regionId?: string;
|
|
3159
3328
|
resourceIdsShrink?: string;
|
|
3160
3329
|
resourceType?: string;
|
|
3161
3330
|
tagKeysShrink?: string;
|
|
3162
|
-
all?: boolean;
|
|
3163
3331
|
static names(): {
|
|
3164
3332
|
[key: string]: string;
|
|
3165
3333
|
};
|
|
@@ -3186,6 +3354,7 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
3186
3354
|
headers: {
|
|
3187
3355
|
[key: string]: string;
|
|
3188
3356
|
};
|
|
3357
|
+
statusCode: number;
|
|
3189
3358
|
body: UntagResourcesResponseBody;
|
|
3190
3359
|
static names(): {
|
|
3191
3360
|
[key: string]: string;
|
|
@@ -3197,10 +3366,28 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
3197
3366
|
[key: string]: any;
|
|
3198
3367
|
});
|
|
3199
3368
|
}
|
|
3200
|
-
export declare class
|
|
3369
|
+
export declare class UpdateApplicationRequest extends $tea.Model {
|
|
3370
|
+
description?: string;
|
|
3371
|
+
name?: string;
|
|
3201
3372
|
regionId?: string;
|
|
3373
|
+
tags?: {
|
|
3374
|
+
[key: string]: any;
|
|
3375
|
+
};
|
|
3376
|
+
static names(): {
|
|
3377
|
+
[key: string]: string;
|
|
3378
|
+
};
|
|
3379
|
+
static types(): {
|
|
3380
|
+
[key: string]: any;
|
|
3381
|
+
};
|
|
3382
|
+
constructor(map?: {
|
|
3383
|
+
[key: string]: any;
|
|
3384
|
+
});
|
|
3385
|
+
}
|
|
3386
|
+
export declare class UpdateApplicationShrinkRequest extends $tea.Model {
|
|
3387
|
+
description?: string;
|
|
3202
3388
|
name?: string;
|
|
3203
|
-
|
|
3389
|
+
regionId?: string;
|
|
3390
|
+
tagsShrink?: string;
|
|
3204
3391
|
static names(): {
|
|
3205
3392
|
[key: string]: string;
|
|
3206
3393
|
};
|
|
@@ -3211,9 +3398,9 @@ export declare class UpdateApplicationGroupRequest extends $tea.Model {
|
|
|
3211
3398
|
[key: string]: any;
|
|
3212
3399
|
});
|
|
3213
3400
|
}
|
|
3214
|
-
export declare class
|
|
3401
|
+
export declare class UpdateApplicationResponseBody extends $tea.Model {
|
|
3402
|
+
application?: UpdateApplicationResponseBodyApplication;
|
|
3215
3403
|
requestId?: string;
|
|
3216
|
-
applicationGroup?: UpdateApplicationGroupResponseBodyApplicationGroup;
|
|
3217
3404
|
static names(): {
|
|
3218
3405
|
[key: string]: string;
|
|
3219
3406
|
};
|
|
@@ -3224,11 +3411,12 @@ export declare class UpdateApplicationGroupResponseBody extends $tea.Model {
|
|
|
3224
3411
|
[key: string]: any;
|
|
3225
3412
|
});
|
|
3226
3413
|
}
|
|
3227
|
-
export declare class
|
|
3414
|
+
export declare class UpdateApplicationResponse extends $tea.Model {
|
|
3228
3415
|
headers: {
|
|
3229
3416
|
[key: string]: string;
|
|
3230
3417
|
};
|
|
3231
|
-
|
|
3418
|
+
statusCode: number;
|
|
3419
|
+
body: UpdateApplicationResponseBody;
|
|
3232
3420
|
static names(): {
|
|
3233
3421
|
[key: string]: string;
|
|
3234
3422
|
};
|
|
@@ -3239,11 +3427,11 @@ export declare class UpdateApplicationGroupResponse extends $tea.Model {
|
|
|
3239
3427
|
[key: string]: any;
|
|
3240
3428
|
});
|
|
3241
3429
|
}
|
|
3242
|
-
export declare class
|
|
3430
|
+
export declare class UpdateApplicationGroupRequest extends $tea.Model {
|
|
3431
|
+
applicationName?: string;
|
|
3432
|
+
name?: string;
|
|
3433
|
+
newName?: string;
|
|
3243
3434
|
regionId?: string;
|
|
3244
|
-
executionId?: string;
|
|
3245
|
-
parameters?: string;
|
|
3246
|
-
clientToken?: string;
|
|
3247
3435
|
static names(): {
|
|
3248
3436
|
[key: string]: string;
|
|
3249
3437
|
};
|
|
@@ -3254,7 +3442,8 @@ export declare class UpdateExecutionRequest extends $tea.Model {
|
|
|
3254
3442
|
[key: string]: any;
|
|
3255
3443
|
});
|
|
3256
3444
|
}
|
|
3257
|
-
export declare class
|
|
3445
|
+
export declare class UpdateApplicationGroupResponseBody extends $tea.Model {
|
|
3446
|
+
applicationGroup?: UpdateApplicationGroupResponseBodyApplicationGroup;
|
|
3258
3447
|
requestId?: string;
|
|
3259
3448
|
static names(): {
|
|
3260
3449
|
[key: string]: string;
|
|
@@ -3266,11 +3455,12 @@ export declare class UpdateExecutionResponseBody extends $tea.Model {
|
|
|
3266
3455
|
[key: string]: any;
|
|
3267
3456
|
});
|
|
3268
3457
|
}
|
|
3269
|
-
export declare class
|
|
3458
|
+
export declare class UpdateApplicationGroupResponse extends $tea.Model {
|
|
3270
3459
|
headers: {
|
|
3271
3460
|
[key: string]: string;
|
|
3272
3461
|
};
|
|
3273
|
-
|
|
3462
|
+
statusCode: number;
|
|
3463
|
+
body: UpdateApplicationGroupResponseBody;
|
|
3274
3464
|
static names(): {
|
|
3275
3465
|
[key: string]: string;
|
|
3276
3466
|
};
|
|
@@ -3281,16 +3471,11 @@ export declare class UpdateExecutionResponse extends $tea.Model {
|
|
|
3281
3471
|
[key: string]: any;
|
|
3282
3472
|
});
|
|
3283
3473
|
}
|
|
3284
|
-
export declare class
|
|
3474
|
+
export declare class UpdateExecutionRequest extends $tea.Model {
|
|
3475
|
+
clientToken?: string;
|
|
3476
|
+
executionId?: string;
|
|
3477
|
+
parameters?: string;
|
|
3285
3478
|
regionId?: string;
|
|
3286
|
-
instanceId?: string;
|
|
3287
|
-
agentVersion?: string;
|
|
3288
|
-
platformType?: string;
|
|
3289
|
-
platformName?: string;
|
|
3290
|
-
platformVersion?: string;
|
|
3291
|
-
ipAddress?: string;
|
|
3292
|
-
computerName?: string;
|
|
3293
|
-
agentName?: string;
|
|
3294
3479
|
static names(): {
|
|
3295
3480
|
[key: string]: string;
|
|
3296
3481
|
};
|
|
@@ -3301,7 +3486,7 @@ export declare class UpdateInstanceInformationRequest extends $tea.Model {
|
|
|
3301
3486
|
[key: string]: any;
|
|
3302
3487
|
});
|
|
3303
3488
|
}
|
|
3304
|
-
export declare class
|
|
3489
|
+
export declare class UpdateExecutionResponseBody extends $tea.Model {
|
|
3305
3490
|
requestId?: string;
|
|
3306
3491
|
static names(): {
|
|
3307
3492
|
[key: string]: string;
|
|
@@ -3313,11 +3498,12 @@ export declare class UpdateInstanceInformationResponseBody extends $tea.Model {
|
|
|
3313
3498
|
[key: string]: any;
|
|
3314
3499
|
});
|
|
3315
3500
|
}
|
|
3316
|
-
export declare class
|
|
3501
|
+
export declare class UpdateExecutionResponse extends $tea.Model {
|
|
3317
3502
|
headers: {
|
|
3318
3503
|
[key: string]: string;
|
|
3319
3504
|
};
|
|
3320
|
-
|
|
3505
|
+
statusCode: number;
|
|
3506
|
+
body: UpdateExecutionResponseBody;
|
|
3321
3507
|
static names(): {
|
|
3322
3508
|
[key: string]: string;
|
|
3323
3509
|
};
|
|
@@ -3329,12 +3515,12 @@ export declare class UpdateInstanceInformationResponse extends $tea.Model {
|
|
|
3329
3515
|
});
|
|
3330
3516
|
}
|
|
3331
3517
|
export declare class UpdateParameterRequest extends $tea.Model {
|
|
3332
|
-
regionId?: string;
|
|
3333
|
-
name?: string;
|
|
3334
|
-
value?: string;
|
|
3335
3518
|
description?: string;
|
|
3336
|
-
|
|
3519
|
+
name?: string;
|
|
3520
|
+
regionId?: string;
|
|
3337
3521
|
resourceGroupId?: string;
|
|
3522
|
+
tags?: string;
|
|
3523
|
+
value?: string;
|
|
3338
3524
|
static names(): {
|
|
3339
3525
|
[key: string]: string;
|
|
3340
3526
|
};
|
|
@@ -3346,8 +3532,8 @@ export declare class UpdateParameterRequest extends $tea.Model {
|
|
|
3346
3532
|
});
|
|
3347
3533
|
}
|
|
3348
3534
|
export declare class UpdateParameterResponseBody extends $tea.Model {
|
|
3349
|
-
requestId?: string;
|
|
3350
3535
|
parameter?: UpdateParameterResponseBodyParameter;
|
|
3536
|
+
requestId?: string;
|
|
3351
3537
|
static names(): {
|
|
3352
3538
|
[key: string]: string;
|
|
3353
3539
|
};
|
|
@@ -3362,6 +3548,7 @@ export declare class UpdateParameterResponse extends $tea.Model {
|
|
|
3362
3548
|
headers: {
|
|
3363
3549
|
[key: string]: string;
|
|
3364
3550
|
};
|
|
3551
|
+
statusCode: number;
|
|
3365
3552
|
body: UpdateParameterResponseBody;
|
|
3366
3553
|
static names(): {
|
|
3367
3554
|
[key: string]: string;
|
|
@@ -3374,11 +3561,11 @@ export declare class UpdateParameterResponse extends $tea.Model {
|
|
|
3374
3561
|
});
|
|
3375
3562
|
}
|
|
3376
3563
|
export declare class UpdatePatchBaselineRequest extends $tea.Model {
|
|
3377
|
-
regionId?: string;
|
|
3378
|
-
name?: string;
|
|
3379
|
-
description?: string;
|
|
3380
|
-
clientToken?: string;
|
|
3381
3564
|
approvalRules?: string;
|
|
3565
|
+
clientToken?: string;
|
|
3566
|
+
description?: string;
|
|
3567
|
+
name?: string;
|
|
3568
|
+
regionId?: string;
|
|
3382
3569
|
static names(): {
|
|
3383
3570
|
[key: string]: string;
|
|
3384
3571
|
};
|
|
@@ -3390,8 +3577,8 @@ export declare class UpdatePatchBaselineRequest extends $tea.Model {
|
|
|
3390
3577
|
});
|
|
3391
3578
|
}
|
|
3392
3579
|
export declare class UpdatePatchBaselineResponseBody extends $tea.Model {
|
|
3393
|
-
requestId?: string;
|
|
3394
3580
|
patchBaseline?: UpdatePatchBaselineResponseBodyPatchBaseline;
|
|
3581
|
+
requestId?: string;
|
|
3395
3582
|
static names(): {
|
|
3396
3583
|
[key: string]: string;
|
|
3397
3584
|
};
|
|
@@ -3406,6 +3593,7 @@ export declare class UpdatePatchBaselineResponse extends $tea.Model {
|
|
|
3406
3593
|
headers: {
|
|
3407
3594
|
[key: string]: string;
|
|
3408
3595
|
};
|
|
3596
|
+
statusCode: number;
|
|
3409
3597
|
body: UpdatePatchBaselineResponseBody;
|
|
3410
3598
|
static names(): {
|
|
3411
3599
|
[key: string]: string;
|
|
@@ -3418,14 +3606,14 @@ export declare class UpdatePatchBaselineResponse extends $tea.Model {
|
|
|
3418
3606
|
});
|
|
3419
3607
|
}
|
|
3420
3608
|
export declare class UpdateSecretParameterRequest extends $tea.Model {
|
|
3421
|
-
regionId?: string;
|
|
3422
|
-
name?: string;
|
|
3423
|
-
value?: string;
|
|
3424
3609
|
description?: string;
|
|
3610
|
+
name?: string;
|
|
3611
|
+
regionId?: string;
|
|
3612
|
+
resourceGroupId?: string;
|
|
3425
3613
|
tags?: {
|
|
3426
3614
|
[key: string]: any;
|
|
3427
3615
|
};
|
|
3428
|
-
|
|
3616
|
+
value?: string;
|
|
3429
3617
|
static names(): {
|
|
3430
3618
|
[key: string]: string;
|
|
3431
3619
|
};
|
|
@@ -3437,12 +3625,12 @@ export declare class UpdateSecretParameterRequest extends $tea.Model {
|
|
|
3437
3625
|
});
|
|
3438
3626
|
}
|
|
3439
3627
|
export declare class UpdateSecretParameterShrinkRequest extends $tea.Model {
|
|
3440
|
-
regionId?: string;
|
|
3441
|
-
name?: string;
|
|
3442
|
-
value?: string;
|
|
3443
3628
|
description?: string;
|
|
3444
|
-
|
|
3629
|
+
name?: string;
|
|
3630
|
+
regionId?: string;
|
|
3445
3631
|
resourceGroupId?: string;
|
|
3632
|
+
tagsShrink?: string;
|
|
3633
|
+
value?: string;
|
|
3446
3634
|
static names(): {
|
|
3447
3635
|
[key: string]: string;
|
|
3448
3636
|
};
|
|
@@ -3454,8 +3642,8 @@ export declare class UpdateSecretParameterShrinkRequest extends $tea.Model {
|
|
|
3454
3642
|
});
|
|
3455
3643
|
}
|
|
3456
3644
|
export declare class UpdateSecretParameterResponseBody extends $tea.Model {
|
|
3457
|
-
requestId?: string;
|
|
3458
3645
|
parameter?: UpdateSecretParameterResponseBodyParameter;
|
|
3646
|
+
requestId?: string;
|
|
3459
3647
|
static names(): {
|
|
3460
3648
|
[key: string]: string;
|
|
3461
3649
|
};
|
|
@@ -3470,6 +3658,7 @@ export declare class UpdateSecretParameterResponse extends $tea.Model {
|
|
|
3470
3658
|
headers: {
|
|
3471
3659
|
[key: string]: string;
|
|
3472
3660
|
};
|
|
3661
|
+
statusCode: number;
|
|
3473
3662
|
body: UpdateSecretParameterResponseBody;
|
|
3474
3663
|
static names(): {
|
|
3475
3664
|
[key: string]: string;
|
|
@@ -3482,21 +3671,21 @@ export declare class UpdateSecretParameterResponse extends $tea.Model {
|
|
|
3482
3671
|
});
|
|
3483
3672
|
}
|
|
3484
3673
|
export declare class UpdateStateConfigurationRequest extends $tea.Model {
|
|
3485
|
-
|
|
3674
|
+
clientToken?: string;
|
|
3675
|
+
configureMode?: string;
|
|
3486
3676
|
description?: string;
|
|
3487
3677
|
parameters?: {
|
|
3488
3678
|
[key: string]: any;
|
|
3489
3679
|
};
|
|
3490
|
-
|
|
3491
|
-
|
|
3680
|
+
regionId?: string;
|
|
3681
|
+
resourceGroupId?: string;
|
|
3492
3682
|
scheduleExpression?: string;
|
|
3493
|
-
|
|
3494
|
-
clientToken?: string;
|
|
3683
|
+
scheduleType?: string;
|
|
3495
3684
|
stateConfigurationId?: string;
|
|
3496
3685
|
tags?: {
|
|
3497
3686
|
[key: string]: any;
|
|
3498
3687
|
};
|
|
3499
|
-
|
|
3688
|
+
targets?: string;
|
|
3500
3689
|
static names(): {
|
|
3501
3690
|
[key: string]: string;
|
|
3502
3691
|
};
|
|
@@ -3508,17 +3697,17 @@ export declare class UpdateStateConfigurationRequest extends $tea.Model {
|
|
|
3508
3697
|
});
|
|
3509
3698
|
}
|
|
3510
3699
|
export declare class UpdateStateConfigurationShrinkRequest extends $tea.Model {
|
|
3511
|
-
|
|
3700
|
+
clientToken?: string;
|
|
3701
|
+
configureMode?: string;
|
|
3512
3702
|
description?: string;
|
|
3513
3703
|
parametersShrink?: string;
|
|
3514
|
-
|
|
3515
|
-
|
|
3704
|
+
regionId?: string;
|
|
3705
|
+
resourceGroupId?: string;
|
|
3516
3706
|
scheduleExpression?: string;
|
|
3517
|
-
|
|
3518
|
-
clientToken?: string;
|
|
3707
|
+
scheduleType?: string;
|
|
3519
3708
|
stateConfigurationId?: string;
|
|
3520
3709
|
tagsShrink?: string;
|
|
3521
|
-
|
|
3710
|
+
targets?: string;
|
|
3522
3711
|
static names(): {
|
|
3523
3712
|
[key: string]: string;
|
|
3524
3713
|
};
|
|
@@ -3546,6 +3735,7 @@ export declare class UpdateStateConfigurationResponse extends $tea.Model {
|
|
|
3546
3735
|
headers: {
|
|
3547
3736
|
[key: string]: string;
|
|
3548
3737
|
};
|
|
3738
|
+
statusCode: number;
|
|
3549
3739
|
body: UpdateStateConfigurationResponseBody;
|
|
3550
3740
|
static names(): {
|
|
3551
3741
|
[key: string]: string;
|
|
@@ -3558,14 +3748,14 @@ export declare class UpdateStateConfigurationResponse extends $tea.Model {
|
|
|
3558
3748
|
});
|
|
3559
3749
|
}
|
|
3560
3750
|
export declare class UpdateTemplateRequest extends $tea.Model {
|
|
3561
|
-
regionId?: string;
|
|
3562
|
-
templateName?: string;
|
|
3563
3751
|
content?: string;
|
|
3752
|
+
regionId?: string;
|
|
3753
|
+
resourceGroupId?: string;
|
|
3564
3754
|
tags?: {
|
|
3565
3755
|
[key: string]: any;
|
|
3566
3756
|
};
|
|
3757
|
+
templateName?: string;
|
|
3567
3758
|
versionName?: string;
|
|
3568
|
-
resourceGroupId?: string;
|
|
3569
3759
|
static names(): {
|
|
3570
3760
|
[key: string]: string;
|
|
3571
3761
|
};
|
|
@@ -3577,12 +3767,12 @@ export declare class UpdateTemplateRequest extends $tea.Model {
|
|
|
3577
3767
|
});
|
|
3578
3768
|
}
|
|
3579
3769
|
export declare class UpdateTemplateShrinkRequest extends $tea.Model {
|
|
3580
|
-
regionId?: string;
|
|
3581
|
-
templateName?: string;
|
|
3582
3770
|
content?: string;
|
|
3771
|
+
regionId?: string;
|
|
3772
|
+
resourceGroupId?: string;
|
|
3583
3773
|
tagsShrink?: string;
|
|
3774
|
+
templateName?: string;
|
|
3584
3775
|
versionName?: string;
|
|
3585
|
-
resourceGroupId?: string;
|
|
3586
3776
|
static names(): {
|
|
3587
3777
|
[key: string]: string;
|
|
3588
3778
|
};
|
|
@@ -3610,6 +3800,7 @@ export declare class UpdateTemplateResponse extends $tea.Model {
|
|
|
3610
3800
|
headers: {
|
|
3611
3801
|
[key: string]: string;
|
|
3612
3802
|
};
|
|
3803
|
+
statusCode: number;
|
|
3613
3804
|
body: UpdateTemplateResponseBody;
|
|
3614
3805
|
static names(): {
|
|
3615
3806
|
[key: string]: string;
|
|
@@ -3622,8 +3813,8 @@ export declare class UpdateTemplateResponse extends $tea.Model {
|
|
|
3622
3813
|
});
|
|
3623
3814
|
}
|
|
3624
3815
|
export declare class ValidateTemplateContentRequest extends $tea.Model {
|
|
3625
|
-
regionId?: string;
|
|
3626
3816
|
content?: string;
|
|
3817
|
+
regionId?: string;
|
|
3627
3818
|
static names(): {
|
|
3628
3819
|
[key: string]: string;
|
|
3629
3820
|
};
|
|
@@ -3636,9 +3827,9 @@ export declare class ValidateTemplateContentRequest extends $tea.Model {
|
|
|
3636
3827
|
}
|
|
3637
3828
|
export declare class ValidateTemplateContentResponseBody extends $tea.Model {
|
|
3638
3829
|
outputs?: string;
|
|
3639
|
-
requestId?: string;
|
|
3640
3830
|
parameters?: string;
|
|
3641
3831
|
ramRole?: string;
|
|
3832
|
+
requestId?: string;
|
|
3642
3833
|
tasks?: ValidateTemplateContentResponseBodyTasks[];
|
|
3643
3834
|
static names(): {
|
|
3644
3835
|
[key: string]: string;
|
|
@@ -3654,6 +3845,7 @@ export declare class ValidateTemplateContentResponse extends $tea.Model {
|
|
|
3654
3845
|
headers: {
|
|
3655
3846
|
[key: string]: string;
|
|
3656
3847
|
};
|
|
3848
|
+
statusCode: number;
|
|
3657
3849
|
body: ValidateTemplateContentResponseBody;
|
|
3658
3850
|
static names(): {
|
|
3659
3851
|
[key: string]: string;
|
|
@@ -3665,30 +3857,14 @@ export declare class ValidateTemplateContentResponse extends $tea.Model {
|
|
|
3665
3857
|
[key: string]: any;
|
|
3666
3858
|
});
|
|
3667
3859
|
}
|
|
3668
|
-
export declare class CreateApplicationResponseBodyApplicationCloudMonitorRule extends $tea.Model {
|
|
3669
|
-
enableSubscribeEvent?: boolean;
|
|
3670
|
-
enableInstallAgent?: boolean;
|
|
3671
|
-
enabled?: boolean;
|
|
3672
|
-
contactGroupList?: string[];
|
|
3673
|
-
templateIdList?: number[];
|
|
3674
|
-
static names(): {
|
|
3675
|
-
[key: string]: string;
|
|
3676
|
-
};
|
|
3677
|
-
static types(): {
|
|
3678
|
-
[key: string]: any;
|
|
3679
|
-
};
|
|
3680
|
-
constructor(map?: {
|
|
3681
|
-
[key: string]: any;
|
|
3682
|
-
});
|
|
3683
|
-
}
|
|
3684
3860
|
export declare class CreateApplicationResponseBodyApplication extends $tea.Model {
|
|
3685
|
-
|
|
3686
|
-
isSystem?: boolean;
|
|
3861
|
+
createDate?: string;
|
|
3687
3862
|
description?: string;
|
|
3688
|
-
updateDate?: string;
|
|
3689
3863
|
name?: string;
|
|
3690
|
-
|
|
3691
|
-
|
|
3864
|
+
tags?: {
|
|
3865
|
+
[key: string]: string;
|
|
3866
|
+
};
|
|
3867
|
+
updateDate?: string;
|
|
3692
3868
|
static names(): {
|
|
3693
3869
|
[key: string]: string;
|
|
3694
3870
|
};
|
|
@@ -3700,16 +3876,15 @@ export declare class CreateApplicationResponseBodyApplication extends $tea.Model
|
|
|
3700
3876
|
});
|
|
3701
3877
|
}
|
|
3702
3878
|
export declare class CreateApplicationGroupResponseBodyApplicationGroup extends $tea.Model {
|
|
3879
|
+
applicationName?: string;
|
|
3880
|
+
cmsGroupId?: string;
|
|
3881
|
+
createDate?: string;
|
|
3703
3882
|
deployRegionId?: string;
|
|
3704
3883
|
description?: string;
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
applicationName?: string;
|
|
3884
|
+
importTagKey?: string;
|
|
3885
|
+
importTagValue?: string;
|
|
3708
3886
|
name?: string;
|
|
3709
|
-
|
|
3710
|
-
createType?: string;
|
|
3711
|
-
scalingGroupId?: string;
|
|
3712
|
-
importClusterId?: string;
|
|
3887
|
+
updateDate?: string;
|
|
3713
3888
|
static names(): {
|
|
3714
3889
|
[key: string]: string;
|
|
3715
3890
|
};
|
|
@@ -3721,21 +3896,21 @@ export declare class CreateApplicationGroupResponseBodyApplicationGroup extends
|
|
|
3721
3896
|
});
|
|
3722
3897
|
}
|
|
3723
3898
|
export declare class CreateParameterResponseBodyParameter extends $tea.Model {
|
|
3724
|
-
type?: string;
|
|
3725
|
-
updatedDate?: string;
|
|
3726
|
-
updatedBy?: string;
|
|
3727
|
-
tags?: {
|
|
3728
|
-
[key: string]: any;
|
|
3729
|
-
};
|
|
3730
|
-
description?: string;
|
|
3731
3899
|
constraints?: string;
|
|
3732
|
-
resourceGroupId?: string;
|
|
3733
3900
|
createdBy?: string;
|
|
3734
3901
|
createdDate?: string;
|
|
3735
|
-
|
|
3736
|
-
name?: string;
|
|
3902
|
+
description?: string;
|
|
3737
3903
|
id?: string;
|
|
3904
|
+
name?: string;
|
|
3905
|
+
parameterVersion?: number;
|
|
3906
|
+
resourceGroupId?: string;
|
|
3738
3907
|
shareType?: string;
|
|
3908
|
+
tags?: {
|
|
3909
|
+
[key: string]: any;
|
|
3910
|
+
};
|
|
3911
|
+
type?: string;
|
|
3912
|
+
updatedBy?: string;
|
|
3913
|
+
updatedDate?: string;
|
|
3739
3914
|
static names(): {
|
|
3740
3915
|
[key: string]: string;
|
|
3741
3916
|
};
|
|
@@ -3747,16 +3922,16 @@ export declare class CreateParameterResponseBodyParameter extends $tea.Model {
|
|
|
3747
3922
|
});
|
|
3748
3923
|
}
|
|
3749
3924
|
export declare class CreatePatchBaselineResponseBodyPatchBaseline extends $tea.Model {
|
|
3750
|
-
|
|
3751
|
-
description?: string;
|
|
3752
|
-
updatedDate?: string;
|
|
3753
|
-
updatedBy?: string;
|
|
3925
|
+
approvalRules?: string;
|
|
3754
3926
|
createdBy?: string;
|
|
3755
3927
|
createdDate?: string;
|
|
3756
|
-
|
|
3757
|
-
approvalRules?: string;
|
|
3928
|
+
description?: string;
|
|
3758
3929
|
id?: string;
|
|
3930
|
+
name?: string;
|
|
3931
|
+
operationSystem?: string;
|
|
3759
3932
|
shareType?: string;
|
|
3933
|
+
updatedBy?: string;
|
|
3934
|
+
updatedDate?: string;
|
|
3760
3935
|
static names(): {
|
|
3761
3936
|
[key: string]: string;
|
|
3762
3937
|
};
|
|
@@ -3768,20 +3943,22 @@ export declare class CreatePatchBaselineResponseBodyPatchBaseline extends $tea.M
|
|
|
3768
3943
|
});
|
|
3769
3944
|
}
|
|
3770
3945
|
export declare class CreateSecretParameterResponseBodyParameter extends $tea.Model {
|
|
3771
|
-
type?: string;
|
|
3772
|
-
updatedDate?: string;
|
|
3773
|
-
updatedBy?: string;
|
|
3774
|
-
keyId?: string;
|
|
3775
|
-
tags?: string;
|
|
3776
|
-
description?: string;
|
|
3777
3946
|
constraints?: string;
|
|
3778
|
-
resourceGroupId?: string;
|
|
3779
3947
|
createdBy?: string;
|
|
3780
3948
|
createdDate?: string;
|
|
3781
|
-
|
|
3782
|
-
name?: string;
|
|
3949
|
+
description?: string;
|
|
3783
3950
|
id?: string;
|
|
3951
|
+
keyId?: string;
|
|
3952
|
+
name?: string;
|
|
3953
|
+
parameterVersion?: number;
|
|
3954
|
+
resourceGroupId?: string;
|
|
3784
3955
|
shareType?: string;
|
|
3956
|
+
tags?: {
|
|
3957
|
+
[key: string]: any;
|
|
3958
|
+
};
|
|
3959
|
+
type?: string;
|
|
3960
|
+
updatedBy?: string;
|
|
3961
|
+
updatedDate?: string;
|
|
3785
3962
|
static names(): {
|
|
3786
3963
|
[key: string]: string;
|
|
3787
3964
|
};
|
|
@@ -3793,23 +3970,23 @@ export declare class CreateSecretParameterResponseBodyParameter extends $tea.Mod
|
|
|
3793
3970
|
});
|
|
3794
3971
|
}
|
|
3795
3972
|
export declare class CreateStateConfigurationResponseBodyStateConfiguration extends $tea.Model {
|
|
3973
|
+
configureMode?: string;
|
|
3796
3974
|
createTime?: string;
|
|
3797
|
-
|
|
3798
|
-
|
|
3975
|
+
description?: string;
|
|
3976
|
+
parameters?: {
|
|
3799
3977
|
[key: string]: any;
|
|
3800
3978
|
};
|
|
3801
|
-
|
|
3979
|
+
resourceGroupId?: string;
|
|
3802
3980
|
scheduleExpression?: string;
|
|
3803
|
-
templateName?: string;
|
|
3804
|
-
templateVersion?: string;
|
|
3805
|
-
configureMode?: string;
|
|
3806
3981
|
scheduleType?: string;
|
|
3807
|
-
|
|
3982
|
+
stateConfigurationId?: string;
|
|
3983
|
+
tags?: {
|
|
3808
3984
|
[key: string]: any;
|
|
3809
3985
|
};
|
|
3810
|
-
|
|
3811
|
-
resourceGroupId?: string;
|
|
3986
|
+
targets?: string;
|
|
3812
3987
|
templateId?: string;
|
|
3988
|
+
templateName?: string;
|
|
3989
|
+
templateVersion?: string;
|
|
3813
3990
|
static names(): {
|
|
3814
3991
|
[key: string]: string;
|
|
3815
3992
|
};
|
|
@@ -3821,22 +3998,22 @@ export declare class CreateStateConfigurationResponseBodyStateConfiguration exte
|
|
|
3821
3998
|
});
|
|
3822
3999
|
}
|
|
3823
4000
|
export declare class CreateTemplateResponseBodyTemplate extends $tea.Model {
|
|
4001
|
+
createdBy?: string;
|
|
4002
|
+
createdDate?: string;
|
|
4003
|
+
description?: string;
|
|
4004
|
+
hasTrigger?: boolean;
|
|
3824
4005
|
hash?: string;
|
|
3825
|
-
|
|
3826
|
-
|
|
4006
|
+
resourceGroupId?: string;
|
|
4007
|
+
shareType?: string;
|
|
3827
4008
|
tags?: {
|
|
3828
4009
|
[key: string]: any;
|
|
3829
4010
|
};
|
|
3830
|
-
templateName?: string;
|
|
3831
|
-
templateVersion?: string;
|
|
3832
4011
|
templateFormat?: string;
|
|
3833
|
-
description?: string;
|
|
3834
|
-
resourceGroupId?: string;
|
|
3835
|
-
createdBy?: string;
|
|
3836
|
-
createdDate?: string;
|
|
3837
4012
|
templateId?: string;
|
|
3838
|
-
|
|
3839
|
-
|
|
4013
|
+
templateName?: string;
|
|
4014
|
+
templateVersion?: string;
|
|
4015
|
+
updatedBy?: string;
|
|
4016
|
+
updatedDate?: string;
|
|
3840
4017
|
static names(): {
|
|
3841
4018
|
[key: string]: string;
|
|
3842
4019
|
};
|
|
@@ -3848,8 +4025,8 @@ export declare class CreateTemplateResponseBodyTemplate extends $tea.Model {
|
|
|
3848
4025
|
});
|
|
3849
4026
|
}
|
|
3850
4027
|
export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
3851
|
-
regionEndpoint?: string;
|
|
3852
4028
|
localName?: string;
|
|
4029
|
+
regionEndpoint?: string;
|
|
3853
4030
|
regionId?: string;
|
|
3854
4031
|
static names(): {
|
|
3855
4032
|
[key: string]: string;
|
|
@@ -3861,30 +4038,15 @@ export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
|
3861
4038
|
[key: string]: any;
|
|
3862
4039
|
});
|
|
3863
4040
|
}
|
|
3864
|
-
export declare class GetApplicationResponseBodyApplicationCloudMonitorRule extends $tea.Model {
|
|
3865
|
-
enableSubscribeEvent?: boolean;
|
|
3866
|
-
enableInstallAgent?: boolean;
|
|
3867
|
-
enabled?: boolean;
|
|
3868
|
-
contactGroupList?: string[];
|
|
3869
|
-
templateIdList?: number[];
|
|
3870
|
-
static names(): {
|
|
3871
|
-
[key: string]: string;
|
|
3872
|
-
};
|
|
3873
|
-
static types(): {
|
|
3874
|
-
[key: string]: any;
|
|
3875
|
-
};
|
|
3876
|
-
constructor(map?: {
|
|
3877
|
-
[key: string]: any;
|
|
3878
|
-
});
|
|
3879
|
-
}
|
|
3880
4041
|
export declare class GetApplicationResponseBodyApplication extends $tea.Model {
|
|
3881
|
-
|
|
4042
|
+
createDate?: string;
|
|
3882
4043
|
description?: string;
|
|
3883
|
-
updatedDate?: string;
|
|
3884
|
-
resourceGroupId?: string;
|
|
3885
|
-
createdDate?: string;
|
|
3886
4044
|
name?: string;
|
|
3887
|
-
|
|
4045
|
+
resourceGroupId?: string;
|
|
4046
|
+
tags?: {
|
|
4047
|
+
[key: string]: any;
|
|
4048
|
+
};
|
|
4049
|
+
updateDate?: string;
|
|
3888
4050
|
static names(): {
|
|
3889
4051
|
[key: string]: string;
|
|
3890
4052
|
};
|
|
@@ -3896,16 +4058,20 @@ export declare class GetApplicationResponseBodyApplication extends $tea.Model {
|
|
|
3896
4058
|
});
|
|
3897
4059
|
}
|
|
3898
4060
|
export declare class GetApplicationGroupResponseBodyApplicationGroup extends $tea.Model {
|
|
4061
|
+
applicationName?: string;
|
|
4062
|
+
cmsGroupId?: string;
|
|
4063
|
+
createDate?: string;
|
|
4064
|
+
deployOutputs?: string;
|
|
4065
|
+
deployParameters?: string;
|
|
3899
4066
|
deployRegionId?: string;
|
|
3900
4067
|
description?: string;
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
applicationName?: string;
|
|
4068
|
+
importTagKey?: string;
|
|
4069
|
+
importTagValue?: string;
|
|
3904
4070
|
name?: string;
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
4071
|
+
progress?: string;
|
|
4072
|
+
status?: string;
|
|
4073
|
+
statusReason?: string;
|
|
4074
|
+
updateDate?: string;
|
|
3909
4075
|
static names(): {
|
|
3910
4076
|
[key: string]: string;
|
|
3911
4077
|
};
|
|
@@ -3917,20 +4083,20 @@ export declare class GetApplicationGroupResponseBodyApplicationGroup extends $te
|
|
|
3917
4083
|
});
|
|
3918
4084
|
}
|
|
3919
4085
|
export declare class GetExecutionTemplateResponseBodyTemplate extends $tea.Model {
|
|
4086
|
+
createdBy?: string;
|
|
4087
|
+
createdDate?: string;
|
|
4088
|
+
description?: string;
|
|
3920
4089
|
hash?: string;
|
|
3921
|
-
|
|
3922
|
-
updatedBy?: string;
|
|
4090
|
+
shareType?: string;
|
|
3923
4091
|
tags?: {
|
|
3924
4092
|
[key: string]: any;
|
|
3925
4093
|
};
|
|
3926
|
-
templateName?: string;
|
|
3927
|
-
templateVersion?: string;
|
|
3928
4094
|
templateFormat?: string;
|
|
3929
|
-
description?: string;
|
|
3930
|
-
createdBy?: string;
|
|
3931
|
-
createdDate?: string;
|
|
3932
4095
|
templateId?: string;
|
|
3933
|
-
|
|
4096
|
+
templateName?: string;
|
|
4097
|
+
templateVersion?: string;
|
|
4098
|
+
updatedBy?: string;
|
|
4099
|
+
updatedDate?: string;
|
|
3934
4100
|
static names(): {
|
|
3935
4101
|
[key: string]: string;
|
|
3936
4102
|
};
|
|
@@ -3942,8 +4108,8 @@ export declare class GetExecutionTemplateResponseBodyTemplate extends $tea.Model
|
|
|
3942
4108
|
});
|
|
3943
4109
|
}
|
|
3944
4110
|
export declare class GetInventorySchemaResponseBodySchemasAttributes extends $tea.Model {
|
|
3945
|
-
name?: string;
|
|
3946
4111
|
dataType?: string;
|
|
4112
|
+
name?: string;
|
|
3947
4113
|
static names(): {
|
|
3948
4114
|
[key: string]: string;
|
|
3949
4115
|
};
|
|
@@ -3955,9 +4121,9 @@ export declare class GetInventorySchemaResponseBodySchemasAttributes extends $te
|
|
|
3955
4121
|
});
|
|
3956
4122
|
}
|
|
3957
4123
|
export declare class GetInventorySchemaResponseBodySchemas extends $tea.Model {
|
|
3958
|
-
version?: string;
|
|
3959
|
-
typeName?: string;
|
|
3960
4124
|
attributes?: GetInventorySchemaResponseBodySchemasAttributes[];
|
|
4125
|
+
typeName?: string;
|
|
4126
|
+
version?: string;
|
|
3961
4127
|
static names(): {
|
|
3962
4128
|
[key: string]: string;
|
|
3963
4129
|
};
|
|
@@ -3969,22 +4135,22 @@ export declare class GetInventorySchemaResponseBodySchemas extends $tea.Model {
|
|
|
3969
4135
|
});
|
|
3970
4136
|
}
|
|
3971
4137
|
export declare class GetParameterResponseBodyParameter extends $tea.Model {
|
|
3972
|
-
type?: string;
|
|
3973
|
-
updatedDate?: string;
|
|
3974
|
-
updatedBy?: string;
|
|
3975
|
-
tags?: {
|
|
3976
|
-
[key: string]: any;
|
|
3977
|
-
};
|
|
3978
|
-
value?: string;
|
|
3979
|
-
description?: string;
|
|
3980
4138
|
constraints?: string;
|
|
3981
|
-
resourceGroupId?: string;
|
|
3982
4139
|
createdBy?: string;
|
|
3983
4140
|
createdDate?: string;
|
|
3984
|
-
|
|
3985
|
-
name?: string;
|
|
4141
|
+
description?: string;
|
|
3986
4142
|
id?: string;
|
|
4143
|
+
name?: string;
|
|
4144
|
+
parameterVersion?: number;
|
|
4145
|
+
resourceGroupId?: string;
|
|
3987
4146
|
shareType?: string;
|
|
4147
|
+
tags?: {
|
|
4148
|
+
[key: string]: any;
|
|
4149
|
+
};
|
|
4150
|
+
type?: string;
|
|
4151
|
+
updatedBy?: string;
|
|
4152
|
+
updatedDate?: string;
|
|
4153
|
+
value?: string;
|
|
3988
4154
|
static names(): {
|
|
3989
4155
|
[key: string]: string;
|
|
3990
4156
|
};
|
|
@@ -3996,22 +4162,22 @@ export declare class GetParameterResponseBodyParameter extends $tea.Model {
|
|
|
3996
4162
|
});
|
|
3997
4163
|
}
|
|
3998
4164
|
export declare class GetParametersResponseBodyParameters extends $tea.Model {
|
|
3999
|
-
type?: string;
|
|
4000
|
-
updatedDate?: string;
|
|
4001
|
-
updatedBy?: string;
|
|
4002
|
-
tags?: {
|
|
4003
|
-
[key: string]: any;
|
|
4004
|
-
};
|
|
4005
|
-
value?: string;
|
|
4006
|
-
description?: string;
|
|
4007
4165
|
constraints?: string;
|
|
4008
|
-
resourceGroupId?: string;
|
|
4009
4166
|
createdBy?: string;
|
|
4010
4167
|
createdDate?: string;
|
|
4011
|
-
|
|
4012
|
-
name?: string;
|
|
4168
|
+
description?: string;
|
|
4013
4169
|
id?: string;
|
|
4170
|
+
name?: string;
|
|
4171
|
+
parameterVersion?: number;
|
|
4172
|
+
resourceGroupId?: string;
|
|
4014
4173
|
shareType?: string;
|
|
4174
|
+
tags?: {
|
|
4175
|
+
[key: string]: any;
|
|
4176
|
+
};
|
|
4177
|
+
type?: string;
|
|
4178
|
+
updatedBy?: string;
|
|
4179
|
+
updatedDate?: string;
|
|
4180
|
+
value?: string;
|
|
4015
4181
|
static names(): {
|
|
4016
4182
|
[key: string]: string;
|
|
4017
4183
|
};
|
|
@@ -4023,18 +4189,18 @@ export declare class GetParametersResponseBodyParameters extends $tea.Model {
|
|
|
4023
4189
|
});
|
|
4024
4190
|
}
|
|
4025
4191
|
export declare class GetParametersByPathResponseBodyParameters extends $tea.Model {
|
|
4026
|
-
type?: string;
|
|
4027
|
-
updatedDate?: string;
|
|
4028
|
-
updatedBy?: string;
|
|
4029
|
-
value?: string;
|
|
4030
|
-
description?: string;
|
|
4031
4192
|
constraints?: string;
|
|
4032
4193
|
createdBy?: string;
|
|
4033
4194
|
createdDate?: string;
|
|
4034
|
-
|
|
4035
|
-
name?: string;
|
|
4195
|
+
description?: string;
|
|
4036
4196
|
id?: string;
|
|
4197
|
+
name?: string;
|
|
4198
|
+
parameterVersion?: number;
|
|
4037
4199
|
shareType?: string;
|
|
4200
|
+
type?: string;
|
|
4201
|
+
updatedBy?: string;
|
|
4202
|
+
updatedDate?: string;
|
|
4203
|
+
value?: string;
|
|
4038
4204
|
static names(): {
|
|
4039
4205
|
[key: string]: string;
|
|
4040
4206
|
};
|
|
@@ -4046,17 +4212,17 @@ export declare class GetParametersByPathResponseBodyParameters extends $tea.Mode
|
|
|
4046
4212
|
});
|
|
4047
4213
|
}
|
|
4048
4214
|
export declare class GetPatchBaselineResponseBodyPatchBaseline extends $tea.Model {
|
|
4049
|
-
|
|
4050
|
-
isDefault?: boolean;
|
|
4051
|
-
description?: string;
|
|
4052
|
-
updatedDate?: string;
|
|
4053
|
-
updatedBy?: string;
|
|
4215
|
+
approvalRules?: string;
|
|
4054
4216
|
createdBy?: string;
|
|
4055
4217
|
createdDate?: string;
|
|
4056
|
-
|
|
4057
|
-
approvalRules?: string;
|
|
4218
|
+
description?: string;
|
|
4058
4219
|
id?: string;
|
|
4220
|
+
isDefault?: boolean;
|
|
4221
|
+
name?: string;
|
|
4222
|
+
operationSystem?: string;
|
|
4059
4223
|
shareType?: string;
|
|
4224
|
+
updatedBy?: string;
|
|
4225
|
+
updatedDate?: string;
|
|
4060
4226
|
static names(): {
|
|
4061
4227
|
[key: string]: string;
|
|
4062
4228
|
};
|
|
@@ -4068,23 +4234,23 @@ export declare class GetPatchBaselineResponseBodyPatchBaseline extends $tea.Mode
|
|
|
4068
4234
|
});
|
|
4069
4235
|
}
|
|
4070
4236
|
export declare class GetSecretParameterResponseBodyParameter extends $tea.Model {
|
|
4071
|
-
type?: string;
|
|
4072
|
-
updatedDate?: string;
|
|
4073
|
-
updatedBy?: string;
|
|
4074
|
-
keyId?: string;
|
|
4075
|
-
tags?: {
|
|
4076
|
-
[key: string]: any;
|
|
4077
|
-
};
|
|
4078
|
-
value?: string;
|
|
4079
|
-
description?: string;
|
|
4080
4237
|
constraints?: string;
|
|
4081
|
-
resourceGroupId?: string;
|
|
4082
4238
|
createdBy?: string;
|
|
4083
4239
|
createdDate?: string;
|
|
4084
|
-
|
|
4085
|
-
name?: string;
|
|
4240
|
+
description?: string;
|
|
4086
4241
|
id?: string;
|
|
4242
|
+
keyId?: string;
|
|
4243
|
+
name?: string;
|
|
4244
|
+
parameterVersion?: number;
|
|
4245
|
+
resourceGroupId?: string;
|
|
4087
4246
|
shareType?: string;
|
|
4247
|
+
tags?: {
|
|
4248
|
+
[key: string]: any;
|
|
4249
|
+
};
|
|
4250
|
+
type?: string;
|
|
4251
|
+
updatedBy?: string;
|
|
4252
|
+
updatedDate?: string;
|
|
4253
|
+
value?: string;
|
|
4088
4254
|
static names(): {
|
|
4089
4255
|
[key: string]: string;
|
|
4090
4256
|
};
|
|
@@ -4096,23 +4262,23 @@ export declare class GetSecretParameterResponseBodyParameter extends $tea.Model
|
|
|
4096
4262
|
});
|
|
4097
4263
|
}
|
|
4098
4264
|
export declare class GetSecretParametersResponseBodyParameters extends $tea.Model {
|
|
4099
|
-
type?: string;
|
|
4100
|
-
updatedDate?: string;
|
|
4101
|
-
updatedBy?: string;
|
|
4102
|
-
keyId?: string;
|
|
4103
|
-
tags?: {
|
|
4104
|
-
[key: string]: any;
|
|
4105
|
-
};
|
|
4106
|
-
value?: string;
|
|
4107
|
-
description?: string;
|
|
4108
4265
|
constraints?: string;
|
|
4109
|
-
resourceGroupId?: string;
|
|
4110
4266
|
createdBy?: string;
|
|
4111
4267
|
createdDate?: string;
|
|
4112
|
-
|
|
4113
|
-
name?: string;
|
|
4268
|
+
description?: string;
|
|
4114
4269
|
id?: string;
|
|
4270
|
+
keyId?: string;
|
|
4271
|
+
name?: string;
|
|
4272
|
+
parameterVersion?: number;
|
|
4273
|
+
resourceGroupId?: string;
|
|
4115
4274
|
shareType?: string;
|
|
4275
|
+
tags?: {
|
|
4276
|
+
[key: string]: any;
|
|
4277
|
+
};
|
|
4278
|
+
type?: string;
|
|
4279
|
+
updatedBy?: string;
|
|
4280
|
+
updatedDate?: string;
|
|
4281
|
+
value?: string;
|
|
4116
4282
|
static names(): {
|
|
4117
4283
|
[key: string]: string;
|
|
4118
4284
|
};
|
|
@@ -4124,19 +4290,19 @@ export declare class GetSecretParametersResponseBodyParameters extends $tea.Mode
|
|
|
4124
4290
|
});
|
|
4125
4291
|
}
|
|
4126
4292
|
export declare class GetSecretParametersByPathResponseBodyParameters extends $tea.Model {
|
|
4127
|
-
type?: string;
|
|
4128
|
-
updatedDate?: string;
|
|
4129
|
-
updatedBy?: string;
|
|
4130
|
-
keyId?: string;
|
|
4131
|
-
value?: string;
|
|
4132
|
-
description?: string;
|
|
4133
4293
|
constraints?: string;
|
|
4134
4294
|
createdBy?: string;
|
|
4135
4295
|
createdDate?: string;
|
|
4136
|
-
|
|
4137
|
-
name?: string;
|
|
4296
|
+
description?: string;
|
|
4138
4297
|
id?: string;
|
|
4298
|
+
keyId?: string;
|
|
4299
|
+
name?: string;
|
|
4300
|
+
parameterVersion?: number;
|
|
4139
4301
|
shareType?: string;
|
|
4302
|
+
type?: string;
|
|
4303
|
+
updatedBy?: string;
|
|
4304
|
+
updatedDate?: string;
|
|
4305
|
+
value?: string;
|
|
4140
4306
|
static names(): {
|
|
4141
4307
|
[key: string]: string;
|
|
4142
4308
|
};
|
|
@@ -4149,8 +4315,8 @@ export declare class GetSecretParametersByPathResponseBodyParameters extends $te
|
|
|
4149
4315
|
}
|
|
4150
4316
|
export declare class GetServiceSettingsResponseBodyServiceSettings extends $tea.Model {
|
|
4151
4317
|
deliveryOssBucketName?: string;
|
|
4152
|
-
deliveryOssKeyPrefix?: string;
|
|
4153
4318
|
deliveryOssEnabled?: boolean;
|
|
4319
|
+
deliveryOssKeyPrefix?: string;
|
|
4154
4320
|
deliverySlsEnabled?: boolean;
|
|
4155
4321
|
deliverySlsProjectName?: string;
|
|
4156
4322
|
rdcEnterpriseId?: string;
|
|
@@ -4165,24 +4331,24 @@ export declare class GetServiceSettingsResponseBodyServiceSettings extends $tea.
|
|
|
4165
4331
|
});
|
|
4166
4332
|
}
|
|
4167
4333
|
export declare class GetTemplateResponseBodyTemplate extends $tea.Model {
|
|
4334
|
+
createdBy?: string;
|
|
4335
|
+
createdDate?: string;
|
|
4336
|
+
description?: string;
|
|
4337
|
+
hasTrigger?: boolean;
|
|
4168
4338
|
hash?: string;
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
templateType?: string;
|
|
4339
|
+
resourceGroupId?: string;
|
|
4340
|
+
shareType?: string;
|
|
4172
4341
|
tags?: {
|
|
4173
4342
|
[key: string]: any;
|
|
4174
4343
|
};
|
|
4344
|
+
templateFormat?: string;
|
|
4345
|
+
templateId?: string;
|
|
4175
4346
|
templateName?: string;
|
|
4347
|
+
templateType?: string;
|
|
4176
4348
|
templateVersion?: string;
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
resourceGroupId?: string;
|
|
4180
|
-
createdBy?: string;
|
|
4181
|
-
createdDate?: string;
|
|
4349
|
+
updatedBy?: string;
|
|
4350
|
+
updatedDate?: string;
|
|
4182
4351
|
versionName?: string;
|
|
4183
|
-
templateId?: string;
|
|
4184
|
-
hasTrigger?: boolean;
|
|
4185
|
-
shareType?: string;
|
|
4186
4352
|
static names(): {
|
|
4187
4353
|
[key: string]: string;
|
|
4188
4354
|
};
|
|
@@ -4194,13 +4360,13 @@ export declare class GetTemplateResponseBodyTemplate extends $tea.Model {
|
|
|
4194
4360
|
});
|
|
4195
4361
|
}
|
|
4196
4362
|
export declare class ListActionsResponseBodyActions extends $tea.Model {
|
|
4197
|
-
popularity?: number;
|
|
4198
4363
|
actionType?: string;
|
|
4199
|
-
description?: string;
|
|
4200
4364
|
createdDate?: string;
|
|
4201
|
-
|
|
4365
|
+
description?: string;
|
|
4202
4366
|
OOSActionName?: string;
|
|
4367
|
+
popularity?: number;
|
|
4203
4368
|
properties?: string;
|
|
4369
|
+
templateVersion?: string;
|
|
4204
4370
|
static names(): {
|
|
4205
4371
|
[key: string]: string;
|
|
4206
4372
|
};
|
|
@@ -4212,32 +4378,18 @@ export declare class ListActionsResponseBodyActions extends $tea.Model {
|
|
|
4212
4378
|
});
|
|
4213
4379
|
}
|
|
4214
4380
|
export declare class ListApplicationGroupsResponseBodyApplicationGroups extends $tea.Model {
|
|
4381
|
+
applicationName?: string;
|
|
4382
|
+
cmsGroupId?: string;
|
|
4383
|
+
createDate?: string;
|
|
4384
|
+
deployParameters?: string;
|
|
4215
4385
|
deployRegionId?: string;
|
|
4216
4386
|
description?: string;
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
applicationName?: string;
|
|
4387
|
+
importTagKey?: string;
|
|
4388
|
+
importTagValue?: string;
|
|
4220
4389
|
name?: string;
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
importClusterId?: string;
|
|
4225
|
-
static names(): {
|
|
4226
|
-
[key: string]: string;
|
|
4227
|
-
};
|
|
4228
|
-
static types(): {
|
|
4229
|
-
[key: string]: any;
|
|
4230
|
-
};
|
|
4231
|
-
constructor(map?: {
|
|
4232
|
-
[key: string]: any;
|
|
4233
|
-
});
|
|
4234
|
-
}
|
|
4235
|
-
export declare class ListApplicationsResponseBodyApplicationsCloudMonitorRule extends $tea.Model {
|
|
4236
|
-
enableSubscribeEvent?: boolean;
|
|
4237
|
-
enableInstallAgent?: boolean;
|
|
4238
|
-
enabled?: boolean;
|
|
4239
|
-
contactGroupList?: string[];
|
|
4240
|
-
templateIdList?: number[];
|
|
4390
|
+
status?: string;
|
|
4391
|
+
statusReason?: string;
|
|
4392
|
+
updateDate?: string;
|
|
4241
4393
|
static names(): {
|
|
4242
4394
|
[key: string]: string;
|
|
4243
4395
|
};
|
|
@@ -4249,14 +4401,14 @@ export declare class ListApplicationsResponseBodyApplicationsCloudMonitorRule ex
|
|
|
4249
4401
|
});
|
|
4250
4402
|
}
|
|
4251
4403
|
export declare class ListApplicationsResponseBodyApplications extends $tea.Model {
|
|
4252
|
-
|
|
4253
|
-
isSystem?: boolean;
|
|
4404
|
+
createDate?: string;
|
|
4254
4405
|
description?: string;
|
|
4255
|
-
updateDate?: string;
|
|
4256
|
-
resourceGroupId?: string;
|
|
4257
|
-
createdDate?: string;
|
|
4258
4406
|
name?: string;
|
|
4259
|
-
|
|
4407
|
+
resourceGroupId?: string;
|
|
4408
|
+
tags?: {
|
|
4409
|
+
[key: string]: any;
|
|
4410
|
+
};
|
|
4411
|
+
updateDate?: string;
|
|
4260
4412
|
static names(): {
|
|
4261
4413
|
[key: string]: string;
|
|
4262
4414
|
};
|
|
@@ -4268,9 +4420,9 @@ export declare class ListApplicationsResponseBodyApplications extends $tea.Model
|
|
|
4268
4420
|
});
|
|
4269
4421
|
}
|
|
4270
4422
|
export declare class ListExecutionLogsResponseBodyExecutionLogs extends $tea.Model {
|
|
4271
|
-
taskExecutionId?: string;
|
|
4272
|
-
message?: string;
|
|
4273
4423
|
logType?: string;
|
|
4424
|
+
message?: string;
|
|
4425
|
+
taskExecutionId?: string;
|
|
4274
4426
|
timestamp?: string;
|
|
4275
4427
|
static names(): {
|
|
4276
4428
|
[key: string]: string;
|
|
@@ -4283,8 +4435,8 @@ export declare class ListExecutionLogsResponseBodyExecutionLogs extends $tea.Mod
|
|
|
4283
4435
|
});
|
|
4284
4436
|
}
|
|
4285
4437
|
export declare class ListExecutionRiskyTasksResponseBodyRiskyTasks extends $tea.Model {
|
|
4286
|
-
service?: string;
|
|
4287
4438
|
API?: string;
|
|
4439
|
+
service?: string;
|
|
4288
4440
|
task?: string[];
|
|
4289
4441
|
template?: string[];
|
|
4290
4442
|
static names(): {
|
|
@@ -4298,9 +4450,9 @@ export declare class ListExecutionRiskyTasksResponseBodyRiskyTasks extends $tea.
|
|
|
4298
4450
|
});
|
|
4299
4451
|
}
|
|
4300
4452
|
export declare class ListExecutionsResponseBodyExecutionsCurrentTasks extends $tea.Model {
|
|
4453
|
+
taskAction?: string;
|
|
4301
4454
|
taskExecutionId?: string;
|
|
4302
4455
|
taskName?: string;
|
|
4303
|
-
taskAction?: string;
|
|
4304
4456
|
static names(): {
|
|
4305
4457
|
[key: string]: string;
|
|
4306
4458
|
};
|
|
@@ -4312,60 +4464,43 @@ export declare class ListExecutionsResponseBodyExecutionsCurrentTasks extends $t
|
|
|
4312
4464
|
});
|
|
4313
4465
|
}
|
|
4314
4466
|
export declare class ListExecutionsResponseBodyExecutions extends $tea.Model {
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
targets?: string;
|
|
4318
|
-
statusReason?: string;
|
|
4319
|
-
tags?: {
|
|
4467
|
+
category?: string;
|
|
4468
|
+
counters?: {
|
|
4320
4469
|
[key: string]: any;
|
|
4321
4470
|
};
|
|
4322
|
-
lastSuccessfulTriggerTime?: string;
|
|
4323
|
-
mode?: string;
|
|
4324
|
-
safetyCheck?: string;
|
|
4325
|
-
templateName?: string;
|
|
4326
|
-
templateVersion?: string;
|
|
4327
4471
|
createDate?: string;
|
|
4328
|
-
|
|
4472
|
+
currentTasks?: ListExecutionsResponseBodyExecutionsCurrentTasks[];
|
|
4329
4473
|
description?: string;
|
|
4330
|
-
lastTriggerTime?: string;
|
|
4331
|
-
parentExecutionId?: string;
|
|
4332
|
-
lastTriggerStatus?: string;
|
|
4333
|
-
statusMessage?: string;
|
|
4334
|
-
outputs?: string;
|
|
4335
|
-
executedBy?: string;
|
|
4336
4474
|
endDate?: string;
|
|
4337
|
-
|
|
4338
|
-
startDate?: string;
|
|
4475
|
+
executedBy?: string;
|
|
4339
4476
|
executionId?: string;
|
|
4477
|
+
isParent?: boolean;
|
|
4478
|
+
lastSuccessfulTriggerTime?: string;
|
|
4479
|
+
lastTriggerStatus?: string;
|
|
4480
|
+
lastTriggerTime?: string;
|
|
4481
|
+
mode?: string;
|
|
4482
|
+
outputs?: string;
|
|
4340
4483
|
parameters?: {
|
|
4341
4484
|
[key: string]: any;
|
|
4342
4485
|
};
|
|
4343
|
-
|
|
4344
|
-
[key: string]: any;
|
|
4345
|
-
};
|
|
4346
|
-
resourceGroupId?: string;
|
|
4347
|
-
category?: string;
|
|
4348
|
-
templateId?: string;
|
|
4486
|
+
parentExecutionId?: string;
|
|
4349
4487
|
ramRole?: string;
|
|
4488
|
+
resourceGroupId?: string;
|
|
4350
4489
|
resourceStatus?: string;
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4490
|
+
safetyCheck?: string;
|
|
4491
|
+
startDate?: string;
|
|
4492
|
+
status?: string;
|
|
4493
|
+
statusMessage?: string;
|
|
4494
|
+
statusReason?: string;
|
|
4495
|
+
tags?: {
|
|
4356
4496
|
[key: string]: any;
|
|
4357
4497
|
};
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
status?: string;
|
|
4365
|
-
installedTime?: string;
|
|
4366
|
-
KBId?: string;
|
|
4367
|
-
title?: string;
|
|
4368
|
-
classification?: string;
|
|
4498
|
+
targets?: string;
|
|
4499
|
+
templateId?: string;
|
|
4500
|
+
templateName?: string;
|
|
4501
|
+
templateVersion?: string;
|
|
4502
|
+
updateDate?: string;
|
|
4503
|
+
waitingStatus?: string;
|
|
4369
4504
|
static names(): {
|
|
4370
4505
|
[key: string]: string;
|
|
4371
4506
|
};
|
|
@@ -4377,19 +4512,19 @@ export declare class ListInstancePatchesResponseBodyPatches extends $tea.Model {
|
|
|
4377
4512
|
});
|
|
4378
4513
|
}
|
|
4379
4514
|
export declare class ListInstancePatchStatesResponseBodyInstancePatchStates extends $tea.Model {
|
|
4380
|
-
missingCount?: string;
|
|
4381
|
-
operationEndTime?: string;
|
|
4382
|
-
ownerInformation?: string;
|
|
4383
|
-
installedOtherCount?: string;
|
|
4384
|
-
instanceId?: string;
|
|
4385
|
-
operationType?: string;
|
|
4386
|
-
operationStartTime?: string;
|
|
4387
|
-
failedCount?: string;
|
|
4388
4515
|
baselineId?: string;
|
|
4516
|
+
failedCount?: string;
|
|
4517
|
+
installedCount?: string;
|
|
4518
|
+
installedOtherCount?: string;
|
|
4389
4519
|
installedPendingRebootCount?: string;
|
|
4390
4520
|
installedRejectedCount?: string;
|
|
4521
|
+
instanceId?: string;
|
|
4522
|
+
missingCount?: string;
|
|
4523
|
+
operationEndTime?: string;
|
|
4524
|
+
operationStartTime?: string;
|
|
4525
|
+
operationType?: string;
|
|
4526
|
+
ownerInformation?: string;
|
|
4391
4527
|
patchGroup?: string;
|
|
4392
|
-
installedCount?: string;
|
|
4393
4528
|
static names(): {
|
|
4394
4529
|
[key: string]: string;
|
|
4395
4530
|
};
|
|
@@ -4400,14 +4535,13 @@ export declare class ListInstancePatchStatesResponseBodyInstancePatchStates exte
|
|
|
4400
4535
|
[key: string]: any;
|
|
4401
4536
|
});
|
|
4402
4537
|
}
|
|
4403
|
-
export declare class
|
|
4404
|
-
|
|
4405
|
-
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
|
|
4410
|
-
reportTime?: string;
|
|
4538
|
+
export declare class ListInstancePatchesResponseBodyPatches extends $tea.Model {
|
|
4539
|
+
classification?: string;
|
|
4540
|
+
installedTime?: string;
|
|
4541
|
+
KBId?: string;
|
|
4542
|
+
severity?: string;
|
|
4543
|
+
status?: string;
|
|
4544
|
+
title?: string;
|
|
4411
4545
|
static names(): {
|
|
4412
4546
|
[key: string]: string;
|
|
4413
4547
|
};
|
|
@@ -4419,9 +4553,9 @@ export declare class ListInstanceStateReportsResponseBodyStateReports extends $t
|
|
|
4419
4553
|
});
|
|
4420
4554
|
}
|
|
4421
4555
|
export declare class ListInventoryEntriesRequestFilter extends $tea.Model {
|
|
4422
|
-
value?: string[];
|
|
4423
|
-
operator?: string;
|
|
4424
4556
|
name?: string;
|
|
4557
|
+
operator?: string;
|
|
4558
|
+
value?: string[];
|
|
4425
4559
|
static names(): {
|
|
4426
4560
|
[key: string]: string;
|
|
4427
4561
|
};
|
|
@@ -4432,21 +4566,11 @@ export declare class ListInventoryEntriesRequestFilter extends $tea.Model {
|
|
|
4432
4566
|
[key: string]: any;
|
|
4433
4567
|
});
|
|
4434
4568
|
}
|
|
4435
|
-
export declare class
|
|
4436
|
-
|
|
4437
|
-
updatedDate?: string;
|
|
4569
|
+
export declare class ListParameterVersionsResponseBodyParameterVersions extends $tea.Model {
|
|
4570
|
+
parameterVersion?: number;
|
|
4438
4571
|
updatedBy?: string;
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
};
|
|
4442
|
-
description?: string;
|
|
4443
|
-
createdBy?: string;
|
|
4444
|
-
resourceGroupId?: string;
|
|
4445
|
-
createdDate?: string;
|
|
4446
|
-
parameterVersion?: string;
|
|
4447
|
-
name?: string;
|
|
4448
|
-
id?: string;
|
|
4449
|
-
shareType?: string;
|
|
4572
|
+
updatedDate?: string;
|
|
4573
|
+
value?: string;
|
|
4450
4574
|
static names(): {
|
|
4451
4575
|
[key: string]: string;
|
|
4452
4576
|
};
|
|
@@ -4457,11 +4581,21 @@ export declare class ListParametersResponseBodyParameters extends $tea.Model {
|
|
|
4457
4581
|
[key: string]: any;
|
|
4458
4582
|
});
|
|
4459
4583
|
}
|
|
4460
|
-
export declare class
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4584
|
+
export declare class ListParametersResponseBodyParameters extends $tea.Model {
|
|
4585
|
+
createdBy?: string;
|
|
4586
|
+
createdDate?: string;
|
|
4587
|
+
description?: string;
|
|
4588
|
+
id?: string;
|
|
4589
|
+
name?: string;
|
|
4590
|
+
parameterVersion?: string;
|
|
4591
|
+
resourceGroupId?: string;
|
|
4592
|
+
shareType?: string;
|
|
4593
|
+
tags?: {
|
|
4594
|
+
[key: string]: any;
|
|
4595
|
+
};
|
|
4596
|
+
type?: string;
|
|
4464
4597
|
updatedBy?: string;
|
|
4598
|
+
updatedDate?: string;
|
|
4465
4599
|
static names(): {
|
|
4466
4600
|
[key: string]: string;
|
|
4467
4601
|
};
|
|
@@ -4473,16 +4607,16 @@ export declare class ListParameterVersionsResponseBodyParameterVersions extends
|
|
|
4473
4607
|
});
|
|
4474
4608
|
}
|
|
4475
4609
|
export declare class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.Model {
|
|
4476
|
-
operationSystem?: string;
|
|
4477
|
-
isDefault?: boolean;
|
|
4478
|
-
description?: string;
|
|
4479
|
-
updatedDate?: string;
|
|
4480
|
-
updatedBy?: string;
|
|
4481
4610
|
createdBy?: string;
|
|
4482
4611
|
createdDate?: string;
|
|
4483
|
-
|
|
4612
|
+
description?: string;
|
|
4484
4613
|
id?: string;
|
|
4614
|
+
isDefault?: boolean;
|
|
4615
|
+
name?: string;
|
|
4616
|
+
operationSystem?: string;
|
|
4485
4617
|
shareType?: string;
|
|
4618
|
+
updatedBy?: string;
|
|
4619
|
+
updatedDate?: string;
|
|
4486
4620
|
static names(): {
|
|
4487
4621
|
[key: string]: string;
|
|
4488
4622
|
};
|
|
@@ -4494,11 +4628,11 @@ export declare class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.M
|
|
|
4494
4628
|
});
|
|
4495
4629
|
}
|
|
4496
4630
|
export declare class ListResourceExecutionStatusResponseBodyResourceExecutionStatus extends $tea.Model {
|
|
4497
|
-
|
|
4498
|
-
status?: string;
|
|
4631
|
+
executionId?: string;
|
|
4499
4632
|
executionTime?: string;
|
|
4633
|
+
outputs?: string;
|
|
4500
4634
|
resourceId?: string;
|
|
4501
|
-
|
|
4635
|
+
status?: string;
|
|
4502
4636
|
static names(): {
|
|
4503
4637
|
[key: string]: string;
|
|
4504
4638
|
};
|
|
@@ -4509,22 +4643,11 @@ export declare class ListResourceExecutionStatusResponseBodyResourceExecutionSta
|
|
|
4509
4643
|
[key: string]: any;
|
|
4510
4644
|
});
|
|
4511
4645
|
}
|
|
4512
|
-
export declare class
|
|
4513
|
-
|
|
4514
|
-
updatedDate?: string;
|
|
4646
|
+
export declare class ListSecretParameterVersionsResponseBodyParameterVersions extends $tea.Model {
|
|
4647
|
+
parameterVersion?: number;
|
|
4515
4648
|
updatedBy?: string;
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
[key: string]: any;
|
|
4519
|
-
};
|
|
4520
|
-
description?: string;
|
|
4521
|
-
resourceGroupId?: string;
|
|
4522
|
-
createdBy?: string;
|
|
4523
|
-
createdDate?: string;
|
|
4524
|
-
parameterVersion?: string;
|
|
4525
|
-
name?: string;
|
|
4526
|
-
id?: string;
|
|
4527
|
-
shareType?: string;
|
|
4649
|
+
updatedDate?: string;
|
|
4650
|
+
value?: string;
|
|
4528
4651
|
static names(): {
|
|
4529
4652
|
[key: string]: string;
|
|
4530
4653
|
};
|
|
@@ -4535,11 +4658,22 @@ export declare class ListSecretParametersResponseBodyParameters extends $tea.Mod
|
|
|
4535
4658
|
[key: string]: any;
|
|
4536
4659
|
});
|
|
4537
4660
|
}
|
|
4538
|
-
export declare class
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4661
|
+
export declare class ListSecretParametersResponseBodyParameters extends $tea.Model {
|
|
4662
|
+
createdBy?: string;
|
|
4663
|
+
createdDate?: string;
|
|
4664
|
+
description?: string;
|
|
4665
|
+
id?: string;
|
|
4666
|
+
keyId?: string;
|
|
4667
|
+
name?: string;
|
|
4668
|
+
parameterVersion?: string;
|
|
4669
|
+
resourceGroupId?: string;
|
|
4670
|
+
shareType?: string;
|
|
4671
|
+
tags?: {
|
|
4672
|
+
[key: string]: any;
|
|
4673
|
+
};
|
|
4674
|
+
type?: string;
|
|
4542
4675
|
updatedBy?: string;
|
|
4676
|
+
updatedDate?: string;
|
|
4543
4677
|
static names(): {
|
|
4544
4678
|
[key: string]: string;
|
|
4545
4679
|
};
|
|
@@ -4551,22 +4685,22 @@ export declare class ListSecretParameterVersionsResponseBodyParameterVersions ex
|
|
|
4551
4685
|
});
|
|
4552
4686
|
}
|
|
4553
4687
|
export declare class ListStateConfigurationsResponseBodyStateConfigurations extends $tea.Model {
|
|
4554
|
-
|
|
4688
|
+
configureMode?: string;
|
|
4555
4689
|
createTime?: string;
|
|
4556
|
-
|
|
4690
|
+
description?: string;
|
|
4691
|
+
parameters?: string;
|
|
4692
|
+
resourceGroupId?: string;
|
|
4693
|
+
scheduleExpression?: string;
|
|
4694
|
+
scheduleType?: string;
|
|
4695
|
+
stateConfigurationId?: string;
|
|
4557
4696
|
tags?: {
|
|
4558
4697
|
[key: string]: any;
|
|
4559
4698
|
};
|
|
4560
|
-
|
|
4561
|
-
|
|
4699
|
+
targets?: string;
|
|
4700
|
+
templateId?: string;
|
|
4562
4701
|
templateName?: string;
|
|
4563
4702
|
templateVersion?: string;
|
|
4564
|
-
|
|
4565
|
-
scheduleType?: string;
|
|
4566
|
-
parameters?: string;
|
|
4567
|
-
description?: string;
|
|
4568
|
-
resourceGroupId?: string;
|
|
4569
|
-
templateId?: string;
|
|
4703
|
+
updateTime?: string;
|
|
4570
4704
|
static names(): {
|
|
4571
4705
|
[key: string]: string;
|
|
4572
4706
|
};
|
|
@@ -4578,10 +4712,10 @@ export declare class ListStateConfigurationsResponseBodyStateConfigurations exte
|
|
|
4578
4712
|
});
|
|
4579
4713
|
}
|
|
4580
4714
|
export declare class ListTagResourcesResponseBodyTagResourcesTagResource extends $tea.Model {
|
|
4581
|
-
resourceType?: string;
|
|
4582
|
-
tagValue?: string;
|
|
4583
4715
|
resourceId?: string;
|
|
4716
|
+
resourceType?: string;
|
|
4584
4717
|
tagKey?: string;
|
|
4718
|
+
tagValue?: string;
|
|
4585
4719
|
static names(): {
|
|
4586
4720
|
[key: string]: string;
|
|
4587
4721
|
};
|
|
@@ -4606,28 +4740,28 @@ export declare class ListTagResourcesResponseBodyTagResources extends $tea.Model
|
|
|
4606
4740
|
}
|
|
4607
4741
|
export declare class ListTaskExecutionsResponseBodyTaskExecutions extends $tea.Model {
|
|
4608
4742
|
childExecutionId?: string;
|
|
4609
|
-
outputs?: string;
|
|
4610
|
-
status?: string;
|
|
4611
|
-
endDate?: string;
|
|
4612
|
-
parentTaskExecutionId?: string;
|
|
4613
|
-
taskName?: string;
|
|
4614
|
-
startDate?: string;
|
|
4615
|
-
loopItem?: string;
|
|
4616
4743
|
createDate?: string;
|
|
4744
|
+
endDate?: string;
|
|
4617
4745
|
executionId?: string;
|
|
4618
|
-
|
|
4619
|
-
taskExecutionId?: string;
|
|
4620
|
-
updateDate?: string;
|
|
4621
|
-
loop?: {
|
|
4746
|
+
extraData?: {
|
|
4622
4747
|
[key: string]: any;
|
|
4623
4748
|
};
|
|
4624
|
-
|
|
4625
|
-
loopBatchNumber?: number;
|
|
4626
|
-
statusMessage?: string;
|
|
4627
|
-
extraData?: {
|
|
4749
|
+
loop?: {
|
|
4628
4750
|
[key: string]: any;
|
|
4629
4751
|
};
|
|
4752
|
+
loopBatchNumber?: number;
|
|
4753
|
+
loopItem?: string;
|
|
4754
|
+
outputs?: string;
|
|
4755
|
+
parentTaskExecutionId?: string;
|
|
4630
4756
|
properties?: string;
|
|
4757
|
+
startDate?: string;
|
|
4758
|
+
status?: string;
|
|
4759
|
+
statusMessage?: string;
|
|
4760
|
+
taskAction?: string;
|
|
4761
|
+
taskExecutionId?: string;
|
|
4762
|
+
taskName?: string;
|
|
4763
|
+
templateId?: string;
|
|
4764
|
+
updateDate?: string;
|
|
4631
4765
|
static names(): {
|
|
4632
4766
|
[key: string]: string;
|
|
4633
4767
|
};
|
|
@@ -4638,27 +4772,13 @@ export declare class ListTaskExecutionsResponseBodyTaskExecutions extends $tea.M
|
|
|
4638
4772
|
[key: string]: any;
|
|
4639
4773
|
});
|
|
4640
4774
|
}
|
|
4641
|
-
export declare class
|
|
4642
|
-
hash?: string;
|
|
4643
|
-
updatedDate?: string;
|
|
4644
|
-
updatedBy?: string;
|
|
4645
|
-
templateType?: string;
|
|
4646
|
-
tags?: {
|
|
4647
|
-
[key: string]: any;
|
|
4648
|
-
};
|
|
4649
|
-
templateName?: string;
|
|
4650
|
-
templateVersion?: string;
|
|
4651
|
-
templateFormat?: string;
|
|
4652
|
-
popularity?: number;
|
|
4653
|
-
totalExecutionCount?: number;
|
|
4775
|
+
export declare class ListTemplateVersionsResponseBodyTemplateVersions extends $tea.Model {
|
|
4654
4776
|
description?: string;
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
templateId?: string;
|
|
4661
|
-
shareType?: string;
|
|
4777
|
+
templateFormat?: string;
|
|
4778
|
+
templateVersion?: string;
|
|
4779
|
+
updatedBy?: string;
|
|
4780
|
+
updatedDate?: string;
|
|
4781
|
+
versionName?: string;
|
|
4662
4782
|
static names(): {
|
|
4663
4783
|
[key: string]: string;
|
|
4664
4784
|
};
|
|
@@ -4669,13 +4789,27 @@ export declare class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
|
4669
4789
|
[key: string]: any;
|
|
4670
4790
|
});
|
|
4671
4791
|
}
|
|
4672
|
-
export declare class
|
|
4792
|
+
export declare class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
4793
|
+
category?: string;
|
|
4794
|
+
createdBy?: string;
|
|
4795
|
+
createdDate?: string;
|
|
4673
4796
|
description?: string;
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4797
|
+
hasTrigger?: boolean;
|
|
4798
|
+
hash?: string;
|
|
4799
|
+
popularity?: number;
|
|
4800
|
+
resourceGroupId?: string;
|
|
4801
|
+
shareType?: string;
|
|
4802
|
+
tags?: {
|
|
4803
|
+
[key: string]: any;
|
|
4804
|
+
};
|
|
4678
4805
|
templateFormat?: string;
|
|
4806
|
+
templateId?: string;
|
|
4807
|
+
templateName?: string;
|
|
4808
|
+
templateType?: string;
|
|
4809
|
+
templateVersion?: string;
|
|
4810
|
+
totalExecutionCount?: number;
|
|
4811
|
+
updatedBy?: string;
|
|
4812
|
+
updatedDate?: string;
|
|
4679
4813
|
static names(): {
|
|
4680
4814
|
[key: string]: string;
|
|
4681
4815
|
};
|
|
@@ -4687,16 +4821,16 @@ export declare class ListTemplateVersionsResponseBodyTemplateVersions extends $t
|
|
|
4687
4821
|
});
|
|
4688
4822
|
}
|
|
4689
4823
|
export declare class RegisterDefaultPatchBaselineResponseBodyPatchBaseline extends $tea.Model {
|
|
4690
|
-
|
|
4691
|
-
description?: string;
|
|
4692
|
-
updatedDate?: string;
|
|
4693
|
-
updatedBy?: string;
|
|
4824
|
+
approvalRules?: string;
|
|
4694
4825
|
createdBy?: string;
|
|
4695
4826
|
createdDate?: string;
|
|
4696
|
-
|
|
4697
|
-
approvalRules?: string;
|
|
4827
|
+
description?: string;
|
|
4698
4828
|
id?: string;
|
|
4829
|
+
name?: string;
|
|
4830
|
+
operationSystem?: string;
|
|
4699
4831
|
shareType?: string;
|
|
4832
|
+
updatedBy?: string;
|
|
4833
|
+
updatedDate?: string;
|
|
4700
4834
|
static names(): {
|
|
4701
4835
|
[key: string]: string;
|
|
4702
4836
|
};
|
|
@@ -4708,9 +4842,9 @@ export declare class RegisterDefaultPatchBaselineResponseBodyPatchBaseline exten
|
|
|
4708
4842
|
});
|
|
4709
4843
|
}
|
|
4710
4844
|
export declare class SearchInventoryRequestFilter extends $tea.Model {
|
|
4711
|
-
value?: string[];
|
|
4712
|
-
operator?: string;
|
|
4713
4845
|
name?: string;
|
|
4846
|
+
operator?: string;
|
|
4847
|
+
value?: string[];
|
|
4714
4848
|
static names(): {
|
|
4715
4849
|
[key: string]: string;
|
|
4716
4850
|
};
|
|
@@ -4723,8 +4857,8 @@ export declare class SearchInventoryRequestFilter extends $tea.Model {
|
|
|
4723
4857
|
}
|
|
4724
4858
|
export declare class SetServiceSettingsResponseBodyServiceSettings extends $tea.Model {
|
|
4725
4859
|
deliveryOssBucketName?: string;
|
|
4726
|
-
deliveryOssKeyPrefix?: string;
|
|
4727
4860
|
deliveryOssEnabled?: boolean;
|
|
4861
|
+
deliveryOssKeyPrefix?: string;
|
|
4728
4862
|
deliverySlsEnabled?: boolean;
|
|
4729
4863
|
deliverySlsProjectName?: string;
|
|
4730
4864
|
rdcEnterpriseId?: string;
|
|
@@ -4739,9 +4873,9 @@ export declare class SetServiceSettingsResponseBodyServiceSettings extends $tea.
|
|
|
4739
4873
|
});
|
|
4740
4874
|
}
|
|
4741
4875
|
export declare class StartExecutionResponseBodyExecutionCurrentTasks extends $tea.Model {
|
|
4876
|
+
taskAction?: string;
|
|
4742
4877
|
taskExecutionId?: string;
|
|
4743
4878
|
taskName?: string;
|
|
4744
|
-
taskAction?: string;
|
|
4745
4879
|
static names(): {
|
|
4746
4880
|
[key: string]: string;
|
|
4747
4881
|
};
|
|
@@ -4753,34 +4887,53 @@ export declare class StartExecutionResponseBodyExecutionCurrentTasks extends $te
|
|
|
4753
4887
|
});
|
|
4754
4888
|
}
|
|
4755
4889
|
export declare class StartExecutionResponseBodyExecution extends $tea.Model {
|
|
4756
|
-
|
|
4757
|
-
|
|
4890
|
+
counters?: {
|
|
4891
|
+
[key: string]: any;
|
|
4892
|
+
};
|
|
4893
|
+
createDate?: string;
|
|
4894
|
+
currentTasks?: StartExecutionResponseBodyExecutionCurrentTasks[];
|
|
4895
|
+
description?: string;
|
|
4758
4896
|
endDate?: string;
|
|
4759
4897
|
executedBy?: string;
|
|
4898
|
+
executionId?: string;
|
|
4760
4899
|
isParent?: boolean;
|
|
4900
|
+
loopMode?: string;
|
|
4901
|
+
mode?: string;
|
|
4902
|
+
outputs?: string;
|
|
4903
|
+
parameters?: string;
|
|
4904
|
+
parentExecutionId?: string;
|
|
4905
|
+
ramRole?: string;
|
|
4906
|
+
resourceGroupId?: string;
|
|
4907
|
+
safetyCheck?: string;
|
|
4908
|
+
startDate?: string;
|
|
4909
|
+
status?: string;
|
|
4910
|
+
statusMessage?: string;
|
|
4761
4911
|
tags?: {
|
|
4762
4912
|
[key: string]: any;
|
|
4763
4913
|
};
|
|
4764
|
-
|
|
4765
|
-
safetyCheck?: string;
|
|
4766
|
-
mode?: string;
|
|
4914
|
+
templateId?: string;
|
|
4767
4915
|
templateName?: string;
|
|
4768
|
-
createDate?: string;
|
|
4769
4916
|
templateVersion?: string;
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4917
|
+
updateDate?: string;
|
|
4918
|
+
static names(): {
|
|
4919
|
+
[key: string]: string;
|
|
4920
|
+
};
|
|
4921
|
+
static types(): {
|
|
4774
4922
|
[key: string]: any;
|
|
4775
4923
|
};
|
|
4776
|
-
|
|
4924
|
+
constructor(map?: {
|
|
4925
|
+
[key: string]: any;
|
|
4926
|
+
});
|
|
4927
|
+
}
|
|
4928
|
+
export declare class UpdateApplicationResponseBodyApplication extends $tea.Model {
|
|
4929
|
+
createdDate?: string;
|
|
4930
|
+
description?: string;
|
|
4931
|
+
name?: string;
|
|
4777
4932
|
resourceGroupId?: string;
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
loopMode?: string;
|
|
4783
|
-
currentTasks?: StartExecutionResponseBodyExecutionCurrentTasks[];
|
|
4933
|
+
tags?: {
|
|
4934
|
+
[key: string]: any;
|
|
4935
|
+
};
|
|
4936
|
+
updatedDate?: string;
|
|
4784
4937
|
static names(): {
|
|
4785
4938
|
[key: string]: string;
|
|
4786
4939
|
};
|
|
@@ -4792,16 +4945,14 @@ export declare class StartExecutionResponseBodyExecution extends $tea.Model {
|
|
|
4792
4945
|
});
|
|
4793
4946
|
}
|
|
4794
4947
|
export declare class UpdateApplicationGroupResponseBodyApplicationGroup extends $tea.Model {
|
|
4948
|
+
applicationName?: string;
|
|
4949
|
+
createdDate?: string;
|
|
4795
4950
|
deployRegionId?: string;
|
|
4796
4951
|
description?: string;
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
applicationName?: string;
|
|
4952
|
+
importTagKey?: string;
|
|
4953
|
+
importTagValue?: string;
|
|
4800
4954
|
name?: string;
|
|
4801
|
-
|
|
4802
|
-
createType?: string;
|
|
4803
|
-
scalingGroupId?: string;
|
|
4804
|
-
importClusterId?: string;
|
|
4955
|
+
updatedDate?: string;
|
|
4805
4956
|
static names(): {
|
|
4806
4957
|
[key: string]: string;
|
|
4807
4958
|
};
|
|
@@ -4813,19 +4964,19 @@ export declare class UpdateApplicationGroupResponseBodyApplicationGroup extends
|
|
|
4813
4964
|
});
|
|
4814
4965
|
}
|
|
4815
4966
|
export declare class UpdateParameterResponseBodyParameter extends $tea.Model {
|
|
4816
|
-
type?: string;
|
|
4817
|
-
updatedDate?: string;
|
|
4818
|
-
updatedBy?: string;
|
|
4819
|
-
tags?: string;
|
|
4820
|
-
description?: string;
|
|
4821
4967
|
constraints?: string;
|
|
4822
|
-
resourceGroupId?: string;
|
|
4823
4968
|
createdBy?: string;
|
|
4824
4969
|
createdDate?: string;
|
|
4825
|
-
|
|
4826
|
-
name?: string;
|
|
4970
|
+
description?: string;
|
|
4827
4971
|
id?: string;
|
|
4972
|
+
name?: string;
|
|
4973
|
+
parameterVersion?: number;
|
|
4974
|
+
resourceGroupId?: string;
|
|
4828
4975
|
shareType?: string;
|
|
4976
|
+
tags?: string;
|
|
4977
|
+
type?: string;
|
|
4978
|
+
updatedBy?: string;
|
|
4979
|
+
updatedDate?: string;
|
|
4829
4980
|
static names(): {
|
|
4830
4981
|
[key: string]: string;
|
|
4831
4982
|
};
|
|
@@ -4837,16 +4988,16 @@ export declare class UpdateParameterResponseBodyParameter extends $tea.Model {
|
|
|
4837
4988
|
});
|
|
4838
4989
|
}
|
|
4839
4990
|
export declare class UpdatePatchBaselineResponseBodyPatchBaseline extends $tea.Model {
|
|
4840
|
-
|
|
4841
|
-
description?: string;
|
|
4842
|
-
updatedDate?: string;
|
|
4843
|
-
updatedBy?: string;
|
|
4991
|
+
approvalRules?: string;
|
|
4844
4992
|
createdBy?: string;
|
|
4845
4993
|
createdDate?: string;
|
|
4846
|
-
|
|
4847
|
-
approvalRules?: string;
|
|
4994
|
+
description?: string;
|
|
4848
4995
|
id?: string;
|
|
4996
|
+
name?: string;
|
|
4997
|
+
operationSystem?: string;
|
|
4849
4998
|
shareType?: string;
|
|
4999
|
+
updatedBy?: string;
|
|
5000
|
+
updatedDate?: string;
|
|
4850
5001
|
static names(): {
|
|
4851
5002
|
[key: string]: string;
|
|
4852
5003
|
};
|
|
@@ -4858,20 +5009,20 @@ export declare class UpdatePatchBaselineResponseBodyPatchBaseline extends $tea.M
|
|
|
4858
5009
|
});
|
|
4859
5010
|
}
|
|
4860
5011
|
export declare class UpdateSecretParameterResponseBodyParameter extends $tea.Model {
|
|
4861
|
-
type?: string;
|
|
4862
|
-
updatedDate?: string;
|
|
4863
|
-
updatedBy?: string;
|
|
4864
|
-
keyId?: string;
|
|
4865
|
-
tags?: string;
|
|
4866
|
-
description?: string;
|
|
4867
5012
|
constraints?: string;
|
|
4868
|
-
resourceGroupId?: string;
|
|
4869
5013
|
createdBy?: string;
|
|
4870
5014
|
createdDate?: string;
|
|
4871
|
-
|
|
4872
|
-
name?: string;
|
|
5015
|
+
description?: string;
|
|
4873
5016
|
id?: string;
|
|
5017
|
+
keyId?: string;
|
|
5018
|
+
name?: string;
|
|
5019
|
+
parameterVersion?: number;
|
|
5020
|
+
resourceGroupId?: string;
|
|
4874
5021
|
shareType?: string;
|
|
5022
|
+
tags?: string;
|
|
5023
|
+
type?: string;
|
|
5024
|
+
updatedBy?: string;
|
|
5025
|
+
updatedDate?: string;
|
|
4875
5026
|
static names(): {
|
|
4876
5027
|
[key: string]: string;
|
|
4877
5028
|
};
|
|
@@ -4883,22 +5034,22 @@ export declare class UpdateSecretParameterResponseBodyParameter extends $tea.Mod
|
|
|
4883
5034
|
});
|
|
4884
5035
|
}
|
|
4885
5036
|
export declare class UpdateStateConfigurationResponseBodyStateConfiguration extends $tea.Model {
|
|
4886
|
-
|
|
5037
|
+
configureMode?: string;
|
|
4887
5038
|
createTime?: string;
|
|
4888
|
-
|
|
5039
|
+
description?: string;
|
|
5040
|
+
parameters?: string;
|
|
5041
|
+
resourceGroupId?: string;
|
|
5042
|
+
scheduleExpression?: string;
|
|
5043
|
+
scheduleType?: string;
|
|
5044
|
+
stateConfigurationId?: string;
|
|
4889
5045
|
tags?: {
|
|
4890
5046
|
[key: string]: any;
|
|
4891
5047
|
};
|
|
4892
|
-
|
|
4893
|
-
|
|
5048
|
+
targets?: string;
|
|
5049
|
+
templateId?: string;
|
|
4894
5050
|
templateName?: string;
|
|
4895
5051
|
templateVersion?: string;
|
|
4896
|
-
|
|
4897
|
-
scheduleType?: string;
|
|
4898
|
-
parameters?: string;
|
|
4899
|
-
description?: string;
|
|
4900
|
-
resourceGroupId?: string;
|
|
4901
|
-
templateId?: string;
|
|
5052
|
+
updateTime?: string;
|
|
4902
5053
|
static names(): {
|
|
4903
5054
|
[key: string]: string;
|
|
4904
5055
|
};
|
|
@@ -4910,22 +5061,22 @@ export declare class UpdateStateConfigurationResponseBodyStateConfiguration exte
|
|
|
4910
5061
|
});
|
|
4911
5062
|
}
|
|
4912
5063
|
export declare class UpdateTemplateResponseBodyTemplate extends $tea.Model {
|
|
5064
|
+
createdBy?: string;
|
|
5065
|
+
createdDate?: string;
|
|
5066
|
+
description?: string;
|
|
5067
|
+
hasTrigger?: boolean;
|
|
4913
5068
|
hash?: string;
|
|
4914
|
-
|
|
4915
|
-
|
|
5069
|
+
resourceGroupId?: string;
|
|
5070
|
+
shareType?: string;
|
|
4916
5071
|
tags?: {
|
|
4917
5072
|
[key: string]: any;
|
|
4918
5073
|
};
|
|
4919
|
-
templateName?: string;
|
|
4920
|
-
templateVersion?: string;
|
|
4921
5074
|
templateFormat?: string;
|
|
4922
|
-
description?: string;
|
|
4923
|
-
resourceGroupId?: string;
|
|
4924
|
-
createdBy?: string;
|
|
4925
|
-
createdDate?: string;
|
|
4926
5075
|
templateId?: string;
|
|
4927
|
-
|
|
4928
|
-
|
|
5076
|
+
templateName?: string;
|
|
5077
|
+
templateVersion?: string;
|
|
5078
|
+
updatedBy?: string;
|
|
5079
|
+
updatedDate?: string;
|
|
4929
5080
|
static names(): {
|
|
4930
5081
|
[key: string]: string;
|
|
4931
5082
|
};
|
|
@@ -4937,11 +5088,11 @@ export declare class UpdateTemplateResponseBodyTemplate extends $tea.Model {
|
|
|
4937
5088
|
});
|
|
4938
5089
|
}
|
|
4939
5090
|
export declare class ValidateTemplateContentResponseBodyTasks extends $tea.Model {
|
|
4940
|
-
outputs?: string;
|
|
4941
|
-
type?: string;
|
|
4942
5091
|
description?: string;
|
|
4943
5092
|
name?: string;
|
|
5093
|
+
outputs?: string;
|
|
4944
5094
|
properties?: string;
|
|
5095
|
+
type?: string;
|
|
4945
5096
|
static names(): {
|
|
4946
5097
|
[key: string]: string;
|
|
4947
5098
|
};
|
|
@@ -4961,7 +5112,9 @@ export default class Client extends OpenApi {
|
|
|
4961
5112
|
cancelExecution(request: CancelExecutionRequest): Promise<CancelExecutionResponse>;
|
|
4962
5113
|
changeResourceGroupWithOptions(request: ChangeResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ChangeResourceGroupResponse>;
|
|
4963
5114
|
changeResourceGroup(request: ChangeResourceGroupRequest): Promise<ChangeResourceGroupResponse>;
|
|
4964
|
-
|
|
5115
|
+
continueDeployApplicationGroupWithOptions(request: ContinueDeployApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<ContinueDeployApplicationGroupResponse>;
|
|
5116
|
+
continueDeployApplicationGroup(request: ContinueDeployApplicationGroupRequest): Promise<ContinueDeployApplicationGroupResponse>;
|
|
5117
|
+
createApplicationWithOptions(tmpReq: CreateApplicationRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationResponse>;
|
|
4965
5118
|
createApplication(request: CreateApplicationRequest): Promise<CreateApplicationResponse>;
|
|
4966
5119
|
createApplicationGroupWithOptions(request: CreateApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationGroupResponse>;
|
|
4967
5120
|
createApplicationGroup(request: CreateApplicationGroupRequest): Promise<CreateApplicationGroupResponse>;
|
|
@@ -4969,7 +5122,7 @@ export default class Client extends OpenApi {
|
|
|
4969
5122
|
createParameter(request: CreateParameterRequest): Promise<CreateParameterResponse>;
|
|
4970
5123
|
createPatchBaselineWithOptions(request: CreatePatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<CreatePatchBaselineResponse>;
|
|
4971
5124
|
createPatchBaseline(request: CreatePatchBaselineRequest): Promise<CreatePatchBaselineResponse>;
|
|
4972
|
-
createSecretParameterWithOptions(
|
|
5125
|
+
createSecretParameterWithOptions(tmpReq: CreateSecretParameterRequest, runtime: $Util.RuntimeOptions): Promise<CreateSecretParameterResponse>;
|
|
4973
5126
|
createSecretParameter(request: CreateSecretParameterRequest): Promise<CreateSecretParameterResponse>;
|
|
4974
5127
|
createStateConfigurationWithOptions(tmpReq: CreateStateConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<CreateStateConfigurationResponse>;
|
|
4975
5128
|
createStateConfiguration(request: CreateStateConfigurationRequest): Promise<CreateStateConfigurationResponse>;
|
|
@@ -4993,6 +5146,8 @@ export default class Client extends OpenApi {
|
|
|
4993
5146
|
deleteTemplate(request: DeleteTemplateRequest): Promise<DeleteTemplateResponse>;
|
|
4994
5147
|
deleteTemplatesWithOptions(request: DeleteTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTemplatesResponse>;
|
|
4995
5148
|
deleteTemplates(request: DeleteTemplatesRequest): Promise<DeleteTemplatesResponse>;
|
|
5149
|
+
deployApplicationGroupWithOptions(request: DeployApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeployApplicationGroupResponse>;
|
|
5150
|
+
deployApplicationGroup(request: DeployApplicationGroupRequest): Promise<DeployApplicationGroupResponse>;
|
|
4996
5151
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
4997
5152
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
4998
5153
|
generateExecutionPolicyWithOptions(request: GenerateExecutionPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GenerateExecutionPolicyResponse>;
|
|
@@ -5027,7 +5182,7 @@ export default class Client extends OpenApi {
|
|
|
5027
5182
|
listActions(request: ListActionsRequest): Promise<ListActionsResponse>;
|
|
5028
5183
|
listApplicationGroupsWithOptions(request: ListApplicationGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationGroupsResponse>;
|
|
5029
5184
|
listApplicationGroups(request: ListApplicationGroupsRequest): Promise<ListApplicationGroupsResponse>;
|
|
5030
|
-
listApplicationsWithOptions(
|
|
5185
|
+
listApplicationsWithOptions(tmpReq: ListApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsResponse>;
|
|
5031
5186
|
listApplications(request: ListApplicationsRequest): Promise<ListApplicationsResponse>;
|
|
5032
5187
|
listExecutionLogsWithOptions(request: ListExecutionLogsRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutionLogsResponse>;
|
|
5033
5188
|
listExecutionLogs(request: ListExecutionLogsRequest): Promise<ListExecutionLogsResponse>;
|
|
@@ -5035,26 +5190,24 @@ export default class Client extends OpenApi {
|
|
|
5035
5190
|
listExecutionRiskyTasks(request: ListExecutionRiskyTasksRequest): Promise<ListExecutionRiskyTasksResponse>;
|
|
5036
5191
|
listExecutionsWithOptions(tmpReq: ListExecutionsRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutionsResponse>;
|
|
5037
5192
|
listExecutions(request: ListExecutionsRequest): Promise<ListExecutionsResponse>;
|
|
5038
|
-
listInstancePatchesWithOptions(request: ListInstancePatchesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancePatchesResponse>;
|
|
5039
|
-
listInstancePatches(request: ListInstancePatchesRequest): Promise<ListInstancePatchesResponse>;
|
|
5040
5193
|
listInstancePatchStatesWithOptions(request: ListInstancePatchStatesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancePatchStatesResponse>;
|
|
5041
5194
|
listInstancePatchStates(request: ListInstancePatchStatesRequest): Promise<ListInstancePatchStatesResponse>;
|
|
5042
|
-
|
|
5043
|
-
|
|
5195
|
+
listInstancePatchesWithOptions(request: ListInstancePatchesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancePatchesResponse>;
|
|
5196
|
+
listInstancePatches(request: ListInstancePatchesRequest): Promise<ListInstancePatchesResponse>;
|
|
5044
5197
|
listInventoryEntriesWithOptions(request: ListInventoryEntriesRequest, runtime: $Util.RuntimeOptions): Promise<ListInventoryEntriesResponse>;
|
|
5045
5198
|
listInventoryEntries(request: ListInventoryEntriesRequest): Promise<ListInventoryEntriesResponse>;
|
|
5046
|
-
listParametersWithOptions(tmpReq: ListParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListParametersResponse>;
|
|
5047
|
-
listParameters(request: ListParametersRequest): Promise<ListParametersResponse>;
|
|
5048
5199
|
listParameterVersionsWithOptions(request: ListParameterVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListParameterVersionsResponse>;
|
|
5049
5200
|
listParameterVersions(request: ListParameterVersionsRequest): Promise<ListParameterVersionsResponse>;
|
|
5201
|
+
listParametersWithOptions(tmpReq: ListParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListParametersResponse>;
|
|
5202
|
+
listParameters(request: ListParametersRequest): Promise<ListParametersResponse>;
|
|
5050
5203
|
listPatchBaselinesWithOptions(request: ListPatchBaselinesRequest, runtime: $Util.RuntimeOptions): Promise<ListPatchBaselinesResponse>;
|
|
5051
5204
|
listPatchBaselines(request: ListPatchBaselinesRequest): Promise<ListPatchBaselinesResponse>;
|
|
5052
5205
|
listResourceExecutionStatusWithOptions(request: ListResourceExecutionStatusRequest, runtime: $Util.RuntimeOptions): Promise<ListResourceExecutionStatusResponse>;
|
|
5053
5206
|
listResourceExecutionStatus(request: ListResourceExecutionStatusRequest): Promise<ListResourceExecutionStatusResponse>;
|
|
5054
|
-
listSecretParametersWithOptions(tmpReq: ListSecretParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListSecretParametersResponse>;
|
|
5055
|
-
listSecretParameters(request: ListSecretParametersRequest): Promise<ListSecretParametersResponse>;
|
|
5056
5207
|
listSecretParameterVersionsWithOptions(request: ListSecretParameterVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListSecretParameterVersionsResponse>;
|
|
5057
5208
|
listSecretParameterVersions(request: ListSecretParameterVersionsRequest): Promise<ListSecretParameterVersionsResponse>;
|
|
5209
|
+
listSecretParametersWithOptions(tmpReq: ListSecretParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListSecretParametersResponse>;
|
|
5210
|
+
listSecretParameters(request: ListSecretParametersRequest): Promise<ListSecretParametersResponse>;
|
|
5058
5211
|
listStateConfigurationsWithOptions(tmpReq: ListStateConfigurationsRequest, runtime: $Util.RuntimeOptions): Promise<ListStateConfigurationsResponse>;
|
|
5059
5212
|
listStateConfigurations(request: ListStateConfigurationsRequest): Promise<ListStateConfigurationsResponse>;
|
|
5060
5213
|
listTagKeysWithOptions(request: ListTagKeysRequest, runtime: $Util.RuntimeOptions): Promise<ListTagKeysResponse>;
|
|
@@ -5065,10 +5218,10 @@ export default class Client extends OpenApi {
|
|
|
5065
5218
|
listTagValues(request: ListTagValuesRequest): Promise<ListTagValuesResponse>;
|
|
5066
5219
|
listTaskExecutionsWithOptions(request: ListTaskExecutionsRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskExecutionsResponse>;
|
|
5067
5220
|
listTaskExecutions(request: ListTaskExecutionsRequest): Promise<ListTaskExecutionsResponse>;
|
|
5068
|
-
listTemplatesWithOptions(tmpReq: ListTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<ListTemplatesResponse>;
|
|
5069
|
-
listTemplates(request: ListTemplatesRequest): Promise<ListTemplatesResponse>;
|
|
5070
5221
|
listTemplateVersionsWithOptions(request: ListTemplateVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListTemplateVersionsResponse>;
|
|
5071
5222
|
listTemplateVersions(request: ListTemplateVersionsRequest): Promise<ListTemplateVersionsResponse>;
|
|
5223
|
+
listTemplatesWithOptions(tmpReq: ListTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<ListTemplatesResponse>;
|
|
5224
|
+
listTemplates(request: ListTemplatesRequest): Promise<ListTemplatesResponse>;
|
|
5072
5225
|
notifyExecutionWithOptions(request: NotifyExecutionRequest, runtime: $Util.RuntimeOptions): Promise<NotifyExecutionResponse>;
|
|
5073
5226
|
notifyExecution(request: NotifyExecutionRequest): Promise<NotifyExecutionResponse>;
|
|
5074
5227
|
registerDefaultPatchBaselineWithOptions(request: RegisterDefaultPatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<RegisterDefaultPatchBaselineResponse>;
|
|
@@ -5085,12 +5238,12 @@ export default class Client extends OpenApi {
|
|
|
5085
5238
|
triggerExecution(request: TriggerExecutionRequest): Promise<TriggerExecutionResponse>;
|
|
5086
5239
|
untagResourcesWithOptions(tmpReq: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
5087
5240
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
5241
|
+
updateApplicationWithOptions(tmpReq: UpdateApplicationRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationResponse>;
|
|
5242
|
+
updateApplication(request: UpdateApplicationRequest): Promise<UpdateApplicationResponse>;
|
|
5088
5243
|
updateApplicationGroupWithOptions(request: UpdateApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationGroupResponse>;
|
|
5089
5244
|
updateApplicationGroup(request: UpdateApplicationGroupRequest): Promise<UpdateApplicationGroupResponse>;
|
|
5090
5245
|
updateExecutionWithOptions(request: UpdateExecutionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateExecutionResponse>;
|
|
5091
5246
|
updateExecution(request: UpdateExecutionRequest): Promise<UpdateExecutionResponse>;
|
|
5092
|
-
updateInstanceInformationWithOptions(request: UpdateInstanceInformationRequest, runtime: $Util.RuntimeOptions): Promise<UpdateInstanceInformationResponse>;
|
|
5093
|
-
updateInstanceInformation(request: UpdateInstanceInformationRequest): Promise<UpdateInstanceInformationResponse>;
|
|
5094
5247
|
updateParameterWithOptions(request: UpdateParameterRequest, runtime: $Util.RuntimeOptions): Promise<UpdateParameterResponse>;
|
|
5095
5248
|
updateParameter(request: UpdateParameterRequest): Promise<UpdateParameterResponse>;
|
|
5096
5249
|
updatePatchBaselineWithOptions(request: UpdatePatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePatchBaselineResponse>;
|