@alicloud/sae20190506 1.0.0 → 1.20.0
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 +680 -100
- package/dist/client.js +1361 -342
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1724 -385
package/dist/client.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export declare class AbortAndRollbackChangeOrderResponse extends $tea.Model {
|
|
|
38
38
|
headers: {
|
|
39
39
|
[key: string]: string;
|
|
40
40
|
};
|
|
41
|
+
statusCode: number;
|
|
41
42
|
body: AbortAndRollbackChangeOrderResponseBody;
|
|
42
43
|
static names(): {
|
|
43
44
|
[key: string]: string;
|
|
@@ -83,6 +84,7 @@ export declare class AbortChangeOrderResponse extends $tea.Model {
|
|
|
83
84
|
headers: {
|
|
84
85
|
[key: string]: string;
|
|
85
86
|
};
|
|
87
|
+
statusCode: number;
|
|
86
88
|
body: AbortChangeOrderResponseBody;
|
|
87
89
|
static names(): {
|
|
88
90
|
[key: string]: string;
|
|
@@ -129,6 +131,7 @@ export declare class BatchStartApplicationsResponse extends $tea.Model {
|
|
|
129
131
|
headers: {
|
|
130
132
|
[key: string]: string;
|
|
131
133
|
};
|
|
134
|
+
statusCode: number;
|
|
132
135
|
body: BatchStartApplicationsResponseBody;
|
|
133
136
|
static names(): {
|
|
134
137
|
[key: string]: string;
|
|
@@ -175,6 +178,7 @@ export declare class BatchStopApplicationsResponse extends $tea.Model {
|
|
|
175
178
|
headers: {
|
|
176
179
|
[key: string]: string;
|
|
177
180
|
};
|
|
181
|
+
statusCode: number;
|
|
178
182
|
body: BatchStopApplicationsResponseBody;
|
|
179
183
|
static names(): {
|
|
180
184
|
[key: string]: string;
|
|
@@ -224,6 +228,7 @@ export declare class BindSlbResponse extends $tea.Model {
|
|
|
224
228
|
headers: {
|
|
225
229
|
[key: string]: string;
|
|
226
230
|
};
|
|
231
|
+
statusCode: number;
|
|
227
232
|
body: BindSlbResponseBody;
|
|
228
233
|
static names(): {
|
|
229
234
|
[key: string]: string;
|
|
@@ -270,6 +275,7 @@ export declare class ConfirmPipelineBatchResponse extends $tea.Model {
|
|
|
270
275
|
headers: {
|
|
271
276
|
[key: string]: string;
|
|
272
277
|
};
|
|
278
|
+
statusCode: number;
|
|
273
279
|
body: ConfirmPipelineBatchResponseBody;
|
|
274
280
|
static names(): {
|
|
275
281
|
[key: string]: string;
|
|
@@ -283,6 +289,7 @@ export declare class ConfirmPipelineBatchResponse extends $tea.Model {
|
|
|
283
289
|
}
|
|
284
290
|
export declare class CreateApplicationRequest extends $tea.Model {
|
|
285
291
|
acrAssumeRoleArn?: string;
|
|
292
|
+
acrInstanceId?: string;
|
|
286
293
|
appDescription?: string;
|
|
287
294
|
appName?: string;
|
|
288
295
|
associateEip?: boolean;
|
|
@@ -299,12 +306,17 @@ export declare class CreateApplicationRequest extends $tea.Model {
|
|
|
299
306
|
jarStartArgs?: string;
|
|
300
307
|
jarStartOptions?: string;
|
|
301
308
|
jdk?: string;
|
|
309
|
+
kafkaConfigs?: string;
|
|
310
|
+
kafkaEndpoint?: string;
|
|
311
|
+
kafkaInstanceId?: string;
|
|
312
|
+
kafkaLogfileConfig?: string;
|
|
302
313
|
liveness?: string;
|
|
303
314
|
memory?: number;
|
|
304
315
|
mountDesc?: string;
|
|
305
316
|
mountHost?: string;
|
|
306
317
|
namespaceId?: string;
|
|
307
318
|
nasId?: string;
|
|
319
|
+
openCollectToKafka?: boolean;
|
|
308
320
|
ossAkId?: string;
|
|
309
321
|
ossAkSecret?: string;
|
|
310
322
|
ossMountDescs?: string;
|
|
@@ -316,6 +328,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
|
|
|
316
328
|
phpConfigLocation?: string;
|
|
317
329
|
postStart?: string;
|
|
318
330
|
preStop?: string;
|
|
331
|
+
programmingLanguage?: string;
|
|
319
332
|
readiness?: string;
|
|
320
333
|
replicas?: number;
|
|
321
334
|
securityGroupId?: string;
|
|
@@ -359,6 +372,7 @@ export declare class CreateApplicationResponse extends $tea.Model {
|
|
|
359
372
|
headers: {
|
|
360
373
|
[key: string]: string;
|
|
361
374
|
};
|
|
375
|
+
statusCode: number;
|
|
362
376
|
body: CreateApplicationResponseBody;
|
|
363
377
|
static names(): {
|
|
364
378
|
[key: string]: string;
|
|
@@ -372,7 +386,10 @@ export declare class CreateApplicationResponse extends $tea.Model {
|
|
|
372
386
|
}
|
|
373
387
|
export declare class CreateApplicationScalingRuleRequest extends $tea.Model {
|
|
374
388
|
appId?: string;
|
|
389
|
+
minReadyInstanceRatio?: number;
|
|
390
|
+
minReadyInstances?: number;
|
|
375
391
|
scalingRuleEnable?: boolean;
|
|
392
|
+
scalingRuleMetric?: string;
|
|
376
393
|
scalingRuleName?: string;
|
|
377
394
|
scalingRuleTimer?: string;
|
|
378
395
|
scalingRuleType?: string;
|
|
@@ -404,6 +421,7 @@ export declare class CreateApplicationScalingRuleResponse extends $tea.Model {
|
|
|
404
421
|
headers: {
|
|
405
422
|
[key: string]: string;
|
|
406
423
|
};
|
|
424
|
+
statusCode: number;
|
|
407
425
|
body: CreateApplicationScalingRuleResponseBody;
|
|
408
426
|
static names(): {
|
|
409
427
|
[key: string]: string;
|
|
@@ -452,6 +470,7 @@ export declare class CreateConfigMapResponse extends $tea.Model {
|
|
|
452
470
|
headers: {
|
|
453
471
|
[key: string]: string;
|
|
454
472
|
};
|
|
473
|
+
statusCode: number;
|
|
455
474
|
body: CreateConfigMapResponseBody;
|
|
456
475
|
static names(): {
|
|
457
476
|
[key: string]: string;
|
|
@@ -501,6 +520,7 @@ export declare class CreateGreyTagRouteResponse extends $tea.Model {
|
|
|
501
520
|
headers: {
|
|
502
521
|
[key: string]: string;
|
|
503
522
|
};
|
|
523
|
+
statusCode: number;
|
|
504
524
|
body: CreateGreyTagRouteResponseBody;
|
|
505
525
|
static names(): {
|
|
506
526
|
[key: string]: string;
|
|
@@ -517,6 +537,8 @@ export declare class CreateIngressRequest extends $tea.Model {
|
|
|
517
537
|
defaultRule?: string;
|
|
518
538
|
description?: string;
|
|
519
539
|
listenerPort?: number;
|
|
540
|
+
listenerProtocol?: string;
|
|
541
|
+
loadBalanceType?: string;
|
|
520
542
|
namespaceId?: string;
|
|
521
543
|
rules?: string;
|
|
522
544
|
slbId?: string;
|
|
@@ -552,6 +574,7 @@ export declare class CreateIngressResponse extends $tea.Model {
|
|
|
552
574
|
headers: {
|
|
553
575
|
[key: string]: string;
|
|
554
576
|
};
|
|
577
|
+
statusCode: number;
|
|
555
578
|
body: CreateIngressResponseBody;
|
|
556
579
|
static names(): {
|
|
557
580
|
[key: string]: string;
|
|
@@ -599,6 +622,7 @@ export declare class CreateNamespaceResponse extends $tea.Model {
|
|
|
599
622
|
headers: {
|
|
600
623
|
[key: string]: string;
|
|
601
624
|
};
|
|
625
|
+
statusCode: number;
|
|
602
626
|
body: CreateNamespaceResponseBody;
|
|
603
627
|
static names(): {
|
|
604
628
|
[key: string]: string;
|
|
@@ -644,6 +668,7 @@ export declare class DeleteApplicationResponse extends $tea.Model {
|
|
|
644
668
|
headers: {
|
|
645
669
|
[key: string]: string;
|
|
646
670
|
};
|
|
671
|
+
statusCode: number;
|
|
647
672
|
body: DeleteApplicationResponseBody;
|
|
648
673
|
static names(): {
|
|
649
674
|
[key: string]: string;
|
|
@@ -685,6 +710,7 @@ export declare class DeleteApplicationScalingRuleResponse extends $tea.Model {
|
|
|
685
710
|
headers: {
|
|
686
711
|
[key: string]: string;
|
|
687
712
|
};
|
|
713
|
+
statusCode: number;
|
|
688
714
|
body: DeleteApplicationScalingRuleResponseBody;
|
|
689
715
|
static names(): {
|
|
690
716
|
[key: string]: string;
|
|
@@ -730,6 +756,7 @@ export declare class DeleteConfigMapResponse extends $tea.Model {
|
|
|
730
756
|
headers: {
|
|
731
757
|
[key: string]: string;
|
|
732
758
|
};
|
|
759
|
+
statusCode: number;
|
|
733
760
|
body: DeleteConfigMapResponseBody;
|
|
734
761
|
static names(): {
|
|
735
762
|
[key: string]: string;
|
|
@@ -775,6 +802,7 @@ export declare class DeleteGreyTagRouteResponse extends $tea.Model {
|
|
|
775
802
|
headers: {
|
|
776
803
|
[key: string]: string;
|
|
777
804
|
};
|
|
805
|
+
statusCode: number;
|
|
778
806
|
body: DeleteGreyTagRouteResponseBody;
|
|
779
807
|
static names(): {
|
|
780
808
|
[key: string]: string;
|
|
@@ -820,6 +848,7 @@ export declare class DeleteIngressResponse extends $tea.Model {
|
|
|
820
848
|
headers: {
|
|
821
849
|
[key: string]: string;
|
|
822
850
|
};
|
|
851
|
+
statusCode: number;
|
|
823
852
|
body: DeleteIngressResponseBody;
|
|
824
853
|
static names(): {
|
|
825
854
|
[key: string]: string;
|
|
@@ -864,6 +893,7 @@ export declare class DeleteNamespaceResponse extends $tea.Model {
|
|
|
864
893
|
headers: {
|
|
865
894
|
[key: string]: string;
|
|
866
895
|
};
|
|
896
|
+
statusCode: number;
|
|
867
897
|
body: DeleteNamespaceResponseBody;
|
|
868
898
|
static names(): {
|
|
869
899
|
[key: string]: string;
|
|
@@ -895,11 +925,17 @@ export declare class DeployApplicationRequest extends $tea.Model {
|
|
|
895
925
|
jarStartArgs?: string;
|
|
896
926
|
jarStartOptions?: string;
|
|
897
927
|
jdk?: string;
|
|
928
|
+
kafkaConfigs?: string;
|
|
929
|
+
kafkaEndpoint?: string;
|
|
930
|
+
kafkaInstanceId?: string;
|
|
931
|
+
kafkaLogfileConfig?: string;
|
|
898
932
|
liveness?: string;
|
|
933
|
+
minReadyInstanceRatio?: number;
|
|
899
934
|
minReadyInstances?: number;
|
|
900
935
|
mountDesc?: string;
|
|
901
936
|
mountHost?: string;
|
|
902
937
|
nasId?: string;
|
|
938
|
+
openCollectToKafka?: boolean;
|
|
903
939
|
ossAkId?: string;
|
|
904
940
|
ossAkSecret?: string;
|
|
905
941
|
ossMountDescs?: string;
|
|
@@ -950,6 +986,7 @@ export declare class DeployApplicationResponse extends $tea.Model {
|
|
|
950
986
|
headers: {
|
|
951
987
|
[key: string]: string;
|
|
952
988
|
};
|
|
989
|
+
statusCode: number;
|
|
953
990
|
body: DeployApplicationResponseBody;
|
|
954
991
|
static names(): {
|
|
955
992
|
[key: string]: string;
|
|
@@ -999,6 +1036,7 @@ export declare class DescribeAppServiceDetailResponse extends $tea.Model {
|
|
|
999
1036
|
headers: {
|
|
1000
1037
|
[key: string]: string;
|
|
1001
1038
|
};
|
|
1039
|
+
statusCode: number;
|
|
1002
1040
|
body: DescribeAppServiceDetailResponseBody;
|
|
1003
1041
|
static names(): {
|
|
1004
1042
|
[key: string]: string;
|
|
@@ -1045,6 +1083,7 @@ export declare class DescribeApplicationConfigResponse extends $tea.Model {
|
|
|
1045
1083
|
headers: {
|
|
1046
1084
|
[key: string]: string;
|
|
1047
1085
|
};
|
|
1086
|
+
statusCode: number;
|
|
1048
1087
|
body: DescribeApplicationConfigResponseBody;
|
|
1049
1088
|
static names(): {
|
|
1050
1089
|
[key: string]: string;
|
|
@@ -1092,6 +1131,7 @@ export declare class DescribeApplicationGroupsResponse extends $tea.Model {
|
|
|
1092
1131
|
headers: {
|
|
1093
1132
|
[key: string]: string;
|
|
1094
1133
|
};
|
|
1134
|
+
statusCode: number;
|
|
1095
1135
|
body: DescribeApplicationGroupsResponseBody;
|
|
1096
1136
|
static names(): {
|
|
1097
1137
|
[key: string]: string;
|
|
@@ -1138,6 +1178,7 @@ export declare class DescribeApplicationImageResponse extends $tea.Model {
|
|
|
1138
1178
|
headers: {
|
|
1139
1179
|
[key: string]: string;
|
|
1140
1180
|
};
|
|
1181
|
+
statusCode: number;
|
|
1141
1182
|
body: DescribeApplicationImageResponseBody;
|
|
1142
1183
|
static names(): {
|
|
1143
1184
|
[key: string]: string;
|
|
@@ -1187,6 +1228,7 @@ export declare class DescribeApplicationInstancesResponse extends $tea.Model {
|
|
|
1187
1228
|
headers: {
|
|
1188
1229
|
[key: string]: string;
|
|
1189
1230
|
};
|
|
1231
|
+
statusCode: number;
|
|
1190
1232
|
body: DescribeApplicationInstancesResponseBody;
|
|
1191
1233
|
static names(): {
|
|
1192
1234
|
[key: string]: string;
|
|
@@ -1198,6 +1240,49 @@ export declare class DescribeApplicationInstancesResponse extends $tea.Model {
|
|
|
1198
1240
|
[key: string]: any;
|
|
1199
1241
|
});
|
|
1200
1242
|
}
|
|
1243
|
+
export declare class DescribeApplicationScalingRuleRequest extends $tea.Model {
|
|
1244
|
+
appId?: string;
|
|
1245
|
+
scalingRuleName?: string;
|
|
1246
|
+
static names(): {
|
|
1247
|
+
[key: string]: string;
|
|
1248
|
+
};
|
|
1249
|
+
static types(): {
|
|
1250
|
+
[key: string]: any;
|
|
1251
|
+
};
|
|
1252
|
+
constructor(map?: {
|
|
1253
|
+
[key: string]: any;
|
|
1254
|
+
});
|
|
1255
|
+
}
|
|
1256
|
+
export declare class DescribeApplicationScalingRuleResponseBody extends $tea.Model {
|
|
1257
|
+
data?: DescribeApplicationScalingRuleResponseBodyData;
|
|
1258
|
+
requestId?: string;
|
|
1259
|
+
traceId?: string;
|
|
1260
|
+
static names(): {
|
|
1261
|
+
[key: string]: string;
|
|
1262
|
+
};
|
|
1263
|
+
static types(): {
|
|
1264
|
+
[key: string]: any;
|
|
1265
|
+
};
|
|
1266
|
+
constructor(map?: {
|
|
1267
|
+
[key: string]: any;
|
|
1268
|
+
});
|
|
1269
|
+
}
|
|
1270
|
+
export declare class DescribeApplicationScalingRuleResponse extends $tea.Model {
|
|
1271
|
+
headers: {
|
|
1272
|
+
[key: string]: string;
|
|
1273
|
+
};
|
|
1274
|
+
statusCode: number;
|
|
1275
|
+
body: DescribeApplicationScalingRuleResponseBody;
|
|
1276
|
+
static names(): {
|
|
1277
|
+
[key: string]: string;
|
|
1278
|
+
};
|
|
1279
|
+
static types(): {
|
|
1280
|
+
[key: string]: any;
|
|
1281
|
+
};
|
|
1282
|
+
constructor(map?: {
|
|
1283
|
+
[key: string]: any;
|
|
1284
|
+
});
|
|
1285
|
+
}
|
|
1201
1286
|
export declare class DescribeApplicationScalingRulesRequest extends $tea.Model {
|
|
1202
1287
|
appId?: string;
|
|
1203
1288
|
static names(): {
|
|
@@ -1228,6 +1313,7 @@ export declare class DescribeApplicationScalingRulesResponse extends $tea.Model
|
|
|
1228
1313
|
headers: {
|
|
1229
1314
|
[key: string]: string;
|
|
1230
1315
|
};
|
|
1316
|
+
statusCode: number;
|
|
1231
1317
|
body: DescribeApplicationScalingRulesResponseBody;
|
|
1232
1318
|
static names(): {
|
|
1233
1319
|
[key: string]: string;
|
|
@@ -1273,6 +1359,7 @@ export declare class DescribeApplicationSlbsResponse extends $tea.Model {
|
|
|
1273
1359
|
headers: {
|
|
1274
1360
|
[key: string]: string;
|
|
1275
1361
|
};
|
|
1362
|
+
statusCode: number;
|
|
1276
1363
|
body: DescribeApplicationSlbsResponseBody;
|
|
1277
1364
|
static names(): {
|
|
1278
1365
|
[key: string]: string;
|
|
@@ -1318,6 +1405,7 @@ export declare class DescribeApplicationStatusResponse extends $tea.Model {
|
|
|
1318
1405
|
headers: {
|
|
1319
1406
|
[key: string]: string;
|
|
1320
1407
|
};
|
|
1408
|
+
statusCode: number;
|
|
1321
1409
|
body: DescribeApplicationStatusResponseBody;
|
|
1322
1410
|
static names(): {
|
|
1323
1411
|
[key: string]: string;
|
|
@@ -1363,6 +1451,7 @@ export declare class DescribeChangeOrderResponse extends $tea.Model {
|
|
|
1363
1451
|
headers: {
|
|
1364
1452
|
[key: string]: string;
|
|
1365
1453
|
};
|
|
1454
|
+
statusCode: number;
|
|
1366
1455
|
body: DescribeChangeOrderResponseBody;
|
|
1367
1456
|
static names(): {
|
|
1368
1457
|
[key: string]: string;
|
|
@@ -1409,6 +1498,7 @@ export declare class DescribeComponentsResponse extends $tea.Model {
|
|
|
1409
1498
|
headers: {
|
|
1410
1499
|
[key: string]: string;
|
|
1411
1500
|
};
|
|
1501
|
+
statusCode: number;
|
|
1412
1502
|
body: DescribeComponentsResponseBody;
|
|
1413
1503
|
static names(): {
|
|
1414
1504
|
[key: string]: string;
|
|
@@ -1454,6 +1544,7 @@ export declare class DescribeConfigMapResponse extends $tea.Model {
|
|
|
1454
1544
|
headers: {
|
|
1455
1545
|
[key: string]: string;
|
|
1456
1546
|
};
|
|
1547
|
+
statusCode: number;
|
|
1457
1548
|
body: DescribeConfigMapResponseBody;
|
|
1458
1549
|
static names(): {
|
|
1459
1550
|
[key: string]: string;
|
|
@@ -1465,6 +1556,53 @@ export declare class DescribeConfigMapResponse extends $tea.Model {
|
|
|
1465
1556
|
[key: string]: any;
|
|
1466
1557
|
});
|
|
1467
1558
|
}
|
|
1559
|
+
export declare class DescribeConfigurationPriceRequest extends $tea.Model {
|
|
1560
|
+
cpu?: number;
|
|
1561
|
+
memory?: number;
|
|
1562
|
+
static names(): {
|
|
1563
|
+
[key: string]: string;
|
|
1564
|
+
};
|
|
1565
|
+
static types(): {
|
|
1566
|
+
[key: string]: any;
|
|
1567
|
+
};
|
|
1568
|
+
constructor(map?: {
|
|
1569
|
+
[key: string]: any;
|
|
1570
|
+
});
|
|
1571
|
+
}
|
|
1572
|
+
export declare class DescribeConfigurationPriceResponseBody extends $tea.Model {
|
|
1573
|
+
code?: string;
|
|
1574
|
+
data?: DescribeConfigurationPriceResponseBodyData;
|
|
1575
|
+
errorCode?: string;
|
|
1576
|
+
message?: string;
|
|
1577
|
+
requestId?: string;
|
|
1578
|
+
success?: boolean;
|
|
1579
|
+
traceId?: string;
|
|
1580
|
+
static names(): {
|
|
1581
|
+
[key: string]: string;
|
|
1582
|
+
};
|
|
1583
|
+
static types(): {
|
|
1584
|
+
[key: string]: any;
|
|
1585
|
+
};
|
|
1586
|
+
constructor(map?: {
|
|
1587
|
+
[key: string]: any;
|
|
1588
|
+
});
|
|
1589
|
+
}
|
|
1590
|
+
export declare class DescribeConfigurationPriceResponse extends $tea.Model {
|
|
1591
|
+
headers: {
|
|
1592
|
+
[key: string]: string;
|
|
1593
|
+
};
|
|
1594
|
+
statusCode: number;
|
|
1595
|
+
body: DescribeConfigurationPriceResponseBody;
|
|
1596
|
+
static names(): {
|
|
1597
|
+
[key: string]: string;
|
|
1598
|
+
};
|
|
1599
|
+
static types(): {
|
|
1600
|
+
[key: string]: any;
|
|
1601
|
+
};
|
|
1602
|
+
constructor(map?: {
|
|
1603
|
+
[key: string]: any;
|
|
1604
|
+
});
|
|
1605
|
+
}
|
|
1468
1606
|
export declare class DescribeEdasContainersResponseBody extends $tea.Model {
|
|
1469
1607
|
code?: string;
|
|
1470
1608
|
data?: DescribeEdasContainersResponseBodyData[];
|
|
@@ -1487,6 +1625,7 @@ export declare class DescribeEdasContainersResponse extends $tea.Model {
|
|
|
1487
1625
|
headers: {
|
|
1488
1626
|
[key: string]: string;
|
|
1489
1627
|
};
|
|
1628
|
+
statusCode: number;
|
|
1490
1629
|
body: DescribeEdasContainersResponseBody;
|
|
1491
1630
|
static names(): {
|
|
1492
1631
|
[key: string]: string;
|
|
@@ -1532,6 +1671,7 @@ export declare class DescribeGreyTagRouteResponse extends $tea.Model {
|
|
|
1532
1671
|
headers: {
|
|
1533
1672
|
[key: string]: string;
|
|
1534
1673
|
};
|
|
1674
|
+
statusCode: number;
|
|
1535
1675
|
body: DescribeGreyTagRouteResponseBody;
|
|
1536
1676
|
static names(): {
|
|
1537
1677
|
[key: string]: string;
|
|
@@ -1577,6 +1717,7 @@ export declare class DescribeIngressResponse extends $tea.Model {
|
|
|
1577
1717
|
headers: {
|
|
1578
1718
|
[key: string]: string;
|
|
1579
1719
|
};
|
|
1720
|
+
statusCode: number;
|
|
1580
1721
|
body: DescribeIngressResponseBody;
|
|
1581
1722
|
static names(): {
|
|
1582
1723
|
[key: string]: string;
|
|
@@ -1622,6 +1763,7 @@ export declare class DescribeInstanceLogResponse extends $tea.Model {
|
|
|
1622
1763
|
headers: {
|
|
1623
1764
|
[key: string]: string;
|
|
1624
1765
|
};
|
|
1766
|
+
statusCode: number;
|
|
1625
1767
|
body: DescribeInstanceLogResponseBody;
|
|
1626
1768
|
static names(): {
|
|
1627
1769
|
[key: string]: string;
|
|
@@ -1655,6 +1797,7 @@ export declare class DescribeInstanceSpecificationsResponse extends $tea.Model {
|
|
|
1655
1797
|
headers: {
|
|
1656
1798
|
[key: string]: string;
|
|
1657
1799
|
};
|
|
1800
|
+
statusCode: number;
|
|
1658
1801
|
body: DescribeInstanceSpecificationsResponseBody;
|
|
1659
1802
|
static names(): {
|
|
1660
1803
|
[key: string]: string;
|
|
@@ -1700,6 +1843,7 @@ export declare class DescribeNamespaceResponse extends $tea.Model {
|
|
|
1700
1843
|
headers: {
|
|
1701
1844
|
[key: string]: string;
|
|
1702
1845
|
};
|
|
1846
|
+
statusCode: number;
|
|
1703
1847
|
body: DescribeNamespaceResponseBody;
|
|
1704
1848
|
static names(): {
|
|
1705
1849
|
[key: string]: string;
|
|
@@ -1746,6 +1890,7 @@ export declare class DescribeNamespaceListResponse extends $tea.Model {
|
|
|
1746
1890
|
headers: {
|
|
1747
1891
|
[key: string]: string;
|
|
1748
1892
|
};
|
|
1893
|
+
statusCode: number;
|
|
1749
1894
|
body: DescribeNamespaceListResponseBody;
|
|
1750
1895
|
static names(): {
|
|
1751
1896
|
[key: string]: string;
|
|
@@ -1791,6 +1936,7 @@ export declare class DescribeNamespaceResourcesResponse extends $tea.Model {
|
|
|
1791
1936
|
headers: {
|
|
1792
1937
|
[key: string]: string;
|
|
1793
1938
|
};
|
|
1939
|
+
statusCode: number;
|
|
1794
1940
|
body: DescribeNamespaceResourcesResponseBody;
|
|
1795
1941
|
static names(): {
|
|
1796
1942
|
[key: string]: string;
|
|
@@ -1837,6 +1983,7 @@ export declare class DescribeNamespacesResponse extends $tea.Model {
|
|
|
1837
1983
|
headers: {
|
|
1838
1984
|
[key: string]: string;
|
|
1839
1985
|
};
|
|
1986
|
+
statusCode: number;
|
|
1840
1987
|
body: DescribeNamespacesResponseBody;
|
|
1841
1988
|
static names(): {
|
|
1842
1989
|
[key: string]: string;
|
|
@@ -1882,6 +2029,7 @@ export declare class DescribePipelineResponse extends $tea.Model {
|
|
|
1882
2029
|
headers: {
|
|
1883
2030
|
[key: string]: string;
|
|
1884
2031
|
};
|
|
2032
|
+
statusCode: number;
|
|
1885
2033
|
body: DescribePipelineResponseBody;
|
|
1886
2034
|
static names(): {
|
|
1887
2035
|
[key: string]: string;
|
|
@@ -1912,6 +2060,7 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
1912
2060
|
headers: {
|
|
1913
2061
|
[key: string]: string;
|
|
1914
2062
|
};
|
|
2063
|
+
statusCode: number;
|
|
1915
2064
|
body: DescribeRegionsResponseBody;
|
|
1916
2065
|
static names(): {
|
|
1917
2066
|
[key: string]: string;
|
|
@@ -1953,6 +2102,7 @@ export declare class DisableApplicationScalingRuleResponse extends $tea.Model {
|
|
|
1953
2102
|
headers: {
|
|
1954
2103
|
[key: string]: string;
|
|
1955
2104
|
};
|
|
2105
|
+
statusCode: number;
|
|
1956
2106
|
body: DisableApplicationScalingRuleResponseBody;
|
|
1957
2107
|
static names(): {
|
|
1958
2108
|
[key: string]: string;
|
|
@@ -1964,53 +2114,6 @@ export declare class DisableApplicationScalingRuleResponse extends $tea.Model {
|
|
|
1964
2114
|
[key: string]: any;
|
|
1965
2115
|
});
|
|
1966
2116
|
}
|
|
1967
|
-
export declare class DownloadFilesRequest extends $tea.Model {
|
|
1968
|
-
appId?: string;
|
|
1969
|
-
instanceId?: string;
|
|
1970
|
-
localpath?: string;
|
|
1971
|
-
static names(): {
|
|
1972
|
-
[key: string]: string;
|
|
1973
|
-
};
|
|
1974
|
-
static types(): {
|
|
1975
|
-
[key: string]: any;
|
|
1976
|
-
};
|
|
1977
|
-
constructor(map?: {
|
|
1978
|
-
[key: string]: any;
|
|
1979
|
-
});
|
|
1980
|
-
}
|
|
1981
|
-
export declare class DownloadFilesResponseBody extends $tea.Model {
|
|
1982
|
-
code?: string;
|
|
1983
|
-
data?: string;
|
|
1984
|
-
errorCode?: string;
|
|
1985
|
-
message?: string;
|
|
1986
|
-
requestId?: string;
|
|
1987
|
-
success?: boolean;
|
|
1988
|
-
traceId?: string;
|
|
1989
|
-
static names(): {
|
|
1990
|
-
[key: string]: string;
|
|
1991
|
-
};
|
|
1992
|
-
static types(): {
|
|
1993
|
-
[key: string]: any;
|
|
1994
|
-
};
|
|
1995
|
-
constructor(map?: {
|
|
1996
|
-
[key: string]: any;
|
|
1997
|
-
});
|
|
1998
|
-
}
|
|
1999
|
-
export declare class DownloadFilesResponse extends $tea.Model {
|
|
2000
|
-
headers: {
|
|
2001
|
-
[key: string]: string;
|
|
2002
|
-
};
|
|
2003
|
-
body: DownloadFilesResponseBody;
|
|
2004
|
-
static names(): {
|
|
2005
|
-
[key: string]: string;
|
|
2006
|
-
};
|
|
2007
|
-
static types(): {
|
|
2008
|
-
[key: string]: any;
|
|
2009
|
-
};
|
|
2010
|
-
constructor(map?: {
|
|
2011
|
-
[key: string]: any;
|
|
2012
|
-
});
|
|
2013
|
-
}
|
|
2014
2117
|
export declare class EnableApplicationScalingRuleRequest extends $tea.Model {
|
|
2015
2118
|
appId?: string;
|
|
2016
2119
|
scalingRuleName?: string;
|
|
@@ -2041,6 +2144,7 @@ export declare class EnableApplicationScalingRuleResponse extends $tea.Model {
|
|
|
2041
2144
|
headers: {
|
|
2042
2145
|
[key: string]: string;
|
|
2043
2146
|
};
|
|
2147
|
+
statusCode: number;
|
|
2044
2148
|
body: EnableApplicationScalingRuleResponseBody;
|
|
2045
2149
|
static names(): {
|
|
2046
2150
|
[key: string]: string;
|
|
@@ -2092,6 +2196,7 @@ export declare class ListAppEventsResponse extends $tea.Model {
|
|
|
2092
2196
|
headers: {
|
|
2093
2197
|
[key: string]: string;
|
|
2094
2198
|
};
|
|
2199
|
+
statusCode: number;
|
|
2095
2200
|
body: ListAppEventsResponseBody;
|
|
2096
2201
|
static names(): {
|
|
2097
2202
|
[key: string]: string;
|
|
@@ -2140,6 +2245,7 @@ export declare class ListAppServicesPageResponse extends $tea.Model {
|
|
|
2140
2245
|
headers: {
|
|
2141
2246
|
[key: string]: string;
|
|
2142
2247
|
};
|
|
2248
|
+
statusCode: number;
|
|
2143
2249
|
body: ListAppServicesPageResponseBody;
|
|
2144
2250
|
static names(): {
|
|
2145
2251
|
[key: string]: string;
|
|
@@ -2184,6 +2290,7 @@ export declare class ListAppVersionsResponse extends $tea.Model {
|
|
|
2184
2290
|
headers: {
|
|
2185
2291
|
[key: string]: string;
|
|
2186
2292
|
};
|
|
2293
|
+
statusCode: number;
|
|
2187
2294
|
body: ListAppVersionsResponseBody;
|
|
2188
2295
|
static names(): {
|
|
2189
2296
|
[key: string]: string;
|
|
@@ -2239,6 +2346,7 @@ export declare class ListApplicationsResponse extends $tea.Model {
|
|
|
2239
2346
|
headers: {
|
|
2240
2347
|
[key: string]: string;
|
|
2241
2348
|
};
|
|
2349
|
+
statusCode: number;
|
|
2242
2350
|
body: ListApplicationsResponseBody;
|
|
2243
2351
|
static names(): {
|
|
2244
2352
|
[key: string]: string;
|
|
@@ -2289,6 +2397,7 @@ export declare class ListChangeOrdersResponse extends $tea.Model {
|
|
|
2289
2397
|
headers: {
|
|
2290
2398
|
[key: string]: string;
|
|
2291
2399
|
};
|
|
2400
|
+
statusCode: number;
|
|
2292
2401
|
body: ListChangeOrdersResponseBody;
|
|
2293
2402
|
static names(): {
|
|
2294
2403
|
[key: string]: string;
|
|
@@ -2334,6 +2443,7 @@ export declare class ListConsumedServicesResponse extends $tea.Model {
|
|
|
2334
2443
|
headers: {
|
|
2335
2444
|
[key: string]: string;
|
|
2336
2445
|
};
|
|
2446
|
+
statusCode: number;
|
|
2337
2447
|
body: ListConsumedServicesResponseBody;
|
|
2338
2448
|
static names(): {
|
|
2339
2449
|
[key: string]: string;
|
|
@@ -2379,6 +2489,7 @@ export declare class ListGreyTagRouteResponse extends $tea.Model {
|
|
|
2379
2489
|
headers: {
|
|
2380
2490
|
[key: string]: string;
|
|
2381
2491
|
};
|
|
2492
|
+
statusCode: number;
|
|
2382
2493
|
body: ListGreyTagRouteResponseBody;
|
|
2383
2494
|
static names(): {
|
|
2384
2495
|
[key: string]: string;
|
|
@@ -2425,6 +2536,7 @@ export declare class ListIngressesResponse extends $tea.Model {
|
|
|
2425
2536
|
headers: {
|
|
2426
2537
|
[key: string]: string;
|
|
2427
2538
|
};
|
|
2539
|
+
statusCode: number;
|
|
2428
2540
|
body: ListIngressesResponseBody;
|
|
2429
2541
|
static names(): {
|
|
2430
2542
|
[key: string]: string;
|
|
@@ -2472,6 +2584,7 @@ export declare class ListLogConfigsResponse extends $tea.Model {
|
|
|
2472
2584
|
headers: {
|
|
2473
2585
|
[key: string]: string;
|
|
2474
2586
|
};
|
|
2587
|
+
statusCode: number;
|
|
2475
2588
|
body: ListLogConfigsResponseBody;
|
|
2476
2589
|
static names(): {
|
|
2477
2590
|
[key: string]: string;
|
|
@@ -2522,6 +2635,7 @@ export declare class ListNamespaceChangeOrdersResponse extends $tea.Model {
|
|
|
2522
2635
|
headers: {
|
|
2523
2636
|
[key: string]: string;
|
|
2524
2637
|
};
|
|
2638
|
+
statusCode: number;
|
|
2525
2639
|
body: ListNamespaceChangeOrdersResponseBody;
|
|
2526
2640
|
static names(): {
|
|
2527
2641
|
[key: string]: string;
|
|
@@ -2567,6 +2681,7 @@ export declare class ListNamespacedConfigMapsResponse extends $tea.Model {
|
|
|
2567
2681
|
headers: {
|
|
2568
2682
|
[key: string]: string;
|
|
2569
2683
|
};
|
|
2684
|
+
statusCode: number;
|
|
2570
2685
|
body: ListNamespacedConfigMapsResponseBody;
|
|
2571
2686
|
static names(): {
|
|
2572
2687
|
[key: string]: string;
|
|
@@ -2612,6 +2727,7 @@ export declare class ListPublishedServicesResponse extends $tea.Model {
|
|
|
2612
2727
|
headers: {
|
|
2613
2728
|
[key: string]: string;
|
|
2614
2729
|
};
|
|
2730
|
+
statusCode: number;
|
|
2615
2731
|
body: ListPublishedServicesResponseBody;
|
|
2616
2732
|
static names(): {
|
|
2617
2733
|
[key: string]: string;
|
|
@@ -2661,6 +2777,7 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
2661
2777
|
headers: {
|
|
2662
2778
|
[key: string]: string;
|
|
2663
2779
|
};
|
|
2780
|
+
statusCode: number;
|
|
2664
2781
|
body: ListTagResourcesResponseBody;
|
|
2665
2782
|
static names(): {
|
|
2666
2783
|
[key: string]: string;
|
|
@@ -2689,6 +2806,7 @@ export declare class OpenSaeServiceResponse extends $tea.Model {
|
|
|
2689
2806
|
headers: {
|
|
2690
2807
|
[key: string]: string;
|
|
2691
2808
|
};
|
|
2809
|
+
statusCode: number;
|
|
2692
2810
|
body: OpenSaeServiceResponseBody;
|
|
2693
2811
|
static names(): {
|
|
2694
2812
|
[key: string]: string;
|
|
@@ -2734,6 +2852,7 @@ export declare class QueryResourceStaticsResponse extends $tea.Model {
|
|
|
2734
2852
|
headers: {
|
|
2735
2853
|
[key: string]: string;
|
|
2736
2854
|
};
|
|
2855
|
+
statusCode: number;
|
|
2737
2856
|
body: QueryResourceStaticsResponseBody;
|
|
2738
2857
|
static names(): {
|
|
2739
2858
|
[key: string]: string;
|
|
@@ -2780,6 +2899,7 @@ export declare class ReduceApplicationCapacityByInstanceIdsResponse extends $tea
|
|
|
2780
2899
|
headers: {
|
|
2781
2900
|
[key: string]: string;
|
|
2782
2901
|
};
|
|
2902
|
+
statusCode: number;
|
|
2783
2903
|
body: ReduceApplicationCapacityByInstanceIdsResponseBody;
|
|
2784
2904
|
static names(): {
|
|
2785
2905
|
[key: string]: string;
|
|
@@ -2794,6 +2914,7 @@ export declare class ReduceApplicationCapacityByInstanceIdsResponse extends $tea
|
|
|
2794
2914
|
export declare class RescaleApplicationRequest extends $tea.Model {
|
|
2795
2915
|
appId?: string;
|
|
2796
2916
|
autoEnableApplicationScalingRule?: boolean;
|
|
2917
|
+
minReadyInstanceRatio?: number;
|
|
2797
2918
|
minReadyInstances?: number;
|
|
2798
2919
|
replicas?: number;
|
|
2799
2920
|
static names(): {
|
|
@@ -2827,6 +2948,7 @@ export declare class RescaleApplicationResponse extends $tea.Model {
|
|
|
2827
2948
|
headers: {
|
|
2828
2949
|
[key: string]: string;
|
|
2829
2950
|
};
|
|
2951
|
+
statusCode: number;
|
|
2830
2952
|
body: RescaleApplicationResponseBody;
|
|
2831
2953
|
static names(): {
|
|
2832
2954
|
[key: string]: string;
|
|
@@ -2874,6 +2996,7 @@ export declare class RescaleApplicationVerticallyResponse extends $tea.Model {
|
|
|
2874
2996
|
headers: {
|
|
2875
2997
|
[key: string]: string;
|
|
2876
2998
|
};
|
|
2999
|
+
statusCode: number;
|
|
2877
3000
|
body: RescaleApplicationVerticallyResponseBody;
|
|
2878
3001
|
static names(): {
|
|
2879
3002
|
[key: string]: string;
|
|
@@ -2887,6 +3010,7 @@ export declare class RescaleApplicationVerticallyResponse extends $tea.Model {
|
|
|
2887
3010
|
}
|
|
2888
3011
|
export declare class RestartApplicationRequest extends $tea.Model {
|
|
2889
3012
|
appId?: string;
|
|
3013
|
+
minReadyInstanceRatio?: number;
|
|
2890
3014
|
minReadyInstances?: number;
|
|
2891
3015
|
static names(): {
|
|
2892
3016
|
[key: string]: string;
|
|
@@ -2920,6 +3044,7 @@ export declare class RestartApplicationResponse extends $tea.Model {
|
|
|
2920
3044
|
headers: {
|
|
2921
3045
|
[key: string]: string;
|
|
2922
3046
|
};
|
|
3047
|
+
statusCode: number;
|
|
2923
3048
|
body: RestartApplicationResponseBody;
|
|
2924
3049
|
static names(): {
|
|
2925
3050
|
[key: string]: string;
|
|
@@ -2966,6 +3091,7 @@ export declare class RestartInstancesResponse extends $tea.Model {
|
|
|
2966
3091
|
headers: {
|
|
2967
3092
|
[key: string]: string;
|
|
2968
3093
|
};
|
|
3094
|
+
statusCode: number;
|
|
2969
3095
|
body: RestartInstancesResponseBody;
|
|
2970
3096
|
static names(): {
|
|
2971
3097
|
[key: string]: string;
|
|
@@ -2981,6 +3107,7 @@ export declare class RollbackApplicationRequest extends $tea.Model {
|
|
|
2981
3107
|
appId?: string;
|
|
2982
3108
|
autoEnableApplicationScalingRule?: string;
|
|
2983
3109
|
batchWaitTime?: number;
|
|
3110
|
+
minReadyInstanceRatio?: number;
|
|
2984
3111
|
minReadyInstances?: number;
|
|
2985
3112
|
updateStrategy?: string;
|
|
2986
3113
|
versionId?: string;
|
|
@@ -3016,6 +3143,7 @@ export declare class RollbackApplicationResponse extends $tea.Model {
|
|
|
3016
3143
|
headers: {
|
|
3017
3144
|
[key: string]: string;
|
|
3018
3145
|
};
|
|
3146
|
+
statusCode: number;
|
|
3019
3147
|
body: RollbackApplicationResponseBody;
|
|
3020
3148
|
static names(): {
|
|
3021
3149
|
[key: string]: string;
|
|
@@ -3061,6 +3189,7 @@ export declare class StartApplicationResponse extends $tea.Model {
|
|
|
3061
3189
|
headers: {
|
|
3062
3190
|
[key: string]: string;
|
|
3063
3191
|
};
|
|
3192
|
+
statusCode: number;
|
|
3064
3193
|
body: StartApplicationResponseBody;
|
|
3065
3194
|
static names(): {
|
|
3066
3195
|
[key: string]: string;
|
|
@@ -3106,6 +3235,7 @@ export declare class StopApplicationResponse extends $tea.Model {
|
|
|
3106
3235
|
headers: {
|
|
3107
3236
|
[key: string]: string;
|
|
3108
3237
|
};
|
|
3238
|
+
statusCode: number;
|
|
3109
3239
|
body: StopApplicationResponseBody;
|
|
3110
3240
|
static names(): {
|
|
3111
3241
|
[key: string]: string;
|
|
@@ -3154,6 +3284,7 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
3154
3284
|
headers: {
|
|
3155
3285
|
[key: string]: string;
|
|
3156
3286
|
};
|
|
3287
|
+
statusCode: number;
|
|
3157
3288
|
body: TagResourcesResponseBody;
|
|
3158
3289
|
static names(): {
|
|
3159
3290
|
[key: string]: string;
|
|
@@ -3201,6 +3332,7 @@ export declare class UnbindSlbResponse extends $tea.Model {
|
|
|
3201
3332
|
headers: {
|
|
3202
3333
|
[key: string]: string;
|
|
3203
3334
|
};
|
|
3335
|
+
statusCode: number;
|
|
3204
3336
|
body: UnbindSlbResponseBody;
|
|
3205
3337
|
static names(): {
|
|
3206
3338
|
[key: string]: string;
|
|
@@ -3250,6 +3382,7 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
3250
3382
|
headers: {
|
|
3251
3383
|
[key: string]: string;
|
|
3252
3384
|
};
|
|
3385
|
+
statusCode: number;
|
|
3253
3386
|
body: UntagResourcesResponseBody;
|
|
3254
3387
|
static names(): {
|
|
3255
3388
|
[key: string]: string;
|
|
@@ -3295,6 +3428,7 @@ export declare class UpdateAppSecurityGroupResponse extends $tea.Model {
|
|
|
3295
3428
|
headers: {
|
|
3296
3429
|
[key: string]: string;
|
|
3297
3430
|
};
|
|
3431
|
+
statusCode: number;
|
|
3298
3432
|
body: UpdateAppSecurityGroupResponseBody;
|
|
3299
3433
|
static names(): {
|
|
3300
3434
|
[key: string]: string;
|
|
@@ -3306,8 +3440,57 @@ export declare class UpdateAppSecurityGroupResponse extends $tea.Model {
|
|
|
3306
3440
|
[key: string]: any;
|
|
3307
3441
|
});
|
|
3308
3442
|
}
|
|
3443
|
+
export declare class UpdateApplicationDescriptionRequest extends $tea.Model {
|
|
3444
|
+
appDescription?: string;
|
|
3445
|
+
appId?: string;
|
|
3446
|
+
static names(): {
|
|
3447
|
+
[key: string]: string;
|
|
3448
|
+
};
|
|
3449
|
+
static types(): {
|
|
3450
|
+
[key: string]: any;
|
|
3451
|
+
};
|
|
3452
|
+
constructor(map?: {
|
|
3453
|
+
[key: string]: any;
|
|
3454
|
+
});
|
|
3455
|
+
}
|
|
3456
|
+
export declare class UpdateApplicationDescriptionResponseBody extends $tea.Model {
|
|
3457
|
+
code?: string;
|
|
3458
|
+
errorCode?: string;
|
|
3459
|
+
message?: string;
|
|
3460
|
+
requestId?: string;
|
|
3461
|
+
success?: boolean;
|
|
3462
|
+
traceId?: string;
|
|
3463
|
+
static names(): {
|
|
3464
|
+
[key: string]: string;
|
|
3465
|
+
};
|
|
3466
|
+
static types(): {
|
|
3467
|
+
[key: string]: any;
|
|
3468
|
+
};
|
|
3469
|
+
constructor(map?: {
|
|
3470
|
+
[key: string]: any;
|
|
3471
|
+
});
|
|
3472
|
+
}
|
|
3473
|
+
export declare class UpdateApplicationDescriptionResponse extends $tea.Model {
|
|
3474
|
+
headers: {
|
|
3475
|
+
[key: string]: string;
|
|
3476
|
+
};
|
|
3477
|
+
statusCode: number;
|
|
3478
|
+
body: UpdateApplicationDescriptionResponseBody;
|
|
3479
|
+
static names(): {
|
|
3480
|
+
[key: string]: string;
|
|
3481
|
+
};
|
|
3482
|
+
static types(): {
|
|
3483
|
+
[key: string]: any;
|
|
3484
|
+
};
|
|
3485
|
+
constructor(map?: {
|
|
3486
|
+
[key: string]: any;
|
|
3487
|
+
});
|
|
3488
|
+
}
|
|
3309
3489
|
export declare class UpdateApplicationScalingRuleRequest extends $tea.Model {
|
|
3310
3490
|
appId?: string;
|
|
3491
|
+
minReadyInstanceRatio?: number;
|
|
3492
|
+
minReadyInstances?: number;
|
|
3493
|
+
scalingRuleMetric?: string;
|
|
3311
3494
|
scalingRuleName?: string;
|
|
3312
3495
|
scalingRuleTimer?: string;
|
|
3313
3496
|
static names(): {
|
|
@@ -3338,6 +3521,7 @@ export declare class UpdateApplicationScalingRuleResponse extends $tea.Model {
|
|
|
3338
3521
|
headers: {
|
|
3339
3522
|
[key: string]: string;
|
|
3340
3523
|
};
|
|
3524
|
+
statusCode: number;
|
|
3341
3525
|
body: UpdateApplicationScalingRuleResponseBody;
|
|
3342
3526
|
static names(): {
|
|
3343
3527
|
[key: string]: string;
|
|
@@ -3349,6 +3533,52 @@ export declare class UpdateApplicationScalingRuleResponse extends $tea.Model {
|
|
|
3349
3533
|
[key: string]: any;
|
|
3350
3534
|
});
|
|
3351
3535
|
}
|
|
3536
|
+
export declare class UpdateApplicationVswitchesRequest extends $tea.Model {
|
|
3537
|
+
appId?: string;
|
|
3538
|
+
vSwitchId?: string;
|
|
3539
|
+
static names(): {
|
|
3540
|
+
[key: string]: string;
|
|
3541
|
+
};
|
|
3542
|
+
static types(): {
|
|
3543
|
+
[key: string]: any;
|
|
3544
|
+
};
|
|
3545
|
+
constructor(map?: {
|
|
3546
|
+
[key: string]: any;
|
|
3547
|
+
});
|
|
3548
|
+
}
|
|
3549
|
+
export declare class UpdateApplicationVswitchesResponseBody extends $tea.Model {
|
|
3550
|
+
code?: string;
|
|
3551
|
+
errorCode?: string;
|
|
3552
|
+
message?: string;
|
|
3553
|
+
requestId?: string;
|
|
3554
|
+
success?: boolean;
|
|
3555
|
+
traceId?: string;
|
|
3556
|
+
static names(): {
|
|
3557
|
+
[key: string]: string;
|
|
3558
|
+
};
|
|
3559
|
+
static types(): {
|
|
3560
|
+
[key: string]: any;
|
|
3561
|
+
};
|
|
3562
|
+
constructor(map?: {
|
|
3563
|
+
[key: string]: any;
|
|
3564
|
+
});
|
|
3565
|
+
}
|
|
3566
|
+
export declare class UpdateApplicationVswitchesResponse extends $tea.Model {
|
|
3567
|
+
headers: {
|
|
3568
|
+
[key: string]: string;
|
|
3569
|
+
};
|
|
3570
|
+
statusCode: number;
|
|
3571
|
+
body: UpdateApplicationVswitchesResponseBody;
|
|
3572
|
+
static names(): {
|
|
3573
|
+
[key: string]: string;
|
|
3574
|
+
};
|
|
3575
|
+
static types(): {
|
|
3576
|
+
[key: string]: any;
|
|
3577
|
+
};
|
|
3578
|
+
constructor(map?: {
|
|
3579
|
+
[key: string]: any;
|
|
3580
|
+
});
|
|
3581
|
+
}
|
|
3352
3582
|
export declare class UpdateConfigMapRequest extends $tea.Model {
|
|
3353
3583
|
configMapId?: number;
|
|
3354
3584
|
data?: string;
|
|
@@ -3385,6 +3615,7 @@ export declare class UpdateConfigMapResponse extends $tea.Model {
|
|
|
3385
3615
|
headers: {
|
|
3386
3616
|
[key: string]: string;
|
|
3387
3617
|
};
|
|
3618
|
+
statusCode: number;
|
|
3388
3619
|
body: UpdateConfigMapResponseBody;
|
|
3389
3620
|
static names(): {
|
|
3390
3621
|
[key: string]: string;
|
|
@@ -3433,6 +3664,7 @@ export declare class UpdateGreyTagRouteResponse extends $tea.Model {
|
|
|
3433
3664
|
headers: {
|
|
3434
3665
|
[key: string]: string;
|
|
3435
3666
|
};
|
|
3667
|
+
statusCode: number;
|
|
3436
3668
|
body: UpdateGreyTagRouteResponseBody;
|
|
3437
3669
|
static names(): {
|
|
3438
3670
|
[key: string]: string;
|
|
@@ -3450,6 +3682,8 @@ export declare class UpdateIngressRequest extends $tea.Model {
|
|
|
3450
3682
|
description?: string;
|
|
3451
3683
|
ingressId?: number;
|
|
3452
3684
|
listenerPort?: string;
|
|
3685
|
+
listenerProtocol?: string;
|
|
3686
|
+
loadBalanceType?: string;
|
|
3453
3687
|
rules?: string;
|
|
3454
3688
|
static names(): {
|
|
3455
3689
|
[key: string]: string;
|
|
@@ -3483,6 +3717,7 @@ export declare class UpdateIngressResponse extends $tea.Model {
|
|
|
3483
3717
|
headers: {
|
|
3484
3718
|
[key: string]: string;
|
|
3485
3719
|
};
|
|
3720
|
+
statusCode: number;
|
|
3486
3721
|
body: UpdateIngressResponseBody;
|
|
3487
3722
|
static names(): {
|
|
3488
3723
|
[key: string]: string;
|
|
@@ -3530,6 +3765,7 @@ export declare class UpdateNamespaceResponse extends $tea.Model {
|
|
|
3530
3765
|
headers: {
|
|
3531
3766
|
[key: string]: string;
|
|
3532
3767
|
};
|
|
3768
|
+
statusCode: number;
|
|
3533
3769
|
body: UpdateNamespaceResponseBody;
|
|
3534
3770
|
static names(): {
|
|
3535
3771
|
[key: string]: string;
|
|
@@ -3575,6 +3811,7 @@ export declare class UpdateNamespaceVpcResponse extends $tea.Model {
|
|
|
3575
3811
|
headers: {
|
|
3576
3812
|
[key: string]: string;
|
|
3577
3813
|
};
|
|
3814
|
+
statusCode: number;
|
|
3578
3815
|
body: UpdateNamespaceVpcResponseBody;
|
|
3579
3816
|
static names(): {
|
|
3580
3817
|
[key: string]: string;
|
|
@@ -3586,29 +3823,8 @@ export declare class UpdateNamespaceVpcResponse extends $tea.Model {
|
|
|
3586
3823
|
[key: string]: any;
|
|
3587
3824
|
});
|
|
3588
3825
|
}
|
|
3589
|
-
export declare class
|
|
3590
|
-
|
|
3591
|
-
cloudUrl?: string;
|
|
3592
|
-
instanceId?: string;
|
|
3593
|
-
localpath?: string;
|
|
3594
|
-
static names(): {
|
|
3595
|
-
[key: string]: string;
|
|
3596
|
-
};
|
|
3597
|
-
static types(): {
|
|
3598
|
-
[key: string]: any;
|
|
3599
|
-
};
|
|
3600
|
-
constructor(map?: {
|
|
3601
|
-
[key: string]: any;
|
|
3602
|
-
});
|
|
3603
|
-
}
|
|
3604
|
-
export declare class UploadFilesResponseBody extends $tea.Model {
|
|
3605
|
-
code?: string;
|
|
3606
|
-
data?: string;
|
|
3607
|
-
errorCode?: string;
|
|
3608
|
-
message?: string;
|
|
3609
|
-
requestId?: string;
|
|
3610
|
-
success?: boolean;
|
|
3611
|
-
traceId?: string;
|
|
3826
|
+
export declare class AbortAndRollbackChangeOrderResponseBodyData extends $tea.Model {
|
|
3827
|
+
changeOrderId?: string;
|
|
3612
3828
|
static names(): {
|
|
3613
3829
|
[key: string]: string;
|
|
3614
3830
|
};
|
|
@@ -3619,11 +3835,8 @@ export declare class UploadFilesResponseBody extends $tea.Model {
|
|
|
3619
3835
|
[key: string]: any;
|
|
3620
3836
|
});
|
|
3621
3837
|
}
|
|
3622
|
-
export declare class
|
|
3623
|
-
|
|
3624
|
-
[key: string]: string;
|
|
3625
|
-
};
|
|
3626
|
-
body: UploadFilesResponseBody;
|
|
3838
|
+
export declare class AbortChangeOrderResponseBodyData extends $tea.Model {
|
|
3839
|
+
changeOrderId?: string;
|
|
3627
3840
|
static names(): {
|
|
3628
3841
|
[key: string]: string;
|
|
3629
3842
|
};
|
|
@@ -3634,7 +3847,7 @@ export declare class UploadFilesResponse extends $tea.Model {
|
|
|
3634
3847
|
[key: string]: any;
|
|
3635
3848
|
});
|
|
3636
3849
|
}
|
|
3637
|
-
export declare class
|
|
3850
|
+
export declare class BatchStartApplicationsResponseBodyData extends $tea.Model {
|
|
3638
3851
|
changeOrderId?: string;
|
|
3639
3852
|
static names(): {
|
|
3640
3853
|
[key: string]: string;
|
|
@@ -3646,7 +3859,7 @@ export declare class AbortAndRollbackChangeOrderResponseBodyData extends $tea.Mo
|
|
|
3646
3859
|
[key: string]: any;
|
|
3647
3860
|
});
|
|
3648
3861
|
}
|
|
3649
|
-
export declare class
|
|
3862
|
+
export declare class BatchStopApplicationsResponseBodyData extends $tea.Model {
|
|
3650
3863
|
changeOrderId?: string;
|
|
3651
3864
|
static names(): {
|
|
3652
3865
|
[key: string]: string;
|
|
@@ -3658,7 +3871,7 @@ export declare class AbortChangeOrderResponseBodyData extends $tea.Model {
|
|
|
3658
3871
|
[key: string]: any;
|
|
3659
3872
|
});
|
|
3660
3873
|
}
|
|
3661
|
-
export declare class
|
|
3874
|
+
export declare class BindSlbResponseBodyData extends $tea.Model {
|
|
3662
3875
|
changeOrderId?: string;
|
|
3663
3876
|
static names(): {
|
|
3664
3877
|
[key: string]: string;
|
|
@@ -3670,8 +3883,8 @@ export declare class BatchStartApplicationsResponseBodyData extends $tea.Model {
|
|
|
3670
3883
|
[key: string]: any;
|
|
3671
3884
|
});
|
|
3672
3885
|
}
|
|
3673
|
-
export declare class
|
|
3674
|
-
|
|
3886
|
+
export declare class ConfirmPipelineBatchResponseBodyData extends $tea.Model {
|
|
3887
|
+
pipelineId?: string;
|
|
3675
3888
|
static names(): {
|
|
3676
3889
|
[key: string]: string;
|
|
3677
3890
|
};
|
|
@@ -3682,7 +3895,8 @@ export declare class BatchStopApplicationsResponseBodyData extends $tea.Model {
|
|
|
3682
3895
|
[key: string]: any;
|
|
3683
3896
|
});
|
|
3684
3897
|
}
|
|
3685
|
-
export declare class
|
|
3898
|
+
export declare class CreateApplicationResponseBodyData extends $tea.Model {
|
|
3899
|
+
appId?: string;
|
|
3686
3900
|
changeOrderId?: string;
|
|
3687
3901
|
static names(): {
|
|
3688
3902
|
[key: string]: string;
|
|
@@ -3694,8 +3908,9 @@ export declare class BindSlbResponseBodyData extends $tea.Model {
|
|
|
3694
3908
|
[key: string]: any;
|
|
3695
3909
|
});
|
|
3696
3910
|
}
|
|
3697
|
-
export declare class
|
|
3698
|
-
|
|
3911
|
+
export declare class CreateApplicationScalingRuleResponseBodyDataMetricMetrics extends $tea.Model {
|
|
3912
|
+
metricTargetAverageUtilization?: number;
|
|
3913
|
+
metricType?: string;
|
|
3699
3914
|
static names(): {
|
|
3700
3915
|
[key: string]: string;
|
|
3701
3916
|
};
|
|
@@ -3706,9 +3921,10 @@ export declare class ConfirmPipelineBatchResponseBodyData extends $tea.Model {
|
|
|
3706
3921
|
[key: string]: any;
|
|
3707
3922
|
});
|
|
3708
3923
|
}
|
|
3709
|
-
export declare class
|
|
3710
|
-
|
|
3711
|
-
|
|
3924
|
+
export declare class CreateApplicationScalingRuleResponseBodyDataMetric extends $tea.Model {
|
|
3925
|
+
maxReplicas?: number;
|
|
3926
|
+
metrics?: CreateApplicationScalingRuleResponseBodyDataMetricMetrics[];
|
|
3927
|
+
minReplicas?: number;
|
|
3712
3928
|
static names(): {
|
|
3713
3929
|
[key: string]: string;
|
|
3714
3930
|
};
|
|
@@ -3750,6 +3966,8 @@ export declare class CreateApplicationScalingRuleResponseBodyDataTimer extends $
|
|
|
3750
3966
|
export declare class CreateApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
3751
3967
|
appId?: string;
|
|
3752
3968
|
createTime?: number;
|
|
3969
|
+
lastDisableTime?: number;
|
|
3970
|
+
metric?: CreateApplicationScalingRuleResponseBodyDataMetric;
|
|
3753
3971
|
scaleRuleEnabled?: boolean;
|
|
3754
3972
|
scaleRuleName?: string;
|
|
3755
3973
|
scaleRuleType?: string;
|
|
@@ -3993,6 +4211,7 @@ export declare class DescribeApplicationConfigResponseBodyDataTags extends $tea.
|
|
|
3993
4211
|
}
|
|
3994
4212
|
export declare class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
3995
4213
|
acrAssumeRoleArn?: string;
|
|
4214
|
+
acrInstanceId?: string;
|
|
3996
4215
|
appDescription?: string;
|
|
3997
4216
|
appId?: string;
|
|
3998
4217
|
appName?: string;
|
|
@@ -4011,8 +4230,10 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
|
|
|
4011
4230
|
jarStartArgs?: string;
|
|
4012
4231
|
jarStartOptions?: string;
|
|
4013
4232
|
jdk?: string;
|
|
4233
|
+
kafkaConfigs?: string;
|
|
4014
4234
|
liveness?: string;
|
|
4015
4235
|
memory?: number;
|
|
4236
|
+
minReadyInstanceRatio?: number;
|
|
4016
4237
|
minReadyInstances?: number;
|
|
4017
4238
|
mountDesc?: DescribeApplicationConfigResponseBodyDataMountDesc[];
|
|
4018
4239
|
mountHost?: string;
|
|
@@ -4030,6 +4251,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
|
|
|
4030
4251
|
phpConfigLocation?: string;
|
|
4031
4252
|
postStart?: string;
|
|
4032
4253
|
preStop?: string;
|
|
4254
|
+
programmingLanguage?: string;
|
|
4033
4255
|
readiness?: string;
|
|
4034
4256
|
regionId?: string;
|
|
4035
4257
|
replicas?: number;
|
|
@@ -4099,6 +4321,7 @@ export declare class DescribeApplicationImageResponseBodyData extends $tea.Model
|
|
|
4099
4321
|
export declare class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.Model {
|
|
4100
4322
|
createTimeStamp?: number;
|
|
4101
4323
|
eip?: string;
|
|
4324
|
+
finishTimeStamp?: number;
|
|
4102
4325
|
groupId?: string;
|
|
4103
4326
|
imageUrl?: string;
|
|
4104
4327
|
instanceContainerIp?: string;
|
|
@@ -4133,10 +4356,266 @@ export declare class DescribeApplicationInstancesResponseBodyData extends $tea.M
|
|
|
4133
4356
|
[key: string]: any;
|
|
4134
4357
|
});
|
|
4135
4358
|
}
|
|
4136
|
-
export declare class
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4359
|
+
export declare class DescribeApplicationScalingRuleResponseBodyDataMetricMetrics extends $tea.Model {
|
|
4360
|
+
metricTargetAverageUtilization?: number;
|
|
4361
|
+
metricType?: string;
|
|
4362
|
+
static names(): {
|
|
4363
|
+
[key: string]: string;
|
|
4364
|
+
};
|
|
4365
|
+
static types(): {
|
|
4366
|
+
[key: string]: any;
|
|
4367
|
+
};
|
|
4368
|
+
constructor(map?: {
|
|
4369
|
+
[key: string]: any;
|
|
4370
|
+
});
|
|
4371
|
+
}
|
|
4372
|
+
export declare class DescribeApplicationScalingRuleResponseBodyDataMetricMetricsStatusCurrentMetrics extends $tea.Model {
|
|
4373
|
+
currentValue?: number;
|
|
4374
|
+
name?: string;
|
|
4375
|
+
type?: string;
|
|
4376
|
+
static names(): {
|
|
4377
|
+
[key: string]: string;
|
|
4378
|
+
};
|
|
4379
|
+
static types(): {
|
|
4380
|
+
[key: string]: any;
|
|
4381
|
+
};
|
|
4382
|
+
constructor(map?: {
|
|
4383
|
+
[key: string]: any;
|
|
4384
|
+
});
|
|
4385
|
+
}
|
|
4386
|
+
export declare class DescribeApplicationScalingRuleResponseBodyDataMetricMetricsStatusNextScaleMetrics extends $tea.Model {
|
|
4387
|
+
name?: string;
|
|
4388
|
+
nextScaleInAverageUtilization?: number;
|
|
4389
|
+
nextScaleOutAverageUtilization?: number;
|
|
4390
|
+
static names(): {
|
|
4391
|
+
[key: string]: string;
|
|
4392
|
+
};
|
|
4393
|
+
static types(): {
|
|
4394
|
+
[key: string]: any;
|
|
4395
|
+
};
|
|
4396
|
+
constructor(map?: {
|
|
4397
|
+
[key: string]: any;
|
|
4398
|
+
});
|
|
4399
|
+
}
|
|
4400
|
+
export declare class DescribeApplicationScalingRuleResponseBodyDataMetricMetricsStatus extends $tea.Model {
|
|
4401
|
+
currentMetrics?: DescribeApplicationScalingRuleResponseBodyDataMetricMetricsStatusCurrentMetrics[];
|
|
4402
|
+
currentReplicas?: number;
|
|
4403
|
+
desiredReplicas?: number;
|
|
4404
|
+
lastScaleTime?: string;
|
|
4405
|
+
nextScaleMetrics?: DescribeApplicationScalingRuleResponseBodyDataMetricMetricsStatusNextScaleMetrics[];
|
|
4406
|
+
nextScaleTimePeriod?: number;
|
|
4407
|
+
static names(): {
|
|
4408
|
+
[key: string]: string;
|
|
4409
|
+
};
|
|
4410
|
+
static types(): {
|
|
4411
|
+
[key: string]: any;
|
|
4412
|
+
};
|
|
4413
|
+
constructor(map?: {
|
|
4414
|
+
[key: string]: any;
|
|
4415
|
+
});
|
|
4416
|
+
}
|
|
4417
|
+
export declare class DescribeApplicationScalingRuleResponseBodyDataMetricScaleDownRules extends $tea.Model {
|
|
4418
|
+
disabled?: boolean;
|
|
4419
|
+
stabilizationWindowSeconds?: number;
|
|
4420
|
+
step?: number;
|
|
4421
|
+
static names(): {
|
|
4422
|
+
[key: string]: string;
|
|
4423
|
+
};
|
|
4424
|
+
static types(): {
|
|
4425
|
+
[key: string]: any;
|
|
4426
|
+
};
|
|
4427
|
+
constructor(map?: {
|
|
4428
|
+
[key: string]: any;
|
|
4429
|
+
});
|
|
4430
|
+
}
|
|
4431
|
+
export declare class DescribeApplicationScalingRuleResponseBodyDataMetricScaleUpRules extends $tea.Model {
|
|
4432
|
+
disabled?: boolean;
|
|
4433
|
+
stabilizationWindowSeconds?: number;
|
|
4434
|
+
step?: number;
|
|
4435
|
+
static names(): {
|
|
4436
|
+
[key: string]: string;
|
|
4437
|
+
};
|
|
4438
|
+
static types(): {
|
|
4439
|
+
[key: string]: any;
|
|
4440
|
+
};
|
|
4441
|
+
constructor(map?: {
|
|
4442
|
+
[key: string]: any;
|
|
4443
|
+
});
|
|
4444
|
+
}
|
|
4445
|
+
export declare class DescribeApplicationScalingRuleResponseBodyDataMetric extends $tea.Model {
|
|
4446
|
+
maxReplicas?: number;
|
|
4447
|
+
metrics?: DescribeApplicationScalingRuleResponseBodyDataMetricMetrics[];
|
|
4448
|
+
metricsStatus?: DescribeApplicationScalingRuleResponseBodyDataMetricMetricsStatus;
|
|
4449
|
+
minReplicas?: number;
|
|
4450
|
+
scaleDownRules?: DescribeApplicationScalingRuleResponseBodyDataMetricScaleDownRules;
|
|
4451
|
+
scaleUpRules?: DescribeApplicationScalingRuleResponseBodyDataMetricScaleUpRules;
|
|
4452
|
+
static names(): {
|
|
4453
|
+
[key: string]: string;
|
|
4454
|
+
};
|
|
4455
|
+
static types(): {
|
|
4456
|
+
[key: string]: any;
|
|
4457
|
+
};
|
|
4458
|
+
constructor(map?: {
|
|
4459
|
+
[key: string]: any;
|
|
4460
|
+
});
|
|
4461
|
+
}
|
|
4462
|
+
export declare class DescribeApplicationScalingRuleResponseBodyDataTimerSchedules extends $tea.Model {
|
|
4463
|
+
atTime?: string;
|
|
4464
|
+
targetReplicas?: number;
|
|
4465
|
+
static names(): {
|
|
4466
|
+
[key: string]: string;
|
|
4467
|
+
};
|
|
4468
|
+
static types(): {
|
|
4469
|
+
[key: string]: any;
|
|
4470
|
+
};
|
|
4471
|
+
constructor(map?: {
|
|
4472
|
+
[key: string]: any;
|
|
4473
|
+
});
|
|
4474
|
+
}
|
|
4475
|
+
export declare class DescribeApplicationScalingRuleResponseBodyDataTimer extends $tea.Model {
|
|
4476
|
+
beginDate?: string;
|
|
4477
|
+
endDate?: string;
|
|
4478
|
+
period?: string;
|
|
4479
|
+
schedules?: DescribeApplicationScalingRuleResponseBodyDataTimerSchedules[];
|
|
4480
|
+
static names(): {
|
|
4481
|
+
[key: string]: string;
|
|
4482
|
+
};
|
|
4483
|
+
static types(): {
|
|
4484
|
+
[key: string]: any;
|
|
4485
|
+
};
|
|
4486
|
+
constructor(map?: {
|
|
4487
|
+
[key: string]: any;
|
|
4488
|
+
});
|
|
4489
|
+
}
|
|
4490
|
+
export declare class DescribeApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
4491
|
+
appId?: string;
|
|
4492
|
+
createTime?: number;
|
|
4493
|
+
lastDisableTime?: number;
|
|
4494
|
+
metric?: DescribeApplicationScalingRuleResponseBodyDataMetric;
|
|
4495
|
+
scaleRuleEnabled?: boolean;
|
|
4496
|
+
scaleRuleName?: string;
|
|
4497
|
+
scaleRuleType?: string;
|
|
4498
|
+
timer?: DescribeApplicationScalingRuleResponseBodyDataTimer;
|
|
4499
|
+
updateTime?: number;
|
|
4500
|
+
static names(): {
|
|
4501
|
+
[key: string]: string;
|
|
4502
|
+
};
|
|
4503
|
+
static types(): {
|
|
4504
|
+
[key: string]: any;
|
|
4505
|
+
};
|
|
4506
|
+
constructor(map?: {
|
|
4507
|
+
[key: string]: any;
|
|
4508
|
+
});
|
|
4509
|
+
}
|
|
4510
|
+
export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricMetrics extends $tea.Model {
|
|
4511
|
+
metricTargetAverageUtilization?: number;
|
|
4512
|
+
metricType?: string;
|
|
4513
|
+
static names(): {
|
|
4514
|
+
[key: string]: string;
|
|
4515
|
+
};
|
|
4516
|
+
static types(): {
|
|
4517
|
+
[key: string]: any;
|
|
4518
|
+
};
|
|
4519
|
+
constructor(map?: {
|
|
4520
|
+
[key: string]: any;
|
|
4521
|
+
});
|
|
4522
|
+
}
|
|
4523
|
+
export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricMetricsStatusCurrentMetrics extends $tea.Model {
|
|
4524
|
+
currentValue?: number;
|
|
4525
|
+
name?: string;
|
|
4526
|
+
type?: string;
|
|
4527
|
+
static names(): {
|
|
4528
|
+
[key: string]: string;
|
|
4529
|
+
};
|
|
4530
|
+
static types(): {
|
|
4531
|
+
[key: string]: any;
|
|
4532
|
+
};
|
|
4533
|
+
constructor(map?: {
|
|
4534
|
+
[key: string]: any;
|
|
4535
|
+
});
|
|
4536
|
+
}
|
|
4537
|
+
export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricMetricsStatusNextScaleMetrics extends $tea.Model {
|
|
4538
|
+
name?: string;
|
|
4539
|
+
nextScaleInAverageUtilization?: number;
|
|
4540
|
+
nextScaleOutAverageUtilization?: number;
|
|
4541
|
+
static names(): {
|
|
4542
|
+
[key: string]: string;
|
|
4543
|
+
};
|
|
4544
|
+
static types(): {
|
|
4545
|
+
[key: string]: any;
|
|
4546
|
+
};
|
|
4547
|
+
constructor(map?: {
|
|
4548
|
+
[key: string]: any;
|
|
4549
|
+
});
|
|
4550
|
+
}
|
|
4551
|
+
export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricMetricsStatus extends $tea.Model {
|
|
4552
|
+
currentMetrics?: DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricMetricsStatusCurrentMetrics[];
|
|
4553
|
+
currentReplicas?: number;
|
|
4554
|
+
desiredReplicas?: number;
|
|
4555
|
+
lastScaleTime?: string;
|
|
4556
|
+
maxReplicas?: number;
|
|
4557
|
+
minReplicas?: number;
|
|
4558
|
+
nextScaleMetrics?: DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricMetricsStatusNextScaleMetrics[];
|
|
4559
|
+
nextScaleTimePeriod?: number;
|
|
4560
|
+
static names(): {
|
|
4561
|
+
[key: string]: string;
|
|
4562
|
+
};
|
|
4563
|
+
static types(): {
|
|
4564
|
+
[key: string]: any;
|
|
4565
|
+
};
|
|
4566
|
+
constructor(map?: {
|
|
4567
|
+
[key: string]: any;
|
|
4568
|
+
});
|
|
4569
|
+
}
|
|
4570
|
+
export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricScaleDownRules extends $tea.Model {
|
|
4571
|
+
disabled?: boolean;
|
|
4572
|
+
stabilizationWindowSeconds?: number;
|
|
4573
|
+
step?: number;
|
|
4574
|
+
static names(): {
|
|
4575
|
+
[key: string]: string;
|
|
4576
|
+
};
|
|
4577
|
+
static types(): {
|
|
4578
|
+
[key: string]: any;
|
|
4579
|
+
};
|
|
4580
|
+
constructor(map?: {
|
|
4581
|
+
[key: string]: any;
|
|
4582
|
+
});
|
|
4583
|
+
}
|
|
4584
|
+
export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricScaleUpRules extends $tea.Model {
|
|
4585
|
+
disabled?: boolean;
|
|
4586
|
+
stabilizationWindowSeconds?: number;
|
|
4587
|
+
step?: number;
|
|
4588
|
+
static names(): {
|
|
4589
|
+
[key: string]: string;
|
|
4590
|
+
};
|
|
4591
|
+
static types(): {
|
|
4592
|
+
[key: string]: any;
|
|
4593
|
+
};
|
|
4594
|
+
constructor(map?: {
|
|
4595
|
+
[key: string]: any;
|
|
4596
|
+
});
|
|
4597
|
+
}
|
|
4598
|
+
export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetric extends $tea.Model {
|
|
4599
|
+
maxReplicas?: number;
|
|
4600
|
+
metrics?: DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricMetrics[];
|
|
4601
|
+
metricsStatus?: DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricMetricsStatus;
|
|
4602
|
+
minReplicas?: number;
|
|
4603
|
+
scaleDownRules?: DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricScaleDownRules;
|
|
4604
|
+
scaleUpRules?: DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetricScaleUpRules;
|
|
4605
|
+
static names(): {
|
|
4606
|
+
[key: string]: string;
|
|
4607
|
+
};
|
|
4608
|
+
static types(): {
|
|
4609
|
+
[key: string]: any;
|
|
4610
|
+
};
|
|
4611
|
+
constructor(map?: {
|
|
4612
|
+
[key: string]: any;
|
|
4613
|
+
});
|
|
4614
|
+
}
|
|
4615
|
+
export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesTimerSchedules extends $tea.Model {
|
|
4616
|
+
atTime?: string;
|
|
4617
|
+
maxReplicas?: number;
|
|
4618
|
+
minReplicas?: number;
|
|
4140
4619
|
targetReplicas?: number;
|
|
4141
4620
|
static names(): {
|
|
4142
4621
|
[key: string]: string;
|
|
@@ -4166,6 +4645,8 @@ export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationS
|
|
|
4166
4645
|
export declare class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRules extends $tea.Model {
|
|
4167
4646
|
appId?: string;
|
|
4168
4647
|
createTime?: number;
|
|
4648
|
+
lastDisableTime?: number;
|
|
4649
|
+
metric?: DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetric;
|
|
4169
4650
|
scaleRuleEnabled?: boolean;
|
|
4170
4651
|
scaleRuleName?: string;
|
|
4171
4652
|
scaleRuleType?: string;
|
|
@@ -4250,6 +4731,7 @@ export declare class DescribeApplicationStatusResponseBodyData extends $tea.Mode
|
|
|
4250
4731
|
createTime?: string;
|
|
4251
4732
|
currentStatus?: string;
|
|
4252
4733
|
enableAgent?: boolean;
|
|
4734
|
+
fileSizeLimit?: number;
|
|
4253
4735
|
lastChangeOrderId?: string;
|
|
4254
4736
|
lastChangeOrderRunning?: boolean;
|
|
4255
4737
|
lastChangeOrderStatus?: string;
|
|
@@ -4284,6 +4766,7 @@ export declare class DescribeChangeOrderResponseBodyDataPipelines extends $tea.M
|
|
|
4284
4766
|
});
|
|
4285
4767
|
}
|
|
4286
4768
|
export declare class DescribeChangeOrderResponseBodyData extends $tea.Model {
|
|
4769
|
+
appId?: string;
|
|
4287
4770
|
appName?: string;
|
|
4288
4771
|
approvalId?: string;
|
|
4289
4772
|
auto?: boolean;
|
|
@@ -4360,6 +4843,61 @@ export declare class DescribeConfigMapResponseBodyData extends $tea.Model {
|
|
|
4360
4843
|
[key: string]: any;
|
|
4361
4844
|
});
|
|
4362
4845
|
}
|
|
4846
|
+
export declare class DescribeConfigurationPriceResponseBodyDataBagUsage extends $tea.Model {
|
|
4847
|
+
cpu?: number;
|
|
4848
|
+
mem?: number;
|
|
4849
|
+
static names(): {
|
|
4850
|
+
[key: string]: string;
|
|
4851
|
+
};
|
|
4852
|
+
static types(): {
|
|
4853
|
+
[key: string]: any;
|
|
4854
|
+
};
|
|
4855
|
+
constructor(map?: {
|
|
4856
|
+
[key: string]: any;
|
|
4857
|
+
});
|
|
4858
|
+
}
|
|
4859
|
+
export declare class DescribeConfigurationPriceResponseBodyDataOrder extends $tea.Model {
|
|
4860
|
+
discountAmount?: number;
|
|
4861
|
+
originalAmount?: number;
|
|
4862
|
+
ruleIds?: string[];
|
|
4863
|
+
tradeAmount?: number;
|
|
4864
|
+
static names(): {
|
|
4865
|
+
[key: string]: string;
|
|
4866
|
+
};
|
|
4867
|
+
static types(): {
|
|
4868
|
+
[key: string]: any;
|
|
4869
|
+
};
|
|
4870
|
+
constructor(map?: {
|
|
4871
|
+
[key: string]: any;
|
|
4872
|
+
});
|
|
4873
|
+
}
|
|
4874
|
+
export declare class DescribeConfigurationPriceResponseBodyDataRules extends $tea.Model {
|
|
4875
|
+
name?: string;
|
|
4876
|
+
ruleDescId?: number;
|
|
4877
|
+
static names(): {
|
|
4878
|
+
[key: string]: string;
|
|
4879
|
+
};
|
|
4880
|
+
static types(): {
|
|
4881
|
+
[key: string]: any;
|
|
4882
|
+
};
|
|
4883
|
+
constructor(map?: {
|
|
4884
|
+
[key: string]: any;
|
|
4885
|
+
});
|
|
4886
|
+
}
|
|
4887
|
+
export declare class DescribeConfigurationPriceResponseBodyData extends $tea.Model {
|
|
4888
|
+
bagUsage?: DescribeConfigurationPriceResponseBodyDataBagUsage;
|
|
4889
|
+
order?: DescribeConfigurationPriceResponseBodyDataOrder;
|
|
4890
|
+
rules?: DescribeConfigurationPriceResponseBodyDataRules[];
|
|
4891
|
+
static names(): {
|
|
4892
|
+
[key: string]: string;
|
|
4893
|
+
};
|
|
4894
|
+
static types(): {
|
|
4895
|
+
[key: string]: any;
|
|
4896
|
+
};
|
|
4897
|
+
constructor(map?: {
|
|
4898
|
+
[key: string]: any;
|
|
4899
|
+
});
|
|
4900
|
+
}
|
|
4363
4901
|
export declare class DescribeEdasContainersResponseBodyData extends $tea.Model {
|
|
4364
4902
|
disabled?: boolean;
|
|
4365
4903
|
edasContainerVersion?: string;
|
|
@@ -4441,6 +4979,7 @@ export declare class DescribeGreyTagRouteResponseBodyDataScRules extends $tea.Mo
|
|
|
4441
4979
|
});
|
|
4442
4980
|
}
|
|
4443
4981
|
export declare class DescribeGreyTagRouteResponseBodyData extends $tea.Model {
|
|
4982
|
+
appId?: string;
|
|
4444
4983
|
createTime?: number;
|
|
4445
4984
|
description?: string;
|
|
4446
4985
|
dubboRules?: DescribeGreyTagRouteResponseBodyDataDubboRules[];
|
|
@@ -4494,6 +5033,8 @@ export declare class DescribeIngressResponseBodyData extends $tea.Model {
|
|
|
4494
5033
|
description?: string;
|
|
4495
5034
|
id?: number;
|
|
4496
5035
|
listenerPort?: number;
|
|
5036
|
+
listenerProtocol?: string;
|
|
5037
|
+
loadBalanceType?: string;
|
|
4497
5038
|
name?: string;
|
|
4498
5039
|
namespaceId?: string;
|
|
4499
5040
|
rules?: DescribeIngressResponseBodyDataRules[];
|
|
@@ -4566,6 +5107,8 @@ export declare class DescribeNamespaceResourcesResponseBodyData extends $tea.Mod
|
|
|
4566
5107
|
appCount?: number;
|
|
4567
5108
|
belongRegion?: string;
|
|
4568
5109
|
description?: string;
|
|
5110
|
+
jumpServerAppId?: string;
|
|
5111
|
+
jumpServerIp?: string;
|
|
4569
5112
|
lastChangeOrderId?: string;
|
|
4570
5113
|
lastChangeOrderRunning?: boolean;
|
|
4571
5114
|
lastChangeOrderStatus?: string;
|
|
@@ -4750,10 +5293,8 @@ export declare class ListAppEventsResponseBodyData extends $tea.Model {
|
|
|
4750
5293
|
});
|
|
4751
5294
|
}
|
|
4752
5295
|
export declare class ListAppServicesPageResponseBodyDataResult extends $tea.Model {
|
|
4753
|
-
clusterName?: string;
|
|
4754
5296
|
edasAppId?: string;
|
|
4755
5297
|
edasAppName?: string;
|
|
4756
|
-
gmtModifyTime?: string;
|
|
4757
5298
|
group?: string;
|
|
4758
5299
|
instanceNum?: number;
|
|
4759
5300
|
serviceName?: string;
|
|
@@ -5011,6 +5552,8 @@ export declare class ListIngressesResponseBodyDataIngressList extends $tea.Model
|
|
|
5011
5552
|
description?: string;
|
|
5012
5553
|
id?: number;
|
|
5013
5554
|
listenerPort?: string;
|
|
5555
|
+
listenerProtocol?: string;
|
|
5556
|
+
loadBalanceType?: string;
|
|
5014
5557
|
name?: string;
|
|
5015
5558
|
namespaceId?: string;
|
|
5016
5559
|
slbId?: string;
|
|
@@ -5352,6 +5895,33 @@ export declare class UnbindSlbResponseBodyData extends $tea.Model {
|
|
|
5352
5895
|
[key: string]: any;
|
|
5353
5896
|
});
|
|
5354
5897
|
}
|
|
5898
|
+
export declare class UpdateApplicationScalingRuleResponseBodyDataMetricMetrics extends $tea.Model {
|
|
5899
|
+
metricTargetAverageUtilization?: number;
|
|
5900
|
+
metricType?: string;
|
|
5901
|
+
static names(): {
|
|
5902
|
+
[key: string]: string;
|
|
5903
|
+
};
|
|
5904
|
+
static types(): {
|
|
5905
|
+
[key: string]: any;
|
|
5906
|
+
};
|
|
5907
|
+
constructor(map?: {
|
|
5908
|
+
[key: string]: any;
|
|
5909
|
+
});
|
|
5910
|
+
}
|
|
5911
|
+
export declare class UpdateApplicationScalingRuleResponseBodyDataMetric extends $tea.Model {
|
|
5912
|
+
maxReplicas?: number;
|
|
5913
|
+
metrics?: UpdateApplicationScalingRuleResponseBodyDataMetricMetrics[];
|
|
5914
|
+
minReplicas?: number;
|
|
5915
|
+
static names(): {
|
|
5916
|
+
[key: string]: string;
|
|
5917
|
+
};
|
|
5918
|
+
static types(): {
|
|
5919
|
+
[key: string]: any;
|
|
5920
|
+
};
|
|
5921
|
+
constructor(map?: {
|
|
5922
|
+
[key: string]: any;
|
|
5923
|
+
});
|
|
5924
|
+
}
|
|
5355
5925
|
export declare class UpdateApplicationScalingRuleResponseBodyDataTimerSchedules extends $tea.Model {
|
|
5356
5926
|
atTime?: string;
|
|
5357
5927
|
targetReplicas?: number;
|
|
@@ -5383,6 +5953,8 @@ export declare class UpdateApplicationScalingRuleResponseBodyDataTimer extends $
|
|
|
5383
5953
|
export declare class UpdateApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
5384
5954
|
appId?: string;
|
|
5385
5955
|
createTime?: number;
|
|
5956
|
+
lastDisableTime?: number;
|
|
5957
|
+
metric?: UpdateApplicationScalingRuleResponseBodyDataMetric;
|
|
5386
5958
|
scaleRuleEnabled?: boolean;
|
|
5387
5959
|
scaleRuleName?: string;
|
|
5388
5960
|
scaleRuleType?: string;
|
|
@@ -5550,6 +6122,10 @@ export default class Client extends OpenApi {
|
|
|
5550
6122
|
describeApplicationInstancesWithOptions(request: DescribeApplicationInstancesRequest, headers: {
|
|
5551
6123
|
[key: string]: string;
|
|
5552
6124
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationInstancesResponse>;
|
|
6125
|
+
describeApplicationScalingRule(request: DescribeApplicationScalingRuleRequest): Promise<DescribeApplicationScalingRuleResponse>;
|
|
6126
|
+
describeApplicationScalingRuleWithOptions(request: DescribeApplicationScalingRuleRequest, headers: {
|
|
6127
|
+
[key: string]: string;
|
|
6128
|
+
}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationScalingRuleResponse>;
|
|
5553
6129
|
describeApplicationScalingRules(request: DescribeApplicationScalingRulesRequest): Promise<DescribeApplicationScalingRulesResponse>;
|
|
5554
6130
|
describeApplicationScalingRulesWithOptions(request: DescribeApplicationScalingRulesRequest, headers: {
|
|
5555
6131
|
[key: string]: string;
|
|
@@ -5574,6 +6150,10 @@ export default class Client extends OpenApi {
|
|
|
5574
6150
|
describeConfigMapWithOptions(request: DescribeConfigMapRequest, headers: {
|
|
5575
6151
|
[key: string]: string;
|
|
5576
6152
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeConfigMapResponse>;
|
|
6153
|
+
describeConfigurationPrice(request: DescribeConfigurationPriceRequest): Promise<DescribeConfigurationPriceResponse>;
|
|
6154
|
+
describeConfigurationPriceWithOptions(request: DescribeConfigurationPriceRequest, headers: {
|
|
6155
|
+
[key: string]: string;
|
|
6156
|
+
}, runtime: $Util.RuntimeOptions): Promise<DescribeConfigurationPriceResponse>;
|
|
5577
6157
|
describeEdasContainers(): Promise<DescribeEdasContainersResponse>;
|
|
5578
6158
|
describeEdasContainersWithOptions(headers: {
|
|
5579
6159
|
[key: string]: string;
|
|
@@ -5622,10 +6202,6 @@ export default class Client extends OpenApi {
|
|
|
5622
6202
|
disableApplicationScalingRuleWithOptions(request: DisableApplicationScalingRuleRequest, headers: {
|
|
5623
6203
|
[key: string]: string;
|
|
5624
6204
|
}, runtime: $Util.RuntimeOptions): Promise<DisableApplicationScalingRuleResponse>;
|
|
5625
|
-
downloadFiles(request: DownloadFilesRequest): Promise<DownloadFilesResponse>;
|
|
5626
|
-
downloadFilesWithOptions(request: DownloadFilesRequest, headers: {
|
|
5627
|
-
[key: string]: string;
|
|
5628
|
-
}, runtime: $Util.RuntimeOptions): Promise<DownloadFilesResponse>;
|
|
5629
6205
|
enableApplicationScalingRule(request: EnableApplicationScalingRuleRequest): Promise<EnableApplicationScalingRuleResponse>;
|
|
5630
6206
|
enableApplicationScalingRuleWithOptions(request: EnableApplicationScalingRuleRequest, headers: {
|
|
5631
6207
|
[key: string]: string;
|
|
@@ -5738,10 +6314,18 @@ export default class Client extends OpenApi {
|
|
|
5738
6314
|
updateAppSecurityGroupWithOptions(request: UpdateAppSecurityGroupRequest, headers: {
|
|
5739
6315
|
[key: string]: string;
|
|
5740
6316
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateAppSecurityGroupResponse>;
|
|
6317
|
+
updateApplicationDescription(request: UpdateApplicationDescriptionRequest): Promise<UpdateApplicationDescriptionResponse>;
|
|
6318
|
+
updateApplicationDescriptionWithOptions(request: UpdateApplicationDescriptionRequest, headers: {
|
|
6319
|
+
[key: string]: string;
|
|
6320
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationDescriptionResponse>;
|
|
5741
6321
|
updateApplicationScalingRule(request: UpdateApplicationScalingRuleRequest): Promise<UpdateApplicationScalingRuleResponse>;
|
|
5742
6322
|
updateApplicationScalingRuleWithOptions(request: UpdateApplicationScalingRuleRequest, headers: {
|
|
5743
6323
|
[key: string]: string;
|
|
5744
6324
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationScalingRuleResponse>;
|
|
6325
|
+
updateApplicationVswitches(request: UpdateApplicationVswitchesRequest): Promise<UpdateApplicationVswitchesResponse>;
|
|
6326
|
+
updateApplicationVswitchesWithOptions(request: UpdateApplicationVswitchesRequest, headers: {
|
|
6327
|
+
[key: string]: string;
|
|
6328
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationVswitchesResponse>;
|
|
5745
6329
|
updateConfigMap(request: UpdateConfigMapRequest): Promise<UpdateConfigMapResponse>;
|
|
5746
6330
|
updateConfigMapWithOptions(request: UpdateConfigMapRequest, headers: {
|
|
5747
6331
|
[key: string]: string;
|
|
@@ -5762,8 +6346,4 @@ export default class Client extends OpenApi {
|
|
|
5762
6346
|
updateNamespaceVpcWithOptions(request: UpdateNamespaceVpcRequest, headers: {
|
|
5763
6347
|
[key: string]: string;
|
|
5764
6348
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateNamespaceVpcResponse>;
|
|
5765
|
-
uploadFiles(request: UploadFilesRequest): Promise<UploadFilesResponse>;
|
|
5766
|
-
uploadFilesWithOptions(request: UploadFilesRequest, headers: {
|
|
5767
|
-
[key: string]: string;
|
|
5768
|
-
}, runtime: $Util.RuntimeOptions): Promise<UploadFilesResponse>;
|
|
5769
6349
|
}
|