@alicloud/ess20220222 1.0.13 → 1.1.1
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/dist/client.d.ts +388 -231
- package/dist/client.js +280 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +599 -231
package/dist/client.d.ts
CHANGED
|
@@ -4,6 +4,49 @@
|
|
|
4
4
|
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
|
+
export declare class ApplyScalingGroupRequest extends $tea.Model {
|
|
8
|
+
content?: string;
|
|
9
|
+
format?: string;
|
|
10
|
+
regionId?: string;
|
|
11
|
+
static names(): {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
14
|
+
static types(): {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
};
|
|
17
|
+
constructor(map?: {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
export declare class ApplyScalingGroupResponseBody extends $tea.Model {
|
|
22
|
+
requestId?: string;
|
|
23
|
+
scalingGroupId?: string;
|
|
24
|
+
static names(): {
|
|
25
|
+
[key: string]: string;
|
|
26
|
+
};
|
|
27
|
+
static types(): {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
};
|
|
30
|
+
constructor(map?: {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
export declare class ApplyScalingGroupResponse extends $tea.Model {
|
|
35
|
+
headers?: {
|
|
36
|
+
[key: string]: string;
|
|
37
|
+
};
|
|
38
|
+
statusCode?: number;
|
|
39
|
+
body?: ApplyScalingGroupResponseBody;
|
|
40
|
+
static names(): {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
static types(): {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
};
|
|
46
|
+
constructor(map?: {
|
|
47
|
+
[key: string]: any;
|
|
48
|
+
});
|
|
49
|
+
}
|
|
7
50
|
export declare class AttachAlbServerGroupsRequest extends $tea.Model {
|
|
8
51
|
albServerGroups?: AttachAlbServerGroupsRequestAlbServerGroups[];
|
|
9
52
|
clientToken?: string;
|
|
@@ -36,11 +79,11 @@ export declare class AttachAlbServerGroupsResponseBody extends $tea.Model {
|
|
|
36
79
|
});
|
|
37
80
|
}
|
|
38
81
|
export declare class AttachAlbServerGroupsResponse extends $tea.Model {
|
|
39
|
-
headers
|
|
82
|
+
headers?: {
|
|
40
83
|
[key: string]: string;
|
|
41
84
|
};
|
|
42
|
-
statusCode
|
|
43
|
-
body
|
|
85
|
+
statusCode?: number;
|
|
86
|
+
body?: AttachAlbServerGroupsResponseBody;
|
|
44
87
|
static names(): {
|
|
45
88
|
[key: string]: string;
|
|
46
89
|
};
|
|
@@ -82,11 +125,11 @@ export declare class AttachDBInstancesResponseBody extends $tea.Model {
|
|
|
82
125
|
});
|
|
83
126
|
}
|
|
84
127
|
export declare class AttachDBInstancesResponse extends $tea.Model {
|
|
85
|
-
headers
|
|
128
|
+
headers?: {
|
|
86
129
|
[key: string]: string;
|
|
87
130
|
};
|
|
88
|
-
statusCode
|
|
89
|
-
body
|
|
131
|
+
statusCode?: number;
|
|
132
|
+
body?: AttachDBInstancesResponseBody;
|
|
90
133
|
static names(): {
|
|
91
134
|
[key: string]: string;
|
|
92
135
|
};
|
|
@@ -133,11 +176,11 @@ export declare class AttachInstancesResponseBody extends $tea.Model {
|
|
|
133
176
|
});
|
|
134
177
|
}
|
|
135
178
|
export declare class AttachInstancesResponse extends $tea.Model {
|
|
136
|
-
headers
|
|
179
|
+
headers?: {
|
|
137
180
|
[key: string]: string;
|
|
138
181
|
};
|
|
139
|
-
statusCode
|
|
140
|
-
body
|
|
182
|
+
statusCode?: number;
|
|
183
|
+
body?: AttachInstancesResponseBody;
|
|
141
184
|
static names(): {
|
|
142
185
|
[key: string]: string;
|
|
143
186
|
};
|
|
@@ -181,11 +224,11 @@ export declare class AttachLoadBalancersResponseBody extends $tea.Model {
|
|
|
181
224
|
});
|
|
182
225
|
}
|
|
183
226
|
export declare class AttachLoadBalancersResponse extends $tea.Model {
|
|
184
|
-
headers
|
|
227
|
+
headers?: {
|
|
185
228
|
[key: string]: string;
|
|
186
229
|
};
|
|
187
|
-
statusCode
|
|
188
|
-
body
|
|
230
|
+
statusCode?: number;
|
|
231
|
+
body?: AttachLoadBalancersResponseBody;
|
|
189
232
|
static names(): {
|
|
190
233
|
[key: string]: string;
|
|
191
234
|
};
|
|
@@ -228,11 +271,11 @@ export declare class AttachServerGroupsResponseBody extends $tea.Model {
|
|
|
228
271
|
});
|
|
229
272
|
}
|
|
230
273
|
export declare class AttachServerGroupsResponse extends $tea.Model {
|
|
231
|
-
headers
|
|
274
|
+
headers?: {
|
|
232
275
|
[key: string]: string;
|
|
233
276
|
};
|
|
234
|
-
statusCode
|
|
235
|
-
body
|
|
277
|
+
statusCode?: number;
|
|
278
|
+
body?: AttachServerGroupsResponseBody;
|
|
236
279
|
static names(): {
|
|
237
280
|
[key: string]: string;
|
|
238
281
|
};
|
|
@@ -274,11 +317,11 @@ export declare class AttachVServerGroupsResponseBody extends $tea.Model {
|
|
|
274
317
|
});
|
|
275
318
|
}
|
|
276
319
|
export declare class AttachVServerGroupsResponse extends $tea.Model {
|
|
277
|
-
headers
|
|
320
|
+
headers?: {
|
|
278
321
|
[key: string]: string;
|
|
279
322
|
};
|
|
280
|
-
statusCode
|
|
281
|
-
body
|
|
323
|
+
statusCode?: number;
|
|
324
|
+
body?: AttachVServerGroupsResponseBody;
|
|
282
325
|
static names(): {
|
|
283
326
|
[key: string]: string;
|
|
284
327
|
};
|
|
@@ -319,11 +362,11 @@ export declare class ChangeResourceGroupResponseBody extends $tea.Model {
|
|
|
319
362
|
});
|
|
320
363
|
}
|
|
321
364
|
export declare class ChangeResourceGroupResponse extends $tea.Model {
|
|
322
|
-
headers
|
|
365
|
+
headers?: {
|
|
323
366
|
[key: string]: string;
|
|
324
367
|
};
|
|
325
|
-
statusCode
|
|
326
|
-
body
|
|
368
|
+
statusCode?: number;
|
|
369
|
+
body?: ChangeResourceGroupResponseBody;
|
|
327
370
|
static names(): {
|
|
328
371
|
[key: string]: string;
|
|
329
372
|
};
|
|
@@ -366,11 +409,11 @@ export declare class CompleteLifecycleActionResponseBody extends $tea.Model {
|
|
|
366
409
|
});
|
|
367
410
|
}
|
|
368
411
|
export declare class CompleteLifecycleActionResponse extends $tea.Model {
|
|
369
|
-
headers
|
|
412
|
+
headers?: {
|
|
370
413
|
[key: string]: string;
|
|
371
414
|
};
|
|
372
|
-
statusCode
|
|
373
|
-
body
|
|
415
|
+
statusCode?: number;
|
|
416
|
+
body?: CompleteLifecycleActionResponseBody;
|
|
374
417
|
static names(): {
|
|
375
418
|
[key: string]: string;
|
|
376
419
|
};
|
|
@@ -425,11 +468,11 @@ export declare class CreateAlarmResponseBody extends $tea.Model {
|
|
|
425
468
|
});
|
|
426
469
|
}
|
|
427
470
|
export declare class CreateAlarmResponse extends $tea.Model {
|
|
428
|
-
headers
|
|
471
|
+
headers?: {
|
|
429
472
|
[key: string]: string;
|
|
430
473
|
};
|
|
431
|
-
statusCode
|
|
432
|
-
body
|
|
474
|
+
statusCode?: number;
|
|
475
|
+
body?: CreateAlarmResponseBody;
|
|
433
476
|
static names(): {
|
|
434
477
|
[key: string]: string;
|
|
435
478
|
};
|
|
@@ -514,11 +557,11 @@ export declare class CreateEciScalingConfigurationResponseBody extends $tea.Mode
|
|
|
514
557
|
});
|
|
515
558
|
}
|
|
516
559
|
export declare class CreateEciScalingConfigurationResponse extends $tea.Model {
|
|
517
|
-
headers
|
|
560
|
+
headers?: {
|
|
518
561
|
[key: string]: string;
|
|
519
562
|
};
|
|
520
|
-
statusCode
|
|
521
|
-
body
|
|
563
|
+
statusCode?: number;
|
|
564
|
+
body?: CreateEciScalingConfigurationResponseBody;
|
|
522
565
|
static names(): {
|
|
523
566
|
[key: string]: string;
|
|
524
567
|
};
|
|
@@ -564,11 +607,11 @@ export declare class CreateLifecycleHookResponseBody extends $tea.Model {
|
|
|
564
607
|
});
|
|
565
608
|
}
|
|
566
609
|
export declare class CreateLifecycleHookResponse extends $tea.Model {
|
|
567
|
-
headers
|
|
610
|
+
headers?: {
|
|
568
611
|
[key: string]: string;
|
|
569
612
|
};
|
|
570
|
-
statusCode
|
|
571
|
-
body
|
|
613
|
+
statusCode?: number;
|
|
614
|
+
body?: CreateLifecycleHookResponseBody;
|
|
572
615
|
static names(): {
|
|
573
616
|
[key: string]: string;
|
|
574
617
|
};
|
|
@@ -609,11 +652,11 @@ export declare class CreateNotificationConfigurationResponseBody extends $tea.Mo
|
|
|
609
652
|
});
|
|
610
653
|
}
|
|
611
654
|
export declare class CreateNotificationConfigurationResponse extends $tea.Model {
|
|
612
|
-
headers
|
|
655
|
+
headers?: {
|
|
613
656
|
[key: string]: string;
|
|
614
657
|
};
|
|
615
|
-
statusCode
|
|
616
|
-
body
|
|
658
|
+
statusCode?: number;
|
|
659
|
+
body?: CreateNotificationConfigurationResponseBody;
|
|
617
660
|
static names(): {
|
|
618
661
|
[key: string]: string;
|
|
619
662
|
};
|
|
@@ -632,6 +675,7 @@ export declare class CreateScalingConfigurationRequest extends $tea.Model {
|
|
|
632
675
|
clientToken?: string;
|
|
633
676
|
cpu?: number;
|
|
634
677
|
creditSpecification?: string;
|
|
678
|
+
customPriorities?: CreateScalingConfigurationRequestCustomPriorities[];
|
|
635
679
|
dataDisks?: CreateScalingConfigurationRequestDataDisks[];
|
|
636
680
|
dedicatedHostId?: string;
|
|
637
681
|
deletionProtection?: boolean;
|
|
@@ -699,6 +743,7 @@ export declare class CreateScalingConfigurationShrinkRequest extends $tea.Model
|
|
|
699
743
|
clientToken?: string;
|
|
700
744
|
cpu?: number;
|
|
701
745
|
creditSpecification?: string;
|
|
746
|
+
customPriorities?: CreateScalingConfigurationShrinkRequestCustomPriorities[];
|
|
702
747
|
dataDisks?: CreateScalingConfigurationShrinkRequestDataDisks[];
|
|
703
748
|
dedicatedHostId?: string;
|
|
704
749
|
deletionProtection?: boolean;
|
|
@@ -770,11 +815,11 @@ export declare class CreateScalingConfigurationResponseBody extends $tea.Model {
|
|
|
770
815
|
});
|
|
771
816
|
}
|
|
772
817
|
export declare class CreateScalingConfigurationResponse extends $tea.Model {
|
|
773
|
-
headers
|
|
818
|
+
headers?: {
|
|
774
819
|
[key: string]: string;
|
|
775
820
|
};
|
|
776
|
-
statusCode
|
|
777
|
-
body
|
|
821
|
+
statusCode?: number;
|
|
822
|
+
body?: CreateScalingConfigurationResponseBody;
|
|
778
823
|
static names(): {
|
|
779
824
|
[key: string]: string;
|
|
780
825
|
};
|
|
@@ -853,11 +898,11 @@ export declare class CreateScalingGroupResponseBody extends $tea.Model {
|
|
|
853
898
|
});
|
|
854
899
|
}
|
|
855
900
|
export declare class CreateScalingGroupResponse extends $tea.Model {
|
|
856
|
-
headers
|
|
901
|
+
headers?: {
|
|
857
902
|
[key: string]: string;
|
|
858
903
|
};
|
|
859
|
-
statusCode
|
|
860
|
-
body
|
|
904
|
+
statusCode?: number;
|
|
905
|
+
body?: CreateScalingGroupResponseBody;
|
|
861
906
|
static names(): {
|
|
862
907
|
[key: string]: string;
|
|
863
908
|
};
|
|
@@ -918,11 +963,11 @@ export declare class CreateScalingRuleResponseBody extends $tea.Model {
|
|
|
918
963
|
});
|
|
919
964
|
}
|
|
920
965
|
export declare class CreateScalingRuleResponse extends $tea.Model {
|
|
921
|
-
headers
|
|
966
|
+
headers?: {
|
|
922
967
|
[key: string]: string;
|
|
923
968
|
};
|
|
924
|
-
statusCode
|
|
925
|
-
body
|
|
969
|
+
statusCode?: number;
|
|
970
|
+
body?: CreateScalingRuleResponseBody;
|
|
926
971
|
static names(): {
|
|
927
972
|
[key: string]: string;
|
|
928
973
|
};
|
|
@@ -975,11 +1020,11 @@ export declare class CreateScheduledTaskResponseBody extends $tea.Model {
|
|
|
975
1020
|
});
|
|
976
1021
|
}
|
|
977
1022
|
export declare class CreateScheduledTaskResponse extends $tea.Model {
|
|
978
|
-
headers
|
|
1023
|
+
headers?: {
|
|
979
1024
|
[key: string]: string;
|
|
980
1025
|
};
|
|
981
|
-
statusCode
|
|
982
|
-
body
|
|
1026
|
+
statusCode?: number;
|
|
1027
|
+
body?: CreateScheduledTaskResponseBody;
|
|
983
1028
|
static names(): {
|
|
984
1029
|
[key: string]: string;
|
|
985
1030
|
};
|
|
@@ -1018,11 +1063,11 @@ export declare class DeactivateScalingConfigurationResponseBody extends $tea.Mod
|
|
|
1018
1063
|
});
|
|
1019
1064
|
}
|
|
1020
1065
|
export declare class DeactivateScalingConfigurationResponse extends $tea.Model {
|
|
1021
|
-
headers
|
|
1066
|
+
headers?: {
|
|
1022
1067
|
[key: string]: string;
|
|
1023
1068
|
};
|
|
1024
|
-
statusCode
|
|
1025
|
-
body
|
|
1069
|
+
statusCode?: number;
|
|
1070
|
+
body?: DeactivateScalingConfigurationResponseBody;
|
|
1026
1071
|
static names(): {
|
|
1027
1072
|
[key: string]: string;
|
|
1028
1073
|
};
|
|
@@ -1062,11 +1107,11 @@ export declare class DeleteAlarmResponseBody extends $tea.Model {
|
|
|
1062
1107
|
});
|
|
1063
1108
|
}
|
|
1064
1109
|
export declare class DeleteAlarmResponse extends $tea.Model {
|
|
1065
|
-
headers
|
|
1110
|
+
headers?: {
|
|
1066
1111
|
[key: string]: string;
|
|
1067
1112
|
};
|
|
1068
|
-
statusCode
|
|
1069
|
-
body
|
|
1113
|
+
statusCode?: number;
|
|
1114
|
+
body?: DeleteAlarmResponseBody;
|
|
1070
1115
|
static names(): {
|
|
1071
1116
|
[key: string]: string;
|
|
1072
1117
|
};
|
|
@@ -1106,11 +1151,11 @@ export declare class DeleteEciScalingConfigurationResponseBody extends $tea.Mode
|
|
|
1106
1151
|
});
|
|
1107
1152
|
}
|
|
1108
1153
|
export declare class DeleteEciScalingConfigurationResponse extends $tea.Model {
|
|
1109
|
-
headers
|
|
1154
|
+
headers?: {
|
|
1110
1155
|
[key: string]: string;
|
|
1111
1156
|
};
|
|
1112
|
-
statusCode
|
|
1113
|
-
body
|
|
1157
|
+
statusCode?: number;
|
|
1158
|
+
body?: DeleteEciScalingConfigurationResponseBody;
|
|
1114
1159
|
static names(): {
|
|
1115
1160
|
[key: string]: string;
|
|
1116
1161
|
};
|
|
@@ -1152,11 +1197,11 @@ export declare class DeleteLifecycleHookResponseBody extends $tea.Model {
|
|
|
1152
1197
|
});
|
|
1153
1198
|
}
|
|
1154
1199
|
export declare class DeleteLifecycleHookResponse extends $tea.Model {
|
|
1155
|
-
headers
|
|
1200
|
+
headers?: {
|
|
1156
1201
|
[key: string]: string;
|
|
1157
1202
|
};
|
|
1158
|
-
statusCode
|
|
1159
|
-
body
|
|
1203
|
+
statusCode?: number;
|
|
1204
|
+
body?: DeleteLifecycleHookResponseBody;
|
|
1160
1205
|
static names(): {
|
|
1161
1206
|
[key: string]: string;
|
|
1162
1207
|
};
|
|
@@ -1196,11 +1241,11 @@ export declare class DeleteNotificationConfigurationResponseBody extends $tea.Mo
|
|
|
1196
1241
|
});
|
|
1197
1242
|
}
|
|
1198
1243
|
export declare class DeleteNotificationConfigurationResponse extends $tea.Model {
|
|
1199
|
-
headers
|
|
1244
|
+
headers?: {
|
|
1200
1245
|
[key: string]: string;
|
|
1201
1246
|
};
|
|
1202
|
-
statusCode
|
|
1203
|
-
body
|
|
1247
|
+
statusCode?: number;
|
|
1248
|
+
body?: DeleteNotificationConfigurationResponseBody;
|
|
1204
1249
|
static names(): {
|
|
1205
1250
|
[key: string]: string;
|
|
1206
1251
|
};
|
|
@@ -1239,11 +1284,11 @@ export declare class DeleteScalingConfigurationResponseBody extends $tea.Model {
|
|
|
1239
1284
|
});
|
|
1240
1285
|
}
|
|
1241
1286
|
export declare class DeleteScalingConfigurationResponse extends $tea.Model {
|
|
1242
|
-
headers
|
|
1287
|
+
headers?: {
|
|
1243
1288
|
[key: string]: string;
|
|
1244
1289
|
};
|
|
1245
|
-
statusCode
|
|
1246
|
-
body
|
|
1290
|
+
statusCode?: number;
|
|
1291
|
+
body?: DeleteScalingConfigurationResponseBody;
|
|
1247
1292
|
static names(): {
|
|
1248
1293
|
[key: string]: string;
|
|
1249
1294
|
};
|
|
@@ -1284,11 +1329,11 @@ export declare class DeleteScalingGroupResponseBody extends $tea.Model {
|
|
|
1284
1329
|
});
|
|
1285
1330
|
}
|
|
1286
1331
|
export declare class DeleteScalingGroupResponse extends $tea.Model {
|
|
1287
|
-
headers
|
|
1332
|
+
headers?: {
|
|
1288
1333
|
[key: string]: string;
|
|
1289
1334
|
};
|
|
1290
|
-
statusCode
|
|
1291
|
-
body
|
|
1335
|
+
statusCode?: number;
|
|
1336
|
+
body?: DeleteScalingGroupResponseBody;
|
|
1292
1337
|
static names(): {
|
|
1293
1338
|
[key: string]: string;
|
|
1294
1339
|
};
|
|
@@ -1328,11 +1373,11 @@ export declare class DeleteScalingRuleResponseBody extends $tea.Model {
|
|
|
1328
1373
|
});
|
|
1329
1374
|
}
|
|
1330
1375
|
export declare class DeleteScalingRuleResponse extends $tea.Model {
|
|
1331
|
-
headers
|
|
1376
|
+
headers?: {
|
|
1332
1377
|
[key: string]: string;
|
|
1333
1378
|
};
|
|
1334
|
-
statusCode
|
|
1335
|
-
body
|
|
1379
|
+
statusCode?: number;
|
|
1380
|
+
body?: DeleteScalingRuleResponseBody;
|
|
1336
1381
|
static names(): {
|
|
1337
1382
|
[key: string]: string;
|
|
1338
1383
|
};
|
|
@@ -1372,11 +1417,11 @@ export declare class DeleteScheduledTaskResponseBody extends $tea.Model {
|
|
|
1372
1417
|
});
|
|
1373
1418
|
}
|
|
1374
1419
|
export declare class DeleteScheduledTaskResponse extends $tea.Model {
|
|
1375
|
-
headers
|
|
1420
|
+
headers?: {
|
|
1376
1421
|
[key: string]: string;
|
|
1377
1422
|
};
|
|
1378
|
-
statusCode
|
|
1379
|
-
body
|
|
1423
|
+
statusCode?: number;
|
|
1424
|
+
body?: DeleteScheduledTaskResponseBody;
|
|
1380
1425
|
static names(): {
|
|
1381
1426
|
[key: string]: string;
|
|
1382
1427
|
};
|
|
@@ -1426,11 +1471,11 @@ export declare class DescribeAlarmsResponseBody extends $tea.Model {
|
|
|
1426
1471
|
});
|
|
1427
1472
|
}
|
|
1428
1473
|
export declare class DescribeAlarmsResponse extends $tea.Model {
|
|
1429
|
-
headers
|
|
1474
|
+
headers?: {
|
|
1430
1475
|
[key: string]: string;
|
|
1431
1476
|
};
|
|
1432
|
-
statusCode
|
|
1433
|
-
body
|
|
1477
|
+
statusCode?: number;
|
|
1478
|
+
body?: DescribeAlarmsResponseBody;
|
|
1434
1479
|
static names(): {
|
|
1435
1480
|
[key: string]: string;
|
|
1436
1481
|
};
|
|
@@ -1479,11 +1524,11 @@ export declare class DescribeEciScalingConfigurationsResponseBody extends $tea.M
|
|
|
1479
1524
|
});
|
|
1480
1525
|
}
|
|
1481
1526
|
export declare class DescribeEciScalingConfigurationsResponse extends $tea.Model {
|
|
1482
|
-
headers
|
|
1527
|
+
headers?: {
|
|
1483
1528
|
[key: string]: string;
|
|
1484
1529
|
};
|
|
1485
|
-
statusCode
|
|
1486
|
-
body
|
|
1530
|
+
statusCode?: number;
|
|
1531
|
+
body?: DescribeEciScalingConfigurationsResponseBody;
|
|
1487
1532
|
static names(): {
|
|
1488
1533
|
[key: string]: string;
|
|
1489
1534
|
};
|
|
@@ -1529,11 +1574,11 @@ export declare class DescribeLifecycleActionsResponseBody extends $tea.Model {
|
|
|
1529
1574
|
});
|
|
1530
1575
|
}
|
|
1531
1576
|
export declare class DescribeLifecycleActionsResponse extends $tea.Model {
|
|
1532
|
-
headers
|
|
1577
|
+
headers?: {
|
|
1533
1578
|
[key: string]: string;
|
|
1534
1579
|
};
|
|
1535
|
-
statusCode
|
|
1536
|
-
body
|
|
1580
|
+
statusCode?: number;
|
|
1581
|
+
body?: DescribeLifecycleActionsResponseBody;
|
|
1537
1582
|
static names(): {
|
|
1538
1583
|
[key: string]: string;
|
|
1539
1584
|
};
|
|
@@ -1581,11 +1626,11 @@ export declare class DescribeLifecycleHooksResponseBody extends $tea.Model {
|
|
|
1581
1626
|
});
|
|
1582
1627
|
}
|
|
1583
1628
|
export declare class DescribeLifecycleHooksResponse extends $tea.Model {
|
|
1584
|
-
headers
|
|
1629
|
+
headers?: {
|
|
1585
1630
|
[key: string]: string;
|
|
1586
1631
|
};
|
|
1587
|
-
statusCode
|
|
1588
|
-
body
|
|
1632
|
+
statusCode?: number;
|
|
1633
|
+
body?: DescribeLifecycleHooksResponseBody;
|
|
1589
1634
|
static names(): {
|
|
1590
1635
|
[key: string]: string;
|
|
1591
1636
|
};
|
|
@@ -1636,11 +1681,11 @@ export declare class DescribeLimitationResponseBody extends $tea.Model {
|
|
|
1636
1681
|
});
|
|
1637
1682
|
}
|
|
1638
1683
|
export declare class DescribeLimitationResponse extends $tea.Model {
|
|
1639
|
-
headers
|
|
1684
|
+
headers?: {
|
|
1640
1685
|
[key: string]: string;
|
|
1641
1686
|
};
|
|
1642
|
-
statusCode
|
|
1643
|
-
body
|
|
1687
|
+
statusCode?: number;
|
|
1688
|
+
body?: DescribeLimitationResponseBody;
|
|
1644
1689
|
static names(): {
|
|
1645
1690
|
[key: string]: string;
|
|
1646
1691
|
};
|
|
@@ -1680,11 +1725,11 @@ export declare class DescribeNotificationConfigurationsResponseBody extends $tea
|
|
|
1680
1725
|
});
|
|
1681
1726
|
}
|
|
1682
1727
|
export declare class DescribeNotificationConfigurationsResponse extends $tea.Model {
|
|
1683
|
-
headers
|
|
1728
|
+
headers?: {
|
|
1684
1729
|
[key: string]: string;
|
|
1685
1730
|
};
|
|
1686
|
-
statusCode
|
|
1687
|
-
body
|
|
1731
|
+
statusCode?: number;
|
|
1732
|
+
body?: DescribeNotificationConfigurationsResponseBody;
|
|
1688
1733
|
static names(): {
|
|
1689
1734
|
[key: string]: string;
|
|
1690
1735
|
};
|
|
@@ -1722,11 +1767,11 @@ export declare class DescribeNotificationTypesResponseBody extends $tea.Model {
|
|
|
1722
1767
|
});
|
|
1723
1768
|
}
|
|
1724
1769
|
export declare class DescribeNotificationTypesResponse extends $tea.Model {
|
|
1725
|
-
headers
|
|
1770
|
+
headers?: {
|
|
1726
1771
|
[key: string]: string;
|
|
1727
1772
|
};
|
|
1728
|
-
statusCode
|
|
1729
|
-
body
|
|
1773
|
+
statusCode?: number;
|
|
1774
|
+
body?: DescribeNotificationTypesResponseBody;
|
|
1730
1775
|
static names(): {
|
|
1731
1776
|
[key: string]: string;
|
|
1732
1777
|
};
|
|
@@ -1766,11 +1811,11 @@ export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
1766
1811
|
});
|
|
1767
1812
|
}
|
|
1768
1813
|
export declare class DescribeRegionsResponse extends $tea.Model {
|
|
1769
|
-
headers
|
|
1814
|
+
headers?: {
|
|
1770
1815
|
[key: string]: string;
|
|
1771
1816
|
};
|
|
1772
|
-
statusCode
|
|
1773
|
-
body
|
|
1817
|
+
statusCode?: number;
|
|
1818
|
+
body?: DescribeRegionsResponseBody;
|
|
1774
1819
|
static names(): {
|
|
1775
1820
|
[key: string]: string;
|
|
1776
1821
|
};
|
|
@@ -1819,11 +1864,11 @@ export declare class DescribeScalingActivitiesResponseBody extends $tea.Model {
|
|
|
1819
1864
|
});
|
|
1820
1865
|
}
|
|
1821
1866
|
export declare class DescribeScalingActivitiesResponse extends $tea.Model {
|
|
1822
|
-
headers
|
|
1867
|
+
headers?: {
|
|
1823
1868
|
[key: string]: string;
|
|
1824
1869
|
};
|
|
1825
|
-
statusCode
|
|
1826
|
-
body
|
|
1870
|
+
statusCode?: number;
|
|
1871
|
+
body?: DescribeScalingActivitiesResponseBody;
|
|
1827
1872
|
static names(): {
|
|
1828
1873
|
[key: string]: string;
|
|
1829
1874
|
};
|
|
@@ -1864,11 +1909,11 @@ export declare class DescribeScalingActivityDetailResponseBody extends $tea.Mode
|
|
|
1864
1909
|
});
|
|
1865
1910
|
}
|
|
1866
1911
|
export declare class DescribeScalingActivityDetailResponse extends $tea.Model {
|
|
1867
|
-
headers
|
|
1912
|
+
headers?: {
|
|
1868
1913
|
[key: string]: string;
|
|
1869
1914
|
};
|
|
1870
|
-
statusCode
|
|
1871
|
-
body
|
|
1915
|
+
statusCode?: number;
|
|
1916
|
+
body?: DescribeScalingActivityDetailResponseBody;
|
|
1872
1917
|
static names(): {
|
|
1873
1918
|
[key: string]: string;
|
|
1874
1919
|
};
|
|
@@ -1917,11 +1962,11 @@ export declare class DescribeScalingConfigurationsResponseBody extends $tea.Mode
|
|
|
1917
1962
|
});
|
|
1918
1963
|
}
|
|
1919
1964
|
export declare class DescribeScalingConfigurationsResponse extends $tea.Model {
|
|
1920
|
-
headers
|
|
1965
|
+
headers?: {
|
|
1921
1966
|
[key: string]: string;
|
|
1922
1967
|
};
|
|
1923
|
-
statusCode
|
|
1924
|
-
body
|
|
1968
|
+
statusCode?: number;
|
|
1969
|
+
body?: DescribeScalingConfigurationsResponseBody;
|
|
1925
1970
|
static names(): {
|
|
1926
1971
|
[key: string]: string;
|
|
1927
1972
|
};
|
|
@@ -1973,11 +2018,11 @@ export declare class DescribeScalingGroupsResponseBody extends $tea.Model {
|
|
|
1973
2018
|
});
|
|
1974
2019
|
}
|
|
1975
2020
|
export declare class DescribeScalingGroupsResponse extends $tea.Model {
|
|
1976
|
-
headers
|
|
2021
|
+
headers?: {
|
|
1977
2022
|
[key: string]: string;
|
|
1978
2023
|
};
|
|
1979
|
-
statusCode
|
|
1980
|
-
body
|
|
2024
|
+
statusCode?: number;
|
|
2025
|
+
body?: DescribeScalingGroupsResponseBody;
|
|
1981
2026
|
static names(): {
|
|
1982
2027
|
[key: string]: string;
|
|
1983
2028
|
};
|
|
@@ -2033,11 +2078,11 @@ export declare class DescribeScalingInstancesResponseBody extends $tea.Model {
|
|
|
2033
2078
|
});
|
|
2034
2079
|
}
|
|
2035
2080
|
export declare class DescribeScalingInstancesResponse extends $tea.Model {
|
|
2036
|
-
headers
|
|
2081
|
+
headers?: {
|
|
2037
2082
|
[key: string]: string;
|
|
2038
2083
|
};
|
|
2039
|
-
statusCode
|
|
2040
|
-
body
|
|
2084
|
+
statusCode?: number;
|
|
2085
|
+
body?: DescribeScalingInstancesResponseBody;
|
|
2041
2086
|
static names(): {
|
|
2042
2087
|
[key: string]: string;
|
|
2043
2088
|
};
|
|
@@ -2089,11 +2134,11 @@ export declare class DescribeScalingRulesResponseBody extends $tea.Model {
|
|
|
2089
2134
|
});
|
|
2090
2135
|
}
|
|
2091
2136
|
export declare class DescribeScalingRulesResponse extends $tea.Model {
|
|
2092
|
-
headers
|
|
2137
|
+
headers?: {
|
|
2093
2138
|
[key: string]: string;
|
|
2094
2139
|
};
|
|
2095
|
-
statusCode
|
|
2096
|
-
body
|
|
2140
|
+
statusCode?: number;
|
|
2141
|
+
body?: DescribeScalingRulesResponseBody;
|
|
2097
2142
|
static names(): {
|
|
2098
2143
|
[key: string]: string;
|
|
2099
2144
|
};
|
|
@@ -2143,11 +2188,11 @@ export declare class DescribeScheduledTasksResponseBody extends $tea.Model {
|
|
|
2143
2188
|
});
|
|
2144
2189
|
}
|
|
2145
2190
|
export declare class DescribeScheduledTasksResponse extends $tea.Model {
|
|
2146
|
-
headers
|
|
2191
|
+
headers?: {
|
|
2147
2192
|
[key: string]: string;
|
|
2148
2193
|
};
|
|
2149
|
-
statusCode
|
|
2150
|
-
body
|
|
2194
|
+
statusCode?: number;
|
|
2195
|
+
body?: DescribeScheduledTasksResponseBody;
|
|
2151
2196
|
static names(): {
|
|
2152
2197
|
[key: string]: string;
|
|
2153
2198
|
};
|
|
@@ -2190,11 +2235,11 @@ export declare class DetachAlbServerGroupsResponseBody extends $tea.Model {
|
|
|
2190
2235
|
});
|
|
2191
2236
|
}
|
|
2192
2237
|
export declare class DetachAlbServerGroupsResponse extends $tea.Model {
|
|
2193
|
-
headers
|
|
2238
|
+
headers?: {
|
|
2194
2239
|
[key: string]: string;
|
|
2195
2240
|
};
|
|
2196
|
-
statusCode
|
|
2197
|
-
body
|
|
2241
|
+
statusCode?: number;
|
|
2242
|
+
body?: DetachAlbServerGroupsResponseBody;
|
|
2198
2243
|
static names(): {
|
|
2199
2244
|
[key: string]: string;
|
|
2200
2245
|
};
|
|
@@ -2236,11 +2281,11 @@ export declare class DetachDBInstancesResponseBody extends $tea.Model {
|
|
|
2236
2281
|
});
|
|
2237
2282
|
}
|
|
2238
2283
|
export declare class DetachDBInstancesResponse extends $tea.Model {
|
|
2239
|
-
headers
|
|
2284
|
+
headers?: {
|
|
2240
2285
|
[key: string]: string;
|
|
2241
2286
|
};
|
|
2242
|
-
statusCode
|
|
2243
|
-
body
|
|
2287
|
+
statusCode?: number;
|
|
2288
|
+
body?: DetachDBInstancesResponseBody;
|
|
2244
2289
|
static names(): {
|
|
2245
2290
|
[key: string]: string;
|
|
2246
2291
|
};
|
|
@@ -2286,11 +2331,11 @@ export declare class DetachInstancesResponseBody extends $tea.Model {
|
|
|
2286
2331
|
});
|
|
2287
2332
|
}
|
|
2288
2333
|
export declare class DetachInstancesResponse extends $tea.Model {
|
|
2289
|
-
headers
|
|
2334
|
+
headers?: {
|
|
2290
2335
|
[key: string]: string;
|
|
2291
2336
|
};
|
|
2292
|
-
statusCode
|
|
2293
|
-
body
|
|
2337
|
+
statusCode?: number;
|
|
2338
|
+
body?: DetachInstancesResponseBody;
|
|
2294
2339
|
static names(): {
|
|
2295
2340
|
[key: string]: string;
|
|
2296
2341
|
};
|
|
@@ -2334,11 +2379,11 @@ export declare class DetachLoadBalancersResponseBody extends $tea.Model {
|
|
|
2334
2379
|
});
|
|
2335
2380
|
}
|
|
2336
2381
|
export declare class DetachLoadBalancersResponse extends $tea.Model {
|
|
2337
|
-
headers
|
|
2382
|
+
headers?: {
|
|
2338
2383
|
[key: string]: string;
|
|
2339
2384
|
};
|
|
2340
|
-
statusCode
|
|
2341
|
-
body
|
|
2385
|
+
statusCode?: number;
|
|
2386
|
+
body?: DetachLoadBalancersResponseBody;
|
|
2342
2387
|
static names(): {
|
|
2343
2388
|
[key: string]: string;
|
|
2344
2389
|
};
|
|
@@ -2381,11 +2426,11 @@ export declare class DetachServerGroupsResponseBody extends $tea.Model {
|
|
|
2381
2426
|
});
|
|
2382
2427
|
}
|
|
2383
2428
|
export declare class DetachServerGroupsResponse extends $tea.Model {
|
|
2384
|
-
headers
|
|
2429
|
+
headers?: {
|
|
2385
2430
|
[key: string]: string;
|
|
2386
2431
|
};
|
|
2387
|
-
statusCode
|
|
2388
|
-
body
|
|
2432
|
+
statusCode?: number;
|
|
2433
|
+
body?: DetachServerGroupsResponseBody;
|
|
2389
2434
|
static names(): {
|
|
2390
2435
|
[key: string]: string;
|
|
2391
2436
|
};
|
|
@@ -2427,11 +2472,11 @@ export declare class DetachVServerGroupsResponseBody extends $tea.Model {
|
|
|
2427
2472
|
});
|
|
2428
2473
|
}
|
|
2429
2474
|
export declare class DetachVServerGroupsResponse extends $tea.Model {
|
|
2430
|
-
headers
|
|
2475
|
+
headers?: {
|
|
2431
2476
|
[key: string]: string;
|
|
2432
2477
|
};
|
|
2433
|
-
statusCode
|
|
2434
|
-
body
|
|
2478
|
+
statusCode?: number;
|
|
2479
|
+
body?: DetachVServerGroupsResponseBody;
|
|
2435
2480
|
static names(): {
|
|
2436
2481
|
[key: string]: string;
|
|
2437
2482
|
};
|
|
@@ -2470,11 +2515,11 @@ export declare class DisableAlarmResponseBody extends $tea.Model {
|
|
|
2470
2515
|
});
|
|
2471
2516
|
}
|
|
2472
2517
|
export declare class DisableAlarmResponse extends $tea.Model {
|
|
2473
|
-
headers
|
|
2518
|
+
headers?: {
|
|
2474
2519
|
[key: string]: string;
|
|
2475
2520
|
};
|
|
2476
|
-
statusCode
|
|
2477
|
-
body
|
|
2521
|
+
statusCode?: number;
|
|
2522
|
+
body?: DisableAlarmResponseBody;
|
|
2478
2523
|
static names(): {
|
|
2479
2524
|
[key: string]: string;
|
|
2480
2525
|
};
|
|
@@ -2514,11 +2559,11 @@ export declare class DisableScalingGroupResponseBody extends $tea.Model {
|
|
|
2514
2559
|
});
|
|
2515
2560
|
}
|
|
2516
2561
|
export declare class DisableScalingGroupResponse extends $tea.Model {
|
|
2517
|
-
headers
|
|
2562
|
+
headers?: {
|
|
2518
2563
|
[key: string]: string;
|
|
2519
2564
|
};
|
|
2520
|
-
statusCode
|
|
2521
|
-
body
|
|
2565
|
+
statusCode?: number;
|
|
2566
|
+
body?: DisableScalingGroupResponseBody;
|
|
2522
2567
|
static names(): {
|
|
2523
2568
|
[key: string]: string;
|
|
2524
2569
|
};
|
|
@@ -2557,11 +2602,11 @@ export declare class EnableAlarmResponseBody extends $tea.Model {
|
|
|
2557
2602
|
});
|
|
2558
2603
|
}
|
|
2559
2604
|
export declare class EnableAlarmResponse extends $tea.Model {
|
|
2560
|
-
headers
|
|
2605
|
+
headers?: {
|
|
2561
2606
|
[key: string]: string;
|
|
2562
2607
|
};
|
|
2563
|
-
statusCode
|
|
2564
|
-
body
|
|
2608
|
+
statusCode?: number;
|
|
2609
|
+
body?: EnableAlarmResponseBody;
|
|
2565
2610
|
static names(): {
|
|
2566
2611
|
[key: string]: string;
|
|
2567
2612
|
};
|
|
@@ -2608,11 +2653,11 @@ export declare class EnableScalingGroupResponseBody extends $tea.Model {
|
|
|
2608
2653
|
});
|
|
2609
2654
|
}
|
|
2610
2655
|
export declare class EnableScalingGroupResponse extends $tea.Model {
|
|
2611
|
-
headers
|
|
2656
|
+
headers?: {
|
|
2612
2657
|
[key: string]: string;
|
|
2613
2658
|
};
|
|
2614
|
-
statusCode
|
|
2615
|
-
body
|
|
2659
|
+
statusCode?: number;
|
|
2660
|
+
body?: EnableScalingGroupResponseBody;
|
|
2616
2661
|
static names(): {
|
|
2617
2662
|
[key: string]: string;
|
|
2618
2663
|
};
|
|
@@ -2654,11 +2699,11 @@ export declare class EnterStandbyResponseBody extends $tea.Model {
|
|
|
2654
2699
|
});
|
|
2655
2700
|
}
|
|
2656
2701
|
export declare class EnterStandbyResponse extends $tea.Model {
|
|
2657
|
-
headers
|
|
2702
|
+
headers?: {
|
|
2658
2703
|
[key: string]: string;
|
|
2659
2704
|
};
|
|
2660
|
-
statusCode
|
|
2661
|
-
body
|
|
2705
|
+
statusCode?: number;
|
|
2706
|
+
body?: EnterStandbyResponseBody;
|
|
2662
2707
|
static names(): {
|
|
2663
2708
|
[key: string]: string;
|
|
2664
2709
|
};
|
|
@@ -2703,11 +2748,11 @@ export declare class ExecuteScalingRuleResponseBody extends $tea.Model {
|
|
|
2703
2748
|
});
|
|
2704
2749
|
}
|
|
2705
2750
|
export declare class ExecuteScalingRuleResponse extends $tea.Model {
|
|
2706
|
-
headers
|
|
2751
|
+
headers?: {
|
|
2707
2752
|
[key: string]: string;
|
|
2708
2753
|
};
|
|
2709
|
-
statusCode
|
|
2710
|
-
body
|
|
2754
|
+
statusCode?: number;
|
|
2755
|
+
body?: ExecuteScalingRuleResponseBody;
|
|
2711
2756
|
static names(): {
|
|
2712
2757
|
[key: string]: string;
|
|
2713
2758
|
};
|
|
@@ -2750,11 +2795,11 @@ export declare class ExitStandbyResponseBody extends $tea.Model {
|
|
|
2750
2795
|
});
|
|
2751
2796
|
}
|
|
2752
2797
|
export declare class ExitStandbyResponse extends $tea.Model {
|
|
2753
|
-
headers
|
|
2798
|
+
headers?: {
|
|
2754
2799
|
[key: string]: string;
|
|
2755
2800
|
};
|
|
2756
|
-
statusCode
|
|
2757
|
-
body
|
|
2801
|
+
statusCode?: number;
|
|
2802
|
+
body?: ExitStandbyResponseBody;
|
|
2758
2803
|
static names(): {
|
|
2759
2804
|
[key: string]: string;
|
|
2760
2805
|
};
|
|
@@ -2798,11 +2843,11 @@ export declare class ListTagKeysResponseBody extends $tea.Model {
|
|
|
2798
2843
|
});
|
|
2799
2844
|
}
|
|
2800
2845
|
export declare class ListTagKeysResponse extends $tea.Model {
|
|
2801
|
-
headers
|
|
2846
|
+
headers?: {
|
|
2802
2847
|
[key: string]: string;
|
|
2803
2848
|
};
|
|
2804
|
-
statusCode
|
|
2805
|
-
body
|
|
2849
|
+
statusCode?: number;
|
|
2850
|
+
body?: ListTagKeysResponseBody;
|
|
2806
2851
|
static names(): {
|
|
2807
2852
|
[key: string]: string;
|
|
2808
2853
|
};
|
|
@@ -2846,11 +2891,11 @@ export declare class ListTagResourcesResponseBody extends $tea.Model {
|
|
|
2846
2891
|
});
|
|
2847
2892
|
}
|
|
2848
2893
|
export declare class ListTagResourcesResponse extends $tea.Model {
|
|
2849
|
-
headers
|
|
2894
|
+
headers?: {
|
|
2850
2895
|
[key: string]: string;
|
|
2851
2896
|
};
|
|
2852
|
-
statusCode
|
|
2853
|
-
body
|
|
2897
|
+
statusCode?: number;
|
|
2898
|
+
body?: ListTagResourcesResponseBody;
|
|
2854
2899
|
static names(): {
|
|
2855
2900
|
[key: string]: string;
|
|
2856
2901
|
};
|
|
@@ -2895,11 +2940,11 @@ export declare class ListTagValuesResponseBody extends $tea.Model {
|
|
|
2895
2940
|
});
|
|
2896
2941
|
}
|
|
2897
2942
|
export declare class ListTagValuesResponse extends $tea.Model {
|
|
2898
|
-
headers
|
|
2943
|
+
headers?: {
|
|
2899
2944
|
[key: string]: string;
|
|
2900
2945
|
};
|
|
2901
|
-
statusCode
|
|
2902
|
-
body
|
|
2946
|
+
statusCode?: number;
|
|
2947
|
+
body?: ListTagValuesResponseBody;
|
|
2903
2948
|
static names(): {
|
|
2904
2949
|
[key: string]: string;
|
|
2905
2950
|
};
|
|
@@ -2954,11 +2999,11 @@ export declare class ModifyAlarmResponseBody extends $tea.Model {
|
|
|
2954
2999
|
});
|
|
2955
3000
|
}
|
|
2956
3001
|
export declare class ModifyAlarmResponse extends $tea.Model {
|
|
2957
|
-
headers
|
|
3002
|
+
headers?: {
|
|
2958
3003
|
[key: string]: string;
|
|
2959
3004
|
};
|
|
2960
|
-
statusCode
|
|
2961
|
-
body
|
|
3005
|
+
statusCode?: number;
|
|
3006
|
+
body?: ModifyAlarmResponseBody;
|
|
2962
3007
|
static names(): {
|
|
2963
3008
|
[key: string]: string;
|
|
2964
3009
|
};
|
|
@@ -3043,11 +3088,11 @@ export declare class ModifyEciScalingConfigurationResponseBody extends $tea.Mode
|
|
|
3043
3088
|
});
|
|
3044
3089
|
}
|
|
3045
3090
|
export declare class ModifyEciScalingConfigurationResponse extends $tea.Model {
|
|
3046
|
-
headers
|
|
3091
|
+
headers?: {
|
|
3047
3092
|
[key: string]: string;
|
|
3048
3093
|
};
|
|
3049
|
-
statusCode
|
|
3050
|
-
body
|
|
3094
|
+
statusCode?: number;
|
|
3095
|
+
body?: ModifyEciScalingConfigurationResponseBody;
|
|
3051
3096
|
static names(): {
|
|
3052
3097
|
[key: string]: string;
|
|
3053
3098
|
};
|
|
@@ -3095,11 +3140,11 @@ export declare class ModifyLifecycleHookResponseBody extends $tea.Model {
|
|
|
3095
3140
|
});
|
|
3096
3141
|
}
|
|
3097
3142
|
export declare class ModifyLifecycleHookResponse extends $tea.Model {
|
|
3098
|
-
headers
|
|
3143
|
+
headers?: {
|
|
3099
3144
|
[key: string]: string;
|
|
3100
3145
|
};
|
|
3101
|
-
statusCode
|
|
3102
|
-
body
|
|
3146
|
+
statusCode?: number;
|
|
3147
|
+
body?: ModifyLifecycleHookResponseBody;
|
|
3103
3148
|
static names(): {
|
|
3104
3149
|
[key: string]: string;
|
|
3105
3150
|
};
|
|
@@ -3140,11 +3185,11 @@ export declare class ModifyNotificationConfigurationResponseBody extends $tea.Mo
|
|
|
3140
3185
|
});
|
|
3141
3186
|
}
|
|
3142
3187
|
export declare class ModifyNotificationConfigurationResponse extends $tea.Model {
|
|
3143
|
-
headers
|
|
3188
|
+
headers?: {
|
|
3144
3189
|
[key: string]: string;
|
|
3145
3190
|
};
|
|
3146
|
-
statusCode
|
|
3147
|
-
body
|
|
3191
|
+
statusCode?: number;
|
|
3192
|
+
body?: ModifyNotificationConfigurationResponseBody;
|
|
3148
3193
|
static names(): {
|
|
3149
3194
|
[key: string]: string;
|
|
3150
3195
|
};
|
|
@@ -3162,6 +3207,7 @@ export declare class ModifyScalingConfigurationRequest extends $tea.Model {
|
|
|
3162
3207
|
affinity?: string;
|
|
3163
3208
|
cpu?: number;
|
|
3164
3209
|
creditSpecification?: string;
|
|
3210
|
+
customPriorities?: ModifyScalingConfigurationRequestCustomPriorities[];
|
|
3165
3211
|
dataDisks?: ModifyScalingConfigurationRequestDataDisks[];
|
|
3166
3212
|
dedicatedHostId?: string;
|
|
3167
3213
|
deletionProtection?: boolean;
|
|
@@ -3225,6 +3271,7 @@ export declare class ModifyScalingConfigurationShrinkRequest extends $tea.Model
|
|
|
3225
3271
|
affinity?: string;
|
|
3226
3272
|
cpu?: number;
|
|
3227
3273
|
creditSpecification?: string;
|
|
3274
|
+
customPriorities?: ModifyScalingConfigurationShrinkRequestCustomPriorities[];
|
|
3228
3275
|
dataDisks?: ModifyScalingConfigurationShrinkRequestDataDisks[];
|
|
3229
3276
|
dedicatedHostId?: string;
|
|
3230
3277
|
deletionProtection?: boolean;
|
|
@@ -3292,11 +3339,11 @@ export declare class ModifyScalingConfigurationResponseBody extends $tea.Model {
|
|
|
3292
3339
|
});
|
|
3293
3340
|
}
|
|
3294
3341
|
export declare class ModifyScalingConfigurationResponse extends $tea.Model {
|
|
3295
|
-
headers
|
|
3342
|
+
headers?: {
|
|
3296
3343
|
[key: string]: string;
|
|
3297
3344
|
};
|
|
3298
|
-
statusCode
|
|
3299
|
-
body
|
|
3345
|
+
statusCode?: number;
|
|
3346
|
+
body?: ModifyScalingConfigurationResponseBody;
|
|
3300
3347
|
static names(): {
|
|
3301
3348
|
[key: string]: string;
|
|
3302
3349
|
};
|
|
@@ -3361,11 +3408,11 @@ export declare class ModifyScalingGroupResponseBody extends $tea.Model {
|
|
|
3361
3408
|
});
|
|
3362
3409
|
}
|
|
3363
3410
|
export declare class ModifyScalingGroupResponse extends $tea.Model {
|
|
3364
|
-
headers
|
|
3411
|
+
headers?: {
|
|
3365
3412
|
[key: string]: string;
|
|
3366
3413
|
};
|
|
3367
|
-
statusCode
|
|
3368
|
-
body
|
|
3414
|
+
statusCode?: number;
|
|
3415
|
+
body?: ModifyScalingGroupResponseBody;
|
|
3369
3416
|
static names(): {
|
|
3370
3417
|
[key: string]: string;
|
|
3371
3418
|
};
|
|
@@ -3423,11 +3470,11 @@ export declare class ModifyScalingRuleResponseBody extends $tea.Model {
|
|
|
3423
3470
|
});
|
|
3424
3471
|
}
|
|
3425
3472
|
export declare class ModifyScalingRuleResponse extends $tea.Model {
|
|
3426
|
-
headers
|
|
3473
|
+
headers?: {
|
|
3427
3474
|
[key: string]: string;
|
|
3428
3475
|
};
|
|
3429
|
-
statusCode
|
|
3430
|
-
body
|
|
3476
|
+
statusCode?: number;
|
|
3477
|
+
body?: ModifyScalingRuleResponseBody;
|
|
3431
3478
|
static names(): {
|
|
3432
3479
|
[key: string]: string;
|
|
3433
3480
|
};
|
|
@@ -3480,11 +3527,11 @@ export declare class ModifyScheduledTaskResponseBody extends $tea.Model {
|
|
|
3480
3527
|
});
|
|
3481
3528
|
}
|
|
3482
3529
|
export declare class ModifyScheduledTaskResponse extends $tea.Model {
|
|
3483
|
-
headers
|
|
3530
|
+
headers?: {
|
|
3484
3531
|
[key: string]: string;
|
|
3485
3532
|
};
|
|
3486
|
-
statusCode
|
|
3487
|
-
body
|
|
3533
|
+
statusCode?: number;
|
|
3534
|
+
body?: ModifyScheduledTaskResponseBody;
|
|
3488
3535
|
static names(): {
|
|
3489
3536
|
[key: string]: string;
|
|
3490
3537
|
};
|
|
@@ -3526,11 +3573,11 @@ export declare class RebalanceInstancesResponseBody extends $tea.Model {
|
|
|
3526
3573
|
});
|
|
3527
3574
|
}
|
|
3528
3575
|
export declare class RebalanceInstancesResponse extends $tea.Model {
|
|
3529
|
-
headers
|
|
3576
|
+
headers?: {
|
|
3530
3577
|
[key: string]: string;
|
|
3531
3578
|
};
|
|
3532
|
-
statusCode
|
|
3533
|
-
body
|
|
3579
|
+
statusCode?: number;
|
|
3580
|
+
body?: RebalanceInstancesResponseBody;
|
|
3534
3581
|
static names(): {
|
|
3535
3582
|
[key: string]: string;
|
|
3536
3583
|
};
|
|
@@ -3572,11 +3619,11 @@ export declare class RecordLifecycleActionHeartbeatResponseBody extends $tea.Mod
|
|
|
3572
3619
|
});
|
|
3573
3620
|
}
|
|
3574
3621
|
export declare class RecordLifecycleActionHeartbeatResponse extends $tea.Model {
|
|
3575
|
-
headers
|
|
3622
|
+
headers?: {
|
|
3576
3623
|
[key: string]: string;
|
|
3577
3624
|
};
|
|
3578
|
-
statusCode
|
|
3579
|
-
body
|
|
3625
|
+
statusCode?: number;
|
|
3626
|
+
body?: RecordLifecycleActionHeartbeatResponseBody;
|
|
3580
3627
|
static names(): {
|
|
3581
3628
|
[key: string]: string;
|
|
3582
3629
|
};
|
|
@@ -3622,11 +3669,11 @@ export declare class RemoveInstancesResponseBody extends $tea.Model {
|
|
|
3622
3669
|
});
|
|
3623
3670
|
}
|
|
3624
3671
|
export declare class RemoveInstancesResponse extends $tea.Model {
|
|
3625
|
-
headers
|
|
3672
|
+
headers?: {
|
|
3626
3673
|
[key: string]: string;
|
|
3627
3674
|
};
|
|
3628
|
-
statusCode
|
|
3629
|
-
body
|
|
3675
|
+
statusCode?: number;
|
|
3676
|
+
body?: RemoveInstancesResponseBody;
|
|
3630
3677
|
static names(): {
|
|
3631
3678
|
[key: string]: string;
|
|
3632
3679
|
};
|
|
@@ -3667,11 +3714,11 @@ export declare class ResumeProcessesResponseBody extends $tea.Model {
|
|
|
3667
3714
|
});
|
|
3668
3715
|
}
|
|
3669
3716
|
export declare class ResumeProcessesResponse extends $tea.Model {
|
|
3670
|
-
headers
|
|
3717
|
+
headers?: {
|
|
3671
3718
|
[key: string]: string;
|
|
3672
3719
|
};
|
|
3673
|
-
statusCode
|
|
3674
|
-
body
|
|
3720
|
+
statusCode?: number;
|
|
3721
|
+
body?: ResumeProcessesResponseBody;
|
|
3675
3722
|
static names(): {
|
|
3676
3723
|
[key: string]: string;
|
|
3677
3724
|
};
|
|
@@ -3737,11 +3784,11 @@ export declare class ScaleWithAdjustmentResponseBody extends $tea.Model {
|
|
|
3737
3784
|
});
|
|
3738
3785
|
}
|
|
3739
3786
|
export declare class ScaleWithAdjustmentResponse extends $tea.Model {
|
|
3740
|
-
headers
|
|
3787
|
+
headers?: {
|
|
3741
3788
|
[key: string]: string;
|
|
3742
3789
|
};
|
|
3743
|
-
statusCode
|
|
3744
|
-
body
|
|
3790
|
+
statusCode?: number;
|
|
3791
|
+
body?: ScaleWithAdjustmentResponseBody;
|
|
3745
3792
|
static names(): {
|
|
3746
3793
|
[key: string]: string;
|
|
3747
3794
|
};
|
|
@@ -3781,11 +3828,11 @@ export declare class SetGroupDeletionProtectionResponseBody extends $tea.Model {
|
|
|
3781
3828
|
});
|
|
3782
3829
|
}
|
|
3783
3830
|
export declare class SetGroupDeletionProtectionResponse extends $tea.Model {
|
|
3784
|
-
headers
|
|
3831
|
+
headers?: {
|
|
3785
3832
|
[key: string]: string;
|
|
3786
3833
|
};
|
|
3787
|
-
statusCode
|
|
3788
|
-
body
|
|
3834
|
+
statusCode?: number;
|
|
3835
|
+
body?: SetGroupDeletionProtectionResponseBody;
|
|
3789
3836
|
static names(): {
|
|
3790
3837
|
[key: string]: string;
|
|
3791
3838
|
};
|
|
@@ -3824,11 +3871,11 @@ export declare class SetInstanceHealthResponseBody extends $tea.Model {
|
|
|
3824
3871
|
});
|
|
3825
3872
|
}
|
|
3826
3873
|
export declare class SetInstanceHealthResponse extends $tea.Model {
|
|
3827
|
-
headers
|
|
3874
|
+
headers?: {
|
|
3828
3875
|
[key: string]: string;
|
|
3829
3876
|
};
|
|
3830
|
-
statusCode
|
|
3831
|
-
body
|
|
3877
|
+
statusCode?: number;
|
|
3878
|
+
body?: SetInstanceHealthResponseBody;
|
|
3832
3879
|
static names(): {
|
|
3833
3880
|
[key: string]: string;
|
|
3834
3881
|
};
|
|
@@ -3868,11 +3915,11 @@ export declare class SetInstancesProtectionResponseBody extends $tea.Model {
|
|
|
3868
3915
|
});
|
|
3869
3916
|
}
|
|
3870
3917
|
export declare class SetInstancesProtectionResponse extends $tea.Model {
|
|
3871
|
-
headers
|
|
3918
|
+
headers?: {
|
|
3872
3919
|
[key: string]: string;
|
|
3873
3920
|
};
|
|
3874
|
-
statusCode
|
|
3875
|
-
body
|
|
3921
|
+
statusCode?: number;
|
|
3922
|
+
body?: SetInstancesProtectionResponseBody;
|
|
3876
3923
|
static names(): {
|
|
3877
3924
|
[key: string]: string;
|
|
3878
3925
|
};
|
|
@@ -3913,11 +3960,11 @@ export declare class SuspendProcessesResponseBody extends $tea.Model {
|
|
|
3913
3960
|
});
|
|
3914
3961
|
}
|
|
3915
3962
|
export declare class SuspendProcessesResponse extends $tea.Model {
|
|
3916
|
-
headers
|
|
3963
|
+
headers?: {
|
|
3917
3964
|
[key: string]: string;
|
|
3918
3965
|
};
|
|
3919
|
-
statusCode
|
|
3920
|
-
body
|
|
3966
|
+
statusCode?: number;
|
|
3967
|
+
body?: SuspendProcessesResponseBody;
|
|
3921
3968
|
static names(): {
|
|
3922
3969
|
[key: string]: string;
|
|
3923
3970
|
};
|
|
@@ -3958,11 +4005,11 @@ export declare class TagResourcesResponseBody extends $tea.Model {
|
|
|
3958
4005
|
});
|
|
3959
4006
|
}
|
|
3960
4007
|
export declare class TagResourcesResponse extends $tea.Model {
|
|
3961
|
-
headers
|
|
4008
|
+
headers?: {
|
|
3962
4009
|
[key: string]: string;
|
|
3963
4010
|
};
|
|
3964
|
-
statusCode
|
|
3965
|
-
body
|
|
4011
|
+
statusCode?: number;
|
|
4012
|
+
body?: TagResourcesResponseBody;
|
|
3966
4013
|
static names(): {
|
|
3967
4014
|
[key: string]: string;
|
|
3968
4015
|
};
|
|
@@ -4004,11 +4051,11 @@ export declare class UntagResourcesResponseBody extends $tea.Model {
|
|
|
4004
4051
|
});
|
|
4005
4052
|
}
|
|
4006
4053
|
export declare class UntagResourcesResponse extends $tea.Model {
|
|
4007
|
-
headers
|
|
4054
|
+
headers?: {
|
|
4008
4055
|
[key: string]: string;
|
|
4009
4056
|
};
|
|
4010
|
-
statusCode
|
|
4011
|
-
body
|
|
4057
|
+
statusCode?: number;
|
|
4058
|
+
body?: UntagResourcesResponseBody;
|
|
4012
4059
|
static names(): {
|
|
4013
4060
|
[key: string]: string;
|
|
4014
4061
|
};
|
|
@@ -4048,11 +4095,11 @@ export declare class VerifyAuthenticationResponseBody extends $tea.Model {
|
|
|
4048
4095
|
});
|
|
4049
4096
|
}
|
|
4050
4097
|
export declare class VerifyAuthenticationResponse extends $tea.Model {
|
|
4051
|
-
headers
|
|
4098
|
+
headers?: {
|
|
4052
4099
|
[key: string]: string;
|
|
4053
4100
|
};
|
|
4054
|
-
statusCode
|
|
4055
|
-
body
|
|
4101
|
+
statusCode?: number;
|
|
4102
|
+
body?: VerifyAuthenticationResponseBody;
|
|
4056
4103
|
static names(): {
|
|
4057
4104
|
[key: string]: string;
|
|
4058
4105
|
};
|
|
@@ -4091,11 +4138,11 @@ export declare class VerifyUserResponseBody extends $tea.Model {
|
|
|
4091
4138
|
});
|
|
4092
4139
|
}
|
|
4093
4140
|
export declare class VerifyUserResponse extends $tea.Model {
|
|
4094
|
-
headers
|
|
4141
|
+
headers?: {
|
|
4095
4142
|
[key: string]: string;
|
|
4096
4143
|
};
|
|
4097
|
-
statusCode
|
|
4098
|
-
body
|
|
4144
|
+
statusCode?: number;
|
|
4145
|
+
body?: VerifyUserResponseBody;
|
|
4099
4146
|
static names(): {
|
|
4100
4147
|
[key: string]: string;
|
|
4101
4148
|
};
|
|
@@ -4413,6 +4460,20 @@ export declare class CreateEciScalingConfigurationRequestContainers extends $tea
|
|
|
4413
4460
|
gpu?: number;
|
|
4414
4461
|
image?: string;
|
|
4415
4462
|
imagePullPolicy?: string;
|
|
4463
|
+
lifecyclePostStartHandlerExecs?: string[];
|
|
4464
|
+
lifecyclePostStartHandlerHttpGetHost?: string;
|
|
4465
|
+
lifecyclePostStartHandlerHttpGetPath?: string;
|
|
4466
|
+
lifecyclePostStartHandlerHttpGetPort?: number;
|
|
4467
|
+
lifecyclePostStartHandlerHttpGetScheme?: string;
|
|
4468
|
+
lifecyclePostStartHandlerTcpSocketHost?: string;
|
|
4469
|
+
lifecyclePostStartHandlerTcpSocketPort?: number;
|
|
4470
|
+
lifecyclePreStopHandlerExecs?: string[];
|
|
4471
|
+
lifecyclePreStopHandlerHttpGetHost?: string;
|
|
4472
|
+
lifecyclePreStopHandlerHttpGetPath?: string;
|
|
4473
|
+
lifecyclePreStopHandlerHttpGetPort?: number;
|
|
4474
|
+
lifecyclePreStopHandlerHttpGetScheme?: string;
|
|
4475
|
+
lifecyclePreStopHandlerTcpSocketHost?: string;
|
|
4476
|
+
lifecyclePreStopHandlerTcpSocketPort?: number;
|
|
4416
4477
|
memory?: number;
|
|
4417
4478
|
name?: string;
|
|
4418
4479
|
ports?: CreateEciScalingConfigurationRequestContainersPorts[];
|
|
@@ -4739,6 +4800,19 @@ export declare class CreateScalingConfigurationRequestSystemDisk extends $tea.Mo
|
|
|
4739
4800
|
[key: string]: any;
|
|
4740
4801
|
});
|
|
4741
4802
|
}
|
|
4803
|
+
export declare class CreateScalingConfigurationRequestCustomPriorities extends $tea.Model {
|
|
4804
|
+
instanceType?: string;
|
|
4805
|
+
vswitchId?: string;
|
|
4806
|
+
static names(): {
|
|
4807
|
+
[key: string]: string;
|
|
4808
|
+
};
|
|
4809
|
+
static types(): {
|
|
4810
|
+
[key: string]: any;
|
|
4811
|
+
};
|
|
4812
|
+
constructor(map?: {
|
|
4813
|
+
[key: string]: any;
|
|
4814
|
+
});
|
|
4815
|
+
}
|
|
4742
4816
|
export declare class CreateScalingConfigurationRequestDataDisks extends $tea.Model {
|
|
4743
4817
|
autoSnapshotPolicyId?: string;
|
|
4744
4818
|
burstingEnabled?: boolean;
|
|
@@ -4855,6 +4929,19 @@ export declare class CreateScalingConfigurationShrinkRequestSystemDisk extends $
|
|
|
4855
4929
|
[key: string]: any;
|
|
4856
4930
|
});
|
|
4857
4931
|
}
|
|
4932
|
+
export declare class CreateScalingConfigurationShrinkRequestCustomPriorities extends $tea.Model {
|
|
4933
|
+
instanceType?: string;
|
|
4934
|
+
vswitchId?: string;
|
|
4935
|
+
static names(): {
|
|
4936
|
+
[key: string]: string;
|
|
4937
|
+
};
|
|
4938
|
+
static types(): {
|
|
4939
|
+
[key: string]: any;
|
|
4940
|
+
};
|
|
4941
|
+
constructor(map?: {
|
|
4942
|
+
[key: string]: any;
|
|
4943
|
+
});
|
|
4944
|
+
}
|
|
4858
4945
|
export declare class CreateScalingConfigurationShrinkRequestDataDisks extends $tea.Model {
|
|
4859
4946
|
autoSnapshotPolicyId?: string;
|
|
4860
4947
|
burstingEnabled?: boolean;
|
|
@@ -5189,6 +5276,20 @@ export declare class DescribeEciScalingConfigurationsResponseBodyScalingConfigur
|
|
|
5189
5276
|
gpu?: number;
|
|
5190
5277
|
image?: string;
|
|
5191
5278
|
imagePullPolicy?: string;
|
|
5279
|
+
lifecyclePostStartHandlerExecs?: string[];
|
|
5280
|
+
lifecyclePostStartHandlerHttpGetHost?: string;
|
|
5281
|
+
lifecyclePostStartHandlerHttpGetPath?: string;
|
|
5282
|
+
lifecyclePostStartHandlerHttpGetPort?: number;
|
|
5283
|
+
lifecyclePostStartHandlerHttpGetScheme?: string;
|
|
5284
|
+
lifecyclePostStartHandlerTcpSocketHost?: string;
|
|
5285
|
+
lifecyclePostStartHandlerTcpSocketPort?: number;
|
|
5286
|
+
lifecyclePreStopHandlerExecs?: string[];
|
|
5287
|
+
lifecyclePreStopHandlerHttpGetHost?: string;
|
|
5288
|
+
lifecyclePreStopHandlerHttpGetPath?: string;
|
|
5289
|
+
lifecyclePreStopHandlerHttpGetPort?: number;
|
|
5290
|
+
lifecyclePreStopHandlerHttpGetScheme?: string;
|
|
5291
|
+
lifecyclePreStopHandlerTcpSocketHost?: string;
|
|
5292
|
+
lifecyclePreStopHandlerTcpSocketPort?: number;
|
|
5192
5293
|
livenessProbeExecCommands?: string[];
|
|
5193
5294
|
livenessProbeFailureThreshold?: number;
|
|
5194
5295
|
livenessProbeHttpGetPath?: string;
|
|
@@ -5570,6 +5671,19 @@ export declare class DescribeScalingActivitiesResponseBodyScalingActivities exte
|
|
|
5570
5671
|
[key: string]: any;
|
|
5571
5672
|
});
|
|
5572
5673
|
}
|
|
5674
|
+
export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurationsCustomPriorities extends $tea.Model {
|
|
5675
|
+
instanceType?: string;
|
|
5676
|
+
vswitchId?: string;
|
|
5677
|
+
static names(): {
|
|
5678
|
+
[key: string]: string;
|
|
5679
|
+
};
|
|
5680
|
+
static types(): {
|
|
5681
|
+
[key: string]: any;
|
|
5682
|
+
};
|
|
5683
|
+
constructor(map?: {
|
|
5684
|
+
[key: string]: any;
|
|
5685
|
+
});
|
|
5686
|
+
}
|
|
5573
5687
|
export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurationsDataDisks extends $tea.Model {
|
|
5574
5688
|
autoSnapshotPolicyId?: string;
|
|
5575
5689
|
burstingEnabled?: boolean;
|
|
@@ -5656,6 +5770,7 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
|
|
|
5656
5770
|
cpu?: number;
|
|
5657
5771
|
creationTime?: string;
|
|
5658
5772
|
creditSpecification?: string;
|
|
5773
|
+
customPriorities?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsCustomPriorities[];
|
|
5659
5774
|
dataDisks?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsDataDisks[];
|
|
5660
5775
|
dedicatedHostId?: string;
|
|
5661
5776
|
deletionProtection?: boolean;
|
|
@@ -6402,6 +6517,20 @@ export declare class ModifyEciScalingConfigurationRequestContainers extends $tea
|
|
|
6402
6517
|
gpu?: number;
|
|
6403
6518
|
image?: string;
|
|
6404
6519
|
imagePullPolicy?: string;
|
|
6520
|
+
lifecyclePostStartHandlerExecs?: string[];
|
|
6521
|
+
lifecyclePostStartHandlerHttpGetHost?: string;
|
|
6522
|
+
lifecyclePostStartHandlerHttpGetPath?: string;
|
|
6523
|
+
lifecyclePostStartHandlerHttpGetPort?: number;
|
|
6524
|
+
lifecyclePostStartHandlerHttpGetScheme?: string;
|
|
6525
|
+
lifecyclePostStartHandlerTcpSocketHost?: string;
|
|
6526
|
+
lifecyclePostStartHandlerTcpSocketPort?: number;
|
|
6527
|
+
lifecyclePreStopHandlerExecs?: string[];
|
|
6528
|
+
lifecyclePreStopHandlerHttpGetHost?: string;
|
|
6529
|
+
lifecyclePreStopHandlerHttpGetPath?: string;
|
|
6530
|
+
lifecyclePreStopHandlerHttpGetPort?: number;
|
|
6531
|
+
lifecyclePreStopHandlerHttpGetScheme?: string;
|
|
6532
|
+
lifecyclePreStopHandlerTcpSocketHost?: string;
|
|
6533
|
+
lifecyclePreStopHandlerTcpSocketPort?: number;
|
|
6405
6534
|
memory?: number;
|
|
6406
6535
|
name?: string;
|
|
6407
6536
|
ports?: ModifyEciScalingConfigurationRequestContainersPorts[];
|
|
@@ -6740,6 +6869,19 @@ export declare class ModifyScalingConfigurationRequestSystemDisk extends $tea.Mo
|
|
|
6740
6869
|
[key: string]: any;
|
|
6741
6870
|
});
|
|
6742
6871
|
}
|
|
6872
|
+
export declare class ModifyScalingConfigurationRequestCustomPriorities extends $tea.Model {
|
|
6873
|
+
instanceType?: string;
|
|
6874
|
+
vswitchId?: string;
|
|
6875
|
+
static names(): {
|
|
6876
|
+
[key: string]: string;
|
|
6877
|
+
};
|
|
6878
|
+
static types(): {
|
|
6879
|
+
[key: string]: any;
|
|
6880
|
+
};
|
|
6881
|
+
constructor(map?: {
|
|
6882
|
+
[key: string]: any;
|
|
6883
|
+
});
|
|
6884
|
+
}
|
|
6743
6885
|
export declare class ModifyScalingConfigurationRequestDataDisks extends $tea.Model {
|
|
6744
6886
|
autoSnapshotPolicyId?: string;
|
|
6745
6887
|
burstingEnabled?: boolean;
|
|
@@ -6856,6 +6998,19 @@ export declare class ModifyScalingConfigurationShrinkRequestSystemDisk extends $
|
|
|
6856
6998
|
[key: string]: any;
|
|
6857
6999
|
});
|
|
6858
7000
|
}
|
|
7001
|
+
export declare class ModifyScalingConfigurationShrinkRequestCustomPriorities extends $tea.Model {
|
|
7002
|
+
instanceType?: string;
|
|
7003
|
+
vswitchId?: string;
|
|
7004
|
+
static names(): {
|
|
7005
|
+
[key: string]: string;
|
|
7006
|
+
};
|
|
7007
|
+
static types(): {
|
|
7008
|
+
[key: string]: any;
|
|
7009
|
+
};
|
|
7010
|
+
constructor(map?: {
|
|
7011
|
+
[key: string]: any;
|
|
7012
|
+
});
|
|
7013
|
+
}
|
|
6859
7014
|
export declare class ModifyScalingConfigurationShrinkRequestDataDisks extends $tea.Model {
|
|
6860
7015
|
autoSnapshotPolicyId?: string;
|
|
6861
7016
|
burstingEnabled?: boolean;
|
|
@@ -7029,6 +7184,8 @@ export default class Client extends OpenApi {
|
|
|
7029
7184
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
7030
7185
|
[key: string]: string;
|
|
7031
7186
|
}, endpoint: string): string;
|
|
7187
|
+
applyScalingGroupWithOptions(request: ApplyScalingGroupRequest, runtime: $Util.RuntimeOptions): Promise<ApplyScalingGroupResponse>;
|
|
7188
|
+
applyScalingGroup(request: ApplyScalingGroupRequest): Promise<ApplyScalingGroupResponse>;
|
|
7032
7189
|
/**
|
|
7033
7190
|
* Before you associate an ALB server group with a scaling group, make sure that the following requirements are met:
|
|
7034
7191
|
* * The scaling group resides in a virtual private cloud (VPC). The scaling group and the ALB server group must reside in the same VPC.
|