@alicloud/oos20190601 1.0.1 → 1.0.2
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 +1097 -974
- package/dist/client.js +4285 -1982
- package/dist/client.js.map +1 -1
- package/package.json +5 -5
- package/src/client.ts +5611 -2824
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,16 @@ export declare class CreatePatchBaselineResponse extends $tea.Model {
|
|
|
298
363
|
});
|
|
299
364
|
}
|
|
300
365
|
export declare class CreateSecretParameterRequest extends $tea.Model {
|
|
301
|
-
regionId?: string;
|
|
302
|
-
name?: string;
|
|
303
|
-
type?: string;
|
|
304
|
-
value?: string;
|
|
305
|
-
description?: string;
|
|
306
|
-
keyId?: string;
|
|
307
366
|
clientToken?: string;
|
|
308
367
|
constraints?: string;
|
|
309
|
-
|
|
368
|
+
description?: string;
|
|
369
|
+
keyId?: string;
|
|
370
|
+
name?: string;
|
|
371
|
+
regionId?: string;
|
|
310
372
|
resourceGroupId?: string;
|
|
373
|
+
tags?: string;
|
|
374
|
+
type?: string;
|
|
375
|
+
value?: string;
|
|
311
376
|
static names(): {
|
|
312
377
|
[key: string]: string;
|
|
313
378
|
};
|
|
@@ -319,8 +384,8 @@ export declare class CreateSecretParameterRequest extends $tea.Model {
|
|
|
319
384
|
});
|
|
320
385
|
}
|
|
321
386
|
export declare class CreateSecretParameterResponseBody extends $tea.Model {
|
|
322
|
-
requestId?: string;
|
|
323
387
|
parameter?: CreateSecretParameterResponseBodyParameter;
|
|
388
|
+
requestId?: string;
|
|
324
389
|
static names(): {
|
|
325
390
|
[key: string]: string;
|
|
326
391
|
};
|
|
@@ -335,6 +400,7 @@ export declare class CreateSecretParameterResponse extends $tea.Model {
|
|
|
335
400
|
headers: {
|
|
336
401
|
[key: string]: string;
|
|
337
402
|
};
|
|
403
|
+
statusCode: number;
|
|
338
404
|
body: CreateSecretParameterResponseBody;
|
|
339
405
|
static names(): {
|
|
340
406
|
[key: string]: string;
|
|
@@ -347,20 +413,20 @@ export declare class CreateSecretParameterResponse extends $tea.Model {
|
|
|
347
413
|
});
|
|
348
414
|
}
|
|
349
415
|
export declare class CreateStateConfigurationRequest extends $tea.Model {
|
|
350
|
-
|
|
416
|
+
clientToken?: string;
|
|
417
|
+
configureMode?: string;
|
|
351
418
|
description?: string;
|
|
352
|
-
templateName?: string;
|
|
353
|
-
templateVersion?: string;
|
|
354
419
|
parameters?: string;
|
|
355
|
-
|
|
356
|
-
|
|
420
|
+
regionId?: string;
|
|
421
|
+
resourceGroupId?: string;
|
|
357
422
|
scheduleExpression?: string;
|
|
358
|
-
|
|
359
|
-
clientToken?: string;
|
|
423
|
+
scheduleType?: string;
|
|
360
424
|
tags?: {
|
|
361
425
|
[key: string]: any;
|
|
362
426
|
};
|
|
363
|
-
|
|
427
|
+
targets?: string;
|
|
428
|
+
templateName?: string;
|
|
429
|
+
templateVersion?: string;
|
|
364
430
|
static names(): {
|
|
365
431
|
[key: string]: string;
|
|
366
432
|
};
|
|
@@ -372,18 +438,18 @@ export declare class CreateStateConfigurationRequest extends $tea.Model {
|
|
|
372
438
|
});
|
|
373
439
|
}
|
|
374
440
|
export declare class CreateStateConfigurationShrinkRequest extends $tea.Model {
|
|
375
|
-
|
|
441
|
+
clientToken?: string;
|
|
442
|
+
configureMode?: string;
|
|
376
443
|
description?: string;
|
|
377
|
-
templateName?: string;
|
|
378
|
-
templateVersion?: string;
|
|
379
444
|
parameters?: string;
|
|
380
|
-
|
|
381
|
-
|
|
445
|
+
regionId?: string;
|
|
446
|
+
resourceGroupId?: string;
|
|
382
447
|
scheduleExpression?: string;
|
|
383
|
-
|
|
384
|
-
clientToken?: string;
|
|
448
|
+
scheduleType?: string;
|
|
385
449
|
tagsShrink?: string;
|
|
386
|
-
|
|
450
|
+
targets?: string;
|
|
451
|
+
templateName?: string;
|
|
452
|
+
templateVersion?: string;
|
|
387
453
|
static names(): {
|
|
388
454
|
[key: string]: string;
|
|
389
455
|
};
|
|
@@ -411,6 +477,7 @@ export declare class CreateStateConfigurationResponse extends $tea.Model {
|
|
|
411
477
|
headers: {
|
|
412
478
|
[key: string]: string;
|
|
413
479
|
};
|
|
480
|
+
statusCode: number;
|
|
414
481
|
body: CreateStateConfigurationResponseBody;
|
|
415
482
|
static names(): {
|
|
416
483
|
[key: string]: string;
|
|
@@ -423,14 +490,14 @@ export declare class CreateStateConfigurationResponse extends $tea.Model {
|
|
|
423
490
|
});
|
|
424
491
|
}
|
|
425
492
|
export declare class CreateTemplateRequest extends $tea.Model {
|
|
426
|
-
regionId?: string;
|
|
427
|
-
templateName?: string;
|
|
428
493
|
content?: string;
|
|
494
|
+
regionId?: string;
|
|
495
|
+
resourceGroupId?: string;
|
|
429
496
|
tags?: {
|
|
430
497
|
[key: string]: any;
|
|
431
498
|
};
|
|
499
|
+
templateName?: string;
|
|
432
500
|
versionName?: string;
|
|
433
|
-
resourceGroupId?: string;
|
|
434
501
|
static names(): {
|
|
435
502
|
[key: string]: string;
|
|
436
503
|
};
|
|
@@ -442,12 +509,12 @@ export declare class CreateTemplateRequest extends $tea.Model {
|
|
|
442
509
|
});
|
|
443
510
|
}
|
|
444
511
|
export declare class CreateTemplateShrinkRequest extends $tea.Model {
|
|
445
|
-
regionId?: string;
|
|
446
|
-
templateName?: string;
|
|
447
512
|
content?: string;
|
|
513
|
+
regionId?: string;
|
|
514
|
+
resourceGroupId?: string;
|
|
448
515
|
tagsShrink?: string;
|
|
516
|
+
templateName?: string;
|
|
449
517
|
versionName?: string;
|
|
450
|
-
resourceGroupId?: string;
|
|
451
518
|
static names(): {
|
|
452
519
|
[key: string]: string;
|
|
453
520
|
};
|
|
@@ -459,9 +526,9 @@ export declare class CreateTemplateShrinkRequest extends $tea.Model {
|
|
|
459
526
|
});
|
|
460
527
|
}
|
|
461
528
|
export declare class CreateTemplateResponseBody extends $tea.Model {
|
|
462
|
-
templateType?: string;
|
|
463
529
|
requestId?: string;
|
|
464
530
|
template?: CreateTemplateResponseBodyTemplate;
|
|
531
|
+
templateType?: string;
|
|
465
532
|
static names(): {
|
|
466
533
|
[key: string]: string;
|
|
467
534
|
};
|
|
@@ -476,6 +543,7 @@ export declare class CreateTemplateResponse extends $tea.Model {
|
|
|
476
543
|
headers: {
|
|
477
544
|
[key: string]: string;
|
|
478
545
|
};
|
|
546
|
+
statusCode: number;
|
|
479
547
|
body: CreateTemplateResponseBody;
|
|
480
548
|
static names(): {
|
|
481
549
|
[key: string]: string;
|
|
@@ -488,8 +556,8 @@ export declare class CreateTemplateResponse extends $tea.Model {
|
|
|
488
556
|
});
|
|
489
557
|
}
|
|
490
558
|
export declare class DeleteApplicationRequest extends $tea.Model {
|
|
491
|
-
regionId?: string;
|
|
492
559
|
name?: string;
|
|
560
|
+
regionId?: string;
|
|
493
561
|
static names(): {
|
|
494
562
|
[key: string]: string;
|
|
495
563
|
};
|
|
@@ -516,6 +584,7 @@ export declare class DeleteApplicationResponse extends $tea.Model {
|
|
|
516
584
|
headers: {
|
|
517
585
|
[key: string]: string;
|
|
518
586
|
};
|
|
587
|
+
statusCode: number;
|
|
519
588
|
body: DeleteApplicationResponseBody;
|
|
520
589
|
static names(): {
|
|
521
590
|
[key: string]: string;
|
|
@@ -528,8 +597,9 @@ export declare class DeleteApplicationResponse extends $tea.Model {
|
|
|
528
597
|
});
|
|
529
598
|
}
|
|
530
599
|
export declare class DeleteApplicationGroupRequest extends $tea.Model {
|
|
531
|
-
|
|
600
|
+
applicationName?: string;
|
|
532
601
|
name?: string;
|
|
602
|
+
regionId?: string;
|
|
533
603
|
static names(): {
|
|
534
604
|
[key: string]: string;
|
|
535
605
|
};
|
|
@@ -556,6 +626,7 @@ export declare class DeleteApplicationGroupResponse extends $tea.Model {
|
|
|
556
626
|
headers: {
|
|
557
627
|
[key: string]: string;
|
|
558
628
|
};
|
|
629
|
+
statusCode: number;
|
|
559
630
|
body: DeleteApplicationGroupResponseBody;
|
|
560
631
|
static names(): {
|
|
561
632
|
[key: string]: string;
|
|
@@ -568,8 +639,8 @@ export declare class DeleteApplicationGroupResponse extends $tea.Model {
|
|
|
568
639
|
});
|
|
569
640
|
}
|
|
570
641
|
export declare class DeleteExecutionsRequest extends $tea.Model {
|
|
571
|
-
regionId?: string;
|
|
572
642
|
executionIds?: string;
|
|
643
|
+
regionId?: string;
|
|
573
644
|
static names(): {
|
|
574
645
|
[key: string]: string;
|
|
575
646
|
};
|
|
@@ -596,6 +667,7 @@ export declare class DeleteExecutionsResponse extends $tea.Model {
|
|
|
596
667
|
headers: {
|
|
597
668
|
[key: string]: string;
|
|
598
669
|
};
|
|
670
|
+
statusCode: number;
|
|
599
671
|
body: DeleteExecutionsResponseBody;
|
|
600
672
|
static names(): {
|
|
601
673
|
[key: string]: string;
|
|
@@ -608,8 +680,8 @@ export declare class DeleteExecutionsResponse extends $tea.Model {
|
|
|
608
680
|
});
|
|
609
681
|
}
|
|
610
682
|
export declare class DeleteParameterRequest extends $tea.Model {
|
|
611
|
-
regionId?: string;
|
|
612
683
|
name?: string;
|
|
684
|
+
regionId?: string;
|
|
613
685
|
static names(): {
|
|
614
686
|
[key: string]: string;
|
|
615
687
|
};
|
|
@@ -636,6 +708,7 @@ export declare class DeleteParameterResponse extends $tea.Model {
|
|
|
636
708
|
headers: {
|
|
637
709
|
[key: string]: string;
|
|
638
710
|
};
|
|
711
|
+
statusCode: number;
|
|
639
712
|
body: DeleteParameterResponseBody;
|
|
640
713
|
static names(): {
|
|
641
714
|
[key: string]: string;
|
|
@@ -648,8 +721,8 @@ export declare class DeleteParameterResponse extends $tea.Model {
|
|
|
648
721
|
});
|
|
649
722
|
}
|
|
650
723
|
export declare class DeletePatchBaselineRequest extends $tea.Model {
|
|
651
|
-
regionId?: string;
|
|
652
724
|
name?: string;
|
|
725
|
+
regionId?: string;
|
|
653
726
|
static names(): {
|
|
654
727
|
[key: string]: string;
|
|
655
728
|
};
|
|
@@ -676,6 +749,7 @@ export declare class DeletePatchBaselineResponse extends $tea.Model {
|
|
|
676
749
|
headers: {
|
|
677
750
|
[key: string]: string;
|
|
678
751
|
};
|
|
752
|
+
statusCode: number;
|
|
679
753
|
body: DeletePatchBaselineResponseBody;
|
|
680
754
|
static names(): {
|
|
681
755
|
[key: string]: string;
|
|
@@ -688,8 +762,8 @@ export declare class DeletePatchBaselineResponse extends $tea.Model {
|
|
|
688
762
|
});
|
|
689
763
|
}
|
|
690
764
|
export declare class DeleteSecretParameterRequest extends $tea.Model {
|
|
691
|
-
regionId?: string;
|
|
692
765
|
name?: string;
|
|
766
|
+
regionId?: string;
|
|
693
767
|
static names(): {
|
|
694
768
|
[key: string]: string;
|
|
695
769
|
};
|
|
@@ -716,6 +790,7 @@ export declare class DeleteSecretParameterResponse extends $tea.Model {
|
|
|
716
790
|
headers: {
|
|
717
791
|
[key: string]: string;
|
|
718
792
|
};
|
|
793
|
+
statusCode: number;
|
|
719
794
|
body: DeleteSecretParameterResponseBody;
|
|
720
795
|
static names(): {
|
|
721
796
|
[key: string]: string;
|
|
@@ -728,9 +803,9 @@ export declare class DeleteSecretParameterResponse extends $tea.Model {
|
|
|
728
803
|
});
|
|
729
804
|
}
|
|
730
805
|
export declare class DeleteStateConfigurationsRequest extends $tea.Model {
|
|
806
|
+
clientToken?: string;
|
|
731
807
|
regionId?: string;
|
|
732
808
|
stateConfigurationIds?: string;
|
|
733
|
-
clientToken?: string;
|
|
734
809
|
static names(): {
|
|
735
810
|
[key: string]: string;
|
|
736
811
|
};
|
|
@@ -757,6 +832,7 @@ export declare class DeleteStateConfigurationsResponse extends $tea.Model {
|
|
|
757
832
|
headers: {
|
|
758
833
|
[key: string]: string;
|
|
759
834
|
};
|
|
835
|
+
statusCode: number;
|
|
760
836
|
body: DeleteStateConfigurationsResponseBody;
|
|
761
837
|
static names(): {
|
|
762
838
|
[key: string]: string;
|
|
@@ -769,9 +845,9 @@ export declare class DeleteStateConfigurationsResponse extends $tea.Model {
|
|
|
769
845
|
});
|
|
770
846
|
}
|
|
771
847
|
export declare class DeleteTemplateRequest extends $tea.Model {
|
|
848
|
+
autoDeleteExecutions?: boolean;
|
|
772
849
|
regionId?: string;
|
|
773
850
|
templateName?: string;
|
|
774
|
-
autoDeleteExecutions?: boolean;
|
|
775
851
|
static names(): {
|
|
776
852
|
[key: string]: string;
|
|
777
853
|
};
|
|
@@ -798,6 +874,7 @@ export declare class DeleteTemplateResponse extends $tea.Model {
|
|
|
798
874
|
headers: {
|
|
799
875
|
[key: string]: string;
|
|
800
876
|
};
|
|
877
|
+
statusCode: number;
|
|
801
878
|
body: DeleteTemplateResponseBody;
|
|
802
879
|
static names(): {
|
|
803
880
|
[key: string]: string;
|
|
@@ -810,9 +887,9 @@ export declare class DeleteTemplateResponse extends $tea.Model {
|
|
|
810
887
|
});
|
|
811
888
|
}
|
|
812
889
|
export declare class DeleteTemplatesRequest extends $tea.Model {
|
|
890
|
+
autoDeleteExecutions?: boolean;
|
|
813
891
|
regionId?: string;
|
|
814
892
|
templateNames?: string;
|
|
815
|
-
autoDeleteExecutions?: boolean;
|
|
816
893
|
static names(): {
|
|
817
894
|
[key: string]: string;
|
|
818
895
|
};
|
|
@@ -839,6 +916,7 @@ export declare class DeleteTemplatesResponse extends $tea.Model {
|
|
|
839
916
|
headers: {
|
|
840
917
|
[key: string]: string;
|
|
841
918
|
};
|
|
919
|
+
statusCode: number;
|
|
842
920
|
body: DeleteTemplatesResponseBody;
|
|
843
921
|
static names(): {
|
|
844
922
|
[key: string]: string;
|
|
@@ -850,9 +928,52 @@ export declare class DeleteTemplatesResponse extends $tea.Model {
|
|
|
850
928
|
[key: string]: any;
|
|
851
929
|
});
|
|
852
930
|
}
|
|
853
|
-
export declare class
|
|
931
|
+
export declare class DeployApplicationGroupRequest extends $tea.Model {
|
|
932
|
+
applicationName?: string;
|
|
933
|
+
deployParameters?: string;
|
|
934
|
+
name?: string;
|
|
854
935
|
regionId?: string;
|
|
936
|
+
static names(): {
|
|
937
|
+
[key: string]: string;
|
|
938
|
+
};
|
|
939
|
+
static types(): {
|
|
940
|
+
[key: string]: any;
|
|
941
|
+
};
|
|
942
|
+
constructor(map?: {
|
|
943
|
+
[key: string]: any;
|
|
944
|
+
});
|
|
945
|
+
}
|
|
946
|
+
export declare class DeployApplicationGroupResponseBody extends $tea.Model {
|
|
947
|
+
requestId?: string;
|
|
948
|
+
static names(): {
|
|
949
|
+
[key: string]: string;
|
|
950
|
+
};
|
|
951
|
+
static types(): {
|
|
952
|
+
[key: string]: any;
|
|
953
|
+
};
|
|
954
|
+
constructor(map?: {
|
|
955
|
+
[key: string]: any;
|
|
956
|
+
});
|
|
957
|
+
}
|
|
958
|
+
export declare class DeployApplicationGroupResponse extends $tea.Model {
|
|
959
|
+
headers: {
|
|
960
|
+
[key: string]: string;
|
|
961
|
+
};
|
|
962
|
+
statusCode: number;
|
|
963
|
+
body: DeployApplicationGroupResponseBody;
|
|
964
|
+
static names(): {
|
|
965
|
+
[key: string]: string;
|
|
966
|
+
};
|
|
967
|
+
static types(): {
|
|
968
|
+
[key: string]: any;
|
|
969
|
+
};
|
|
970
|
+
constructor(map?: {
|
|
971
|
+
[key: string]: any;
|
|
972
|
+
});
|
|
973
|
+
}
|
|
974
|
+
export declare class DescribeRegionsRequest extends $tea.Model {
|
|
855
975
|
acceptLanguage?: string;
|
|
976
|
+
regionId?: string;
|
|
856
977
|
static names(): {
|
|
857
978
|
[key: string]: string;
|
|
858
979
|
};
|
|
@@ -864,8 +985,8 @@ export declare class DescribeRegionsRequest extends $tea.Model {
|
|
|
864
985
|
});
|
|
865
986
|
}
|
|
866
987
|
export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
867
|
-
requestId?: string;
|
|
868
988
|
regions?: DescribeRegionsResponseBodyRegions[];
|
|
989
|
+
requestId?: string;
|
|
869
990
|
static names(): {
|
|
870
991
|
[key: string]: string;
|
|
871
992
|
};
|
|
@@ -880,6 +1001,7 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
880
1001
|
headers: {
|
|
881
1002
|
[key: string]: string;
|
|
882
1003
|
};
|
|
1004
|
+
statusCode: number;
|
|
883
1005
|
body: DescribeRegionsResponseBody;
|
|
884
1006
|
static names(): {
|
|
885
1007
|
[key: string]: string;
|
|
@@ -922,6 +1044,7 @@ export declare class GenerateExecutionPolicyResponse extends $tea.Model {
|
|
|
922
1044
|
headers: {
|
|
923
1045
|
[key: string]: string;
|
|
924
1046
|
};
|
|
1047
|
+
statusCode: number;
|
|
925
1048
|
body: GenerateExecutionPolicyResponseBody;
|
|
926
1049
|
static names(): {
|
|
927
1050
|
[key: string]: string;
|
|
@@ -934,8 +1057,8 @@ export declare class GenerateExecutionPolicyResponse extends $tea.Model {
|
|
|
934
1057
|
});
|
|
935
1058
|
}
|
|
936
1059
|
export declare class GetApplicationRequest extends $tea.Model {
|
|
937
|
-
regionId?: string;
|
|
938
1060
|
name?: string;
|
|
1061
|
+
regionId?: string;
|
|
939
1062
|
static names(): {
|
|
940
1063
|
[key: string]: string;
|
|
941
1064
|
};
|
|
@@ -947,8 +1070,8 @@ export declare class GetApplicationRequest extends $tea.Model {
|
|
|
947
1070
|
});
|
|
948
1071
|
}
|
|
949
1072
|
export declare class GetApplicationResponseBody extends $tea.Model {
|
|
950
|
-
requestId?: string;
|
|
951
1073
|
application?: GetApplicationResponseBodyApplication;
|
|
1074
|
+
requestId?: string;
|
|
952
1075
|
static names(): {
|
|
953
1076
|
[key: string]: string;
|
|
954
1077
|
};
|
|
@@ -963,6 +1086,7 @@ export declare class GetApplicationResponse extends $tea.Model {
|
|
|
963
1086
|
headers: {
|
|
964
1087
|
[key: string]: string;
|
|
965
1088
|
};
|
|
1089
|
+
statusCode: number;
|
|
966
1090
|
body: GetApplicationResponseBody;
|
|
967
1091
|
static names(): {
|
|
968
1092
|
[key: string]: string;
|
|
@@ -975,8 +1099,9 @@ export declare class GetApplicationResponse extends $tea.Model {
|
|
|
975
1099
|
});
|
|
976
1100
|
}
|
|
977
1101
|
export declare class GetApplicationGroupRequest extends $tea.Model {
|
|
978
|
-
|
|
1102
|
+
applicationName?: string;
|
|
979
1103
|
name?: string;
|
|
1104
|
+
regionId?: string;
|
|
980
1105
|
static names(): {
|
|
981
1106
|
[key: string]: string;
|
|
982
1107
|
};
|
|
@@ -988,8 +1113,8 @@ export declare class GetApplicationGroupRequest extends $tea.Model {
|
|
|
988
1113
|
});
|
|
989
1114
|
}
|
|
990
1115
|
export declare class GetApplicationGroupResponseBody extends $tea.Model {
|
|
991
|
-
requestId?: string;
|
|
992
1116
|
applicationGroup?: GetApplicationGroupResponseBodyApplicationGroup;
|
|
1117
|
+
requestId?: string;
|
|
993
1118
|
static names(): {
|
|
994
1119
|
[key: string]: string;
|
|
995
1120
|
};
|
|
@@ -1004,6 +1129,7 @@ export declare class GetApplicationGroupResponse extends $tea.Model {
|
|
|
1004
1129
|
headers: {
|
|
1005
1130
|
[key: string]: string;
|
|
1006
1131
|
};
|
|
1132
|
+
statusCode: number;
|
|
1007
1133
|
body: GetApplicationGroupResponseBody;
|
|
1008
1134
|
static names(): {
|
|
1009
1135
|
[key: string]: string;
|
|
@@ -1016,8 +1142,8 @@ export declare class GetApplicationGroupResponse extends $tea.Model {
|
|
|
1016
1142
|
});
|
|
1017
1143
|
}
|
|
1018
1144
|
export declare class GetExecutionTemplateRequest extends $tea.Model {
|
|
1019
|
-
regionId?: string;
|
|
1020
1145
|
executionId?: string;
|
|
1146
|
+
regionId?: string;
|
|
1021
1147
|
static names(): {
|
|
1022
1148
|
[key: string]: string;
|
|
1023
1149
|
};
|
|
@@ -1046,6 +1172,7 @@ export declare class GetExecutionTemplateResponse extends $tea.Model {
|
|
|
1046
1172
|
headers: {
|
|
1047
1173
|
[key: string]: string;
|
|
1048
1174
|
};
|
|
1175
|
+
statusCode: number;
|
|
1049
1176
|
body: GetExecutionTemplateResponseBody;
|
|
1050
1177
|
static names(): {
|
|
1051
1178
|
[key: string]: string;
|
|
@@ -1058,11 +1185,11 @@ export declare class GetExecutionTemplateResponse extends $tea.Model {
|
|
|
1058
1185
|
});
|
|
1059
1186
|
}
|
|
1060
1187
|
export declare class GetInventorySchemaRequest extends $tea.Model {
|
|
1061
|
-
regionId?: string;
|
|
1062
1188
|
aggregator?: boolean;
|
|
1063
|
-
typeName?: string;
|
|
1064
1189
|
maxResults?: number;
|
|
1065
1190
|
nextToken?: string;
|
|
1191
|
+
regionId?: string;
|
|
1192
|
+
typeName?: string;
|
|
1066
1193
|
static names(): {
|
|
1067
1194
|
[key: string]: string;
|
|
1068
1195
|
};
|
|
@@ -1074,9 +1201,9 @@ export declare class GetInventorySchemaRequest extends $tea.Model {
|
|
|
1074
1201
|
});
|
|
1075
1202
|
}
|
|
1076
1203
|
export declare class GetInventorySchemaResponseBody extends $tea.Model {
|
|
1204
|
+
maxResults?: string;
|
|
1077
1205
|
nextToken?: string;
|
|
1078
1206
|
requestId?: string;
|
|
1079
|
-
maxResults?: string;
|
|
1080
1207
|
schemas?: GetInventorySchemaResponseBodySchemas[];
|
|
1081
1208
|
static names(): {
|
|
1082
1209
|
[key: string]: string;
|
|
@@ -1092,6 +1219,7 @@ export declare class GetInventorySchemaResponse extends $tea.Model {
|
|
|
1092
1219
|
headers: {
|
|
1093
1220
|
[key: string]: string;
|
|
1094
1221
|
};
|
|
1222
|
+
statusCode: number;
|
|
1095
1223
|
body: GetInventorySchemaResponseBody;
|
|
1096
1224
|
static names(): {
|
|
1097
1225
|
[key: string]: string;
|
|
@@ -1104,9 +1232,9 @@ export declare class GetInventorySchemaResponse extends $tea.Model {
|
|
|
1104
1232
|
});
|
|
1105
1233
|
}
|
|
1106
1234
|
export declare class GetParameterRequest extends $tea.Model {
|
|
1107
|
-
regionId?: string;
|
|
1108
1235
|
name?: string;
|
|
1109
1236
|
parameterVersion?: number;
|
|
1237
|
+
regionId?: string;
|
|
1110
1238
|
resourceGroupId?: string;
|
|
1111
1239
|
static names(): {
|
|
1112
1240
|
[key: string]: string;
|
|
@@ -1119,8 +1247,8 @@ export declare class GetParameterRequest extends $tea.Model {
|
|
|
1119
1247
|
});
|
|
1120
1248
|
}
|
|
1121
1249
|
export declare class GetParameterResponseBody extends $tea.Model {
|
|
1122
|
-
requestId?: string;
|
|
1123
1250
|
parameter?: GetParameterResponseBodyParameter;
|
|
1251
|
+
requestId?: string;
|
|
1124
1252
|
static names(): {
|
|
1125
1253
|
[key: string]: string;
|
|
1126
1254
|
};
|
|
@@ -1135,6 +1263,7 @@ export declare class GetParameterResponse extends $tea.Model {
|
|
|
1135
1263
|
headers: {
|
|
1136
1264
|
[key: string]: string;
|
|
1137
1265
|
};
|
|
1266
|
+
statusCode: number;
|
|
1138
1267
|
body: GetParameterResponseBody;
|
|
1139
1268
|
static names(): {
|
|
1140
1269
|
[key: string]: string;
|
|
@@ -1147,8 +1276,8 @@ export declare class GetParameterResponse extends $tea.Model {
|
|
|
1147
1276
|
});
|
|
1148
1277
|
}
|
|
1149
1278
|
export declare class GetParametersRequest extends $tea.Model {
|
|
1150
|
-
regionId?: string;
|
|
1151
1279
|
names?: string;
|
|
1280
|
+
regionId?: string;
|
|
1152
1281
|
static names(): {
|
|
1153
1282
|
[key: string]: string;
|
|
1154
1283
|
};
|
|
@@ -1160,9 +1289,9 @@ export declare class GetParametersRequest extends $tea.Model {
|
|
|
1160
1289
|
});
|
|
1161
1290
|
}
|
|
1162
1291
|
export declare class GetParametersResponseBody extends $tea.Model {
|
|
1163
|
-
requestId?: string;
|
|
1164
1292
|
invalidParameters?: string[];
|
|
1165
1293
|
parameters?: GetParametersResponseBodyParameters[];
|
|
1294
|
+
requestId?: string;
|
|
1166
1295
|
static names(): {
|
|
1167
1296
|
[key: string]: string;
|
|
1168
1297
|
};
|
|
@@ -1177,6 +1306,7 @@ export declare class GetParametersResponse extends $tea.Model {
|
|
|
1177
1306
|
headers: {
|
|
1178
1307
|
[key: string]: string;
|
|
1179
1308
|
};
|
|
1309
|
+
statusCode: number;
|
|
1180
1310
|
body: GetParametersResponseBody;
|
|
1181
1311
|
static names(): {
|
|
1182
1312
|
[key: string]: string;
|
|
@@ -1189,11 +1319,11 @@ export declare class GetParametersResponse extends $tea.Model {
|
|
|
1189
1319
|
});
|
|
1190
1320
|
}
|
|
1191
1321
|
export declare class GetParametersByPathRequest extends $tea.Model {
|
|
1192
|
-
|
|
1322
|
+
maxResults?: number;
|
|
1323
|
+
nextToken?: string;
|
|
1193
1324
|
path?: string;
|
|
1194
1325
|
recursive?: boolean;
|
|
1195
|
-
|
|
1196
|
-
maxResults?: number;
|
|
1326
|
+
regionId?: string;
|
|
1197
1327
|
static names(): {
|
|
1198
1328
|
[key: string]: string;
|
|
1199
1329
|
};
|
|
@@ -1205,11 +1335,11 @@ export declare class GetParametersByPathRequest extends $tea.Model {
|
|
|
1205
1335
|
});
|
|
1206
1336
|
}
|
|
1207
1337
|
export declare class GetParametersByPathResponseBody extends $tea.Model {
|
|
1338
|
+
maxResults?: number;
|
|
1208
1339
|
nextToken?: string;
|
|
1340
|
+
parameters?: GetParametersByPathResponseBodyParameters[];
|
|
1209
1341
|
requestId?: string;
|
|
1210
1342
|
totalCount?: number;
|
|
1211
|
-
maxResults?: number;
|
|
1212
|
-
parameters?: GetParametersByPathResponseBodyParameters[];
|
|
1213
1343
|
static names(): {
|
|
1214
1344
|
[key: string]: string;
|
|
1215
1345
|
};
|
|
@@ -1224,6 +1354,7 @@ export declare class GetParametersByPathResponse extends $tea.Model {
|
|
|
1224
1354
|
headers: {
|
|
1225
1355
|
[key: string]: string;
|
|
1226
1356
|
};
|
|
1357
|
+
statusCode: number;
|
|
1227
1358
|
body: GetParametersByPathResponseBody;
|
|
1228
1359
|
static names(): {
|
|
1229
1360
|
[key: string]: string;
|
|
@@ -1236,8 +1367,8 @@ export declare class GetParametersByPathResponse extends $tea.Model {
|
|
|
1236
1367
|
});
|
|
1237
1368
|
}
|
|
1238
1369
|
export declare class GetPatchBaselineRequest extends $tea.Model {
|
|
1239
|
-
regionId?: string;
|
|
1240
1370
|
name?: string;
|
|
1371
|
+
regionId?: string;
|
|
1241
1372
|
static names(): {
|
|
1242
1373
|
[key: string]: string;
|
|
1243
1374
|
};
|
|
@@ -1249,8 +1380,8 @@ export declare class GetPatchBaselineRequest extends $tea.Model {
|
|
|
1249
1380
|
});
|
|
1250
1381
|
}
|
|
1251
1382
|
export declare class GetPatchBaselineResponseBody extends $tea.Model {
|
|
1252
|
-
requestId?: string;
|
|
1253
1383
|
patchBaseline?: GetPatchBaselineResponseBodyPatchBaseline;
|
|
1384
|
+
requestId?: string;
|
|
1254
1385
|
static names(): {
|
|
1255
1386
|
[key: string]: string;
|
|
1256
1387
|
};
|
|
@@ -1265,6 +1396,7 @@ export declare class GetPatchBaselineResponse extends $tea.Model {
|
|
|
1265
1396
|
headers: {
|
|
1266
1397
|
[key: string]: string;
|
|
1267
1398
|
};
|
|
1399
|
+
statusCode: number;
|
|
1268
1400
|
body: GetPatchBaselineResponseBody;
|
|
1269
1401
|
static names(): {
|
|
1270
1402
|
[key: string]: string;
|
|
@@ -1277,9 +1409,9 @@ export declare class GetPatchBaselineResponse extends $tea.Model {
|
|
|
1277
1409
|
});
|
|
1278
1410
|
}
|
|
1279
1411
|
export declare class GetSecretParameterRequest extends $tea.Model {
|
|
1280
|
-
regionId?: string;
|
|
1281
1412
|
name?: string;
|
|
1282
1413
|
parameterVersion?: number;
|
|
1414
|
+
regionId?: string;
|
|
1283
1415
|
withDecryption?: boolean;
|
|
1284
1416
|
static names(): {
|
|
1285
1417
|
[key: string]: string;
|
|
@@ -1292,8 +1424,8 @@ export declare class GetSecretParameterRequest extends $tea.Model {
|
|
|
1292
1424
|
});
|
|
1293
1425
|
}
|
|
1294
1426
|
export declare class GetSecretParameterResponseBody extends $tea.Model {
|
|
1295
|
-
requestId?: string;
|
|
1296
1427
|
parameter?: GetSecretParameterResponseBodyParameter;
|
|
1428
|
+
requestId?: string;
|
|
1297
1429
|
static names(): {
|
|
1298
1430
|
[key: string]: string;
|
|
1299
1431
|
};
|
|
@@ -1308,6 +1440,7 @@ export declare class GetSecretParameterResponse extends $tea.Model {
|
|
|
1308
1440
|
headers: {
|
|
1309
1441
|
[key: string]: string;
|
|
1310
1442
|
};
|
|
1443
|
+
statusCode: number;
|
|
1311
1444
|
body: GetSecretParameterResponseBody;
|
|
1312
1445
|
static names(): {
|
|
1313
1446
|
[key: string]: string;
|
|
@@ -1320,8 +1453,8 @@ export declare class GetSecretParameterResponse extends $tea.Model {
|
|
|
1320
1453
|
});
|
|
1321
1454
|
}
|
|
1322
1455
|
export declare class GetSecretParametersRequest extends $tea.Model {
|
|
1323
|
-
regionId?: string;
|
|
1324
1456
|
names?: string;
|
|
1457
|
+
regionId?: string;
|
|
1325
1458
|
withDecryption?: boolean;
|
|
1326
1459
|
static names(): {
|
|
1327
1460
|
[key: string]: string;
|
|
@@ -1334,9 +1467,9 @@ export declare class GetSecretParametersRequest extends $tea.Model {
|
|
|
1334
1467
|
});
|
|
1335
1468
|
}
|
|
1336
1469
|
export declare class GetSecretParametersResponseBody extends $tea.Model {
|
|
1337
|
-
requestId?: string;
|
|
1338
1470
|
invalidParameters?: string[];
|
|
1339
1471
|
parameters?: GetSecretParametersResponseBodyParameters[];
|
|
1472
|
+
requestId?: string;
|
|
1340
1473
|
static names(): {
|
|
1341
1474
|
[key: string]: string;
|
|
1342
1475
|
};
|
|
@@ -1351,6 +1484,7 @@ export declare class GetSecretParametersResponse extends $tea.Model {
|
|
|
1351
1484
|
headers: {
|
|
1352
1485
|
[key: string]: string;
|
|
1353
1486
|
};
|
|
1487
|
+
statusCode: number;
|
|
1354
1488
|
body: GetSecretParametersResponseBody;
|
|
1355
1489
|
static names(): {
|
|
1356
1490
|
[key: string]: string;
|
|
@@ -1363,11 +1497,11 @@ export declare class GetSecretParametersResponse extends $tea.Model {
|
|
|
1363
1497
|
});
|
|
1364
1498
|
}
|
|
1365
1499
|
export declare class GetSecretParametersByPathRequest extends $tea.Model {
|
|
1366
|
-
|
|
1500
|
+
maxResults?: number;
|
|
1501
|
+
nextToken?: string;
|
|
1367
1502
|
path?: string;
|
|
1368
1503
|
recursive?: boolean;
|
|
1369
|
-
|
|
1370
|
-
maxResults?: number;
|
|
1504
|
+
regionId?: string;
|
|
1371
1505
|
withDecryption?: boolean;
|
|
1372
1506
|
static names(): {
|
|
1373
1507
|
[key: string]: string;
|
|
@@ -1380,11 +1514,11 @@ export declare class GetSecretParametersByPathRequest extends $tea.Model {
|
|
|
1380
1514
|
});
|
|
1381
1515
|
}
|
|
1382
1516
|
export declare class GetSecretParametersByPathResponseBody extends $tea.Model {
|
|
1517
|
+
maxResults?: number;
|
|
1383
1518
|
nextToken?: string;
|
|
1519
|
+
parameters?: GetSecretParametersByPathResponseBodyParameters[];
|
|
1384
1520
|
requestId?: string;
|
|
1385
1521
|
totalCount?: number;
|
|
1386
|
-
maxResults?: number;
|
|
1387
|
-
parameters?: GetSecretParametersByPathResponseBodyParameters[];
|
|
1388
1522
|
static names(): {
|
|
1389
1523
|
[key: string]: string;
|
|
1390
1524
|
};
|
|
@@ -1399,6 +1533,7 @@ export declare class GetSecretParametersByPathResponse extends $tea.Model {
|
|
|
1399
1533
|
headers: {
|
|
1400
1534
|
[key: string]: string;
|
|
1401
1535
|
};
|
|
1536
|
+
statusCode: number;
|
|
1402
1537
|
body: GetSecretParametersByPathResponseBody;
|
|
1403
1538
|
static names(): {
|
|
1404
1539
|
[key: string]: string;
|
|
@@ -1439,6 +1574,7 @@ export declare class GetServiceSettingsResponse extends $tea.Model {
|
|
|
1439
1574
|
headers: {
|
|
1440
1575
|
[key: string]: string;
|
|
1441
1576
|
};
|
|
1577
|
+
statusCode: number;
|
|
1442
1578
|
body: GetServiceSettingsResponseBody;
|
|
1443
1579
|
static names(): {
|
|
1444
1580
|
[key: string]: string;
|
|
@@ -1482,6 +1618,7 @@ export declare class GetTemplateResponse extends $tea.Model {
|
|
|
1482
1618
|
headers: {
|
|
1483
1619
|
[key: string]: string;
|
|
1484
1620
|
};
|
|
1621
|
+
statusCode: number;
|
|
1485
1622
|
body: GetTemplateResponseBody;
|
|
1486
1623
|
static names(): {
|
|
1487
1624
|
[key: string]: string;
|
|
@@ -1494,10 +1631,10 @@ export declare class GetTemplateResponse extends $tea.Model {
|
|
|
1494
1631
|
});
|
|
1495
1632
|
}
|
|
1496
1633
|
export declare class ListActionsRequest extends $tea.Model {
|
|
1497
|
-
regionId?: string;
|
|
1498
|
-
OOSActionName?: string;
|
|
1499
1634
|
maxResults?: number;
|
|
1500
1635
|
nextToken?: string;
|
|
1636
|
+
OOSActionName?: string;
|
|
1637
|
+
regionId?: string;
|
|
1501
1638
|
static names(): {
|
|
1502
1639
|
[key: string]: string;
|
|
1503
1640
|
};
|
|
@@ -1509,10 +1646,10 @@ export declare class ListActionsRequest extends $tea.Model {
|
|
|
1509
1646
|
});
|
|
1510
1647
|
}
|
|
1511
1648
|
export declare class ListActionsResponseBody extends $tea.Model {
|
|
1649
|
+
actions?: ListActionsResponseBodyActions[];
|
|
1650
|
+
maxResults?: number;
|
|
1512
1651
|
nextToken?: string;
|
|
1513
1652
|
requestId?: string;
|
|
1514
|
-
maxResults?: number;
|
|
1515
|
-
actions?: ListActionsResponseBodyActions[];
|
|
1516
1653
|
static names(): {
|
|
1517
1654
|
[key: string]: string;
|
|
1518
1655
|
};
|
|
@@ -1527,6 +1664,7 @@ export declare class ListActionsResponse extends $tea.Model {
|
|
|
1527
1664
|
headers: {
|
|
1528
1665
|
[key: string]: string;
|
|
1529
1666
|
};
|
|
1667
|
+
statusCode: number;
|
|
1530
1668
|
body: ListActionsResponseBody;
|
|
1531
1669
|
static names(): {
|
|
1532
1670
|
[key: string]: string;
|
|
@@ -1539,12 +1677,11 @@ export declare class ListActionsResponse extends $tea.Model {
|
|
|
1539
1677
|
});
|
|
1540
1678
|
}
|
|
1541
1679
|
export declare class ListApplicationGroupsRequest extends $tea.Model {
|
|
1542
|
-
regionId?: string;
|
|
1543
1680
|
applicationName?: string;
|
|
1544
|
-
deployRegionId?:
|
|
1545
|
-
environment?: boolean;
|
|
1681
|
+
deployRegionId?: string;
|
|
1546
1682
|
maxResults?: number;
|
|
1547
1683
|
nextToken?: string;
|
|
1684
|
+
regionId?: string;
|
|
1548
1685
|
static names(): {
|
|
1549
1686
|
[key: string]: string;
|
|
1550
1687
|
};
|
|
@@ -1556,10 +1693,10 @@ export declare class ListApplicationGroupsRequest extends $tea.Model {
|
|
|
1556
1693
|
});
|
|
1557
1694
|
}
|
|
1558
1695
|
export declare class ListApplicationGroupsResponseBody extends $tea.Model {
|
|
1696
|
+
applicationGroups?: ListApplicationGroupsResponseBodyApplicationGroups[];
|
|
1697
|
+
maxResults?: number;
|
|
1559
1698
|
nextToken?: string;
|
|
1560
1699
|
requestId?: string;
|
|
1561
|
-
maxResults?: number;
|
|
1562
|
-
applicationGroups?: ListApplicationGroupsResponseBodyApplicationGroups[];
|
|
1563
1700
|
static names(): {
|
|
1564
1701
|
[key: string]: string;
|
|
1565
1702
|
};
|
|
@@ -1574,6 +1711,7 @@ export declare class ListApplicationGroupsResponse extends $tea.Model {
|
|
|
1574
1711
|
headers: {
|
|
1575
1712
|
[key: string]: string;
|
|
1576
1713
|
};
|
|
1714
|
+
statusCode: number;
|
|
1577
1715
|
body: ListApplicationGroupsResponseBody;
|
|
1578
1716
|
static names(): {
|
|
1579
1717
|
[key: string]: string;
|
|
@@ -1586,10 +1724,31 @@ export declare class ListApplicationGroupsResponse extends $tea.Model {
|
|
|
1586
1724
|
});
|
|
1587
1725
|
}
|
|
1588
1726
|
export declare class ListApplicationsRequest extends $tea.Model {
|
|
1727
|
+
maxResults?: number;
|
|
1728
|
+
name?: string;
|
|
1729
|
+
names?: string;
|
|
1730
|
+
nextToken?: string;
|
|
1589
1731
|
regionId?: string;
|
|
1590
|
-
|
|
1732
|
+
tags?: {
|
|
1733
|
+
[key: string]: any;
|
|
1734
|
+
};
|
|
1735
|
+
static names(): {
|
|
1736
|
+
[key: string]: string;
|
|
1737
|
+
};
|
|
1738
|
+
static types(): {
|
|
1739
|
+
[key: string]: any;
|
|
1740
|
+
};
|
|
1741
|
+
constructor(map?: {
|
|
1742
|
+
[key: string]: any;
|
|
1743
|
+
});
|
|
1744
|
+
}
|
|
1745
|
+
export declare class ListApplicationsShrinkRequest extends $tea.Model {
|
|
1591
1746
|
maxResults?: number;
|
|
1747
|
+
name?: string;
|
|
1748
|
+
names?: string;
|
|
1592
1749
|
nextToken?: string;
|
|
1750
|
+
regionId?: string;
|
|
1751
|
+
tagsShrink?: string;
|
|
1593
1752
|
static names(): {
|
|
1594
1753
|
[key: string]: string;
|
|
1595
1754
|
};
|
|
@@ -1601,10 +1760,10 @@ export declare class ListApplicationsRequest extends $tea.Model {
|
|
|
1601
1760
|
});
|
|
1602
1761
|
}
|
|
1603
1762
|
export declare class ListApplicationsResponseBody extends $tea.Model {
|
|
1763
|
+
applications?: ListApplicationsResponseBodyApplications[];
|
|
1764
|
+
maxResults?: number;
|
|
1604
1765
|
nextToken?: string;
|
|
1605
1766
|
requestId?: string;
|
|
1606
|
-
maxResults?: number;
|
|
1607
|
-
applications?: ListApplicationsResponseBodyApplications[];
|
|
1608
1767
|
static names(): {
|
|
1609
1768
|
[key: string]: string;
|
|
1610
1769
|
};
|
|
@@ -1619,6 +1778,7 @@ export declare class ListApplicationsResponse extends $tea.Model {
|
|
|
1619
1778
|
headers: {
|
|
1620
1779
|
[key: string]: string;
|
|
1621
1780
|
};
|
|
1781
|
+
statusCode: number;
|
|
1622
1782
|
body: ListApplicationsResponseBody;
|
|
1623
1783
|
static names(): {
|
|
1624
1784
|
[key: string]: string;
|
|
@@ -1631,12 +1791,12 @@ export declare class ListApplicationsResponse extends $tea.Model {
|
|
|
1631
1791
|
});
|
|
1632
1792
|
}
|
|
1633
1793
|
export declare class ListExecutionLogsRequest extends $tea.Model {
|
|
1634
|
-
regionId?: string;
|
|
1635
1794
|
executionId?: string;
|
|
1636
|
-
taskExecutionId?: string;
|
|
1637
1795
|
logType?: string;
|
|
1638
1796
|
maxResults?: number;
|
|
1639
1797
|
nextToken?: string;
|
|
1798
|
+
regionId?: string;
|
|
1799
|
+
taskExecutionId?: string;
|
|
1640
1800
|
static names(): {
|
|
1641
1801
|
[key: string]: string;
|
|
1642
1802
|
};
|
|
@@ -1648,11 +1808,11 @@ export declare class ListExecutionLogsRequest extends $tea.Model {
|
|
|
1648
1808
|
});
|
|
1649
1809
|
}
|
|
1650
1810
|
export declare class ListExecutionLogsResponseBody extends $tea.Model {
|
|
1651
|
-
|
|
1652
|
-
requestId?: string;
|
|
1811
|
+
executionLogs?: ListExecutionLogsResponseBodyExecutionLogs[];
|
|
1653
1812
|
isTruncated?: boolean;
|
|
1654
1813
|
maxResults?: number;
|
|
1655
|
-
|
|
1814
|
+
nextToken?: string;
|
|
1815
|
+
requestId?: string;
|
|
1656
1816
|
static names(): {
|
|
1657
1817
|
[key: string]: string;
|
|
1658
1818
|
};
|
|
@@ -1667,6 +1827,7 @@ export declare class ListExecutionLogsResponse extends $tea.Model {
|
|
|
1667
1827
|
headers: {
|
|
1668
1828
|
[key: string]: string;
|
|
1669
1829
|
};
|
|
1830
|
+
statusCode: number;
|
|
1670
1831
|
body: ListExecutionLogsResponseBody;
|
|
1671
1832
|
static names(): {
|
|
1672
1833
|
[key: string]: string;
|
|
@@ -1708,6 +1869,7 @@ export declare class ListExecutionRiskyTasksResponse extends $tea.Model {
|
|
|
1708
1869
|
headers: {
|
|
1709
1870
|
[key: string]: string;
|
|
1710
1871
|
};
|
|
1872
|
+
statusCode: number;
|
|
1711
1873
|
body: ListExecutionRiskyTasksResponseBody;
|
|
1712
1874
|
static names(): {
|
|
1713
1875
|
[key: string]: string;
|
|
@@ -1720,30 +1882,30 @@ export declare class ListExecutionRiskyTasksResponse extends $tea.Model {
|
|
|
1720
1882
|
});
|
|
1721
1883
|
}
|
|
1722
1884
|
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;
|
|
1885
|
+
category?: string;
|
|
1730
1886
|
endDateAfter?: string;
|
|
1731
|
-
|
|
1887
|
+
endDateBefore?: string;
|
|
1732
1888
|
executedBy?: string;
|
|
1733
|
-
|
|
1734
|
-
ramRole?: string;
|
|
1889
|
+
executionId?: string;
|
|
1735
1890
|
includeChildExecution?: boolean;
|
|
1736
|
-
category?: string;
|
|
1737
|
-
tags?: {
|
|
1738
|
-
[key: string]: any;
|
|
1739
|
-
};
|
|
1740
1891
|
maxResults?: number;
|
|
1892
|
+
mode?: string;
|
|
1741
1893
|
nextToken?: string;
|
|
1742
|
-
|
|
1743
|
-
|
|
1894
|
+
parentExecutionId?: string;
|
|
1895
|
+
ramRole?: string;
|
|
1896
|
+
regionId?: string;
|
|
1897
|
+
resourceGroupId?: string;
|
|
1744
1898
|
resourceId?: string;
|
|
1745
1899
|
resourceTemplateName?: string;
|
|
1746
|
-
|
|
1900
|
+
sortField?: string;
|
|
1901
|
+
sortOrder?: string;
|
|
1902
|
+
startDateAfter?: string;
|
|
1903
|
+
startDateBefore?: string;
|
|
1904
|
+
status?: string;
|
|
1905
|
+
tags?: {
|
|
1906
|
+
[key: string]: any;
|
|
1907
|
+
};
|
|
1908
|
+
templateName?: string;
|
|
1747
1909
|
static names(): {
|
|
1748
1910
|
[key: string]: string;
|
|
1749
1911
|
};
|
|
@@ -1755,28 +1917,28 @@ export declare class ListExecutionsRequest extends $tea.Model {
|
|
|
1755
1917
|
});
|
|
1756
1918
|
}
|
|
1757
1919
|
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;
|
|
1920
|
+
category?: string;
|
|
1765
1921
|
endDateAfter?: string;
|
|
1766
|
-
|
|
1922
|
+
endDateBefore?: string;
|
|
1767
1923
|
executedBy?: string;
|
|
1768
|
-
|
|
1769
|
-
ramRole?: string;
|
|
1924
|
+
executionId?: string;
|
|
1770
1925
|
includeChildExecution?: boolean;
|
|
1771
|
-
category?: string;
|
|
1772
|
-
tagsShrink?: string;
|
|
1773
1926
|
maxResults?: number;
|
|
1927
|
+
mode?: string;
|
|
1774
1928
|
nextToken?: string;
|
|
1775
|
-
|
|
1776
|
-
|
|
1929
|
+
parentExecutionId?: string;
|
|
1930
|
+
ramRole?: string;
|
|
1931
|
+
regionId?: string;
|
|
1932
|
+
resourceGroupId?: string;
|
|
1777
1933
|
resourceId?: string;
|
|
1778
1934
|
resourceTemplateName?: string;
|
|
1779
|
-
|
|
1935
|
+
sortField?: string;
|
|
1936
|
+
sortOrder?: string;
|
|
1937
|
+
startDateAfter?: string;
|
|
1938
|
+
startDateBefore?: string;
|
|
1939
|
+
status?: string;
|
|
1940
|
+
tagsShrink?: string;
|
|
1941
|
+
templateName?: string;
|
|
1780
1942
|
static names(): {
|
|
1781
1943
|
[key: string]: string;
|
|
1782
1944
|
};
|
|
@@ -1788,10 +1950,10 @@ export declare class ListExecutionsShrinkRequest extends $tea.Model {
|
|
|
1788
1950
|
});
|
|
1789
1951
|
}
|
|
1790
1952
|
export declare class ListExecutionsResponseBody extends $tea.Model {
|
|
1953
|
+
executions?: ListExecutionsResponseBodyExecutions[];
|
|
1954
|
+
maxResults?: number;
|
|
1791
1955
|
nextToken?: string;
|
|
1792
1956
|
requestId?: string;
|
|
1793
|
-
maxResults?: number;
|
|
1794
|
-
executions?: ListExecutionsResponseBodyExecutions[];
|
|
1795
1957
|
static names(): {
|
|
1796
1958
|
[key: string]: string;
|
|
1797
1959
|
};
|
|
@@ -1806,6 +1968,7 @@ export declare class ListExecutionsResponse extends $tea.Model {
|
|
|
1806
1968
|
headers: {
|
|
1807
1969
|
[key: string]: string;
|
|
1808
1970
|
};
|
|
1971
|
+
statusCode: number;
|
|
1809
1972
|
body: ListExecutionsResponseBody;
|
|
1810
1973
|
static names(): {
|
|
1811
1974
|
[key: string]: string;
|
|
@@ -1817,12 +1980,11 @@ export declare class ListExecutionsResponse extends $tea.Model {
|
|
|
1817
1980
|
[key: string]: any;
|
|
1818
1981
|
});
|
|
1819
1982
|
}
|
|
1820
|
-
export declare class
|
|
1821
|
-
|
|
1822
|
-
instanceId?: string;
|
|
1983
|
+
export declare class ListInstancePatchStatesRequest extends $tea.Model {
|
|
1984
|
+
instanceIds?: string;
|
|
1823
1985
|
maxResults?: number;
|
|
1824
1986
|
nextToken?: string;
|
|
1825
|
-
|
|
1987
|
+
regionId?: string;
|
|
1826
1988
|
static names(): {
|
|
1827
1989
|
[key: string]: string;
|
|
1828
1990
|
};
|
|
@@ -1833,11 +1995,11 @@ export declare class ListInstancePatchesRequest extends $tea.Model {
|
|
|
1833
1995
|
[key: string]: any;
|
|
1834
1996
|
});
|
|
1835
1997
|
}
|
|
1836
|
-
export declare class
|
|
1998
|
+
export declare class ListInstancePatchStatesResponseBody extends $tea.Model {
|
|
1999
|
+
instancePatchStates?: ListInstancePatchStatesResponseBodyInstancePatchStates[];
|
|
2000
|
+
maxResults?: number;
|
|
1837
2001
|
nextToken?: string;
|
|
1838
2002
|
requestId?: string;
|
|
1839
|
-
maxResults?: number;
|
|
1840
|
-
patches?: ListInstancePatchesResponseBodyPatches[];
|
|
1841
2003
|
static names(): {
|
|
1842
2004
|
[key: string]: string;
|
|
1843
2005
|
};
|
|
@@ -1848,11 +2010,12 @@ export declare class ListInstancePatchesResponseBody extends $tea.Model {
|
|
|
1848
2010
|
[key: string]: any;
|
|
1849
2011
|
});
|
|
1850
2012
|
}
|
|
1851
|
-
export declare class
|
|
2013
|
+
export declare class ListInstancePatchStatesResponse extends $tea.Model {
|
|
1852
2014
|
headers: {
|
|
1853
2015
|
[key: string]: string;
|
|
1854
2016
|
};
|
|
1855
|
-
|
|
2017
|
+
statusCode: number;
|
|
2018
|
+
body: ListInstancePatchStatesResponseBody;
|
|
1856
2019
|
static names(): {
|
|
1857
2020
|
[key: string]: string;
|
|
1858
2021
|
};
|
|
@@ -1863,11 +2026,12 @@ export declare class ListInstancePatchesResponse extends $tea.Model {
|
|
|
1863
2026
|
[key: string]: any;
|
|
1864
2027
|
});
|
|
1865
2028
|
}
|
|
1866
|
-
export declare class
|
|
1867
|
-
|
|
2029
|
+
export declare class ListInstancePatchesRequest extends $tea.Model {
|
|
2030
|
+
instanceId?: string;
|
|
1868
2031
|
maxResults?: number;
|
|
1869
2032
|
nextToken?: string;
|
|
1870
|
-
|
|
2033
|
+
patchStatuses?: string;
|
|
2034
|
+
regionId?: string;
|
|
1871
2035
|
static names(): {
|
|
1872
2036
|
[key: string]: string;
|
|
1873
2037
|
};
|
|
@@ -1878,11 +2042,11 @@ export declare class ListInstancePatchStatesRequest extends $tea.Model {
|
|
|
1878
2042
|
[key: string]: any;
|
|
1879
2043
|
});
|
|
1880
2044
|
}
|
|
1881
|
-
export declare class
|
|
2045
|
+
export declare class ListInstancePatchesResponseBody extends $tea.Model {
|
|
2046
|
+
maxResults?: number;
|
|
1882
2047
|
nextToken?: string;
|
|
2048
|
+
patches?: ListInstancePatchesResponseBodyPatches[];
|
|
1883
2049
|
requestId?: string;
|
|
1884
|
-
maxResults?: number;
|
|
1885
|
-
instancePatchStates?: ListInstancePatchStatesResponseBodyInstancePatchStates[];
|
|
1886
2050
|
static names(): {
|
|
1887
2051
|
[key: string]: string;
|
|
1888
2052
|
};
|
|
@@ -1893,11 +2057,12 @@ export declare class ListInstancePatchStatesResponseBody extends $tea.Model {
|
|
|
1893
2057
|
[key: string]: any;
|
|
1894
2058
|
});
|
|
1895
2059
|
}
|
|
1896
|
-
export declare class
|
|
2060
|
+
export declare class ListInstancePatchesResponse extends $tea.Model {
|
|
1897
2061
|
headers: {
|
|
1898
2062
|
[key: string]: string;
|
|
1899
2063
|
};
|
|
1900
|
-
|
|
2064
|
+
statusCode: number;
|
|
2065
|
+
body: ListInstancePatchesResponseBody;
|
|
1901
2066
|
static names(): {
|
|
1902
2067
|
[key: string]: string;
|
|
1903
2068
|
};
|
|
@@ -1908,12 +2073,13 @@ export declare class ListInstancePatchStatesResponse extends $tea.Model {
|
|
|
1908
2073
|
[key: string]: any;
|
|
1909
2074
|
});
|
|
1910
2075
|
}
|
|
1911
|
-
export declare class
|
|
1912
|
-
|
|
2076
|
+
export declare class ListInventoryEntriesRequest extends $tea.Model {
|
|
2077
|
+
filter?: ListInventoryEntriesRequestFilter[];
|
|
1913
2078
|
instanceId?: string;
|
|
1914
|
-
stateConfigurationId?: string;
|
|
1915
2079
|
maxResults?: number;
|
|
1916
2080
|
nextToken?: string;
|
|
2081
|
+
regionId?: string;
|
|
2082
|
+
typeName?: string;
|
|
1917
2083
|
static names(): {
|
|
1918
2084
|
[key: string]: string;
|
|
1919
2085
|
};
|
|
@@ -1924,11 +2090,17 @@ export declare class ListInstanceStateReportsRequest extends $tea.Model {
|
|
|
1924
2090
|
[key: string]: any;
|
|
1925
2091
|
});
|
|
1926
2092
|
}
|
|
1927
|
-
export declare class
|
|
2093
|
+
export declare class ListInventoryEntriesResponseBody extends $tea.Model {
|
|
2094
|
+
captureTime?: string;
|
|
2095
|
+
entries?: {
|
|
2096
|
+
[key: string]: any;
|
|
2097
|
+
}[];
|
|
2098
|
+
instanceId?: string;
|
|
2099
|
+
maxResults?: number;
|
|
1928
2100
|
nextToken?: string;
|
|
1929
2101
|
requestId?: string;
|
|
1930
|
-
|
|
1931
|
-
|
|
2102
|
+
schemaVersion?: string;
|
|
2103
|
+
typeName?: string;
|
|
1932
2104
|
static names(): {
|
|
1933
2105
|
[key: string]: string;
|
|
1934
2106
|
};
|
|
@@ -1939,11 +2111,12 @@ export declare class ListInstanceStateReportsResponseBody extends $tea.Model {
|
|
|
1939
2111
|
[key: string]: any;
|
|
1940
2112
|
});
|
|
1941
2113
|
}
|
|
1942
|
-
export declare class
|
|
2114
|
+
export declare class ListInventoryEntriesResponse extends $tea.Model {
|
|
1943
2115
|
headers: {
|
|
1944
2116
|
[key: string]: string;
|
|
1945
2117
|
};
|
|
1946
|
-
|
|
2118
|
+
statusCode: number;
|
|
2119
|
+
body: ListInventoryEntriesResponseBody;
|
|
1947
2120
|
static names(): {
|
|
1948
2121
|
[key: string]: string;
|
|
1949
2122
|
};
|
|
@@ -1954,12 +2127,12 @@ export declare class ListInstanceStateReportsResponse extends $tea.Model {
|
|
|
1954
2127
|
[key: string]: any;
|
|
1955
2128
|
});
|
|
1956
2129
|
}
|
|
1957
|
-
export declare class
|
|
1958
|
-
instanceId?: string;
|
|
1959
|
-
typeName?: string;
|
|
2130
|
+
export declare class ListParameterVersionsRequest extends $tea.Model {
|
|
1960
2131
|
maxResults?: number;
|
|
2132
|
+
name?: string;
|
|
1961
2133
|
nextToken?: string;
|
|
1962
|
-
|
|
2134
|
+
regionId?: string;
|
|
2135
|
+
shareType?: string;
|
|
1963
2136
|
static names(): {
|
|
1964
2137
|
[key: string]: string;
|
|
1965
2138
|
};
|
|
@@ -1970,17 +2143,18 @@ export declare class ListInventoryEntriesRequest extends $tea.Model {
|
|
|
1970
2143
|
[key: string]: any;
|
|
1971
2144
|
});
|
|
1972
2145
|
}
|
|
1973
|
-
export declare class
|
|
2146
|
+
export declare class ListParameterVersionsResponseBody extends $tea.Model {
|
|
2147
|
+
createdBy?: string;
|
|
2148
|
+
createdDate?: string;
|
|
2149
|
+
description?: string;
|
|
2150
|
+
id?: string;
|
|
2151
|
+
maxResults?: number;
|
|
2152
|
+
name?: string;
|
|
1974
2153
|
nextToken?: string;
|
|
2154
|
+
parameterVersions?: ListParameterVersionsResponseBodyParameterVersions[];
|
|
1975
2155
|
requestId?: string;
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
captureTime?: string;
|
|
1979
|
-
typeName?: string;
|
|
1980
|
-
instanceId?: string;
|
|
1981
|
-
entries?: {
|
|
1982
|
-
[key: string]: any;
|
|
1983
|
-
}[];
|
|
2156
|
+
totalCount?: number;
|
|
2157
|
+
type?: string;
|
|
1984
2158
|
static names(): {
|
|
1985
2159
|
[key: string]: string;
|
|
1986
2160
|
};
|
|
@@ -1991,11 +2165,12 @@ export declare class ListInventoryEntriesResponseBody extends $tea.Model {
|
|
|
1991
2165
|
[key: string]: any;
|
|
1992
2166
|
});
|
|
1993
2167
|
}
|
|
1994
|
-
export declare class
|
|
2168
|
+
export declare class ListParameterVersionsResponse extends $tea.Model {
|
|
1995
2169
|
headers: {
|
|
1996
2170
|
[key: string]: string;
|
|
1997
2171
|
};
|
|
1998
|
-
|
|
2172
|
+
statusCode: number;
|
|
2173
|
+
body: ListParameterVersionsResponseBody;
|
|
1999
2174
|
static names(): {
|
|
2000
2175
|
[key: string]: string;
|
|
2001
2176
|
};
|
|
@@ -2007,19 +2182,19 @@ export declare class ListInventoryEntriesResponse extends $tea.Model {
|
|
|
2007
2182
|
});
|
|
2008
2183
|
}
|
|
2009
2184
|
export declare class ListParametersRequest extends $tea.Model {
|
|
2010
|
-
regionId?: string;
|
|
2011
|
-
name?: string;
|
|
2012
2185
|
maxResults?: number;
|
|
2186
|
+
name?: string;
|
|
2013
2187
|
nextToken?: string;
|
|
2014
|
-
sortField?: string;
|
|
2015
|
-
sortOrder?: string;
|
|
2016
|
-
type?: string;
|
|
2017
2188
|
path?: string;
|
|
2018
2189
|
recursive?: boolean;
|
|
2190
|
+
regionId?: string;
|
|
2191
|
+
resourceGroupId?: string;
|
|
2192
|
+
sortField?: string;
|
|
2193
|
+
sortOrder?: string;
|
|
2019
2194
|
tags?: {
|
|
2020
2195
|
[key: string]: any;
|
|
2021
2196
|
};
|
|
2022
|
-
|
|
2197
|
+
type?: string;
|
|
2023
2198
|
static names(): {
|
|
2024
2199
|
[key: string]: string;
|
|
2025
2200
|
};
|
|
@@ -2031,20 +2206,20 @@ export declare class ListParametersRequest extends $tea.Model {
|
|
|
2031
2206
|
});
|
|
2032
2207
|
}
|
|
2033
2208
|
export declare class ListParametersShrinkRequest extends $tea.Model {
|
|
2034
|
-
regionId?: string;
|
|
2035
|
-
name?: string;
|
|
2036
2209
|
maxResults?: number;
|
|
2210
|
+
name?: string;
|
|
2037
2211
|
nextToken?: string;
|
|
2038
|
-
sortField?: string;
|
|
2039
|
-
sortOrder?: string;
|
|
2040
|
-
type?: string;
|
|
2041
2212
|
path?: string;
|
|
2042
2213
|
recursive?: boolean;
|
|
2043
|
-
|
|
2214
|
+
regionId?: string;
|
|
2044
2215
|
resourceGroupId?: string;
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2216
|
+
sortField?: string;
|
|
2217
|
+
sortOrder?: string;
|
|
2218
|
+
tagsShrink?: string;
|
|
2219
|
+
type?: string;
|
|
2220
|
+
static names(): {
|
|
2221
|
+
[key: string]: string;
|
|
2222
|
+
};
|
|
2048
2223
|
static types(): {
|
|
2049
2224
|
[key: string]: any;
|
|
2050
2225
|
};
|
|
@@ -2053,11 +2228,11 @@ export declare class ListParametersShrinkRequest extends $tea.Model {
|
|
|
2053
2228
|
});
|
|
2054
2229
|
}
|
|
2055
2230
|
export declare class ListParametersResponseBody extends $tea.Model {
|
|
2231
|
+
maxResults?: number;
|
|
2056
2232
|
nextToken?: string;
|
|
2233
|
+
parameters?: ListParametersResponseBodyParameters[];
|
|
2057
2234
|
requestId?: string;
|
|
2058
2235
|
totalCount?: number;
|
|
2059
|
-
maxResults?: number;
|
|
2060
|
-
parameters?: ListParametersResponseBodyParameters[];
|
|
2061
2236
|
static names(): {
|
|
2062
2237
|
[key: string]: string;
|
|
2063
2238
|
};
|
|
@@ -2072,6 +2247,7 @@ export declare class ListParametersResponse extends $tea.Model {
|
|
|
2072
2247
|
headers: {
|
|
2073
2248
|
[key: string]: string;
|
|
2074
2249
|
};
|
|
2250
|
+
statusCode: number;
|
|
2075
2251
|
body: ListParametersResponseBody;
|
|
2076
2252
|
static names(): {
|
|
2077
2253
|
[key: string]: string;
|
|
@@ -2083,11 +2259,12 @@ export declare class ListParametersResponse extends $tea.Model {
|
|
|
2083
2259
|
[key: string]: any;
|
|
2084
2260
|
});
|
|
2085
2261
|
}
|
|
2086
|
-
export declare class
|
|
2087
|
-
regionId?: string;
|
|
2088
|
-
name?: string;
|
|
2262
|
+
export declare class ListPatchBaselinesRequest extends $tea.Model {
|
|
2089
2263
|
maxResults?: number;
|
|
2264
|
+
name?: string;
|
|
2090
2265
|
nextToken?: string;
|
|
2266
|
+
operationSystem?: string;
|
|
2267
|
+
regionId?: string;
|
|
2091
2268
|
shareType?: string;
|
|
2092
2269
|
static names(): {
|
|
2093
2270
|
[key: string]: string;
|
|
@@ -2099,18 +2276,11 @@ export declare class ListParameterVersionsRequest extends $tea.Model {
|
|
|
2099
2276
|
[key: string]: any;
|
|
2100
2277
|
});
|
|
2101
2278
|
}
|
|
2102
|
-
export declare class
|
|
2103
|
-
|
|
2279
|
+
export declare class ListPatchBaselinesResponseBody extends $tea.Model {
|
|
2280
|
+
maxResults?: number;
|
|
2104
2281
|
nextToken?: string;
|
|
2282
|
+
patchBaselines?: ListPatchBaselinesResponseBodyPatchBaselines[];
|
|
2105
2283
|
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
2284
|
static names(): {
|
|
2115
2285
|
[key: string]: string;
|
|
2116
2286
|
};
|
|
@@ -2121,11 +2291,12 @@ export declare class ListParameterVersionsResponseBody extends $tea.Model {
|
|
|
2121
2291
|
[key: string]: any;
|
|
2122
2292
|
});
|
|
2123
2293
|
}
|
|
2124
|
-
export declare class
|
|
2294
|
+
export declare class ListPatchBaselinesResponse extends $tea.Model {
|
|
2125
2295
|
headers: {
|
|
2126
2296
|
[key: string]: string;
|
|
2127
2297
|
};
|
|
2128
|
-
|
|
2298
|
+
statusCode: number;
|
|
2299
|
+
body: ListPatchBaselinesResponseBody;
|
|
2129
2300
|
static names(): {
|
|
2130
2301
|
[key: string]: string;
|
|
2131
2302
|
};
|
|
@@ -2136,13 +2307,11 @@ export declare class ListParameterVersionsResponse extends $tea.Model {
|
|
|
2136
2307
|
[key: string]: any;
|
|
2137
2308
|
});
|
|
2138
2309
|
}
|
|
2139
|
-
export declare class
|
|
2140
|
-
|
|
2141
|
-
name?: string;
|
|
2142
|
-
operationSystem?: string;
|
|
2143
|
-
shareType?: string;
|
|
2310
|
+
export declare class ListResourceExecutionStatusRequest extends $tea.Model {
|
|
2311
|
+
executionId?: string;
|
|
2144
2312
|
maxResults?: number;
|
|
2145
2313
|
nextToken?: string;
|
|
2314
|
+
regionId?: string;
|
|
2146
2315
|
static names(): {
|
|
2147
2316
|
[key: string]: string;
|
|
2148
2317
|
};
|
|
@@ -2153,11 +2322,11 @@ export declare class ListPatchBaselinesRequest extends $tea.Model {
|
|
|
2153
2322
|
[key: string]: any;
|
|
2154
2323
|
});
|
|
2155
2324
|
}
|
|
2156
|
-
export declare class
|
|
2325
|
+
export declare class ListResourceExecutionStatusResponseBody extends $tea.Model {
|
|
2326
|
+
maxResults?: number;
|
|
2157
2327
|
nextToken?: string;
|
|
2158
2328
|
requestId?: string;
|
|
2159
|
-
|
|
2160
|
-
patchBaselines?: ListPatchBaselinesResponseBodyPatchBaselines[];
|
|
2329
|
+
resourceExecutionStatus?: ListResourceExecutionStatusResponseBodyResourceExecutionStatus[];
|
|
2161
2330
|
static names(): {
|
|
2162
2331
|
[key: string]: string;
|
|
2163
2332
|
};
|
|
@@ -2168,11 +2337,12 @@ export declare class ListPatchBaselinesResponseBody extends $tea.Model {
|
|
|
2168
2337
|
[key: string]: any;
|
|
2169
2338
|
});
|
|
2170
2339
|
}
|
|
2171
|
-
export declare class
|
|
2340
|
+
export declare class ListResourceExecutionStatusResponse extends $tea.Model {
|
|
2172
2341
|
headers: {
|
|
2173
2342
|
[key: string]: string;
|
|
2174
2343
|
};
|
|
2175
|
-
|
|
2344
|
+
statusCode: number;
|
|
2345
|
+
body: ListResourceExecutionStatusResponseBody;
|
|
2176
2346
|
static names(): {
|
|
2177
2347
|
[key: string]: string;
|
|
2178
2348
|
};
|
|
@@ -2183,11 +2353,13 @@ export declare class ListPatchBaselinesResponse extends $tea.Model {
|
|
|
2183
2353
|
[key: string]: any;
|
|
2184
2354
|
});
|
|
2185
2355
|
}
|
|
2186
|
-
export declare class
|
|
2187
|
-
regionId?: string;
|
|
2188
|
-
executionId?: string;
|
|
2356
|
+
export declare class ListSecretParameterVersionsRequest extends $tea.Model {
|
|
2189
2357
|
maxResults?: number;
|
|
2358
|
+
name?: string;
|
|
2190
2359
|
nextToken?: string;
|
|
2360
|
+
regionId?: string;
|
|
2361
|
+
shareType?: string;
|
|
2362
|
+
withDecryption?: boolean;
|
|
2191
2363
|
static names(): {
|
|
2192
2364
|
[key: string]: string;
|
|
2193
2365
|
};
|
|
@@ -2198,11 +2370,18 @@ export declare class ListResourceExecutionStatusRequest extends $tea.Model {
|
|
|
2198
2370
|
[key: string]: any;
|
|
2199
2371
|
});
|
|
2200
2372
|
}
|
|
2201
|
-
export declare class
|
|
2373
|
+
export declare class ListSecretParameterVersionsResponseBody extends $tea.Model {
|
|
2374
|
+
createdBy?: string;
|
|
2375
|
+
createdDate?: string;
|
|
2376
|
+
description?: string;
|
|
2377
|
+
id?: string;
|
|
2378
|
+
maxResults?: number;
|
|
2379
|
+
name?: string;
|
|
2202
2380
|
nextToken?: string;
|
|
2381
|
+
parameterVersions?: ListSecretParameterVersionsResponseBodyParameterVersions[];
|
|
2203
2382
|
requestId?: string;
|
|
2204
|
-
|
|
2205
|
-
|
|
2383
|
+
totalCount?: number;
|
|
2384
|
+
type?: string;
|
|
2206
2385
|
static names(): {
|
|
2207
2386
|
[key: string]: string;
|
|
2208
2387
|
};
|
|
@@ -2213,11 +2392,12 @@ export declare class ListResourceExecutionStatusResponseBody extends $tea.Model
|
|
|
2213
2392
|
[key: string]: any;
|
|
2214
2393
|
});
|
|
2215
2394
|
}
|
|
2216
|
-
export declare class
|
|
2395
|
+
export declare class ListSecretParameterVersionsResponse extends $tea.Model {
|
|
2217
2396
|
headers: {
|
|
2218
2397
|
[key: string]: string;
|
|
2219
2398
|
};
|
|
2220
|
-
|
|
2399
|
+
statusCode: number;
|
|
2400
|
+
body: ListSecretParameterVersionsResponseBody;
|
|
2221
2401
|
static names(): {
|
|
2222
2402
|
[key: string]: string;
|
|
2223
2403
|
};
|
|
@@ -2229,18 +2409,18 @@ export declare class ListResourceExecutionStatusResponse extends $tea.Model {
|
|
|
2229
2409
|
});
|
|
2230
2410
|
}
|
|
2231
2411
|
export declare class ListSecretParametersRequest extends $tea.Model {
|
|
2232
|
-
regionId?: string;
|
|
2233
|
-
name?: string;
|
|
2234
2412
|
maxResults?: number;
|
|
2413
|
+
name?: string;
|
|
2235
2414
|
nextToken?: string;
|
|
2236
|
-
sortField?: string;
|
|
2237
|
-
sortOrder?: string;
|
|
2238
2415
|
path?: string;
|
|
2239
2416
|
recursive?: boolean;
|
|
2417
|
+
regionId?: string;
|
|
2418
|
+
resourceGroupId?: string;
|
|
2419
|
+
sortField?: string;
|
|
2420
|
+
sortOrder?: string;
|
|
2240
2421
|
tags?: {
|
|
2241
2422
|
[key: string]: any;
|
|
2242
2423
|
};
|
|
2243
|
-
resourceGroupId?: string;
|
|
2244
2424
|
static names(): {
|
|
2245
2425
|
[key: string]: string;
|
|
2246
2426
|
};
|
|
@@ -2252,16 +2432,16 @@ export declare class ListSecretParametersRequest extends $tea.Model {
|
|
|
2252
2432
|
});
|
|
2253
2433
|
}
|
|
2254
2434
|
export declare class ListSecretParametersShrinkRequest extends $tea.Model {
|
|
2255
|
-
regionId?: string;
|
|
2256
|
-
name?: string;
|
|
2257
2435
|
maxResults?: number;
|
|
2436
|
+
name?: string;
|
|
2258
2437
|
nextToken?: string;
|
|
2259
|
-
sortField?: string;
|
|
2260
|
-
sortOrder?: string;
|
|
2261
2438
|
path?: string;
|
|
2262
2439
|
recursive?: boolean;
|
|
2263
|
-
|
|
2440
|
+
regionId?: string;
|
|
2264
2441
|
resourceGroupId?: string;
|
|
2442
|
+
sortField?: string;
|
|
2443
|
+
sortOrder?: string;
|
|
2444
|
+
tagsShrink?: string;
|
|
2265
2445
|
static names(): {
|
|
2266
2446
|
[key: string]: string;
|
|
2267
2447
|
};
|
|
@@ -2273,10 +2453,10 @@ export declare class ListSecretParametersShrinkRequest extends $tea.Model {
|
|
|
2273
2453
|
});
|
|
2274
2454
|
}
|
|
2275
2455
|
export declare class ListSecretParametersResponseBody extends $tea.Model {
|
|
2276
|
-
nextToken?: string;
|
|
2277
|
-
requestId?: string;
|
|
2278
2456
|
maxResults?: number;
|
|
2457
|
+
nextToken?: string;
|
|
2279
2458
|
parameters?: ListSecretParametersResponseBodyParameters[];
|
|
2459
|
+
requestId?: string;
|
|
2280
2460
|
static names(): {
|
|
2281
2461
|
[key: string]: string;
|
|
2282
2462
|
};
|
|
@@ -2291,6 +2471,7 @@ export declare class ListSecretParametersResponse extends $tea.Model {
|
|
|
2291
2471
|
headers: {
|
|
2292
2472
|
[key: string]: string;
|
|
2293
2473
|
};
|
|
2474
|
+
statusCode: number;
|
|
2294
2475
|
body: ListSecretParametersResponseBody;
|
|
2295
2476
|
static names(): {
|
|
2296
2477
|
[key: string]: string;
|
|
@@ -2302,71 +2483,17 @@ export declare class ListSecretParametersResponse extends $tea.Model {
|
|
|
2302
2483
|
[key: string]: any;
|
|
2303
2484
|
});
|
|
2304
2485
|
}
|
|
2305
|
-
export declare class
|
|
2306
|
-
regionId?: string;
|
|
2307
|
-
name?: string;
|
|
2486
|
+
export declare class ListStateConfigurationsRequest extends $tea.Model {
|
|
2308
2487
|
maxResults?: number;
|
|
2309
2488
|
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
2489
|
regionId?: string;
|
|
2361
|
-
|
|
2362
|
-
templateVersion?: string;
|
|
2490
|
+
resourceGroupId?: string;
|
|
2363
2491
|
stateConfigurationIds?: string;
|
|
2364
2492
|
tags?: {
|
|
2365
2493
|
[key: string]: any;
|
|
2366
2494
|
};
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
resourceGroupId?: string;
|
|
2495
|
+
templateName?: string;
|
|
2496
|
+
templateVersion?: string;
|
|
2370
2497
|
static names(): {
|
|
2371
2498
|
[key: string]: string;
|
|
2372
2499
|
};
|
|
@@ -2378,14 +2505,14 @@ export declare class ListStateConfigurationsRequest extends $tea.Model {
|
|
|
2378
2505
|
});
|
|
2379
2506
|
}
|
|
2380
2507
|
export declare class ListStateConfigurationsShrinkRequest extends $tea.Model {
|
|
2381
|
-
regionId?: string;
|
|
2382
|
-
templateName?: string;
|
|
2383
|
-
templateVersion?: string;
|
|
2384
|
-
stateConfigurationIds?: string;
|
|
2385
|
-
tagsShrink?: string;
|
|
2386
2508
|
maxResults?: number;
|
|
2387
2509
|
nextToken?: string;
|
|
2510
|
+
regionId?: string;
|
|
2388
2511
|
resourceGroupId?: string;
|
|
2512
|
+
stateConfigurationIds?: string;
|
|
2513
|
+
tagsShrink?: string;
|
|
2514
|
+
templateName?: string;
|
|
2515
|
+
templateVersion?: string;
|
|
2389
2516
|
static names(): {
|
|
2390
2517
|
[key: string]: string;
|
|
2391
2518
|
};
|
|
@@ -2413,6 +2540,7 @@ export declare class ListStateConfigurationsResponse extends $tea.Model {
|
|
|
2413
2540
|
headers: {
|
|
2414
2541
|
[key: string]: string;
|
|
2415
2542
|
};
|
|
2543
|
+
statusCode: number;
|
|
2416
2544
|
body: ListStateConfigurationsResponseBody;
|
|
2417
2545
|
static names(): {
|
|
2418
2546
|
[key: string]: string;
|
|
@@ -2425,9 +2553,9 @@ export declare class ListStateConfigurationsResponse extends $tea.Model {
|
|
|
2425
2553
|
});
|
|
2426
2554
|
}
|
|
2427
2555
|
export declare class ListTagKeysRequest extends $tea.Model {
|
|
2428
|
-
regionId?: string;
|
|
2429
2556
|
maxResults?: number;
|
|
2430
2557
|
nextToken?: string;
|
|
2558
|
+
regionId?: string;
|
|
2431
2559
|
resourceType?: string;
|
|
2432
2560
|
static names(): {
|
|
2433
2561
|
[key: string]: string;
|
|
@@ -2440,10 +2568,10 @@ export declare class ListTagKeysRequest extends $tea.Model {
|
|
|
2440
2568
|
});
|
|
2441
2569
|
}
|
|
2442
2570
|
export declare class ListTagKeysResponseBody extends $tea.Model {
|
|
2571
|
+
keys?: string[];
|
|
2572
|
+
maxResults?: number;
|
|
2443
2573
|
nextToken?: string;
|
|
2444
2574
|
requestId?: string;
|
|
2445
|
-
maxResults?: number;
|
|
2446
|
-
keys?: string[];
|
|
2447
2575
|
static names(): {
|
|
2448
2576
|
[key: string]: string;
|
|
2449
2577
|
};
|
|
@@ -2458,6 +2586,7 @@ export declare class ListTagKeysResponse extends $tea.Model {
|
|
|
2458
2586
|
headers: {
|
|
2459
2587
|
[key: string]: string;
|
|
2460
2588
|
};
|
|
2589
|
+
statusCode: number;
|
|
2461
2590
|
body: ListTagKeysResponseBody;
|
|
2462
2591
|
static names(): {
|
|
2463
2592
|
[key: string]: string;
|
|
@@ -2470,6 +2599,7 @@ export declare class ListTagKeysResponse extends $tea.Model {
|
|
|
2470
2599
|
});
|
|
2471
2600
|
}
|
|
2472
2601
|
export declare class ListTagResourcesRequest extends $tea.Model {
|
|
2602
|
+
nextToken?: string;
|
|
2473
2603
|
regionId?: string;
|
|
2474
2604
|
resourceIds?: {
|
|
2475
2605
|
[key: string]: any;
|
|
@@ -2478,7 +2608,6 @@ export declare class ListTagResourcesRequest extends $tea.Model {
|
|
|
2478
2608
|
tags?: {
|
|
2479
2609
|
[key: string]: any;
|
|
2480
2610
|
};
|
|
2481
|
-
nextToken?: string;
|
|
2482
2611
|
static names(): {
|
|
2483
2612
|
[key: string]: string;
|
|
2484
2613
|
};
|
|
@@ -2490,11 +2619,11 @@ export declare class ListTagResourcesRequest extends $tea.Model {
|
|
|
2490
2619
|
});
|
|
2491
2620
|
}
|
|
2492
2621
|
export declare class ListTagResourcesShrinkRequest extends $tea.Model {
|
|
2622
|
+
nextToken?: string;
|
|
2493
2623
|
regionId?: string;
|
|
2494
2624
|
resourceIdsShrink?: string;
|
|
2495
2625
|
resourceType?: string;
|
|
2496
2626
|
tagsShrink?: string;
|
|
2497
|
-
nextToken?: string;
|
|
2498
2627
|
static names(): {
|
|
2499
2628
|
[key: string]: string;
|
|
2500
2629
|
};
|
|
@@ -2523,6 +2652,7 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
2523
2652
|
headers: {
|
|
2524
2653
|
[key: string]: string;
|
|
2525
2654
|
};
|
|
2655
|
+
statusCode: number;
|
|
2526
2656
|
body: ListTagResourcesResponseBody;
|
|
2527
2657
|
static names(): {
|
|
2528
2658
|
[key: string]: string;
|
|
@@ -2535,11 +2665,11 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
2535
2665
|
});
|
|
2536
2666
|
}
|
|
2537
2667
|
export declare class ListTagValuesRequest extends $tea.Model {
|
|
2538
|
-
|
|
2668
|
+
key?: string;
|
|
2539
2669
|
maxResults?: number;
|
|
2540
2670
|
nextToken?: string;
|
|
2671
|
+
regionId?: string;
|
|
2541
2672
|
resourceType?: string;
|
|
2542
|
-
key?: string;
|
|
2543
2673
|
static names(): {
|
|
2544
2674
|
[key: string]: string;
|
|
2545
2675
|
};
|
|
@@ -2551,9 +2681,9 @@ export declare class ListTagValuesRequest extends $tea.Model {
|
|
|
2551
2681
|
});
|
|
2552
2682
|
}
|
|
2553
2683
|
export declare class ListTagValuesResponseBody extends $tea.Model {
|
|
2684
|
+
maxResults?: number;
|
|
2554
2685
|
nextToken?: string;
|
|
2555
2686
|
requestId?: string;
|
|
2556
|
-
maxResults?: number;
|
|
2557
2687
|
values?: string[];
|
|
2558
2688
|
static names(): {
|
|
2559
2689
|
[key: string]: string;
|
|
@@ -2569,6 +2699,7 @@ export declare class ListTagValuesResponse extends $tea.Model {
|
|
|
2569
2699
|
headers: {
|
|
2570
2700
|
[key: string]: string;
|
|
2571
2701
|
};
|
|
2702
|
+
statusCode: number;
|
|
2572
2703
|
body: ListTagValuesResponseBody;
|
|
2573
2704
|
static names(): {
|
|
2574
2705
|
[key: string]: string;
|
|
@@ -2581,22 +2712,22 @@ export declare class ListTagValuesResponse extends $tea.Model {
|
|
|
2581
2712
|
});
|
|
2582
2713
|
}
|
|
2583
2714
|
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
2715
|
endDateAfter?: string;
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
taskAction?: string;
|
|
2594
|
-
parentTaskExecutionId?: string;
|
|
2716
|
+
endDateBefore?: string;
|
|
2717
|
+
executionId?: string;
|
|
2595
2718
|
includeChildTaskExecution?: boolean;
|
|
2596
2719
|
maxResults?: number;
|
|
2597
2720
|
nextToken?: string;
|
|
2721
|
+
parentTaskExecutionId?: string;
|
|
2722
|
+
regionId?: string;
|
|
2598
2723
|
sortField?: string;
|
|
2599
2724
|
sortOrder?: string;
|
|
2725
|
+
startDateAfter?: string;
|
|
2726
|
+
startDateBefore?: string;
|
|
2727
|
+
status?: string;
|
|
2728
|
+
taskAction?: string;
|
|
2729
|
+
taskExecutionId?: string;
|
|
2730
|
+
taskName?: string;
|
|
2600
2731
|
static names(): {
|
|
2601
2732
|
[key: string]: string;
|
|
2602
2733
|
};
|
|
@@ -2608,9 +2739,9 @@ export declare class ListTaskExecutionsRequest extends $tea.Model {
|
|
|
2608
2739
|
});
|
|
2609
2740
|
}
|
|
2610
2741
|
export declare class ListTaskExecutionsResponseBody extends $tea.Model {
|
|
2742
|
+
maxResults?: number;
|
|
2611
2743
|
nextToken?: string;
|
|
2612
2744
|
requestId?: string;
|
|
2613
|
-
maxResults?: number;
|
|
2614
2745
|
taskExecutions?: ListTaskExecutionsResponseBodyTaskExecutions[];
|
|
2615
2746
|
static names(): {
|
|
2616
2747
|
[key: string]: string;
|
|
@@ -2626,6 +2757,7 @@ export declare class ListTaskExecutionsResponse extends $tea.Model {
|
|
|
2626
2757
|
headers: {
|
|
2627
2758
|
[key: string]: string;
|
|
2628
2759
|
};
|
|
2760
|
+
statusCode: number;
|
|
2629
2761
|
body: ListTaskExecutionsResponseBody;
|
|
2630
2762
|
static names(): {
|
|
2631
2763
|
[key: string]: string;
|
|
@@ -2637,25 +2769,12 @@ export declare class ListTaskExecutionsResponse extends $tea.Model {
|
|
|
2637
2769
|
[key: string]: any;
|
|
2638
2770
|
});
|
|
2639
2771
|
}
|
|
2640
|
-
export declare class
|
|
2641
|
-
regionId?: string;
|
|
2642
|
-
templateName?: string;
|
|
2643
|
-
templateFormat?: string;
|
|
2644
|
-
shareType?: string;
|
|
2645
|
-
createdBy?: string;
|
|
2646
|
-
createdDateBefore?: string;
|
|
2647
|
-
createdDateAfter?: string;
|
|
2648
|
-
tags?: {
|
|
2649
|
-
[key: string]: any;
|
|
2650
|
-
};
|
|
2651
|
-
category?: string;
|
|
2772
|
+
export declare class ListTemplateVersionsRequest extends $tea.Model {
|
|
2652
2773
|
maxResults?: number;
|
|
2653
2774
|
nextToken?: string;
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
templateType?: string;
|
|
2658
|
-
resourceGroupId?: string;
|
|
2775
|
+
regionId?: string;
|
|
2776
|
+
shareType?: string;
|
|
2777
|
+
templateName?: string;
|
|
2659
2778
|
static names(): {
|
|
2660
2779
|
[key: string]: string;
|
|
2661
2780
|
};
|
|
@@ -2666,23 +2785,11 @@ export declare class ListTemplatesRequest extends $tea.Model {
|
|
|
2666
2785
|
[key: string]: any;
|
|
2667
2786
|
});
|
|
2668
2787
|
}
|
|
2669
|
-
export declare class
|
|
2670
|
-
regionId?: string;
|
|
2671
|
-
templateName?: string;
|
|
2672
|
-
templateFormat?: string;
|
|
2673
|
-
shareType?: string;
|
|
2674
|
-
createdBy?: string;
|
|
2675
|
-
createdDateBefore?: string;
|
|
2676
|
-
createdDateAfter?: string;
|
|
2677
|
-
tagsShrink?: string;
|
|
2678
|
-
category?: string;
|
|
2788
|
+
export declare class ListTemplateVersionsResponseBody extends $tea.Model {
|
|
2679
2789
|
maxResults?: number;
|
|
2680
2790
|
nextToken?: string;
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
hasTrigger?: boolean;
|
|
2684
|
-
templateType?: string;
|
|
2685
|
-
resourceGroupId?: string;
|
|
2791
|
+
requestId?: string;
|
|
2792
|
+
templateVersions?: ListTemplateVersionsResponseBodyTemplateVersions[];
|
|
2686
2793
|
static names(): {
|
|
2687
2794
|
[key: string]: string;
|
|
2688
2795
|
};
|
|
@@ -2693,11 +2800,12 @@ export declare class ListTemplatesShrinkRequest extends $tea.Model {
|
|
|
2693
2800
|
[key: string]: any;
|
|
2694
2801
|
});
|
|
2695
2802
|
}
|
|
2696
|
-
export declare class
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2803
|
+
export declare class ListTemplateVersionsResponse extends $tea.Model {
|
|
2804
|
+
headers: {
|
|
2805
|
+
[key: string]: string;
|
|
2806
|
+
};
|
|
2807
|
+
statusCode: number;
|
|
2808
|
+
body: ListTemplateVersionsResponseBody;
|
|
2701
2809
|
static names(): {
|
|
2702
2810
|
[key: string]: string;
|
|
2703
2811
|
};
|
|
@@ -2708,11 +2816,25 @@ export declare class ListTemplatesResponseBody extends $tea.Model {
|
|
|
2708
2816
|
[key: string]: any;
|
|
2709
2817
|
});
|
|
2710
2818
|
}
|
|
2711
|
-
export declare class
|
|
2712
|
-
|
|
2713
|
-
|
|
2819
|
+
export declare class ListTemplatesRequest extends $tea.Model {
|
|
2820
|
+
category?: string;
|
|
2821
|
+
createdBy?: string;
|
|
2822
|
+
createdDateAfter?: string;
|
|
2823
|
+
createdDateBefore?: string;
|
|
2824
|
+
hasTrigger?: boolean;
|
|
2825
|
+
maxResults?: number;
|
|
2826
|
+
nextToken?: string;
|
|
2827
|
+
regionId?: string;
|
|
2828
|
+
resourceGroupId?: string;
|
|
2829
|
+
shareType?: string;
|
|
2830
|
+
sortField?: string;
|
|
2831
|
+
sortOrder?: string;
|
|
2832
|
+
tags?: {
|
|
2833
|
+
[key: string]: any;
|
|
2714
2834
|
};
|
|
2715
|
-
|
|
2835
|
+
templateFormat?: string;
|
|
2836
|
+
templateName?: string;
|
|
2837
|
+
templateType?: string;
|
|
2716
2838
|
static names(): {
|
|
2717
2839
|
[key: string]: string;
|
|
2718
2840
|
};
|
|
@@ -2723,12 +2845,23 @@ export declare class ListTemplatesResponse extends $tea.Model {
|
|
|
2723
2845
|
[key: string]: any;
|
|
2724
2846
|
});
|
|
2725
2847
|
}
|
|
2726
|
-
export declare class
|
|
2727
|
-
|
|
2728
|
-
|
|
2848
|
+
export declare class ListTemplatesShrinkRequest extends $tea.Model {
|
|
2849
|
+
category?: string;
|
|
2850
|
+
createdBy?: string;
|
|
2851
|
+
createdDateAfter?: string;
|
|
2852
|
+
createdDateBefore?: string;
|
|
2853
|
+
hasTrigger?: boolean;
|
|
2729
2854
|
maxResults?: number;
|
|
2730
2855
|
nextToken?: string;
|
|
2856
|
+
regionId?: string;
|
|
2857
|
+
resourceGroupId?: string;
|
|
2731
2858
|
shareType?: string;
|
|
2859
|
+
sortField?: string;
|
|
2860
|
+
sortOrder?: string;
|
|
2861
|
+
tagsShrink?: string;
|
|
2862
|
+
templateFormat?: string;
|
|
2863
|
+
templateName?: string;
|
|
2864
|
+
templateType?: string;
|
|
2732
2865
|
static names(): {
|
|
2733
2866
|
[key: string]: string;
|
|
2734
2867
|
};
|
|
@@ -2739,11 +2872,11 @@ export declare class ListTemplateVersionsRequest extends $tea.Model {
|
|
|
2739
2872
|
[key: string]: any;
|
|
2740
2873
|
});
|
|
2741
2874
|
}
|
|
2742
|
-
export declare class
|
|
2875
|
+
export declare class ListTemplatesResponseBody extends $tea.Model {
|
|
2876
|
+
maxResults?: number;
|
|
2743
2877
|
nextToken?: string;
|
|
2744
2878
|
requestId?: string;
|
|
2745
|
-
|
|
2746
|
-
templateVersions?: ListTemplateVersionsResponseBodyTemplateVersions[];
|
|
2879
|
+
templates?: ListTemplatesResponseBodyTemplates[];
|
|
2747
2880
|
static names(): {
|
|
2748
2881
|
[key: string]: string;
|
|
2749
2882
|
};
|
|
@@ -2754,11 +2887,12 @@ export declare class ListTemplateVersionsResponseBody extends $tea.Model {
|
|
|
2754
2887
|
[key: string]: any;
|
|
2755
2888
|
});
|
|
2756
2889
|
}
|
|
2757
|
-
export declare class
|
|
2890
|
+
export declare class ListTemplatesResponse extends $tea.Model {
|
|
2758
2891
|
headers: {
|
|
2759
2892
|
[key: string]: string;
|
|
2760
2893
|
};
|
|
2761
|
-
|
|
2894
|
+
statusCode: number;
|
|
2895
|
+
body: ListTemplatesResponseBody;
|
|
2762
2896
|
static names(): {
|
|
2763
2897
|
[key: string]: string;
|
|
2764
2898
|
};
|
|
@@ -2770,16 +2904,16 @@ export declare class ListTemplateVersionsResponse extends $tea.Model {
|
|
|
2770
2904
|
});
|
|
2771
2905
|
}
|
|
2772
2906
|
export declare class NotifyExecutionRequest extends $tea.Model {
|
|
2773
|
-
regionId?: string;
|
|
2774
2907
|
executionId?: string;
|
|
2775
|
-
notifyType?: string;
|
|
2776
|
-
notifyNote?: string;
|
|
2777
|
-
taskName?: string;
|
|
2778
|
-
taskExecutionId?: string;
|
|
2779
2908
|
executionStatus?: string;
|
|
2780
|
-
parameters?: string;
|
|
2781
2909
|
loopItem?: string;
|
|
2910
|
+
notifyNote?: string;
|
|
2911
|
+
notifyType?: string;
|
|
2912
|
+
parameters?: string;
|
|
2913
|
+
regionId?: string;
|
|
2914
|
+
taskExecutionId?: string;
|
|
2782
2915
|
taskExecutionIds?: string;
|
|
2916
|
+
taskName?: string;
|
|
2783
2917
|
static names(): {
|
|
2784
2918
|
[key: string]: string;
|
|
2785
2919
|
};
|
|
@@ -2806,6 +2940,7 @@ export declare class NotifyExecutionResponse extends $tea.Model {
|
|
|
2806
2940
|
headers: {
|
|
2807
2941
|
[key: string]: string;
|
|
2808
2942
|
};
|
|
2943
|
+
statusCode: number;
|
|
2809
2944
|
body: NotifyExecutionResponseBody;
|
|
2810
2945
|
static names(): {
|
|
2811
2946
|
[key: string]: string;
|
|
@@ -2818,8 +2953,8 @@ export declare class NotifyExecutionResponse extends $tea.Model {
|
|
|
2818
2953
|
});
|
|
2819
2954
|
}
|
|
2820
2955
|
export declare class RegisterDefaultPatchBaselineRequest extends $tea.Model {
|
|
2821
|
-
regionId?: string;
|
|
2822
2956
|
name?: string;
|
|
2957
|
+
regionId?: string;
|
|
2823
2958
|
static names(): {
|
|
2824
2959
|
[key: string]: string;
|
|
2825
2960
|
};
|
|
@@ -2831,8 +2966,8 @@ export declare class RegisterDefaultPatchBaselineRequest extends $tea.Model {
|
|
|
2831
2966
|
});
|
|
2832
2967
|
}
|
|
2833
2968
|
export declare class RegisterDefaultPatchBaselineResponseBody extends $tea.Model {
|
|
2834
|
-
requestId?: string;
|
|
2835
2969
|
patchBaseline?: RegisterDefaultPatchBaselineResponseBodyPatchBaseline;
|
|
2970
|
+
requestId?: string;
|
|
2836
2971
|
static names(): {
|
|
2837
2972
|
[key: string]: string;
|
|
2838
2973
|
};
|
|
@@ -2847,6 +2982,7 @@ export declare class RegisterDefaultPatchBaselineResponse extends $tea.Model {
|
|
|
2847
2982
|
headers: {
|
|
2848
2983
|
[key: string]: string;
|
|
2849
2984
|
};
|
|
2985
|
+
statusCode: number;
|
|
2850
2986
|
body: RegisterDefaultPatchBaselineResponseBody;
|
|
2851
2987
|
static names(): {
|
|
2852
2988
|
[key: string]: string;
|
|
@@ -2859,11 +2995,11 @@ export declare class RegisterDefaultPatchBaselineResponse extends $tea.Model {
|
|
|
2859
2995
|
});
|
|
2860
2996
|
}
|
|
2861
2997
|
export declare class SearchInventoryRequest extends $tea.Model {
|
|
2862
|
-
regionId?: string;
|
|
2863
|
-
nextToken?: string;
|
|
2864
|
-
maxResults?: number;
|
|
2865
|
-
filter?: SearchInventoryRequestFilter[];
|
|
2866
2998
|
aggregator?: string[];
|
|
2999
|
+
filter?: SearchInventoryRequestFilter[];
|
|
3000
|
+
maxResults?: number;
|
|
3001
|
+
nextToken?: string;
|
|
3002
|
+
regionId?: string;
|
|
2867
3003
|
static names(): {
|
|
2868
3004
|
[key: string]: string;
|
|
2869
3005
|
};
|
|
@@ -2875,12 +3011,12 @@ export declare class SearchInventoryRequest extends $tea.Model {
|
|
|
2875
3011
|
});
|
|
2876
3012
|
}
|
|
2877
3013
|
export declare class SearchInventoryResponseBody extends $tea.Model {
|
|
2878
|
-
nextToken?: string;
|
|
2879
|
-
requestId?: string;
|
|
2880
|
-
maxResults?: number;
|
|
2881
3014
|
entities?: {
|
|
2882
3015
|
[key: string]: any;
|
|
2883
3016
|
}[];
|
|
3017
|
+
maxResults?: number;
|
|
3018
|
+
nextToken?: string;
|
|
3019
|
+
requestId?: string;
|
|
2884
3020
|
static names(): {
|
|
2885
3021
|
[key: string]: string;
|
|
2886
3022
|
};
|
|
@@ -2895,6 +3031,7 @@ export declare class SearchInventoryResponse extends $tea.Model {
|
|
|
2895
3031
|
headers: {
|
|
2896
3032
|
[key: string]: string;
|
|
2897
3033
|
};
|
|
3034
|
+
statusCode: number;
|
|
2898
3035
|
body: SearchInventoryResponseBody;
|
|
2899
3036
|
static names(): {
|
|
2900
3037
|
[key: string]: string;
|
|
@@ -2907,13 +3044,13 @@ export declare class SearchInventoryResponse extends $tea.Model {
|
|
|
2907
3044
|
});
|
|
2908
3045
|
}
|
|
2909
3046
|
export declare class SetServiceSettingsRequest extends $tea.Model {
|
|
2910
|
-
deliveryOssEnabled?: boolean;
|
|
2911
3047
|
deliveryOssBucketName?: string;
|
|
3048
|
+
deliveryOssEnabled?: boolean;
|
|
2912
3049
|
deliveryOssKeyPrefix?: string;
|
|
2913
|
-
deliverySlsProjectName?: string;
|
|
2914
3050
|
deliverySlsEnabled?: boolean;
|
|
2915
|
-
|
|
3051
|
+
deliverySlsProjectName?: string;
|
|
2916
3052
|
rdcEnterpriseId?: string;
|
|
3053
|
+
regionId?: string;
|
|
2917
3054
|
static names(): {
|
|
2918
3055
|
[key: string]: string;
|
|
2919
3056
|
};
|
|
@@ -2941,6 +3078,7 @@ export declare class SetServiceSettingsResponse extends $tea.Model {
|
|
|
2941
3078
|
headers: {
|
|
2942
3079
|
[key: string]: string;
|
|
2943
3080
|
};
|
|
3081
|
+
statusCode: number;
|
|
2944
3082
|
body: SetServiceSettingsResponseBody;
|
|
2945
3083
|
static names(): {
|
|
2946
3084
|
[key: string]: string;
|
|
@@ -2953,21 +3091,21 @@ export declare class SetServiceSettingsResponse extends $tea.Model {
|
|
|
2953
3091
|
});
|
|
2954
3092
|
}
|
|
2955
3093
|
export declare class StartExecutionRequest extends $tea.Model {
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
templateVersion?: string;
|
|
2959
|
-
mode?: string;
|
|
3094
|
+
clientToken?: string;
|
|
3095
|
+
description?: string;
|
|
2960
3096
|
loopMode?: string;
|
|
3097
|
+
mode?: string;
|
|
3098
|
+
parameters?: string;
|
|
2961
3099
|
parentExecutionId?: string;
|
|
3100
|
+
regionId?: string;
|
|
3101
|
+
resourceGroupId?: string;
|
|
2962
3102
|
safetyCheck?: string;
|
|
2963
|
-
parameters?: string;
|
|
2964
|
-
clientToken?: string;
|
|
2965
3103
|
tags?: {
|
|
2966
3104
|
[key: string]: any;
|
|
2967
3105
|
};
|
|
2968
|
-
description?: string;
|
|
2969
3106
|
templateContent?: string;
|
|
2970
|
-
|
|
3107
|
+
templateName?: string;
|
|
3108
|
+
templateVersion?: string;
|
|
2971
3109
|
static names(): {
|
|
2972
3110
|
[key: string]: string;
|
|
2973
3111
|
};
|
|
@@ -2979,19 +3117,19 @@ export declare class StartExecutionRequest extends $tea.Model {
|
|
|
2979
3117
|
});
|
|
2980
3118
|
}
|
|
2981
3119
|
export declare class StartExecutionShrinkRequest extends $tea.Model {
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
templateVersion?: string;
|
|
2985
|
-
mode?: string;
|
|
3120
|
+
clientToken?: string;
|
|
3121
|
+
description?: string;
|
|
2986
3122
|
loopMode?: string;
|
|
3123
|
+
mode?: string;
|
|
3124
|
+
parameters?: string;
|
|
2987
3125
|
parentExecutionId?: string;
|
|
3126
|
+
regionId?: string;
|
|
3127
|
+
resourceGroupId?: string;
|
|
2988
3128
|
safetyCheck?: string;
|
|
2989
|
-
parameters?: string;
|
|
2990
|
-
clientToken?: string;
|
|
2991
3129
|
tagsShrink?: string;
|
|
2992
|
-
description?: string;
|
|
2993
3130
|
templateContent?: string;
|
|
2994
|
-
|
|
3131
|
+
templateName?: string;
|
|
3132
|
+
templateVersion?: string;
|
|
2995
3133
|
static names(): {
|
|
2996
3134
|
[key: string]: string;
|
|
2997
3135
|
};
|
|
@@ -3003,8 +3141,8 @@ export declare class StartExecutionShrinkRequest extends $tea.Model {
|
|
|
3003
3141
|
});
|
|
3004
3142
|
}
|
|
3005
3143
|
export declare class StartExecutionResponseBody extends $tea.Model {
|
|
3006
|
-
requestId?: string;
|
|
3007
3144
|
execution?: StartExecutionResponseBodyExecution;
|
|
3145
|
+
requestId?: string;
|
|
3008
3146
|
static names(): {
|
|
3009
3147
|
[key: string]: string;
|
|
3010
3148
|
};
|
|
@@ -3019,6 +3157,7 @@ export declare class StartExecutionResponse extends $tea.Model {
|
|
|
3019
3157
|
headers: {
|
|
3020
3158
|
[key: string]: string;
|
|
3021
3159
|
};
|
|
3160
|
+
statusCode: number;
|
|
3022
3161
|
body: StartExecutionResponseBody;
|
|
3023
3162
|
static names(): {
|
|
3024
3163
|
[key: string]: string;
|
|
@@ -3080,6 +3219,7 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
3080
3219
|
headers: {
|
|
3081
3220
|
[key: string]: string;
|
|
3082
3221
|
};
|
|
3222
|
+
statusCode: number;
|
|
3083
3223
|
body: TagResourcesResponseBody;
|
|
3084
3224
|
static names(): {
|
|
3085
3225
|
[key: string]: string;
|
|
@@ -3092,11 +3232,11 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
3092
3232
|
});
|
|
3093
3233
|
}
|
|
3094
3234
|
export declare class TriggerExecutionRequest extends $tea.Model {
|
|
3095
|
-
|
|
3235
|
+
clientToken?: string;
|
|
3236
|
+
content?: string;
|
|
3096
3237
|
executionId?: string;
|
|
3238
|
+
regionId?: string;
|
|
3097
3239
|
type?: string;
|
|
3098
|
-
content?: string;
|
|
3099
|
-
clientToken?: string;
|
|
3100
3240
|
static names(): {
|
|
3101
3241
|
[key: string]: string;
|
|
3102
3242
|
};
|
|
@@ -3123,6 +3263,7 @@ export declare class TriggerExecutionResponse extends $tea.Model {
|
|
|
3123
3263
|
headers: {
|
|
3124
3264
|
[key: string]: string;
|
|
3125
3265
|
};
|
|
3266
|
+
statusCode: number;
|
|
3126
3267
|
body: TriggerExecutionResponseBody;
|
|
3127
3268
|
static names(): {
|
|
3128
3269
|
[key: string]: string;
|
|
@@ -3135,6 +3276,7 @@ export declare class TriggerExecutionResponse extends $tea.Model {
|
|
|
3135
3276
|
});
|
|
3136
3277
|
}
|
|
3137
3278
|
export declare class UntagResourcesRequest extends $tea.Model {
|
|
3279
|
+
all?: boolean;
|
|
3138
3280
|
regionId?: string;
|
|
3139
3281
|
resourceIds?: {
|
|
3140
3282
|
[key: string]: any;
|
|
@@ -3143,7 +3285,6 @@ export declare class UntagResourcesRequest extends $tea.Model {
|
|
|
3143
3285
|
tagKeys?: {
|
|
3144
3286
|
[key: string]: any;
|
|
3145
3287
|
};
|
|
3146
|
-
all?: boolean;
|
|
3147
3288
|
static names(): {
|
|
3148
3289
|
[key: string]: string;
|
|
3149
3290
|
};
|
|
@@ -3155,11 +3296,11 @@ export declare class UntagResourcesRequest extends $tea.Model {
|
|
|
3155
3296
|
});
|
|
3156
3297
|
}
|
|
3157
3298
|
export declare class UntagResourcesShrinkRequest extends $tea.Model {
|
|
3299
|
+
all?: boolean;
|
|
3158
3300
|
regionId?: string;
|
|
3159
3301
|
resourceIdsShrink?: string;
|
|
3160
3302
|
resourceType?: string;
|
|
3161
3303
|
tagKeysShrink?: string;
|
|
3162
|
-
all?: boolean;
|
|
3163
3304
|
static names(): {
|
|
3164
3305
|
[key: string]: string;
|
|
3165
3306
|
};
|
|
@@ -3186,6 +3327,7 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
3186
3327
|
headers: {
|
|
3187
3328
|
[key: string]: string;
|
|
3188
3329
|
};
|
|
3330
|
+
statusCode: number;
|
|
3189
3331
|
body: UntagResourcesResponseBody;
|
|
3190
3332
|
static names(): {
|
|
3191
3333
|
[key: string]: string;
|
|
@@ -3197,10 +3339,28 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
3197
3339
|
[key: string]: any;
|
|
3198
3340
|
});
|
|
3199
3341
|
}
|
|
3200
|
-
export declare class
|
|
3342
|
+
export declare class UpdateApplicationRequest extends $tea.Model {
|
|
3343
|
+
description?: string;
|
|
3344
|
+
name?: string;
|
|
3201
3345
|
regionId?: string;
|
|
3346
|
+
tags?: {
|
|
3347
|
+
[key: string]: any;
|
|
3348
|
+
};
|
|
3349
|
+
static names(): {
|
|
3350
|
+
[key: string]: string;
|
|
3351
|
+
};
|
|
3352
|
+
static types(): {
|
|
3353
|
+
[key: string]: any;
|
|
3354
|
+
};
|
|
3355
|
+
constructor(map?: {
|
|
3356
|
+
[key: string]: any;
|
|
3357
|
+
});
|
|
3358
|
+
}
|
|
3359
|
+
export declare class UpdateApplicationShrinkRequest extends $tea.Model {
|
|
3360
|
+
description?: string;
|
|
3202
3361
|
name?: string;
|
|
3203
|
-
|
|
3362
|
+
regionId?: string;
|
|
3363
|
+
tagsShrink?: string;
|
|
3204
3364
|
static names(): {
|
|
3205
3365
|
[key: string]: string;
|
|
3206
3366
|
};
|
|
@@ -3211,9 +3371,9 @@ export declare class UpdateApplicationGroupRequest extends $tea.Model {
|
|
|
3211
3371
|
[key: string]: any;
|
|
3212
3372
|
});
|
|
3213
3373
|
}
|
|
3214
|
-
export declare class
|
|
3374
|
+
export declare class UpdateApplicationResponseBody extends $tea.Model {
|
|
3375
|
+
application?: UpdateApplicationResponseBodyApplication;
|
|
3215
3376
|
requestId?: string;
|
|
3216
|
-
applicationGroup?: UpdateApplicationGroupResponseBodyApplicationGroup;
|
|
3217
3377
|
static names(): {
|
|
3218
3378
|
[key: string]: string;
|
|
3219
3379
|
};
|
|
@@ -3224,11 +3384,12 @@ export declare class UpdateApplicationGroupResponseBody extends $tea.Model {
|
|
|
3224
3384
|
[key: string]: any;
|
|
3225
3385
|
});
|
|
3226
3386
|
}
|
|
3227
|
-
export declare class
|
|
3387
|
+
export declare class UpdateApplicationResponse extends $tea.Model {
|
|
3228
3388
|
headers: {
|
|
3229
3389
|
[key: string]: string;
|
|
3230
3390
|
};
|
|
3231
|
-
|
|
3391
|
+
statusCode: number;
|
|
3392
|
+
body: UpdateApplicationResponseBody;
|
|
3232
3393
|
static names(): {
|
|
3233
3394
|
[key: string]: string;
|
|
3234
3395
|
};
|
|
@@ -3239,11 +3400,11 @@ export declare class UpdateApplicationGroupResponse extends $tea.Model {
|
|
|
3239
3400
|
[key: string]: any;
|
|
3240
3401
|
});
|
|
3241
3402
|
}
|
|
3242
|
-
export declare class
|
|
3403
|
+
export declare class UpdateApplicationGroupRequest extends $tea.Model {
|
|
3404
|
+
applicationName?: string;
|
|
3405
|
+
name?: string;
|
|
3406
|
+
newName?: string;
|
|
3243
3407
|
regionId?: string;
|
|
3244
|
-
executionId?: string;
|
|
3245
|
-
parameters?: string;
|
|
3246
|
-
clientToken?: string;
|
|
3247
3408
|
static names(): {
|
|
3248
3409
|
[key: string]: string;
|
|
3249
3410
|
};
|
|
@@ -3254,7 +3415,8 @@ export declare class UpdateExecutionRequest extends $tea.Model {
|
|
|
3254
3415
|
[key: string]: any;
|
|
3255
3416
|
});
|
|
3256
3417
|
}
|
|
3257
|
-
export declare class
|
|
3418
|
+
export declare class UpdateApplicationGroupResponseBody extends $tea.Model {
|
|
3419
|
+
applicationGroup?: UpdateApplicationGroupResponseBodyApplicationGroup;
|
|
3258
3420
|
requestId?: string;
|
|
3259
3421
|
static names(): {
|
|
3260
3422
|
[key: string]: string;
|
|
@@ -3266,11 +3428,12 @@ export declare class UpdateExecutionResponseBody extends $tea.Model {
|
|
|
3266
3428
|
[key: string]: any;
|
|
3267
3429
|
});
|
|
3268
3430
|
}
|
|
3269
|
-
export declare class
|
|
3431
|
+
export declare class UpdateApplicationGroupResponse extends $tea.Model {
|
|
3270
3432
|
headers: {
|
|
3271
3433
|
[key: string]: string;
|
|
3272
3434
|
};
|
|
3273
|
-
|
|
3435
|
+
statusCode: number;
|
|
3436
|
+
body: UpdateApplicationGroupResponseBody;
|
|
3274
3437
|
static names(): {
|
|
3275
3438
|
[key: string]: string;
|
|
3276
3439
|
};
|
|
@@ -3281,16 +3444,11 @@ export declare class UpdateExecutionResponse extends $tea.Model {
|
|
|
3281
3444
|
[key: string]: any;
|
|
3282
3445
|
});
|
|
3283
3446
|
}
|
|
3284
|
-
export declare class
|
|
3447
|
+
export declare class UpdateExecutionRequest extends $tea.Model {
|
|
3448
|
+
clientToken?: string;
|
|
3449
|
+
executionId?: string;
|
|
3450
|
+
parameters?: string;
|
|
3285
3451
|
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
3452
|
static names(): {
|
|
3295
3453
|
[key: string]: string;
|
|
3296
3454
|
};
|
|
@@ -3301,7 +3459,7 @@ export declare class UpdateInstanceInformationRequest extends $tea.Model {
|
|
|
3301
3459
|
[key: string]: any;
|
|
3302
3460
|
});
|
|
3303
3461
|
}
|
|
3304
|
-
export declare class
|
|
3462
|
+
export declare class UpdateExecutionResponseBody extends $tea.Model {
|
|
3305
3463
|
requestId?: string;
|
|
3306
3464
|
static names(): {
|
|
3307
3465
|
[key: string]: string;
|
|
@@ -3313,11 +3471,12 @@ export declare class UpdateInstanceInformationResponseBody extends $tea.Model {
|
|
|
3313
3471
|
[key: string]: any;
|
|
3314
3472
|
});
|
|
3315
3473
|
}
|
|
3316
|
-
export declare class
|
|
3474
|
+
export declare class UpdateExecutionResponse extends $tea.Model {
|
|
3317
3475
|
headers: {
|
|
3318
3476
|
[key: string]: string;
|
|
3319
3477
|
};
|
|
3320
|
-
|
|
3478
|
+
statusCode: number;
|
|
3479
|
+
body: UpdateExecutionResponseBody;
|
|
3321
3480
|
static names(): {
|
|
3322
3481
|
[key: string]: string;
|
|
3323
3482
|
};
|
|
@@ -3329,12 +3488,12 @@ export declare class UpdateInstanceInformationResponse extends $tea.Model {
|
|
|
3329
3488
|
});
|
|
3330
3489
|
}
|
|
3331
3490
|
export declare class UpdateParameterRequest extends $tea.Model {
|
|
3332
|
-
regionId?: string;
|
|
3333
|
-
name?: string;
|
|
3334
|
-
value?: string;
|
|
3335
3491
|
description?: string;
|
|
3336
|
-
|
|
3492
|
+
name?: string;
|
|
3493
|
+
regionId?: string;
|
|
3337
3494
|
resourceGroupId?: string;
|
|
3495
|
+
tags?: string;
|
|
3496
|
+
value?: string;
|
|
3338
3497
|
static names(): {
|
|
3339
3498
|
[key: string]: string;
|
|
3340
3499
|
};
|
|
@@ -3346,8 +3505,8 @@ export declare class UpdateParameterRequest extends $tea.Model {
|
|
|
3346
3505
|
});
|
|
3347
3506
|
}
|
|
3348
3507
|
export declare class UpdateParameterResponseBody extends $tea.Model {
|
|
3349
|
-
requestId?: string;
|
|
3350
3508
|
parameter?: UpdateParameterResponseBodyParameter;
|
|
3509
|
+
requestId?: string;
|
|
3351
3510
|
static names(): {
|
|
3352
3511
|
[key: string]: string;
|
|
3353
3512
|
};
|
|
@@ -3362,6 +3521,7 @@ export declare class UpdateParameterResponse extends $tea.Model {
|
|
|
3362
3521
|
headers: {
|
|
3363
3522
|
[key: string]: string;
|
|
3364
3523
|
};
|
|
3524
|
+
statusCode: number;
|
|
3365
3525
|
body: UpdateParameterResponseBody;
|
|
3366
3526
|
static names(): {
|
|
3367
3527
|
[key: string]: string;
|
|
@@ -3374,11 +3534,11 @@ export declare class UpdateParameterResponse extends $tea.Model {
|
|
|
3374
3534
|
});
|
|
3375
3535
|
}
|
|
3376
3536
|
export declare class UpdatePatchBaselineRequest extends $tea.Model {
|
|
3377
|
-
regionId?: string;
|
|
3378
|
-
name?: string;
|
|
3379
|
-
description?: string;
|
|
3380
|
-
clientToken?: string;
|
|
3381
3537
|
approvalRules?: string;
|
|
3538
|
+
clientToken?: string;
|
|
3539
|
+
description?: string;
|
|
3540
|
+
name?: string;
|
|
3541
|
+
regionId?: string;
|
|
3382
3542
|
static names(): {
|
|
3383
3543
|
[key: string]: string;
|
|
3384
3544
|
};
|
|
@@ -3390,8 +3550,8 @@ export declare class UpdatePatchBaselineRequest extends $tea.Model {
|
|
|
3390
3550
|
});
|
|
3391
3551
|
}
|
|
3392
3552
|
export declare class UpdatePatchBaselineResponseBody extends $tea.Model {
|
|
3393
|
-
requestId?: string;
|
|
3394
3553
|
patchBaseline?: UpdatePatchBaselineResponseBodyPatchBaseline;
|
|
3554
|
+
requestId?: string;
|
|
3395
3555
|
static names(): {
|
|
3396
3556
|
[key: string]: string;
|
|
3397
3557
|
};
|
|
@@ -3406,6 +3566,7 @@ export declare class UpdatePatchBaselineResponse extends $tea.Model {
|
|
|
3406
3566
|
headers: {
|
|
3407
3567
|
[key: string]: string;
|
|
3408
3568
|
};
|
|
3569
|
+
statusCode: number;
|
|
3409
3570
|
body: UpdatePatchBaselineResponseBody;
|
|
3410
3571
|
static names(): {
|
|
3411
3572
|
[key: string]: string;
|
|
@@ -3418,14 +3579,14 @@ export declare class UpdatePatchBaselineResponse extends $tea.Model {
|
|
|
3418
3579
|
});
|
|
3419
3580
|
}
|
|
3420
3581
|
export declare class UpdateSecretParameterRequest extends $tea.Model {
|
|
3421
|
-
regionId?: string;
|
|
3422
|
-
name?: string;
|
|
3423
|
-
value?: string;
|
|
3424
3582
|
description?: string;
|
|
3583
|
+
name?: string;
|
|
3584
|
+
regionId?: string;
|
|
3585
|
+
resourceGroupId?: string;
|
|
3425
3586
|
tags?: {
|
|
3426
3587
|
[key: string]: any;
|
|
3427
3588
|
};
|
|
3428
|
-
|
|
3589
|
+
value?: string;
|
|
3429
3590
|
static names(): {
|
|
3430
3591
|
[key: string]: string;
|
|
3431
3592
|
};
|
|
@@ -3437,12 +3598,12 @@ export declare class UpdateSecretParameterRequest extends $tea.Model {
|
|
|
3437
3598
|
});
|
|
3438
3599
|
}
|
|
3439
3600
|
export declare class UpdateSecretParameterShrinkRequest extends $tea.Model {
|
|
3440
|
-
regionId?: string;
|
|
3441
|
-
name?: string;
|
|
3442
|
-
value?: string;
|
|
3443
3601
|
description?: string;
|
|
3444
|
-
|
|
3602
|
+
name?: string;
|
|
3603
|
+
regionId?: string;
|
|
3445
3604
|
resourceGroupId?: string;
|
|
3605
|
+
tagsShrink?: string;
|
|
3606
|
+
value?: string;
|
|
3446
3607
|
static names(): {
|
|
3447
3608
|
[key: string]: string;
|
|
3448
3609
|
};
|
|
@@ -3454,8 +3615,8 @@ export declare class UpdateSecretParameterShrinkRequest extends $tea.Model {
|
|
|
3454
3615
|
});
|
|
3455
3616
|
}
|
|
3456
3617
|
export declare class UpdateSecretParameterResponseBody extends $tea.Model {
|
|
3457
|
-
requestId?: string;
|
|
3458
3618
|
parameter?: UpdateSecretParameterResponseBodyParameter;
|
|
3619
|
+
requestId?: string;
|
|
3459
3620
|
static names(): {
|
|
3460
3621
|
[key: string]: string;
|
|
3461
3622
|
};
|
|
@@ -3470,6 +3631,7 @@ export declare class UpdateSecretParameterResponse extends $tea.Model {
|
|
|
3470
3631
|
headers: {
|
|
3471
3632
|
[key: string]: string;
|
|
3472
3633
|
};
|
|
3634
|
+
statusCode: number;
|
|
3473
3635
|
body: UpdateSecretParameterResponseBody;
|
|
3474
3636
|
static names(): {
|
|
3475
3637
|
[key: string]: string;
|
|
@@ -3482,21 +3644,21 @@ export declare class UpdateSecretParameterResponse extends $tea.Model {
|
|
|
3482
3644
|
});
|
|
3483
3645
|
}
|
|
3484
3646
|
export declare class UpdateStateConfigurationRequest extends $tea.Model {
|
|
3485
|
-
|
|
3647
|
+
clientToken?: string;
|
|
3648
|
+
configureMode?: string;
|
|
3486
3649
|
description?: string;
|
|
3487
3650
|
parameters?: {
|
|
3488
3651
|
[key: string]: any;
|
|
3489
3652
|
};
|
|
3490
|
-
|
|
3491
|
-
|
|
3653
|
+
regionId?: string;
|
|
3654
|
+
resourceGroupId?: string;
|
|
3492
3655
|
scheduleExpression?: string;
|
|
3493
|
-
|
|
3494
|
-
clientToken?: string;
|
|
3656
|
+
scheduleType?: string;
|
|
3495
3657
|
stateConfigurationId?: string;
|
|
3496
3658
|
tags?: {
|
|
3497
3659
|
[key: string]: any;
|
|
3498
3660
|
};
|
|
3499
|
-
|
|
3661
|
+
targets?: string;
|
|
3500
3662
|
static names(): {
|
|
3501
3663
|
[key: string]: string;
|
|
3502
3664
|
};
|
|
@@ -3508,17 +3670,17 @@ export declare class UpdateStateConfigurationRequest extends $tea.Model {
|
|
|
3508
3670
|
});
|
|
3509
3671
|
}
|
|
3510
3672
|
export declare class UpdateStateConfigurationShrinkRequest extends $tea.Model {
|
|
3511
|
-
|
|
3673
|
+
clientToken?: string;
|
|
3674
|
+
configureMode?: string;
|
|
3512
3675
|
description?: string;
|
|
3513
3676
|
parametersShrink?: string;
|
|
3514
|
-
|
|
3515
|
-
|
|
3677
|
+
regionId?: string;
|
|
3678
|
+
resourceGroupId?: string;
|
|
3516
3679
|
scheduleExpression?: string;
|
|
3517
|
-
|
|
3518
|
-
clientToken?: string;
|
|
3680
|
+
scheduleType?: string;
|
|
3519
3681
|
stateConfigurationId?: string;
|
|
3520
3682
|
tagsShrink?: string;
|
|
3521
|
-
|
|
3683
|
+
targets?: string;
|
|
3522
3684
|
static names(): {
|
|
3523
3685
|
[key: string]: string;
|
|
3524
3686
|
};
|
|
@@ -3546,6 +3708,7 @@ export declare class UpdateStateConfigurationResponse extends $tea.Model {
|
|
|
3546
3708
|
headers: {
|
|
3547
3709
|
[key: string]: string;
|
|
3548
3710
|
};
|
|
3711
|
+
statusCode: number;
|
|
3549
3712
|
body: UpdateStateConfigurationResponseBody;
|
|
3550
3713
|
static names(): {
|
|
3551
3714
|
[key: string]: string;
|
|
@@ -3558,14 +3721,14 @@ export declare class UpdateStateConfigurationResponse extends $tea.Model {
|
|
|
3558
3721
|
});
|
|
3559
3722
|
}
|
|
3560
3723
|
export declare class UpdateTemplateRequest extends $tea.Model {
|
|
3561
|
-
regionId?: string;
|
|
3562
|
-
templateName?: string;
|
|
3563
3724
|
content?: string;
|
|
3725
|
+
regionId?: string;
|
|
3726
|
+
resourceGroupId?: string;
|
|
3564
3727
|
tags?: {
|
|
3565
3728
|
[key: string]: any;
|
|
3566
3729
|
};
|
|
3730
|
+
templateName?: string;
|
|
3567
3731
|
versionName?: string;
|
|
3568
|
-
resourceGroupId?: string;
|
|
3569
3732
|
static names(): {
|
|
3570
3733
|
[key: string]: string;
|
|
3571
3734
|
};
|
|
@@ -3577,12 +3740,12 @@ export declare class UpdateTemplateRequest extends $tea.Model {
|
|
|
3577
3740
|
});
|
|
3578
3741
|
}
|
|
3579
3742
|
export declare class UpdateTemplateShrinkRequest extends $tea.Model {
|
|
3580
|
-
regionId?: string;
|
|
3581
|
-
templateName?: string;
|
|
3582
3743
|
content?: string;
|
|
3744
|
+
regionId?: string;
|
|
3745
|
+
resourceGroupId?: string;
|
|
3583
3746
|
tagsShrink?: string;
|
|
3747
|
+
templateName?: string;
|
|
3584
3748
|
versionName?: string;
|
|
3585
|
-
resourceGroupId?: string;
|
|
3586
3749
|
static names(): {
|
|
3587
3750
|
[key: string]: string;
|
|
3588
3751
|
};
|
|
@@ -3610,6 +3773,7 @@ export declare class UpdateTemplateResponse extends $tea.Model {
|
|
|
3610
3773
|
headers: {
|
|
3611
3774
|
[key: string]: string;
|
|
3612
3775
|
};
|
|
3776
|
+
statusCode: number;
|
|
3613
3777
|
body: UpdateTemplateResponseBody;
|
|
3614
3778
|
static names(): {
|
|
3615
3779
|
[key: string]: string;
|
|
@@ -3622,8 +3786,8 @@ export declare class UpdateTemplateResponse extends $tea.Model {
|
|
|
3622
3786
|
});
|
|
3623
3787
|
}
|
|
3624
3788
|
export declare class ValidateTemplateContentRequest extends $tea.Model {
|
|
3625
|
-
regionId?: string;
|
|
3626
3789
|
content?: string;
|
|
3790
|
+
regionId?: string;
|
|
3627
3791
|
static names(): {
|
|
3628
3792
|
[key: string]: string;
|
|
3629
3793
|
};
|
|
@@ -3636,9 +3800,9 @@ export declare class ValidateTemplateContentRequest extends $tea.Model {
|
|
|
3636
3800
|
}
|
|
3637
3801
|
export declare class ValidateTemplateContentResponseBody extends $tea.Model {
|
|
3638
3802
|
outputs?: string;
|
|
3639
|
-
requestId?: string;
|
|
3640
3803
|
parameters?: string;
|
|
3641
3804
|
ramRole?: string;
|
|
3805
|
+
requestId?: string;
|
|
3642
3806
|
tasks?: ValidateTemplateContentResponseBodyTasks[];
|
|
3643
3807
|
static names(): {
|
|
3644
3808
|
[key: string]: string;
|
|
@@ -3654,6 +3818,7 @@ export declare class ValidateTemplateContentResponse extends $tea.Model {
|
|
|
3654
3818
|
headers: {
|
|
3655
3819
|
[key: string]: string;
|
|
3656
3820
|
};
|
|
3821
|
+
statusCode: number;
|
|
3657
3822
|
body: ValidateTemplateContentResponseBody;
|
|
3658
3823
|
static names(): {
|
|
3659
3824
|
[key: string]: string;
|
|
@@ -3665,30 +3830,14 @@ export declare class ValidateTemplateContentResponse extends $tea.Model {
|
|
|
3665
3830
|
[key: string]: any;
|
|
3666
3831
|
});
|
|
3667
3832
|
}
|
|
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
3833
|
export declare class CreateApplicationResponseBodyApplication extends $tea.Model {
|
|
3685
|
-
|
|
3686
|
-
isSystem?: boolean;
|
|
3834
|
+
createDate?: string;
|
|
3687
3835
|
description?: string;
|
|
3688
|
-
updateDate?: string;
|
|
3689
3836
|
name?: string;
|
|
3690
|
-
|
|
3691
|
-
|
|
3837
|
+
tags?: {
|
|
3838
|
+
[key: string]: string;
|
|
3839
|
+
};
|
|
3840
|
+
updateDate?: string;
|
|
3692
3841
|
static names(): {
|
|
3693
3842
|
[key: string]: string;
|
|
3694
3843
|
};
|
|
@@ -3700,16 +3849,15 @@ export declare class CreateApplicationResponseBodyApplication extends $tea.Model
|
|
|
3700
3849
|
});
|
|
3701
3850
|
}
|
|
3702
3851
|
export declare class CreateApplicationGroupResponseBodyApplicationGroup extends $tea.Model {
|
|
3852
|
+
applicationName?: string;
|
|
3853
|
+
cmsGroupId?: string;
|
|
3854
|
+
createDate?: string;
|
|
3703
3855
|
deployRegionId?: string;
|
|
3704
3856
|
description?: string;
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
applicationName?: string;
|
|
3857
|
+
importTagKey?: string;
|
|
3858
|
+
importTagValue?: string;
|
|
3708
3859
|
name?: string;
|
|
3709
|
-
|
|
3710
|
-
createType?: string;
|
|
3711
|
-
scalingGroupId?: string;
|
|
3712
|
-
importClusterId?: string;
|
|
3860
|
+
updateDate?: string;
|
|
3713
3861
|
static names(): {
|
|
3714
3862
|
[key: string]: string;
|
|
3715
3863
|
};
|
|
@@ -3721,21 +3869,21 @@ export declare class CreateApplicationGroupResponseBodyApplicationGroup extends
|
|
|
3721
3869
|
});
|
|
3722
3870
|
}
|
|
3723
3871
|
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
3872
|
constraints?: string;
|
|
3732
|
-
resourceGroupId?: string;
|
|
3733
3873
|
createdBy?: string;
|
|
3734
3874
|
createdDate?: string;
|
|
3735
|
-
|
|
3736
|
-
name?: string;
|
|
3875
|
+
description?: string;
|
|
3737
3876
|
id?: string;
|
|
3877
|
+
name?: string;
|
|
3878
|
+
parameterVersion?: number;
|
|
3879
|
+
resourceGroupId?: string;
|
|
3738
3880
|
shareType?: string;
|
|
3881
|
+
tags?: {
|
|
3882
|
+
[key: string]: any;
|
|
3883
|
+
};
|
|
3884
|
+
type?: string;
|
|
3885
|
+
updatedBy?: string;
|
|
3886
|
+
updatedDate?: string;
|
|
3739
3887
|
static names(): {
|
|
3740
3888
|
[key: string]: string;
|
|
3741
3889
|
};
|
|
@@ -3747,16 +3895,16 @@ export declare class CreateParameterResponseBodyParameter extends $tea.Model {
|
|
|
3747
3895
|
});
|
|
3748
3896
|
}
|
|
3749
3897
|
export declare class CreatePatchBaselineResponseBodyPatchBaseline extends $tea.Model {
|
|
3750
|
-
|
|
3751
|
-
description?: string;
|
|
3752
|
-
updatedDate?: string;
|
|
3753
|
-
updatedBy?: string;
|
|
3898
|
+
approvalRules?: string;
|
|
3754
3899
|
createdBy?: string;
|
|
3755
3900
|
createdDate?: string;
|
|
3756
|
-
|
|
3757
|
-
approvalRules?: string;
|
|
3901
|
+
description?: string;
|
|
3758
3902
|
id?: string;
|
|
3903
|
+
name?: string;
|
|
3904
|
+
operationSystem?: string;
|
|
3759
3905
|
shareType?: string;
|
|
3906
|
+
updatedBy?: string;
|
|
3907
|
+
updatedDate?: string;
|
|
3760
3908
|
static names(): {
|
|
3761
3909
|
[key: string]: string;
|
|
3762
3910
|
};
|
|
@@ -3768,20 +3916,20 @@ export declare class CreatePatchBaselineResponseBodyPatchBaseline extends $tea.M
|
|
|
3768
3916
|
});
|
|
3769
3917
|
}
|
|
3770
3918
|
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
3919
|
constraints?: string;
|
|
3778
|
-
resourceGroupId?: string;
|
|
3779
3920
|
createdBy?: string;
|
|
3780
3921
|
createdDate?: string;
|
|
3781
|
-
|
|
3782
|
-
name?: string;
|
|
3922
|
+
description?: string;
|
|
3783
3923
|
id?: string;
|
|
3924
|
+
keyId?: string;
|
|
3925
|
+
name?: string;
|
|
3926
|
+
parameterVersion?: number;
|
|
3927
|
+
resourceGroupId?: string;
|
|
3784
3928
|
shareType?: string;
|
|
3929
|
+
tags?: string;
|
|
3930
|
+
type?: string;
|
|
3931
|
+
updatedBy?: string;
|
|
3932
|
+
updatedDate?: string;
|
|
3785
3933
|
static names(): {
|
|
3786
3934
|
[key: string]: string;
|
|
3787
3935
|
};
|
|
@@ -3793,23 +3941,23 @@ export declare class CreateSecretParameterResponseBodyParameter extends $tea.Mod
|
|
|
3793
3941
|
});
|
|
3794
3942
|
}
|
|
3795
3943
|
export declare class CreateStateConfigurationResponseBodyStateConfiguration extends $tea.Model {
|
|
3944
|
+
configureMode?: string;
|
|
3796
3945
|
createTime?: string;
|
|
3797
|
-
|
|
3798
|
-
|
|
3946
|
+
description?: string;
|
|
3947
|
+
parameters?: {
|
|
3799
3948
|
[key: string]: any;
|
|
3800
3949
|
};
|
|
3801
|
-
|
|
3950
|
+
resourceGroupId?: string;
|
|
3802
3951
|
scheduleExpression?: string;
|
|
3803
|
-
templateName?: string;
|
|
3804
|
-
templateVersion?: string;
|
|
3805
|
-
configureMode?: string;
|
|
3806
3952
|
scheduleType?: string;
|
|
3807
|
-
|
|
3953
|
+
stateConfigurationId?: string;
|
|
3954
|
+
tags?: {
|
|
3808
3955
|
[key: string]: any;
|
|
3809
3956
|
};
|
|
3810
|
-
|
|
3811
|
-
resourceGroupId?: string;
|
|
3957
|
+
targets?: string;
|
|
3812
3958
|
templateId?: string;
|
|
3959
|
+
templateName?: string;
|
|
3960
|
+
templateVersion?: string;
|
|
3813
3961
|
static names(): {
|
|
3814
3962
|
[key: string]: string;
|
|
3815
3963
|
};
|
|
@@ -3821,22 +3969,22 @@ export declare class CreateStateConfigurationResponseBodyStateConfiguration exte
|
|
|
3821
3969
|
});
|
|
3822
3970
|
}
|
|
3823
3971
|
export declare class CreateTemplateResponseBodyTemplate extends $tea.Model {
|
|
3972
|
+
createdBy?: string;
|
|
3973
|
+
createdDate?: string;
|
|
3974
|
+
description?: string;
|
|
3975
|
+
hasTrigger?: boolean;
|
|
3824
3976
|
hash?: string;
|
|
3825
|
-
|
|
3826
|
-
|
|
3977
|
+
resourceGroupId?: string;
|
|
3978
|
+
shareType?: string;
|
|
3827
3979
|
tags?: {
|
|
3828
3980
|
[key: string]: any;
|
|
3829
3981
|
};
|
|
3830
|
-
templateName?: string;
|
|
3831
|
-
templateVersion?: string;
|
|
3832
3982
|
templateFormat?: string;
|
|
3833
|
-
description?: string;
|
|
3834
|
-
resourceGroupId?: string;
|
|
3835
|
-
createdBy?: string;
|
|
3836
|
-
createdDate?: string;
|
|
3837
3983
|
templateId?: string;
|
|
3838
|
-
|
|
3839
|
-
|
|
3984
|
+
templateName?: string;
|
|
3985
|
+
templateVersion?: string;
|
|
3986
|
+
updatedBy?: string;
|
|
3987
|
+
updatedDate?: string;
|
|
3840
3988
|
static names(): {
|
|
3841
3989
|
[key: string]: string;
|
|
3842
3990
|
};
|
|
@@ -3848,8 +3996,8 @@ export declare class CreateTemplateResponseBodyTemplate extends $tea.Model {
|
|
|
3848
3996
|
});
|
|
3849
3997
|
}
|
|
3850
3998
|
export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
3851
|
-
regionEndpoint?: string;
|
|
3852
3999
|
localName?: string;
|
|
4000
|
+
regionEndpoint?: string;
|
|
3853
4001
|
regionId?: string;
|
|
3854
4002
|
static names(): {
|
|
3855
4003
|
[key: string]: string;
|
|
@@ -3861,30 +4009,15 @@ export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
|
3861
4009
|
[key: string]: any;
|
|
3862
4010
|
});
|
|
3863
4011
|
}
|
|
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
4012
|
export declare class GetApplicationResponseBodyApplication extends $tea.Model {
|
|
3881
|
-
|
|
4013
|
+
createDate?: string;
|
|
3882
4014
|
description?: string;
|
|
3883
|
-
updatedDate?: string;
|
|
3884
|
-
resourceGroupId?: string;
|
|
3885
|
-
createdDate?: string;
|
|
3886
4015
|
name?: string;
|
|
3887
|
-
|
|
4016
|
+
resourceGroupId?: string;
|
|
4017
|
+
tags?: {
|
|
4018
|
+
[key: string]: any;
|
|
4019
|
+
};
|
|
4020
|
+
updateDate?: string;
|
|
3888
4021
|
static names(): {
|
|
3889
4022
|
[key: string]: string;
|
|
3890
4023
|
};
|
|
@@ -3896,16 +4029,19 @@ export declare class GetApplicationResponseBodyApplication extends $tea.Model {
|
|
|
3896
4029
|
});
|
|
3897
4030
|
}
|
|
3898
4031
|
export declare class GetApplicationGroupResponseBodyApplicationGroup extends $tea.Model {
|
|
4032
|
+
applicationName?: string;
|
|
4033
|
+
cmsGroupId?: string;
|
|
4034
|
+
createDate?: string;
|
|
4035
|
+
deployOutputs?: string;
|
|
4036
|
+
deployParameters?: string;
|
|
3899
4037
|
deployRegionId?: string;
|
|
3900
4038
|
description?: string;
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
applicationName?: string;
|
|
4039
|
+
importTagKey?: string;
|
|
4040
|
+
importTagValue?: string;
|
|
3904
4041
|
name?: string;
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
importClusterId?: string;
|
|
4042
|
+
status?: string;
|
|
4043
|
+
statusReason?: string;
|
|
4044
|
+
updateDate?: string;
|
|
3909
4045
|
static names(): {
|
|
3910
4046
|
[key: string]: string;
|
|
3911
4047
|
};
|
|
@@ -3917,20 +4053,20 @@ export declare class GetApplicationGroupResponseBodyApplicationGroup extends $te
|
|
|
3917
4053
|
});
|
|
3918
4054
|
}
|
|
3919
4055
|
export declare class GetExecutionTemplateResponseBodyTemplate extends $tea.Model {
|
|
4056
|
+
createdBy?: string;
|
|
4057
|
+
createdDate?: string;
|
|
4058
|
+
description?: string;
|
|
3920
4059
|
hash?: string;
|
|
3921
|
-
|
|
3922
|
-
updatedBy?: string;
|
|
4060
|
+
shareType?: string;
|
|
3923
4061
|
tags?: {
|
|
3924
4062
|
[key: string]: any;
|
|
3925
4063
|
};
|
|
3926
|
-
templateName?: string;
|
|
3927
|
-
templateVersion?: string;
|
|
3928
4064
|
templateFormat?: string;
|
|
3929
|
-
description?: string;
|
|
3930
|
-
createdBy?: string;
|
|
3931
|
-
createdDate?: string;
|
|
3932
4065
|
templateId?: string;
|
|
3933
|
-
|
|
4066
|
+
templateName?: string;
|
|
4067
|
+
templateVersion?: string;
|
|
4068
|
+
updatedBy?: string;
|
|
4069
|
+
updatedDate?: string;
|
|
3934
4070
|
static names(): {
|
|
3935
4071
|
[key: string]: string;
|
|
3936
4072
|
};
|
|
@@ -3942,8 +4078,8 @@ export declare class GetExecutionTemplateResponseBodyTemplate extends $tea.Model
|
|
|
3942
4078
|
});
|
|
3943
4079
|
}
|
|
3944
4080
|
export declare class GetInventorySchemaResponseBodySchemasAttributes extends $tea.Model {
|
|
3945
|
-
name?: string;
|
|
3946
4081
|
dataType?: string;
|
|
4082
|
+
name?: string;
|
|
3947
4083
|
static names(): {
|
|
3948
4084
|
[key: string]: string;
|
|
3949
4085
|
};
|
|
@@ -3955,9 +4091,9 @@ export declare class GetInventorySchemaResponseBodySchemasAttributes extends $te
|
|
|
3955
4091
|
});
|
|
3956
4092
|
}
|
|
3957
4093
|
export declare class GetInventorySchemaResponseBodySchemas extends $tea.Model {
|
|
3958
|
-
version?: string;
|
|
3959
|
-
typeName?: string;
|
|
3960
4094
|
attributes?: GetInventorySchemaResponseBodySchemasAttributes[];
|
|
4095
|
+
typeName?: string;
|
|
4096
|
+
version?: string;
|
|
3961
4097
|
static names(): {
|
|
3962
4098
|
[key: string]: string;
|
|
3963
4099
|
};
|
|
@@ -3969,22 +4105,22 @@ export declare class GetInventorySchemaResponseBodySchemas extends $tea.Model {
|
|
|
3969
4105
|
});
|
|
3970
4106
|
}
|
|
3971
4107
|
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
4108
|
constraints?: string;
|
|
3981
|
-
resourceGroupId?: string;
|
|
3982
4109
|
createdBy?: string;
|
|
3983
4110
|
createdDate?: string;
|
|
3984
|
-
|
|
3985
|
-
name?: string;
|
|
4111
|
+
description?: string;
|
|
3986
4112
|
id?: string;
|
|
4113
|
+
name?: string;
|
|
4114
|
+
parameterVersion?: number;
|
|
4115
|
+
resourceGroupId?: string;
|
|
3987
4116
|
shareType?: string;
|
|
4117
|
+
tags?: {
|
|
4118
|
+
[key: string]: any;
|
|
4119
|
+
};
|
|
4120
|
+
type?: string;
|
|
4121
|
+
updatedBy?: string;
|
|
4122
|
+
updatedDate?: string;
|
|
4123
|
+
value?: string;
|
|
3988
4124
|
static names(): {
|
|
3989
4125
|
[key: string]: string;
|
|
3990
4126
|
};
|
|
@@ -3996,22 +4132,22 @@ export declare class GetParameterResponseBodyParameter extends $tea.Model {
|
|
|
3996
4132
|
});
|
|
3997
4133
|
}
|
|
3998
4134
|
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
4135
|
constraints?: string;
|
|
4008
|
-
resourceGroupId?: string;
|
|
4009
4136
|
createdBy?: string;
|
|
4010
4137
|
createdDate?: string;
|
|
4011
|
-
|
|
4012
|
-
name?: string;
|
|
4138
|
+
description?: string;
|
|
4013
4139
|
id?: string;
|
|
4140
|
+
name?: string;
|
|
4141
|
+
parameterVersion?: number;
|
|
4142
|
+
resourceGroupId?: string;
|
|
4014
4143
|
shareType?: string;
|
|
4144
|
+
tags?: {
|
|
4145
|
+
[key: string]: any;
|
|
4146
|
+
};
|
|
4147
|
+
type?: string;
|
|
4148
|
+
updatedBy?: string;
|
|
4149
|
+
updatedDate?: string;
|
|
4150
|
+
value?: string;
|
|
4015
4151
|
static names(): {
|
|
4016
4152
|
[key: string]: string;
|
|
4017
4153
|
};
|
|
@@ -4023,18 +4159,18 @@ export declare class GetParametersResponseBodyParameters extends $tea.Model {
|
|
|
4023
4159
|
});
|
|
4024
4160
|
}
|
|
4025
4161
|
export declare class GetParametersByPathResponseBodyParameters extends $tea.Model {
|
|
4026
|
-
type?: string;
|
|
4027
|
-
updatedDate?: string;
|
|
4028
|
-
updatedBy?: string;
|
|
4029
|
-
value?: string;
|
|
4030
|
-
description?: string;
|
|
4031
4162
|
constraints?: string;
|
|
4032
4163
|
createdBy?: string;
|
|
4033
4164
|
createdDate?: string;
|
|
4034
|
-
|
|
4035
|
-
name?: string;
|
|
4165
|
+
description?: string;
|
|
4036
4166
|
id?: string;
|
|
4167
|
+
name?: string;
|
|
4168
|
+
parameterVersion?: number;
|
|
4037
4169
|
shareType?: string;
|
|
4170
|
+
type?: string;
|
|
4171
|
+
updatedBy?: string;
|
|
4172
|
+
updatedDate?: string;
|
|
4173
|
+
value?: string;
|
|
4038
4174
|
static names(): {
|
|
4039
4175
|
[key: string]: string;
|
|
4040
4176
|
};
|
|
@@ -4046,17 +4182,17 @@ export declare class GetParametersByPathResponseBodyParameters extends $tea.Mode
|
|
|
4046
4182
|
});
|
|
4047
4183
|
}
|
|
4048
4184
|
export declare class GetPatchBaselineResponseBodyPatchBaseline extends $tea.Model {
|
|
4049
|
-
|
|
4050
|
-
isDefault?: boolean;
|
|
4051
|
-
description?: string;
|
|
4052
|
-
updatedDate?: string;
|
|
4053
|
-
updatedBy?: string;
|
|
4185
|
+
approvalRules?: string;
|
|
4054
4186
|
createdBy?: string;
|
|
4055
4187
|
createdDate?: string;
|
|
4056
|
-
|
|
4057
|
-
approvalRules?: string;
|
|
4188
|
+
description?: string;
|
|
4058
4189
|
id?: string;
|
|
4190
|
+
isDefault?: boolean;
|
|
4191
|
+
name?: string;
|
|
4192
|
+
operationSystem?: string;
|
|
4059
4193
|
shareType?: string;
|
|
4194
|
+
updatedBy?: string;
|
|
4195
|
+
updatedDate?: string;
|
|
4060
4196
|
static names(): {
|
|
4061
4197
|
[key: string]: string;
|
|
4062
4198
|
};
|
|
@@ -4068,26 +4204,26 @@ export declare class GetPatchBaselineResponseBodyPatchBaseline extends $tea.Mode
|
|
|
4068
4204
|
});
|
|
4069
4205
|
}
|
|
4070
4206
|
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
4207
|
constraints?: string;
|
|
4081
|
-
resourceGroupId?: string;
|
|
4082
4208
|
createdBy?: string;
|
|
4083
4209
|
createdDate?: string;
|
|
4084
|
-
|
|
4085
|
-
name?: string;
|
|
4210
|
+
description?: string;
|
|
4086
4211
|
id?: string;
|
|
4212
|
+
keyId?: string;
|
|
4213
|
+
name?: string;
|
|
4214
|
+
parameterVersion?: number;
|
|
4215
|
+
resourceGroupId?: string;
|
|
4087
4216
|
shareType?: string;
|
|
4088
|
-
|
|
4089
|
-
[key: string]:
|
|
4090
|
-
};
|
|
4217
|
+
tags?: {
|
|
4218
|
+
[key: string]: any;
|
|
4219
|
+
};
|
|
4220
|
+
type?: string;
|
|
4221
|
+
updatedBy?: string;
|
|
4222
|
+
updatedDate?: string;
|
|
4223
|
+
value?: string;
|
|
4224
|
+
static names(): {
|
|
4225
|
+
[key: string]: string;
|
|
4226
|
+
};
|
|
4091
4227
|
static types(): {
|
|
4092
4228
|
[key: string]: any;
|
|
4093
4229
|
};
|
|
@@ -4096,23 +4232,23 @@ export declare class GetSecretParameterResponseBodyParameter extends $tea.Model
|
|
|
4096
4232
|
});
|
|
4097
4233
|
}
|
|
4098
4234
|
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
4235
|
constraints?: string;
|
|
4109
|
-
resourceGroupId?: string;
|
|
4110
4236
|
createdBy?: string;
|
|
4111
4237
|
createdDate?: string;
|
|
4112
|
-
|
|
4113
|
-
name?: string;
|
|
4238
|
+
description?: string;
|
|
4114
4239
|
id?: string;
|
|
4240
|
+
keyId?: string;
|
|
4241
|
+
name?: string;
|
|
4242
|
+
parameterVersion?: number;
|
|
4243
|
+
resourceGroupId?: string;
|
|
4115
4244
|
shareType?: string;
|
|
4245
|
+
tags?: {
|
|
4246
|
+
[key: string]: any;
|
|
4247
|
+
};
|
|
4248
|
+
type?: string;
|
|
4249
|
+
updatedBy?: string;
|
|
4250
|
+
updatedDate?: string;
|
|
4251
|
+
value?: string;
|
|
4116
4252
|
static names(): {
|
|
4117
4253
|
[key: string]: string;
|
|
4118
4254
|
};
|
|
@@ -4124,19 +4260,19 @@ export declare class GetSecretParametersResponseBodyParameters extends $tea.Mode
|
|
|
4124
4260
|
});
|
|
4125
4261
|
}
|
|
4126
4262
|
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
4263
|
constraints?: string;
|
|
4134
4264
|
createdBy?: string;
|
|
4135
4265
|
createdDate?: string;
|
|
4136
|
-
|
|
4137
|
-
name?: string;
|
|
4266
|
+
description?: string;
|
|
4138
4267
|
id?: string;
|
|
4268
|
+
keyId?: string;
|
|
4269
|
+
name?: string;
|
|
4270
|
+
parameterVersion?: number;
|
|
4139
4271
|
shareType?: string;
|
|
4272
|
+
type?: string;
|
|
4273
|
+
updatedBy?: string;
|
|
4274
|
+
updatedDate?: string;
|
|
4275
|
+
value?: string;
|
|
4140
4276
|
static names(): {
|
|
4141
4277
|
[key: string]: string;
|
|
4142
4278
|
};
|
|
@@ -4149,8 +4285,8 @@ export declare class GetSecretParametersByPathResponseBodyParameters extends $te
|
|
|
4149
4285
|
}
|
|
4150
4286
|
export declare class GetServiceSettingsResponseBodyServiceSettings extends $tea.Model {
|
|
4151
4287
|
deliveryOssBucketName?: string;
|
|
4152
|
-
deliveryOssKeyPrefix?: string;
|
|
4153
4288
|
deliveryOssEnabled?: boolean;
|
|
4289
|
+
deliveryOssKeyPrefix?: string;
|
|
4154
4290
|
deliverySlsEnabled?: boolean;
|
|
4155
4291
|
deliverySlsProjectName?: string;
|
|
4156
4292
|
rdcEnterpriseId?: string;
|
|
@@ -4165,24 +4301,24 @@ export declare class GetServiceSettingsResponseBodyServiceSettings extends $tea.
|
|
|
4165
4301
|
});
|
|
4166
4302
|
}
|
|
4167
4303
|
export declare class GetTemplateResponseBodyTemplate extends $tea.Model {
|
|
4304
|
+
createdBy?: string;
|
|
4305
|
+
createdDate?: string;
|
|
4306
|
+
description?: string;
|
|
4307
|
+
hasTrigger?: boolean;
|
|
4168
4308
|
hash?: string;
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
templateType?: string;
|
|
4309
|
+
resourceGroupId?: string;
|
|
4310
|
+
shareType?: string;
|
|
4172
4311
|
tags?: {
|
|
4173
4312
|
[key: string]: any;
|
|
4174
4313
|
};
|
|
4314
|
+
templateFormat?: string;
|
|
4315
|
+
templateId?: string;
|
|
4175
4316
|
templateName?: string;
|
|
4317
|
+
templateType?: string;
|
|
4176
4318
|
templateVersion?: string;
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
resourceGroupId?: string;
|
|
4180
|
-
createdBy?: string;
|
|
4181
|
-
createdDate?: string;
|
|
4319
|
+
updatedBy?: string;
|
|
4320
|
+
updatedDate?: string;
|
|
4182
4321
|
versionName?: string;
|
|
4183
|
-
templateId?: string;
|
|
4184
|
-
hasTrigger?: boolean;
|
|
4185
|
-
shareType?: string;
|
|
4186
4322
|
static names(): {
|
|
4187
4323
|
[key: string]: string;
|
|
4188
4324
|
};
|
|
@@ -4194,13 +4330,13 @@ export declare class GetTemplateResponseBodyTemplate extends $tea.Model {
|
|
|
4194
4330
|
});
|
|
4195
4331
|
}
|
|
4196
4332
|
export declare class ListActionsResponseBodyActions extends $tea.Model {
|
|
4197
|
-
popularity?: number;
|
|
4198
4333
|
actionType?: string;
|
|
4199
|
-
description?: string;
|
|
4200
4334
|
createdDate?: string;
|
|
4201
|
-
|
|
4335
|
+
description?: string;
|
|
4202
4336
|
OOSActionName?: string;
|
|
4337
|
+
popularity?: number;
|
|
4203
4338
|
properties?: string;
|
|
4339
|
+
templateVersion?: string;
|
|
4204
4340
|
static names(): {
|
|
4205
4341
|
[key: string]: string;
|
|
4206
4342
|
};
|
|
@@ -4212,32 +4348,18 @@ export declare class ListActionsResponseBodyActions extends $tea.Model {
|
|
|
4212
4348
|
});
|
|
4213
4349
|
}
|
|
4214
4350
|
export declare class ListApplicationGroupsResponseBodyApplicationGroups extends $tea.Model {
|
|
4351
|
+
applicationName?: string;
|
|
4352
|
+
cmsGroupId?: string;
|
|
4353
|
+
createDate?: string;
|
|
4354
|
+
deployParameters?: string;
|
|
4215
4355
|
deployRegionId?: string;
|
|
4216
4356
|
description?: string;
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
applicationName?: string;
|
|
4357
|
+
importTagKey?: string;
|
|
4358
|
+
importTagValue?: string;
|
|
4220
4359
|
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[];
|
|
4360
|
+
status?: string;
|
|
4361
|
+
statusReason?: string;
|
|
4362
|
+
updateDate?: string;
|
|
4241
4363
|
static names(): {
|
|
4242
4364
|
[key: string]: string;
|
|
4243
4365
|
};
|
|
@@ -4249,14 +4371,14 @@ export declare class ListApplicationsResponseBodyApplicationsCloudMonitorRule ex
|
|
|
4249
4371
|
});
|
|
4250
4372
|
}
|
|
4251
4373
|
export declare class ListApplicationsResponseBodyApplications extends $tea.Model {
|
|
4252
|
-
|
|
4253
|
-
isSystem?: boolean;
|
|
4374
|
+
createDate?: string;
|
|
4254
4375
|
description?: string;
|
|
4255
|
-
updateDate?: string;
|
|
4256
|
-
resourceGroupId?: string;
|
|
4257
|
-
createdDate?: string;
|
|
4258
4376
|
name?: string;
|
|
4259
|
-
|
|
4377
|
+
resourceGroupId?: string;
|
|
4378
|
+
tags?: {
|
|
4379
|
+
[key: string]: any;
|
|
4380
|
+
};
|
|
4381
|
+
updateDate?: string;
|
|
4260
4382
|
static names(): {
|
|
4261
4383
|
[key: string]: string;
|
|
4262
4384
|
};
|
|
@@ -4268,9 +4390,9 @@ export declare class ListApplicationsResponseBodyApplications extends $tea.Model
|
|
|
4268
4390
|
});
|
|
4269
4391
|
}
|
|
4270
4392
|
export declare class ListExecutionLogsResponseBodyExecutionLogs extends $tea.Model {
|
|
4271
|
-
taskExecutionId?: string;
|
|
4272
|
-
message?: string;
|
|
4273
4393
|
logType?: string;
|
|
4394
|
+
message?: string;
|
|
4395
|
+
taskExecutionId?: string;
|
|
4274
4396
|
timestamp?: string;
|
|
4275
4397
|
static names(): {
|
|
4276
4398
|
[key: string]: string;
|
|
@@ -4283,8 +4405,8 @@ export declare class ListExecutionLogsResponseBodyExecutionLogs extends $tea.Mod
|
|
|
4283
4405
|
});
|
|
4284
4406
|
}
|
|
4285
4407
|
export declare class ListExecutionRiskyTasksResponseBodyRiskyTasks extends $tea.Model {
|
|
4286
|
-
service?: string;
|
|
4287
4408
|
API?: string;
|
|
4409
|
+
service?: string;
|
|
4288
4410
|
task?: string[];
|
|
4289
4411
|
template?: string[];
|
|
4290
4412
|
static names(): {
|
|
@@ -4298,9 +4420,9 @@ export declare class ListExecutionRiskyTasksResponseBodyRiskyTasks extends $tea.
|
|
|
4298
4420
|
});
|
|
4299
4421
|
}
|
|
4300
4422
|
export declare class ListExecutionsResponseBodyExecutionsCurrentTasks extends $tea.Model {
|
|
4423
|
+
taskAction?: string;
|
|
4301
4424
|
taskExecutionId?: string;
|
|
4302
4425
|
taskName?: string;
|
|
4303
|
-
taskAction?: string;
|
|
4304
4426
|
static names(): {
|
|
4305
4427
|
[key: string]: string;
|
|
4306
4428
|
};
|
|
@@ -4312,60 +4434,43 @@ export declare class ListExecutionsResponseBodyExecutionsCurrentTasks extends $t
|
|
|
4312
4434
|
});
|
|
4313
4435
|
}
|
|
4314
4436
|
export declare class ListExecutionsResponseBodyExecutions extends $tea.Model {
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
targets?: string;
|
|
4318
|
-
statusReason?: string;
|
|
4319
|
-
tags?: {
|
|
4437
|
+
category?: string;
|
|
4438
|
+
counters?: {
|
|
4320
4439
|
[key: string]: any;
|
|
4321
4440
|
};
|
|
4322
|
-
lastSuccessfulTriggerTime?: string;
|
|
4323
|
-
mode?: string;
|
|
4324
|
-
safetyCheck?: string;
|
|
4325
|
-
templateName?: string;
|
|
4326
|
-
templateVersion?: string;
|
|
4327
4441
|
createDate?: string;
|
|
4328
|
-
|
|
4442
|
+
currentTasks?: ListExecutionsResponseBodyExecutionsCurrentTasks[];
|
|
4329
4443
|
description?: string;
|
|
4330
|
-
lastTriggerTime?: string;
|
|
4331
|
-
parentExecutionId?: string;
|
|
4332
|
-
lastTriggerStatus?: string;
|
|
4333
|
-
statusMessage?: string;
|
|
4334
|
-
outputs?: string;
|
|
4335
|
-
executedBy?: string;
|
|
4336
4444
|
endDate?: string;
|
|
4337
|
-
|
|
4338
|
-
startDate?: string;
|
|
4445
|
+
executedBy?: string;
|
|
4339
4446
|
executionId?: string;
|
|
4447
|
+
isParent?: boolean;
|
|
4448
|
+
lastSuccessfulTriggerTime?: string;
|
|
4449
|
+
lastTriggerStatus?: string;
|
|
4450
|
+
lastTriggerTime?: string;
|
|
4451
|
+
mode?: string;
|
|
4452
|
+
outputs?: string;
|
|
4340
4453
|
parameters?: {
|
|
4341
4454
|
[key: string]: any;
|
|
4342
4455
|
};
|
|
4343
|
-
|
|
4344
|
-
[key: string]: any;
|
|
4345
|
-
};
|
|
4346
|
-
resourceGroupId?: string;
|
|
4347
|
-
category?: string;
|
|
4348
|
-
templateId?: string;
|
|
4456
|
+
parentExecutionId?: string;
|
|
4349
4457
|
ramRole?: string;
|
|
4458
|
+
resourceGroupId?: string;
|
|
4350
4459
|
resourceStatus?: string;
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4460
|
+
safetyCheck?: string;
|
|
4461
|
+
startDate?: string;
|
|
4462
|
+
status?: string;
|
|
4463
|
+
statusMessage?: string;
|
|
4464
|
+
statusReason?: string;
|
|
4465
|
+
tags?: {
|
|
4356
4466
|
[key: string]: any;
|
|
4357
4467
|
};
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
status?: string;
|
|
4365
|
-
installedTime?: string;
|
|
4366
|
-
KBId?: string;
|
|
4367
|
-
title?: string;
|
|
4368
|
-
classification?: string;
|
|
4468
|
+
targets?: string;
|
|
4469
|
+
templateId?: string;
|
|
4470
|
+
templateName?: string;
|
|
4471
|
+
templateVersion?: string;
|
|
4472
|
+
updateDate?: string;
|
|
4473
|
+
waitingStatus?: string;
|
|
4369
4474
|
static names(): {
|
|
4370
4475
|
[key: string]: string;
|
|
4371
4476
|
};
|
|
@@ -4377,19 +4482,19 @@ export declare class ListInstancePatchesResponseBodyPatches extends $tea.Model {
|
|
|
4377
4482
|
});
|
|
4378
4483
|
}
|
|
4379
4484
|
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
4485
|
baselineId?: string;
|
|
4486
|
+
failedCount?: string;
|
|
4487
|
+
installedCount?: string;
|
|
4488
|
+
installedOtherCount?: string;
|
|
4389
4489
|
installedPendingRebootCount?: string;
|
|
4390
4490
|
installedRejectedCount?: string;
|
|
4491
|
+
instanceId?: string;
|
|
4492
|
+
missingCount?: string;
|
|
4493
|
+
operationEndTime?: string;
|
|
4494
|
+
operationStartTime?: string;
|
|
4495
|
+
operationType?: string;
|
|
4496
|
+
ownerInformation?: string;
|
|
4391
4497
|
patchGroup?: string;
|
|
4392
|
-
installedCount?: string;
|
|
4393
4498
|
static names(): {
|
|
4394
4499
|
[key: string]: string;
|
|
4395
4500
|
};
|
|
@@ -4400,14 +4505,13 @@ export declare class ListInstancePatchStatesResponseBodyInstancePatchStates exte
|
|
|
4400
4505
|
[key: string]: any;
|
|
4401
4506
|
});
|
|
4402
4507
|
}
|
|
4403
|
-
export declare class
|
|
4404
|
-
|
|
4405
|
-
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
|
|
4410
|
-
reportTime?: string;
|
|
4508
|
+
export declare class ListInstancePatchesResponseBodyPatches extends $tea.Model {
|
|
4509
|
+
classification?: string;
|
|
4510
|
+
installedTime?: string;
|
|
4511
|
+
KBId?: string;
|
|
4512
|
+
severity?: string;
|
|
4513
|
+
status?: string;
|
|
4514
|
+
title?: string;
|
|
4411
4515
|
static names(): {
|
|
4412
4516
|
[key: string]: string;
|
|
4413
4517
|
};
|
|
@@ -4419,9 +4523,9 @@ export declare class ListInstanceStateReportsResponseBodyStateReports extends $t
|
|
|
4419
4523
|
});
|
|
4420
4524
|
}
|
|
4421
4525
|
export declare class ListInventoryEntriesRequestFilter extends $tea.Model {
|
|
4422
|
-
value?: string[];
|
|
4423
|
-
operator?: string;
|
|
4424
4526
|
name?: string;
|
|
4527
|
+
operator?: string;
|
|
4528
|
+
value?: string[];
|
|
4425
4529
|
static names(): {
|
|
4426
4530
|
[key: string]: string;
|
|
4427
4531
|
};
|
|
@@ -4432,21 +4536,11 @@ export declare class ListInventoryEntriesRequestFilter extends $tea.Model {
|
|
|
4432
4536
|
[key: string]: any;
|
|
4433
4537
|
});
|
|
4434
4538
|
}
|
|
4435
|
-
export declare class
|
|
4436
|
-
|
|
4437
|
-
updatedDate?: string;
|
|
4539
|
+
export declare class ListParameterVersionsResponseBodyParameterVersions extends $tea.Model {
|
|
4540
|
+
parameterVersion?: number;
|
|
4438
4541
|
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;
|
|
4542
|
+
updatedDate?: string;
|
|
4543
|
+
value?: string;
|
|
4450
4544
|
static names(): {
|
|
4451
4545
|
[key: string]: string;
|
|
4452
4546
|
};
|
|
@@ -4457,11 +4551,21 @@ export declare class ListParametersResponseBodyParameters extends $tea.Model {
|
|
|
4457
4551
|
[key: string]: any;
|
|
4458
4552
|
});
|
|
4459
4553
|
}
|
|
4460
|
-
export declare class
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4554
|
+
export declare class ListParametersResponseBodyParameters extends $tea.Model {
|
|
4555
|
+
createdBy?: string;
|
|
4556
|
+
createdDate?: string;
|
|
4557
|
+
description?: string;
|
|
4558
|
+
id?: string;
|
|
4559
|
+
name?: string;
|
|
4560
|
+
parameterVersion?: string;
|
|
4561
|
+
resourceGroupId?: string;
|
|
4562
|
+
shareType?: string;
|
|
4563
|
+
tags?: {
|
|
4564
|
+
[key: string]: any;
|
|
4565
|
+
};
|
|
4566
|
+
type?: string;
|
|
4464
4567
|
updatedBy?: string;
|
|
4568
|
+
updatedDate?: string;
|
|
4465
4569
|
static names(): {
|
|
4466
4570
|
[key: string]: string;
|
|
4467
4571
|
};
|
|
@@ -4473,16 +4577,16 @@ export declare class ListParameterVersionsResponseBodyParameterVersions extends
|
|
|
4473
4577
|
});
|
|
4474
4578
|
}
|
|
4475
4579
|
export declare class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.Model {
|
|
4476
|
-
operationSystem?: string;
|
|
4477
|
-
isDefault?: boolean;
|
|
4478
|
-
description?: string;
|
|
4479
|
-
updatedDate?: string;
|
|
4480
|
-
updatedBy?: string;
|
|
4481
4580
|
createdBy?: string;
|
|
4482
4581
|
createdDate?: string;
|
|
4483
|
-
|
|
4582
|
+
description?: string;
|
|
4484
4583
|
id?: string;
|
|
4584
|
+
isDefault?: boolean;
|
|
4585
|
+
name?: string;
|
|
4586
|
+
operationSystem?: string;
|
|
4485
4587
|
shareType?: string;
|
|
4588
|
+
updatedBy?: string;
|
|
4589
|
+
updatedDate?: string;
|
|
4486
4590
|
static names(): {
|
|
4487
4591
|
[key: string]: string;
|
|
4488
4592
|
};
|
|
@@ -4494,11 +4598,11 @@ export declare class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.M
|
|
|
4494
4598
|
});
|
|
4495
4599
|
}
|
|
4496
4600
|
export declare class ListResourceExecutionStatusResponseBodyResourceExecutionStatus extends $tea.Model {
|
|
4497
|
-
|
|
4498
|
-
status?: string;
|
|
4601
|
+
executionId?: string;
|
|
4499
4602
|
executionTime?: string;
|
|
4603
|
+
outputs?: string;
|
|
4500
4604
|
resourceId?: string;
|
|
4501
|
-
|
|
4605
|
+
status?: string;
|
|
4502
4606
|
static names(): {
|
|
4503
4607
|
[key: string]: string;
|
|
4504
4608
|
};
|
|
@@ -4509,22 +4613,11 @@ export declare class ListResourceExecutionStatusResponseBodyResourceExecutionSta
|
|
|
4509
4613
|
[key: string]: any;
|
|
4510
4614
|
});
|
|
4511
4615
|
}
|
|
4512
|
-
export declare class
|
|
4513
|
-
|
|
4514
|
-
updatedDate?: string;
|
|
4616
|
+
export declare class ListSecretParameterVersionsResponseBodyParameterVersions extends $tea.Model {
|
|
4617
|
+
parameterVersion?: number;
|
|
4515
4618
|
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;
|
|
4619
|
+
updatedDate?: string;
|
|
4620
|
+
value?: string;
|
|
4528
4621
|
static names(): {
|
|
4529
4622
|
[key: string]: string;
|
|
4530
4623
|
};
|
|
@@ -4535,11 +4628,22 @@ export declare class ListSecretParametersResponseBodyParameters extends $tea.Mod
|
|
|
4535
4628
|
[key: string]: any;
|
|
4536
4629
|
});
|
|
4537
4630
|
}
|
|
4538
|
-
export declare class
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4631
|
+
export declare class ListSecretParametersResponseBodyParameters extends $tea.Model {
|
|
4632
|
+
createdBy?: string;
|
|
4633
|
+
createdDate?: string;
|
|
4634
|
+
description?: string;
|
|
4635
|
+
id?: string;
|
|
4636
|
+
keyId?: string;
|
|
4637
|
+
name?: string;
|
|
4638
|
+
parameterVersion?: string;
|
|
4639
|
+
resourceGroupId?: string;
|
|
4640
|
+
shareType?: string;
|
|
4641
|
+
tags?: {
|
|
4642
|
+
[key: string]: any;
|
|
4643
|
+
};
|
|
4644
|
+
type?: string;
|
|
4542
4645
|
updatedBy?: string;
|
|
4646
|
+
updatedDate?: string;
|
|
4543
4647
|
static names(): {
|
|
4544
4648
|
[key: string]: string;
|
|
4545
4649
|
};
|
|
@@ -4551,22 +4655,22 @@ export declare class ListSecretParameterVersionsResponseBodyParameterVersions ex
|
|
|
4551
4655
|
});
|
|
4552
4656
|
}
|
|
4553
4657
|
export declare class ListStateConfigurationsResponseBodyStateConfigurations extends $tea.Model {
|
|
4554
|
-
|
|
4658
|
+
configureMode?: string;
|
|
4555
4659
|
createTime?: string;
|
|
4556
|
-
|
|
4660
|
+
description?: string;
|
|
4661
|
+
parameters?: string;
|
|
4662
|
+
resourceGroupId?: string;
|
|
4663
|
+
scheduleExpression?: string;
|
|
4664
|
+
scheduleType?: string;
|
|
4665
|
+
stateConfigurationId?: string;
|
|
4557
4666
|
tags?: {
|
|
4558
4667
|
[key: string]: any;
|
|
4559
4668
|
};
|
|
4560
|
-
|
|
4561
|
-
|
|
4669
|
+
targets?: string;
|
|
4670
|
+
templateId?: string;
|
|
4562
4671
|
templateName?: string;
|
|
4563
4672
|
templateVersion?: string;
|
|
4564
|
-
|
|
4565
|
-
scheduleType?: string;
|
|
4566
|
-
parameters?: string;
|
|
4567
|
-
description?: string;
|
|
4568
|
-
resourceGroupId?: string;
|
|
4569
|
-
templateId?: string;
|
|
4673
|
+
updateTime?: string;
|
|
4570
4674
|
static names(): {
|
|
4571
4675
|
[key: string]: string;
|
|
4572
4676
|
};
|
|
@@ -4578,10 +4682,10 @@ export declare class ListStateConfigurationsResponseBodyStateConfigurations exte
|
|
|
4578
4682
|
});
|
|
4579
4683
|
}
|
|
4580
4684
|
export declare class ListTagResourcesResponseBodyTagResourcesTagResource extends $tea.Model {
|
|
4581
|
-
resourceType?: string;
|
|
4582
|
-
tagValue?: string;
|
|
4583
4685
|
resourceId?: string;
|
|
4686
|
+
resourceType?: string;
|
|
4584
4687
|
tagKey?: string;
|
|
4688
|
+
tagValue?: string;
|
|
4585
4689
|
static names(): {
|
|
4586
4690
|
[key: string]: string;
|
|
4587
4691
|
};
|
|
@@ -4606,28 +4710,28 @@ export declare class ListTagResourcesResponseBodyTagResources extends $tea.Model
|
|
|
4606
4710
|
}
|
|
4607
4711
|
export declare class ListTaskExecutionsResponseBodyTaskExecutions extends $tea.Model {
|
|
4608
4712
|
childExecutionId?: string;
|
|
4609
|
-
outputs?: string;
|
|
4610
|
-
status?: string;
|
|
4611
|
-
endDate?: string;
|
|
4612
|
-
parentTaskExecutionId?: string;
|
|
4613
|
-
taskName?: string;
|
|
4614
|
-
startDate?: string;
|
|
4615
|
-
loopItem?: string;
|
|
4616
4713
|
createDate?: string;
|
|
4714
|
+
endDate?: string;
|
|
4617
4715
|
executionId?: string;
|
|
4618
|
-
|
|
4619
|
-
taskExecutionId?: string;
|
|
4620
|
-
updateDate?: string;
|
|
4621
|
-
loop?: {
|
|
4716
|
+
extraData?: {
|
|
4622
4717
|
[key: string]: any;
|
|
4623
4718
|
};
|
|
4624
|
-
|
|
4625
|
-
loopBatchNumber?: number;
|
|
4626
|
-
statusMessage?: string;
|
|
4627
|
-
extraData?: {
|
|
4719
|
+
loop?: {
|
|
4628
4720
|
[key: string]: any;
|
|
4629
4721
|
};
|
|
4722
|
+
loopBatchNumber?: number;
|
|
4723
|
+
loopItem?: string;
|
|
4724
|
+
outputs?: string;
|
|
4725
|
+
parentTaskExecutionId?: string;
|
|
4630
4726
|
properties?: string;
|
|
4727
|
+
startDate?: string;
|
|
4728
|
+
status?: string;
|
|
4729
|
+
statusMessage?: string;
|
|
4730
|
+
taskAction?: string;
|
|
4731
|
+
taskExecutionId?: string;
|
|
4732
|
+
taskName?: string;
|
|
4733
|
+
templateId?: string;
|
|
4734
|
+
updateDate?: string;
|
|
4631
4735
|
static names(): {
|
|
4632
4736
|
[key: string]: string;
|
|
4633
4737
|
};
|
|
@@ -4638,27 +4742,13 @@ export declare class ListTaskExecutionsResponseBodyTaskExecutions extends $tea.M
|
|
|
4638
4742
|
[key: string]: any;
|
|
4639
4743
|
});
|
|
4640
4744
|
}
|
|
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;
|
|
4745
|
+
export declare class ListTemplateVersionsResponseBodyTemplateVersions extends $tea.Model {
|
|
4654
4746
|
description?: string;
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
templateId?: string;
|
|
4661
|
-
shareType?: string;
|
|
4747
|
+
templateFormat?: string;
|
|
4748
|
+
templateVersion?: string;
|
|
4749
|
+
updatedBy?: string;
|
|
4750
|
+
updatedDate?: string;
|
|
4751
|
+
versionName?: string;
|
|
4662
4752
|
static names(): {
|
|
4663
4753
|
[key: string]: string;
|
|
4664
4754
|
};
|
|
@@ -4669,13 +4759,27 @@ export declare class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
|
4669
4759
|
[key: string]: any;
|
|
4670
4760
|
});
|
|
4671
4761
|
}
|
|
4672
|
-
export declare class
|
|
4762
|
+
export declare class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
4763
|
+
category?: string;
|
|
4764
|
+
createdBy?: string;
|
|
4765
|
+
createdDate?: string;
|
|
4673
4766
|
description?: string;
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4767
|
+
hasTrigger?: boolean;
|
|
4768
|
+
hash?: string;
|
|
4769
|
+
popularity?: number;
|
|
4770
|
+
resourceGroupId?: string;
|
|
4771
|
+
shareType?: string;
|
|
4772
|
+
tags?: {
|
|
4773
|
+
[key: string]: any;
|
|
4774
|
+
};
|
|
4678
4775
|
templateFormat?: string;
|
|
4776
|
+
templateId?: string;
|
|
4777
|
+
templateName?: string;
|
|
4778
|
+
templateType?: string;
|
|
4779
|
+
templateVersion?: string;
|
|
4780
|
+
totalExecutionCount?: number;
|
|
4781
|
+
updatedBy?: string;
|
|
4782
|
+
updatedDate?: string;
|
|
4679
4783
|
static names(): {
|
|
4680
4784
|
[key: string]: string;
|
|
4681
4785
|
};
|
|
@@ -4687,16 +4791,16 @@ export declare class ListTemplateVersionsResponseBodyTemplateVersions extends $t
|
|
|
4687
4791
|
});
|
|
4688
4792
|
}
|
|
4689
4793
|
export declare class RegisterDefaultPatchBaselineResponseBodyPatchBaseline extends $tea.Model {
|
|
4690
|
-
|
|
4691
|
-
description?: string;
|
|
4692
|
-
updatedDate?: string;
|
|
4693
|
-
updatedBy?: string;
|
|
4794
|
+
approvalRules?: string;
|
|
4694
4795
|
createdBy?: string;
|
|
4695
4796
|
createdDate?: string;
|
|
4696
|
-
|
|
4697
|
-
approvalRules?: string;
|
|
4797
|
+
description?: string;
|
|
4698
4798
|
id?: string;
|
|
4799
|
+
name?: string;
|
|
4800
|
+
operationSystem?: string;
|
|
4699
4801
|
shareType?: string;
|
|
4802
|
+
updatedBy?: string;
|
|
4803
|
+
updatedDate?: string;
|
|
4700
4804
|
static names(): {
|
|
4701
4805
|
[key: string]: string;
|
|
4702
4806
|
};
|
|
@@ -4708,9 +4812,9 @@ export declare class RegisterDefaultPatchBaselineResponseBodyPatchBaseline exten
|
|
|
4708
4812
|
});
|
|
4709
4813
|
}
|
|
4710
4814
|
export declare class SearchInventoryRequestFilter extends $tea.Model {
|
|
4711
|
-
value?: string[];
|
|
4712
|
-
operator?: string;
|
|
4713
4815
|
name?: string;
|
|
4816
|
+
operator?: string;
|
|
4817
|
+
value?: string[];
|
|
4714
4818
|
static names(): {
|
|
4715
4819
|
[key: string]: string;
|
|
4716
4820
|
};
|
|
@@ -4723,8 +4827,8 @@ export declare class SearchInventoryRequestFilter extends $tea.Model {
|
|
|
4723
4827
|
}
|
|
4724
4828
|
export declare class SetServiceSettingsResponseBodyServiceSettings extends $tea.Model {
|
|
4725
4829
|
deliveryOssBucketName?: string;
|
|
4726
|
-
deliveryOssKeyPrefix?: string;
|
|
4727
4830
|
deliveryOssEnabled?: boolean;
|
|
4831
|
+
deliveryOssKeyPrefix?: string;
|
|
4728
4832
|
deliverySlsEnabled?: boolean;
|
|
4729
4833
|
deliverySlsProjectName?: string;
|
|
4730
4834
|
rdcEnterpriseId?: string;
|
|
@@ -4739,9 +4843,9 @@ export declare class SetServiceSettingsResponseBodyServiceSettings extends $tea.
|
|
|
4739
4843
|
});
|
|
4740
4844
|
}
|
|
4741
4845
|
export declare class StartExecutionResponseBodyExecutionCurrentTasks extends $tea.Model {
|
|
4846
|
+
taskAction?: string;
|
|
4742
4847
|
taskExecutionId?: string;
|
|
4743
4848
|
taskName?: string;
|
|
4744
|
-
taskAction?: string;
|
|
4745
4849
|
static names(): {
|
|
4746
4850
|
[key: string]: string;
|
|
4747
4851
|
};
|
|
@@ -4753,34 +4857,53 @@ export declare class StartExecutionResponseBodyExecutionCurrentTasks extends $te
|
|
|
4753
4857
|
});
|
|
4754
4858
|
}
|
|
4755
4859
|
export declare class StartExecutionResponseBodyExecution extends $tea.Model {
|
|
4756
|
-
|
|
4757
|
-
|
|
4860
|
+
counters?: {
|
|
4861
|
+
[key: string]: any;
|
|
4862
|
+
};
|
|
4863
|
+
createDate?: string;
|
|
4864
|
+
currentTasks?: StartExecutionResponseBodyExecutionCurrentTasks[];
|
|
4865
|
+
description?: string;
|
|
4758
4866
|
endDate?: string;
|
|
4759
4867
|
executedBy?: string;
|
|
4868
|
+
executionId?: string;
|
|
4760
4869
|
isParent?: boolean;
|
|
4870
|
+
loopMode?: string;
|
|
4871
|
+
mode?: string;
|
|
4872
|
+
outputs?: string;
|
|
4873
|
+
parameters?: string;
|
|
4874
|
+
parentExecutionId?: string;
|
|
4875
|
+
ramRole?: string;
|
|
4876
|
+
resourceGroupId?: string;
|
|
4877
|
+
safetyCheck?: string;
|
|
4878
|
+
startDate?: string;
|
|
4879
|
+
status?: string;
|
|
4880
|
+
statusMessage?: string;
|
|
4761
4881
|
tags?: {
|
|
4762
4882
|
[key: string]: any;
|
|
4763
4883
|
};
|
|
4764
|
-
|
|
4765
|
-
safetyCheck?: string;
|
|
4766
|
-
mode?: string;
|
|
4884
|
+
templateId?: string;
|
|
4767
4885
|
templateName?: string;
|
|
4768
|
-
createDate?: string;
|
|
4769
4886
|
templateVersion?: string;
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4887
|
+
updateDate?: string;
|
|
4888
|
+
static names(): {
|
|
4889
|
+
[key: string]: string;
|
|
4890
|
+
};
|
|
4891
|
+
static types(): {
|
|
4774
4892
|
[key: string]: any;
|
|
4775
4893
|
};
|
|
4776
|
-
|
|
4894
|
+
constructor(map?: {
|
|
4895
|
+
[key: string]: any;
|
|
4896
|
+
});
|
|
4897
|
+
}
|
|
4898
|
+
export declare class UpdateApplicationResponseBodyApplication extends $tea.Model {
|
|
4899
|
+
createdDate?: string;
|
|
4900
|
+
description?: string;
|
|
4901
|
+
name?: string;
|
|
4777
4902
|
resourceGroupId?: string;
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
loopMode?: string;
|
|
4783
|
-
currentTasks?: StartExecutionResponseBodyExecutionCurrentTasks[];
|
|
4903
|
+
tags?: {
|
|
4904
|
+
[key: string]: any;
|
|
4905
|
+
};
|
|
4906
|
+
updatedDate?: string;
|
|
4784
4907
|
static names(): {
|
|
4785
4908
|
[key: string]: string;
|
|
4786
4909
|
};
|
|
@@ -4792,16 +4915,14 @@ export declare class StartExecutionResponseBodyExecution extends $tea.Model {
|
|
|
4792
4915
|
});
|
|
4793
4916
|
}
|
|
4794
4917
|
export declare class UpdateApplicationGroupResponseBodyApplicationGroup extends $tea.Model {
|
|
4918
|
+
applicationName?: string;
|
|
4919
|
+
createdDate?: string;
|
|
4795
4920
|
deployRegionId?: string;
|
|
4796
4921
|
description?: string;
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
applicationName?: string;
|
|
4922
|
+
importTagKey?: string;
|
|
4923
|
+
importTagValue?: string;
|
|
4800
4924
|
name?: string;
|
|
4801
|
-
|
|
4802
|
-
createType?: string;
|
|
4803
|
-
scalingGroupId?: string;
|
|
4804
|
-
importClusterId?: string;
|
|
4925
|
+
updatedDate?: string;
|
|
4805
4926
|
static names(): {
|
|
4806
4927
|
[key: string]: string;
|
|
4807
4928
|
};
|
|
@@ -4813,19 +4934,19 @@ export declare class UpdateApplicationGroupResponseBodyApplicationGroup extends
|
|
|
4813
4934
|
});
|
|
4814
4935
|
}
|
|
4815
4936
|
export declare class UpdateParameterResponseBodyParameter extends $tea.Model {
|
|
4816
|
-
type?: string;
|
|
4817
|
-
updatedDate?: string;
|
|
4818
|
-
updatedBy?: string;
|
|
4819
|
-
tags?: string;
|
|
4820
|
-
description?: string;
|
|
4821
4937
|
constraints?: string;
|
|
4822
|
-
resourceGroupId?: string;
|
|
4823
4938
|
createdBy?: string;
|
|
4824
4939
|
createdDate?: string;
|
|
4825
|
-
|
|
4826
|
-
name?: string;
|
|
4940
|
+
description?: string;
|
|
4827
4941
|
id?: string;
|
|
4942
|
+
name?: string;
|
|
4943
|
+
parameterVersion?: number;
|
|
4944
|
+
resourceGroupId?: string;
|
|
4828
4945
|
shareType?: string;
|
|
4946
|
+
tags?: string;
|
|
4947
|
+
type?: string;
|
|
4948
|
+
updatedBy?: string;
|
|
4949
|
+
updatedDate?: string;
|
|
4829
4950
|
static names(): {
|
|
4830
4951
|
[key: string]: string;
|
|
4831
4952
|
};
|
|
@@ -4837,16 +4958,16 @@ export declare class UpdateParameterResponseBodyParameter extends $tea.Model {
|
|
|
4837
4958
|
});
|
|
4838
4959
|
}
|
|
4839
4960
|
export declare class UpdatePatchBaselineResponseBodyPatchBaseline extends $tea.Model {
|
|
4840
|
-
|
|
4841
|
-
description?: string;
|
|
4842
|
-
updatedDate?: string;
|
|
4843
|
-
updatedBy?: string;
|
|
4961
|
+
approvalRules?: string;
|
|
4844
4962
|
createdBy?: string;
|
|
4845
4963
|
createdDate?: string;
|
|
4846
|
-
|
|
4847
|
-
approvalRules?: string;
|
|
4964
|
+
description?: string;
|
|
4848
4965
|
id?: string;
|
|
4966
|
+
name?: string;
|
|
4967
|
+
operationSystem?: string;
|
|
4849
4968
|
shareType?: string;
|
|
4969
|
+
updatedBy?: string;
|
|
4970
|
+
updatedDate?: string;
|
|
4850
4971
|
static names(): {
|
|
4851
4972
|
[key: string]: string;
|
|
4852
4973
|
};
|
|
@@ -4858,20 +4979,20 @@ export declare class UpdatePatchBaselineResponseBodyPatchBaseline extends $tea.M
|
|
|
4858
4979
|
});
|
|
4859
4980
|
}
|
|
4860
4981
|
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
4982
|
constraints?: string;
|
|
4868
|
-
resourceGroupId?: string;
|
|
4869
4983
|
createdBy?: string;
|
|
4870
4984
|
createdDate?: string;
|
|
4871
|
-
|
|
4872
|
-
name?: string;
|
|
4985
|
+
description?: string;
|
|
4873
4986
|
id?: string;
|
|
4987
|
+
keyId?: string;
|
|
4988
|
+
name?: string;
|
|
4989
|
+
parameterVersion?: number;
|
|
4990
|
+
resourceGroupId?: string;
|
|
4874
4991
|
shareType?: string;
|
|
4992
|
+
tags?: string;
|
|
4993
|
+
type?: string;
|
|
4994
|
+
updatedBy?: string;
|
|
4995
|
+
updatedDate?: string;
|
|
4875
4996
|
static names(): {
|
|
4876
4997
|
[key: string]: string;
|
|
4877
4998
|
};
|
|
@@ -4883,22 +5004,22 @@ export declare class UpdateSecretParameterResponseBodyParameter extends $tea.Mod
|
|
|
4883
5004
|
});
|
|
4884
5005
|
}
|
|
4885
5006
|
export declare class UpdateStateConfigurationResponseBodyStateConfiguration extends $tea.Model {
|
|
4886
|
-
|
|
5007
|
+
configureMode?: string;
|
|
4887
5008
|
createTime?: string;
|
|
4888
|
-
|
|
5009
|
+
description?: string;
|
|
5010
|
+
parameters?: string;
|
|
5011
|
+
resourceGroupId?: string;
|
|
5012
|
+
scheduleExpression?: string;
|
|
5013
|
+
scheduleType?: string;
|
|
5014
|
+
stateConfigurationId?: string;
|
|
4889
5015
|
tags?: {
|
|
4890
5016
|
[key: string]: any;
|
|
4891
5017
|
};
|
|
4892
|
-
|
|
4893
|
-
|
|
5018
|
+
targets?: string;
|
|
5019
|
+
templateId?: string;
|
|
4894
5020
|
templateName?: string;
|
|
4895
5021
|
templateVersion?: string;
|
|
4896
|
-
|
|
4897
|
-
scheduleType?: string;
|
|
4898
|
-
parameters?: string;
|
|
4899
|
-
description?: string;
|
|
4900
|
-
resourceGroupId?: string;
|
|
4901
|
-
templateId?: string;
|
|
5022
|
+
updateTime?: string;
|
|
4902
5023
|
static names(): {
|
|
4903
5024
|
[key: string]: string;
|
|
4904
5025
|
};
|
|
@@ -4910,22 +5031,22 @@ export declare class UpdateStateConfigurationResponseBodyStateConfiguration exte
|
|
|
4910
5031
|
});
|
|
4911
5032
|
}
|
|
4912
5033
|
export declare class UpdateTemplateResponseBodyTemplate extends $tea.Model {
|
|
5034
|
+
createdBy?: string;
|
|
5035
|
+
createdDate?: string;
|
|
5036
|
+
description?: string;
|
|
5037
|
+
hasTrigger?: boolean;
|
|
4913
5038
|
hash?: string;
|
|
4914
|
-
|
|
4915
|
-
|
|
5039
|
+
resourceGroupId?: string;
|
|
5040
|
+
shareType?: string;
|
|
4916
5041
|
tags?: {
|
|
4917
5042
|
[key: string]: any;
|
|
4918
5043
|
};
|
|
4919
|
-
templateName?: string;
|
|
4920
|
-
templateVersion?: string;
|
|
4921
5044
|
templateFormat?: string;
|
|
4922
|
-
description?: string;
|
|
4923
|
-
resourceGroupId?: string;
|
|
4924
|
-
createdBy?: string;
|
|
4925
|
-
createdDate?: string;
|
|
4926
5045
|
templateId?: string;
|
|
4927
|
-
|
|
4928
|
-
|
|
5046
|
+
templateName?: string;
|
|
5047
|
+
templateVersion?: string;
|
|
5048
|
+
updatedBy?: string;
|
|
5049
|
+
updatedDate?: string;
|
|
4929
5050
|
static names(): {
|
|
4930
5051
|
[key: string]: string;
|
|
4931
5052
|
};
|
|
@@ -4937,11 +5058,11 @@ export declare class UpdateTemplateResponseBodyTemplate extends $tea.Model {
|
|
|
4937
5058
|
});
|
|
4938
5059
|
}
|
|
4939
5060
|
export declare class ValidateTemplateContentResponseBodyTasks extends $tea.Model {
|
|
4940
|
-
outputs?: string;
|
|
4941
|
-
type?: string;
|
|
4942
5061
|
description?: string;
|
|
4943
5062
|
name?: string;
|
|
5063
|
+
outputs?: string;
|
|
4944
5064
|
properties?: string;
|
|
5065
|
+
type?: string;
|
|
4945
5066
|
static names(): {
|
|
4946
5067
|
[key: string]: string;
|
|
4947
5068
|
};
|
|
@@ -4961,7 +5082,9 @@ export default class Client extends OpenApi {
|
|
|
4961
5082
|
cancelExecution(request: CancelExecutionRequest): Promise<CancelExecutionResponse>;
|
|
4962
5083
|
changeResourceGroupWithOptions(request: ChangeResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ChangeResourceGroupResponse>;
|
|
4963
5084
|
changeResourceGroup(request: ChangeResourceGroupRequest): Promise<ChangeResourceGroupResponse>;
|
|
4964
|
-
|
|
5085
|
+
continueDeployApplicationGroupWithOptions(request: ContinueDeployApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<ContinueDeployApplicationGroupResponse>;
|
|
5086
|
+
continueDeployApplicationGroup(request: ContinueDeployApplicationGroupRequest): Promise<ContinueDeployApplicationGroupResponse>;
|
|
5087
|
+
createApplicationWithOptions(tmpReq: CreateApplicationRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationResponse>;
|
|
4965
5088
|
createApplication(request: CreateApplicationRequest): Promise<CreateApplicationResponse>;
|
|
4966
5089
|
createApplicationGroupWithOptions(request: CreateApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationGroupResponse>;
|
|
4967
5090
|
createApplicationGroup(request: CreateApplicationGroupRequest): Promise<CreateApplicationGroupResponse>;
|
|
@@ -4993,6 +5116,8 @@ export default class Client extends OpenApi {
|
|
|
4993
5116
|
deleteTemplate(request: DeleteTemplateRequest): Promise<DeleteTemplateResponse>;
|
|
4994
5117
|
deleteTemplatesWithOptions(request: DeleteTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTemplatesResponse>;
|
|
4995
5118
|
deleteTemplates(request: DeleteTemplatesRequest): Promise<DeleteTemplatesResponse>;
|
|
5119
|
+
deployApplicationGroupWithOptions(request: DeployApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeployApplicationGroupResponse>;
|
|
5120
|
+
deployApplicationGroup(request: DeployApplicationGroupRequest): Promise<DeployApplicationGroupResponse>;
|
|
4996
5121
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
4997
5122
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
4998
5123
|
generateExecutionPolicyWithOptions(request: GenerateExecutionPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GenerateExecutionPolicyResponse>;
|
|
@@ -5027,7 +5152,7 @@ export default class Client extends OpenApi {
|
|
|
5027
5152
|
listActions(request: ListActionsRequest): Promise<ListActionsResponse>;
|
|
5028
5153
|
listApplicationGroupsWithOptions(request: ListApplicationGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationGroupsResponse>;
|
|
5029
5154
|
listApplicationGroups(request: ListApplicationGroupsRequest): Promise<ListApplicationGroupsResponse>;
|
|
5030
|
-
listApplicationsWithOptions(
|
|
5155
|
+
listApplicationsWithOptions(tmpReq: ListApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsResponse>;
|
|
5031
5156
|
listApplications(request: ListApplicationsRequest): Promise<ListApplicationsResponse>;
|
|
5032
5157
|
listExecutionLogsWithOptions(request: ListExecutionLogsRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutionLogsResponse>;
|
|
5033
5158
|
listExecutionLogs(request: ListExecutionLogsRequest): Promise<ListExecutionLogsResponse>;
|
|
@@ -5035,26 +5160,24 @@ export default class Client extends OpenApi {
|
|
|
5035
5160
|
listExecutionRiskyTasks(request: ListExecutionRiskyTasksRequest): Promise<ListExecutionRiskyTasksResponse>;
|
|
5036
5161
|
listExecutionsWithOptions(tmpReq: ListExecutionsRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutionsResponse>;
|
|
5037
5162
|
listExecutions(request: ListExecutionsRequest): Promise<ListExecutionsResponse>;
|
|
5038
|
-
listInstancePatchesWithOptions(request: ListInstancePatchesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancePatchesResponse>;
|
|
5039
|
-
listInstancePatches(request: ListInstancePatchesRequest): Promise<ListInstancePatchesResponse>;
|
|
5040
5163
|
listInstancePatchStatesWithOptions(request: ListInstancePatchStatesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancePatchStatesResponse>;
|
|
5041
5164
|
listInstancePatchStates(request: ListInstancePatchStatesRequest): Promise<ListInstancePatchStatesResponse>;
|
|
5042
|
-
|
|
5043
|
-
|
|
5165
|
+
listInstancePatchesWithOptions(request: ListInstancePatchesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancePatchesResponse>;
|
|
5166
|
+
listInstancePatches(request: ListInstancePatchesRequest): Promise<ListInstancePatchesResponse>;
|
|
5044
5167
|
listInventoryEntriesWithOptions(request: ListInventoryEntriesRequest, runtime: $Util.RuntimeOptions): Promise<ListInventoryEntriesResponse>;
|
|
5045
5168
|
listInventoryEntries(request: ListInventoryEntriesRequest): Promise<ListInventoryEntriesResponse>;
|
|
5046
|
-
listParametersWithOptions(tmpReq: ListParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListParametersResponse>;
|
|
5047
|
-
listParameters(request: ListParametersRequest): Promise<ListParametersResponse>;
|
|
5048
5169
|
listParameterVersionsWithOptions(request: ListParameterVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListParameterVersionsResponse>;
|
|
5049
5170
|
listParameterVersions(request: ListParameterVersionsRequest): Promise<ListParameterVersionsResponse>;
|
|
5171
|
+
listParametersWithOptions(tmpReq: ListParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListParametersResponse>;
|
|
5172
|
+
listParameters(request: ListParametersRequest): Promise<ListParametersResponse>;
|
|
5050
5173
|
listPatchBaselinesWithOptions(request: ListPatchBaselinesRequest, runtime: $Util.RuntimeOptions): Promise<ListPatchBaselinesResponse>;
|
|
5051
5174
|
listPatchBaselines(request: ListPatchBaselinesRequest): Promise<ListPatchBaselinesResponse>;
|
|
5052
5175
|
listResourceExecutionStatusWithOptions(request: ListResourceExecutionStatusRequest, runtime: $Util.RuntimeOptions): Promise<ListResourceExecutionStatusResponse>;
|
|
5053
5176
|
listResourceExecutionStatus(request: ListResourceExecutionStatusRequest): Promise<ListResourceExecutionStatusResponse>;
|
|
5054
|
-
listSecretParametersWithOptions(tmpReq: ListSecretParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListSecretParametersResponse>;
|
|
5055
|
-
listSecretParameters(request: ListSecretParametersRequest): Promise<ListSecretParametersResponse>;
|
|
5056
5177
|
listSecretParameterVersionsWithOptions(request: ListSecretParameterVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListSecretParameterVersionsResponse>;
|
|
5057
5178
|
listSecretParameterVersions(request: ListSecretParameterVersionsRequest): Promise<ListSecretParameterVersionsResponse>;
|
|
5179
|
+
listSecretParametersWithOptions(tmpReq: ListSecretParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListSecretParametersResponse>;
|
|
5180
|
+
listSecretParameters(request: ListSecretParametersRequest): Promise<ListSecretParametersResponse>;
|
|
5058
5181
|
listStateConfigurationsWithOptions(tmpReq: ListStateConfigurationsRequest, runtime: $Util.RuntimeOptions): Promise<ListStateConfigurationsResponse>;
|
|
5059
5182
|
listStateConfigurations(request: ListStateConfigurationsRequest): Promise<ListStateConfigurationsResponse>;
|
|
5060
5183
|
listTagKeysWithOptions(request: ListTagKeysRequest, runtime: $Util.RuntimeOptions): Promise<ListTagKeysResponse>;
|
|
@@ -5065,10 +5188,10 @@ export default class Client extends OpenApi {
|
|
|
5065
5188
|
listTagValues(request: ListTagValuesRequest): Promise<ListTagValuesResponse>;
|
|
5066
5189
|
listTaskExecutionsWithOptions(request: ListTaskExecutionsRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskExecutionsResponse>;
|
|
5067
5190
|
listTaskExecutions(request: ListTaskExecutionsRequest): Promise<ListTaskExecutionsResponse>;
|
|
5068
|
-
listTemplatesWithOptions(tmpReq: ListTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<ListTemplatesResponse>;
|
|
5069
|
-
listTemplates(request: ListTemplatesRequest): Promise<ListTemplatesResponse>;
|
|
5070
5191
|
listTemplateVersionsWithOptions(request: ListTemplateVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListTemplateVersionsResponse>;
|
|
5071
5192
|
listTemplateVersions(request: ListTemplateVersionsRequest): Promise<ListTemplateVersionsResponse>;
|
|
5193
|
+
listTemplatesWithOptions(tmpReq: ListTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<ListTemplatesResponse>;
|
|
5194
|
+
listTemplates(request: ListTemplatesRequest): Promise<ListTemplatesResponse>;
|
|
5072
5195
|
notifyExecutionWithOptions(request: NotifyExecutionRequest, runtime: $Util.RuntimeOptions): Promise<NotifyExecutionResponse>;
|
|
5073
5196
|
notifyExecution(request: NotifyExecutionRequest): Promise<NotifyExecutionResponse>;
|
|
5074
5197
|
registerDefaultPatchBaselineWithOptions(request: RegisterDefaultPatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<RegisterDefaultPatchBaselineResponse>;
|
|
@@ -5085,12 +5208,12 @@ export default class Client extends OpenApi {
|
|
|
5085
5208
|
triggerExecution(request: TriggerExecutionRequest): Promise<TriggerExecutionResponse>;
|
|
5086
5209
|
untagResourcesWithOptions(tmpReq: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
5087
5210
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
5211
|
+
updateApplicationWithOptions(tmpReq: UpdateApplicationRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationResponse>;
|
|
5212
|
+
updateApplication(request: UpdateApplicationRequest): Promise<UpdateApplicationResponse>;
|
|
5088
5213
|
updateApplicationGroupWithOptions(request: UpdateApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationGroupResponse>;
|
|
5089
5214
|
updateApplicationGroup(request: UpdateApplicationGroupRequest): Promise<UpdateApplicationGroupResponse>;
|
|
5090
5215
|
updateExecutionWithOptions(request: UpdateExecutionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateExecutionResponse>;
|
|
5091
5216
|
updateExecution(request: UpdateExecutionRequest): Promise<UpdateExecutionResponse>;
|
|
5092
|
-
updateInstanceInformationWithOptions(request: UpdateInstanceInformationRequest, runtime: $Util.RuntimeOptions): Promise<UpdateInstanceInformationResponse>;
|
|
5093
|
-
updateInstanceInformation(request: UpdateInstanceInformationRequest): Promise<UpdateInstanceInformationResponse>;
|
|
5094
5217
|
updateParameterWithOptions(request: UpdateParameterRequest, runtime: $Util.RuntimeOptions): Promise<UpdateParameterResponse>;
|
|
5095
5218
|
updateParameter(request: UpdateParameterRequest): Promise<UpdateParameterResponse>;
|
|
5096
5219
|
updatePatchBaselineWithOptions(request: UpdatePatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePatchBaselineResponse>;
|