@alicloud/sae20190506 1.18.16 → 1.20.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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +205 -105
- package/dist/client.js +445 -209
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +607 -259
package/dist/client.js
CHANGED
|
@@ -70,12 +70,14 @@ class AbortAndRollbackChangeOrderResponse extends $tea.Model {
|
|
|
70
70
|
static names() {
|
|
71
71
|
return {
|
|
72
72
|
headers: 'headers',
|
|
73
|
+
statusCode: 'statusCode',
|
|
73
74
|
body: 'body',
|
|
74
75
|
};
|
|
75
76
|
}
|
|
76
77
|
static types() {
|
|
77
78
|
return {
|
|
78
79
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
80
|
+
statusCode: 'number',
|
|
79
81
|
body: AbortAndRollbackChangeOrderResponseBody,
|
|
80
82
|
};
|
|
81
83
|
}
|
|
@@ -132,12 +134,14 @@ class AbortChangeOrderResponse extends $tea.Model {
|
|
|
132
134
|
static names() {
|
|
133
135
|
return {
|
|
134
136
|
headers: 'headers',
|
|
137
|
+
statusCode: 'statusCode',
|
|
135
138
|
body: 'body',
|
|
136
139
|
};
|
|
137
140
|
}
|
|
138
141
|
static types() {
|
|
139
142
|
return {
|
|
140
143
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
144
|
+
statusCode: 'number',
|
|
141
145
|
body: AbortChangeOrderResponseBody,
|
|
142
146
|
};
|
|
143
147
|
}
|
|
@@ -196,12 +200,14 @@ class BatchStartApplicationsResponse extends $tea.Model {
|
|
|
196
200
|
static names() {
|
|
197
201
|
return {
|
|
198
202
|
headers: 'headers',
|
|
203
|
+
statusCode: 'statusCode',
|
|
199
204
|
body: 'body',
|
|
200
205
|
};
|
|
201
206
|
}
|
|
202
207
|
static types() {
|
|
203
208
|
return {
|
|
204
209
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
210
|
+
statusCode: 'number',
|
|
205
211
|
body: BatchStartApplicationsResponseBody,
|
|
206
212
|
};
|
|
207
213
|
}
|
|
@@ -260,12 +266,14 @@ class BatchStopApplicationsResponse extends $tea.Model {
|
|
|
260
266
|
static names() {
|
|
261
267
|
return {
|
|
262
268
|
headers: 'headers',
|
|
269
|
+
statusCode: 'statusCode',
|
|
263
270
|
body: 'body',
|
|
264
271
|
};
|
|
265
272
|
}
|
|
266
273
|
static types() {
|
|
267
274
|
return {
|
|
268
275
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
276
|
+
statusCode: 'number',
|
|
269
277
|
body: BatchStopApplicationsResponseBody,
|
|
270
278
|
};
|
|
271
279
|
}
|
|
@@ -330,12 +338,14 @@ class BindSlbResponse extends $tea.Model {
|
|
|
330
338
|
static names() {
|
|
331
339
|
return {
|
|
332
340
|
headers: 'headers',
|
|
341
|
+
statusCode: 'statusCode',
|
|
333
342
|
body: 'body',
|
|
334
343
|
};
|
|
335
344
|
}
|
|
336
345
|
static types() {
|
|
337
346
|
return {
|
|
338
347
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
348
|
+
statusCode: 'number',
|
|
339
349
|
body: BindSlbResponseBody,
|
|
340
350
|
};
|
|
341
351
|
}
|
|
@@ -394,12 +404,14 @@ class ConfirmPipelineBatchResponse extends $tea.Model {
|
|
|
394
404
|
static names() {
|
|
395
405
|
return {
|
|
396
406
|
headers: 'headers',
|
|
407
|
+
statusCode: 'statusCode',
|
|
397
408
|
body: 'body',
|
|
398
409
|
};
|
|
399
410
|
}
|
|
400
411
|
static types() {
|
|
401
412
|
return {
|
|
402
413
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
414
|
+
statusCode: 'number',
|
|
403
415
|
body: ConfirmPipelineBatchResponseBody,
|
|
404
416
|
};
|
|
405
417
|
}
|
|
@@ -429,12 +441,17 @@ class CreateApplicationRequest extends $tea.Model {
|
|
|
429
441
|
jarStartArgs: 'JarStartArgs',
|
|
430
442
|
jarStartOptions: 'JarStartOptions',
|
|
431
443
|
jdk: 'Jdk',
|
|
444
|
+
kafkaConfigs: 'KafkaConfigs',
|
|
445
|
+
kafkaEndpoint: 'KafkaEndpoint',
|
|
446
|
+
kafkaInstanceId: 'KafkaInstanceId',
|
|
447
|
+
kafkaLogfileConfig: 'KafkaLogfileConfig',
|
|
432
448
|
liveness: 'Liveness',
|
|
433
449
|
memory: 'Memory',
|
|
434
450
|
mountDesc: 'MountDesc',
|
|
435
451
|
mountHost: 'MountHost',
|
|
436
452
|
namespaceId: 'NamespaceId',
|
|
437
453
|
nasId: 'NasId',
|
|
454
|
+
openCollectToKafka: 'OpenCollectToKafka',
|
|
438
455
|
ossAkId: 'OssAkId',
|
|
439
456
|
ossAkSecret: 'OssAkSecret',
|
|
440
457
|
ossMountDescs: 'OssMountDescs',
|
|
@@ -446,6 +463,7 @@ class CreateApplicationRequest extends $tea.Model {
|
|
|
446
463
|
phpConfigLocation: 'PhpConfigLocation',
|
|
447
464
|
postStart: 'PostStart',
|
|
448
465
|
preStop: 'PreStop',
|
|
466
|
+
programmingLanguage: 'ProgrammingLanguage',
|
|
449
467
|
readiness: 'Readiness',
|
|
450
468
|
replicas: 'Replicas',
|
|
451
469
|
securityGroupId: 'SecurityGroupId',
|
|
@@ -479,12 +497,17 @@ class CreateApplicationRequest extends $tea.Model {
|
|
|
479
497
|
jarStartArgs: 'string',
|
|
480
498
|
jarStartOptions: 'string',
|
|
481
499
|
jdk: 'string',
|
|
500
|
+
kafkaConfigs: 'string',
|
|
501
|
+
kafkaEndpoint: 'string',
|
|
502
|
+
kafkaInstanceId: 'string',
|
|
503
|
+
kafkaLogfileConfig: 'string',
|
|
482
504
|
liveness: 'string',
|
|
483
505
|
memory: 'number',
|
|
484
506
|
mountDesc: 'string',
|
|
485
507
|
mountHost: 'string',
|
|
486
508
|
namespaceId: 'string',
|
|
487
509
|
nasId: 'string',
|
|
510
|
+
openCollectToKafka: 'boolean',
|
|
488
511
|
ossAkId: 'string',
|
|
489
512
|
ossAkSecret: 'string',
|
|
490
513
|
ossMountDescs: 'string',
|
|
@@ -496,6 +519,7 @@ class CreateApplicationRequest extends $tea.Model {
|
|
|
496
519
|
phpConfigLocation: 'string',
|
|
497
520
|
postStart: 'string',
|
|
498
521
|
preStop: 'string',
|
|
522
|
+
programmingLanguage: 'string',
|
|
499
523
|
readiness: 'string',
|
|
500
524
|
replicas: 'number',
|
|
501
525
|
securityGroupId: 'string',
|
|
@@ -546,12 +570,14 @@ class CreateApplicationResponse extends $tea.Model {
|
|
|
546
570
|
static names() {
|
|
547
571
|
return {
|
|
548
572
|
headers: 'headers',
|
|
573
|
+
statusCode: 'statusCode',
|
|
549
574
|
body: 'body',
|
|
550
575
|
};
|
|
551
576
|
}
|
|
552
577
|
static types() {
|
|
553
578
|
return {
|
|
554
579
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
580
|
+
statusCode: 'number',
|
|
555
581
|
body: CreateApplicationResponseBody,
|
|
556
582
|
};
|
|
557
583
|
}
|
|
@@ -614,12 +640,14 @@ class CreateApplicationScalingRuleResponse extends $tea.Model {
|
|
|
614
640
|
static names() {
|
|
615
641
|
return {
|
|
616
642
|
headers: 'headers',
|
|
643
|
+
statusCode: 'statusCode',
|
|
617
644
|
body: 'body',
|
|
618
645
|
};
|
|
619
646
|
}
|
|
620
647
|
static types() {
|
|
621
648
|
return {
|
|
622
649
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
650
|
+
statusCode: 'number',
|
|
623
651
|
body: CreateApplicationScalingRuleResponseBody,
|
|
624
652
|
};
|
|
625
653
|
}
|
|
@@ -682,12 +710,14 @@ class CreateConfigMapResponse extends $tea.Model {
|
|
|
682
710
|
static names() {
|
|
683
711
|
return {
|
|
684
712
|
headers: 'headers',
|
|
713
|
+
statusCode: 'statusCode',
|
|
685
714
|
body: 'body',
|
|
686
715
|
};
|
|
687
716
|
}
|
|
688
717
|
static types() {
|
|
689
718
|
return {
|
|
690
719
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
720
|
+
statusCode: 'number',
|
|
691
721
|
body: CreateConfigMapResponseBody,
|
|
692
722
|
};
|
|
693
723
|
}
|
|
@@ -752,12 +782,14 @@ class CreateGreyTagRouteResponse extends $tea.Model {
|
|
|
752
782
|
static names() {
|
|
753
783
|
return {
|
|
754
784
|
headers: 'headers',
|
|
785
|
+
statusCode: 'statusCode',
|
|
755
786
|
body: 'body',
|
|
756
787
|
};
|
|
757
788
|
}
|
|
758
789
|
static types() {
|
|
759
790
|
return {
|
|
760
791
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
792
|
+
statusCode: 'number',
|
|
761
793
|
body: CreateGreyTagRouteResponseBody,
|
|
762
794
|
};
|
|
763
795
|
}
|
|
@@ -773,6 +805,8 @@ class CreateIngressRequest extends $tea.Model {
|
|
|
773
805
|
defaultRule: 'DefaultRule',
|
|
774
806
|
description: 'Description',
|
|
775
807
|
listenerPort: 'ListenerPort',
|
|
808
|
+
listenerProtocol: 'ListenerProtocol',
|
|
809
|
+
loadBalanceType: 'LoadBalanceType',
|
|
776
810
|
namespaceId: 'NamespaceId',
|
|
777
811
|
rules: 'Rules',
|
|
778
812
|
slbId: 'SlbId',
|
|
@@ -784,6 +818,8 @@ class CreateIngressRequest extends $tea.Model {
|
|
|
784
818
|
defaultRule: 'string',
|
|
785
819
|
description: 'string',
|
|
786
820
|
listenerPort: 'number',
|
|
821
|
+
listenerProtocol: 'string',
|
|
822
|
+
loadBalanceType: 'string',
|
|
787
823
|
namespaceId: 'string',
|
|
788
824
|
rules: 'string',
|
|
789
825
|
slbId: 'string',
|
|
@@ -826,12 +862,14 @@ class CreateIngressResponse extends $tea.Model {
|
|
|
826
862
|
static names() {
|
|
827
863
|
return {
|
|
828
864
|
headers: 'headers',
|
|
865
|
+
statusCode: 'statusCode',
|
|
829
866
|
body: 'body',
|
|
830
867
|
};
|
|
831
868
|
}
|
|
832
869
|
static types() {
|
|
833
870
|
return {
|
|
834
871
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
872
|
+
statusCode: 'number',
|
|
835
873
|
body: CreateIngressResponseBody,
|
|
836
874
|
};
|
|
837
875
|
}
|
|
@@ -892,12 +930,14 @@ class CreateNamespaceResponse extends $tea.Model {
|
|
|
892
930
|
static names() {
|
|
893
931
|
return {
|
|
894
932
|
headers: 'headers',
|
|
933
|
+
statusCode: 'statusCode',
|
|
895
934
|
body: 'body',
|
|
896
935
|
};
|
|
897
936
|
}
|
|
898
937
|
static types() {
|
|
899
938
|
return {
|
|
900
939
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
940
|
+
statusCode: 'number',
|
|
901
941
|
body: CreateNamespaceResponseBody,
|
|
902
942
|
};
|
|
903
943
|
}
|
|
@@ -954,12 +994,14 @@ class DeleteApplicationResponse extends $tea.Model {
|
|
|
954
994
|
static names() {
|
|
955
995
|
return {
|
|
956
996
|
headers: 'headers',
|
|
997
|
+
statusCode: 'statusCode',
|
|
957
998
|
body: 'body',
|
|
958
999
|
};
|
|
959
1000
|
}
|
|
960
1001
|
static types() {
|
|
961
1002
|
return {
|
|
962
1003
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1004
|
+
statusCode: 'number',
|
|
963
1005
|
body: DeleteApplicationResponseBody,
|
|
964
1006
|
};
|
|
965
1007
|
}
|
|
@@ -1008,12 +1050,14 @@ class DeleteApplicationScalingRuleResponse extends $tea.Model {
|
|
|
1008
1050
|
static names() {
|
|
1009
1051
|
return {
|
|
1010
1052
|
headers: 'headers',
|
|
1053
|
+
statusCode: 'statusCode',
|
|
1011
1054
|
body: 'body',
|
|
1012
1055
|
};
|
|
1013
1056
|
}
|
|
1014
1057
|
static types() {
|
|
1015
1058
|
return {
|
|
1016
1059
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1060
|
+
statusCode: 'number',
|
|
1017
1061
|
body: DeleteApplicationScalingRuleResponseBody,
|
|
1018
1062
|
};
|
|
1019
1063
|
}
|
|
@@ -1070,12 +1114,14 @@ class DeleteConfigMapResponse extends $tea.Model {
|
|
|
1070
1114
|
static names() {
|
|
1071
1115
|
return {
|
|
1072
1116
|
headers: 'headers',
|
|
1117
|
+
statusCode: 'statusCode',
|
|
1073
1118
|
body: 'body',
|
|
1074
1119
|
};
|
|
1075
1120
|
}
|
|
1076
1121
|
static types() {
|
|
1077
1122
|
return {
|
|
1078
1123
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1124
|
+
statusCode: 'number',
|
|
1079
1125
|
body: DeleteConfigMapResponseBody,
|
|
1080
1126
|
};
|
|
1081
1127
|
}
|
|
@@ -1132,12 +1178,14 @@ class DeleteGreyTagRouteResponse extends $tea.Model {
|
|
|
1132
1178
|
static names() {
|
|
1133
1179
|
return {
|
|
1134
1180
|
headers: 'headers',
|
|
1181
|
+
statusCode: 'statusCode',
|
|
1135
1182
|
body: 'body',
|
|
1136
1183
|
};
|
|
1137
1184
|
}
|
|
1138
1185
|
static types() {
|
|
1139
1186
|
return {
|
|
1140
1187
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1188
|
+
statusCode: 'number',
|
|
1141
1189
|
body: DeleteGreyTagRouteResponseBody,
|
|
1142
1190
|
};
|
|
1143
1191
|
}
|
|
@@ -1194,12 +1242,14 @@ class DeleteIngressResponse extends $tea.Model {
|
|
|
1194
1242
|
static names() {
|
|
1195
1243
|
return {
|
|
1196
1244
|
headers: 'headers',
|
|
1245
|
+
statusCode: 'statusCode',
|
|
1197
1246
|
body: 'body',
|
|
1198
1247
|
};
|
|
1199
1248
|
}
|
|
1200
1249
|
static types() {
|
|
1201
1250
|
return {
|
|
1202
1251
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1252
|
+
statusCode: 'number',
|
|
1203
1253
|
body: DeleteIngressResponseBody,
|
|
1204
1254
|
};
|
|
1205
1255
|
}
|
|
@@ -1254,12 +1304,14 @@ class DeleteNamespaceResponse extends $tea.Model {
|
|
|
1254
1304
|
static names() {
|
|
1255
1305
|
return {
|
|
1256
1306
|
headers: 'headers',
|
|
1307
|
+
statusCode: 'statusCode',
|
|
1257
1308
|
body: 'body',
|
|
1258
1309
|
};
|
|
1259
1310
|
}
|
|
1260
1311
|
static types() {
|
|
1261
1312
|
return {
|
|
1262
1313
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1314
|
+
statusCode: 'number',
|
|
1263
1315
|
body: DeleteNamespaceResponseBody,
|
|
1264
1316
|
};
|
|
1265
1317
|
}
|
|
@@ -1290,12 +1342,17 @@ class DeployApplicationRequest extends $tea.Model {
|
|
|
1290
1342
|
jarStartArgs: 'JarStartArgs',
|
|
1291
1343
|
jarStartOptions: 'JarStartOptions',
|
|
1292
1344
|
jdk: 'Jdk',
|
|
1345
|
+
kafkaConfigs: 'KafkaConfigs',
|
|
1346
|
+
kafkaEndpoint: 'KafkaEndpoint',
|
|
1347
|
+
kafkaInstanceId: 'KafkaInstanceId',
|
|
1348
|
+
kafkaLogfileConfig: 'KafkaLogfileConfig',
|
|
1293
1349
|
liveness: 'Liveness',
|
|
1294
1350
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
1295
1351
|
minReadyInstances: 'MinReadyInstances',
|
|
1296
1352
|
mountDesc: 'MountDesc',
|
|
1297
1353
|
mountHost: 'MountHost',
|
|
1298
1354
|
nasId: 'NasId',
|
|
1355
|
+
openCollectToKafka: 'OpenCollectToKafka',
|
|
1299
1356
|
ossAkId: 'OssAkId',
|
|
1300
1357
|
ossAkSecret: 'OssAkSecret',
|
|
1301
1358
|
ossMountDescs: 'OssMountDescs',
|
|
@@ -1337,12 +1394,17 @@ class DeployApplicationRequest extends $tea.Model {
|
|
|
1337
1394
|
jarStartArgs: 'string',
|
|
1338
1395
|
jarStartOptions: 'string',
|
|
1339
1396
|
jdk: 'string',
|
|
1397
|
+
kafkaConfigs: 'string',
|
|
1398
|
+
kafkaEndpoint: 'string',
|
|
1399
|
+
kafkaInstanceId: 'string',
|
|
1400
|
+
kafkaLogfileConfig: 'string',
|
|
1340
1401
|
liveness: 'string',
|
|
1341
1402
|
minReadyInstanceRatio: 'number',
|
|
1342
1403
|
minReadyInstances: 'number',
|
|
1343
1404
|
mountDesc: 'string',
|
|
1344
1405
|
mountHost: 'string',
|
|
1345
1406
|
nasId: 'string',
|
|
1407
|
+
openCollectToKafka: 'boolean',
|
|
1346
1408
|
ossAkId: 'string',
|
|
1347
1409
|
ossAkSecret: 'string',
|
|
1348
1410
|
ossMountDescs: 'string',
|
|
@@ -1400,12 +1462,14 @@ class DeployApplicationResponse extends $tea.Model {
|
|
|
1400
1462
|
static names() {
|
|
1401
1463
|
return {
|
|
1402
1464
|
headers: 'headers',
|
|
1465
|
+
statusCode: 'statusCode',
|
|
1403
1466
|
body: 'body',
|
|
1404
1467
|
};
|
|
1405
1468
|
}
|
|
1406
1469
|
static types() {
|
|
1407
1470
|
return {
|
|
1408
1471
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1472
|
+
statusCode: 'number',
|
|
1409
1473
|
body: DeployApplicationResponseBody,
|
|
1410
1474
|
};
|
|
1411
1475
|
}
|
|
@@ -1470,12 +1534,14 @@ class DescribeAppServiceDetailResponse extends $tea.Model {
|
|
|
1470
1534
|
static names() {
|
|
1471
1535
|
return {
|
|
1472
1536
|
headers: 'headers',
|
|
1537
|
+
statusCode: 'statusCode',
|
|
1473
1538
|
body: 'body',
|
|
1474
1539
|
};
|
|
1475
1540
|
}
|
|
1476
1541
|
static types() {
|
|
1477
1542
|
return {
|
|
1478
1543
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1544
|
+
statusCode: 'number',
|
|
1479
1545
|
body: DescribeAppServiceDetailResponseBody,
|
|
1480
1546
|
};
|
|
1481
1547
|
}
|
|
@@ -1534,12 +1600,14 @@ class DescribeApplicationConfigResponse extends $tea.Model {
|
|
|
1534
1600
|
static names() {
|
|
1535
1601
|
return {
|
|
1536
1602
|
headers: 'headers',
|
|
1603
|
+
statusCode: 'statusCode',
|
|
1537
1604
|
body: 'body',
|
|
1538
1605
|
};
|
|
1539
1606
|
}
|
|
1540
1607
|
static types() {
|
|
1541
1608
|
return {
|
|
1542
1609
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1610
|
+
statusCode: 'number',
|
|
1543
1611
|
body: DescribeApplicationConfigResponseBody,
|
|
1544
1612
|
};
|
|
1545
1613
|
}
|
|
@@ -1600,12 +1668,14 @@ class DescribeApplicationGroupsResponse extends $tea.Model {
|
|
|
1600
1668
|
static names() {
|
|
1601
1669
|
return {
|
|
1602
1670
|
headers: 'headers',
|
|
1671
|
+
statusCode: 'statusCode',
|
|
1603
1672
|
body: 'body',
|
|
1604
1673
|
};
|
|
1605
1674
|
}
|
|
1606
1675
|
static types() {
|
|
1607
1676
|
return {
|
|
1608
1677
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1678
|
+
statusCode: 'number',
|
|
1609
1679
|
body: DescribeApplicationGroupsResponseBody,
|
|
1610
1680
|
};
|
|
1611
1681
|
}
|
|
@@ -1664,12 +1734,14 @@ class DescribeApplicationImageResponse extends $tea.Model {
|
|
|
1664
1734
|
static names() {
|
|
1665
1735
|
return {
|
|
1666
1736
|
headers: 'headers',
|
|
1737
|
+
statusCode: 'statusCode',
|
|
1667
1738
|
body: 'body',
|
|
1668
1739
|
};
|
|
1669
1740
|
}
|
|
1670
1741
|
static types() {
|
|
1671
1742
|
return {
|
|
1672
1743
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1744
|
+
statusCode: 'number',
|
|
1673
1745
|
body: DescribeApplicationImageResponseBody,
|
|
1674
1746
|
};
|
|
1675
1747
|
}
|
|
@@ -1734,12 +1806,14 @@ class DescribeApplicationInstancesResponse extends $tea.Model {
|
|
|
1734
1806
|
static names() {
|
|
1735
1807
|
return {
|
|
1736
1808
|
headers: 'headers',
|
|
1809
|
+
statusCode: 'statusCode',
|
|
1737
1810
|
body: 'body',
|
|
1738
1811
|
};
|
|
1739
1812
|
}
|
|
1740
1813
|
static types() {
|
|
1741
1814
|
return {
|
|
1742
1815
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1816
|
+
statusCode: 'number',
|
|
1743
1817
|
body: DescribeApplicationInstancesResponseBody,
|
|
1744
1818
|
};
|
|
1745
1819
|
}
|
|
@@ -1790,12 +1864,14 @@ class DescribeApplicationScalingRuleResponse extends $tea.Model {
|
|
|
1790
1864
|
static names() {
|
|
1791
1865
|
return {
|
|
1792
1866
|
headers: 'headers',
|
|
1867
|
+
statusCode: 'statusCode',
|
|
1793
1868
|
body: 'body',
|
|
1794
1869
|
};
|
|
1795
1870
|
}
|
|
1796
1871
|
static types() {
|
|
1797
1872
|
return {
|
|
1798
1873
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1874
|
+
statusCode: 'number',
|
|
1799
1875
|
body: DescribeApplicationScalingRuleResponseBody,
|
|
1800
1876
|
};
|
|
1801
1877
|
}
|
|
@@ -1844,12 +1920,14 @@ class DescribeApplicationScalingRulesResponse extends $tea.Model {
|
|
|
1844
1920
|
static names() {
|
|
1845
1921
|
return {
|
|
1846
1922
|
headers: 'headers',
|
|
1923
|
+
statusCode: 'statusCode',
|
|
1847
1924
|
body: 'body',
|
|
1848
1925
|
};
|
|
1849
1926
|
}
|
|
1850
1927
|
static types() {
|
|
1851
1928
|
return {
|
|
1852
1929
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1930
|
+
statusCode: 'number',
|
|
1853
1931
|
body: DescribeApplicationScalingRulesResponseBody,
|
|
1854
1932
|
};
|
|
1855
1933
|
}
|
|
@@ -1906,12 +1984,14 @@ class DescribeApplicationSlbsResponse extends $tea.Model {
|
|
|
1906
1984
|
static names() {
|
|
1907
1985
|
return {
|
|
1908
1986
|
headers: 'headers',
|
|
1987
|
+
statusCode: 'statusCode',
|
|
1909
1988
|
body: 'body',
|
|
1910
1989
|
};
|
|
1911
1990
|
}
|
|
1912
1991
|
static types() {
|
|
1913
1992
|
return {
|
|
1914
1993
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1994
|
+
statusCode: 'number',
|
|
1915
1995
|
body: DescribeApplicationSlbsResponseBody,
|
|
1916
1996
|
};
|
|
1917
1997
|
}
|
|
@@ -1968,12 +2048,14 @@ class DescribeApplicationStatusResponse extends $tea.Model {
|
|
|
1968
2048
|
static names() {
|
|
1969
2049
|
return {
|
|
1970
2050
|
headers: 'headers',
|
|
2051
|
+
statusCode: 'statusCode',
|
|
1971
2052
|
body: 'body',
|
|
1972
2053
|
};
|
|
1973
2054
|
}
|
|
1974
2055
|
static types() {
|
|
1975
2056
|
return {
|
|
1976
2057
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2058
|
+
statusCode: 'number',
|
|
1977
2059
|
body: DescribeApplicationStatusResponseBody,
|
|
1978
2060
|
};
|
|
1979
2061
|
}
|
|
@@ -2030,12 +2112,14 @@ class DescribeChangeOrderResponse extends $tea.Model {
|
|
|
2030
2112
|
static names() {
|
|
2031
2113
|
return {
|
|
2032
2114
|
headers: 'headers',
|
|
2115
|
+
statusCode: 'statusCode',
|
|
2033
2116
|
body: 'body',
|
|
2034
2117
|
};
|
|
2035
2118
|
}
|
|
2036
2119
|
static types() {
|
|
2037
2120
|
return {
|
|
2038
2121
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2122
|
+
statusCode: 'number',
|
|
2039
2123
|
body: DescribeChangeOrderResponseBody,
|
|
2040
2124
|
};
|
|
2041
2125
|
}
|
|
@@ -2094,12 +2178,14 @@ class DescribeComponentsResponse extends $tea.Model {
|
|
|
2094
2178
|
static names() {
|
|
2095
2179
|
return {
|
|
2096
2180
|
headers: 'headers',
|
|
2181
|
+
statusCode: 'statusCode',
|
|
2097
2182
|
body: 'body',
|
|
2098
2183
|
};
|
|
2099
2184
|
}
|
|
2100
2185
|
static types() {
|
|
2101
2186
|
return {
|
|
2102
2187
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2188
|
+
statusCode: 'number',
|
|
2103
2189
|
body: DescribeComponentsResponseBody,
|
|
2104
2190
|
};
|
|
2105
2191
|
}
|
|
@@ -2156,12 +2242,14 @@ class DescribeConfigMapResponse extends $tea.Model {
|
|
|
2156
2242
|
static names() {
|
|
2157
2243
|
return {
|
|
2158
2244
|
headers: 'headers',
|
|
2245
|
+
statusCode: 'statusCode',
|
|
2159
2246
|
body: 'body',
|
|
2160
2247
|
};
|
|
2161
2248
|
}
|
|
2162
2249
|
static types() {
|
|
2163
2250
|
return {
|
|
2164
2251
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2252
|
+
statusCode: 'number',
|
|
2165
2253
|
body: DescribeConfigMapResponseBody,
|
|
2166
2254
|
};
|
|
2167
2255
|
}
|
|
@@ -2220,12 +2308,14 @@ class DescribeConfigurationPriceResponse extends $tea.Model {
|
|
|
2220
2308
|
static names() {
|
|
2221
2309
|
return {
|
|
2222
2310
|
headers: 'headers',
|
|
2311
|
+
statusCode: 'statusCode',
|
|
2223
2312
|
body: 'body',
|
|
2224
2313
|
};
|
|
2225
2314
|
}
|
|
2226
2315
|
static types() {
|
|
2227
2316
|
return {
|
|
2228
2317
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2318
|
+
statusCode: 'number',
|
|
2229
2319
|
body: DescribeConfigurationPriceResponseBody,
|
|
2230
2320
|
};
|
|
2231
2321
|
}
|
|
@@ -2266,12 +2356,14 @@ class DescribeEdasContainersResponse extends $tea.Model {
|
|
|
2266
2356
|
static names() {
|
|
2267
2357
|
return {
|
|
2268
2358
|
headers: 'headers',
|
|
2359
|
+
statusCode: 'statusCode',
|
|
2269
2360
|
body: 'body',
|
|
2270
2361
|
};
|
|
2271
2362
|
}
|
|
2272
2363
|
static types() {
|
|
2273
2364
|
return {
|
|
2274
2365
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2366
|
+
statusCode: 'number',
|
|
2275
2367
|
body: DescribeEdasContainersResponseBody,
|
|
2276
2368
|
};
|
|
2277
2369
|
}
|
|
@@ -2328,12 +2420,14 @@ class DescribeGreyTagRouteResponse extends $tea.Model {
|
|
|
2328
2420
|
static names() {
|
|
2329
2421
|
return {
|
|
2330
2422
|
headers: 'headers',
|
|
2423
|
+
statusCode: 'statusCode',
|
|
2331
2424
|
body: 'body',
|
|
2332
2425
|
};
|
|
2333
2426
|
}
|
|
2334
2427
|
static types() {
|
|
2335
2428
|
return {
|
|
2336
2429
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2430
|
+
statusCode: 'number',
|
|
2337
2431
|
body: DescribeGreyTagRouteResponseBody,
|
|
2338
2432
|
};
|
|
2339
2433
|
}
|
|
@@ -2390,12 +2484,14 @@ class DescribeIngressResponse extends $tea.Model {
|
|
|
2390
2484
|
static names() {
|
|
2391
2485
|
return {
|
|
2392
2486
|
headers: 'headers',
|
|
2487
|
+
statusCode: 'statusCode',
|
|
2393
2488
|
body: 'body',
|
|
2394
2489
|
};
|
|
2395
2490
|
}
|
|
2396
2491
|
static types() {
|
|
2397
2492
|
return {
|
|
2398
2493
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2494
|
+
statusCode: 'number',
|
|
2399
2495
|
body: DescribeIngressResponseBody,
|
|
2400
2496
|
};
|
|
2401
2497
|
}
|
|
@@ -2452,12 +2548,14 @@ class DescribeInstanceLogResponse extends $tea.Model {
|
|
|
2452
2548
|
static names() {
|
|
2453
2549
|
return {
|
|
2454
2550
|
headers: 'headers',
|
|
2551
|
+
statusCode: 'statusCode',
|
|
2455
2552
|
body: 'body',
|
|
2456
2553
|
};
|
|
2457
2554
|
}
|
|
2458
2555
|
static types() {
|
|
2459
2556
|
return {
|
|
2460
2557
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2558
|
+
statusCode: 'number',
|
|
2461
2559
|
body: DescribeInstanceLogResponseBody,
|
|
2462
2560
|
};
|
|
2463
2561
|
}
|
|
@@ -2498,12 +2596,14 @@ class DescribeInstanceSpecificationsResponse extends $tea.Model {
|
|
|
2498
2596
|
static names() {
|
|
2499
2597
|
return {
|
|
2500
2598
|
headers: 'headers',
|
|
2599
|
+
statusCode: 'statusCode',
|
|
2501
2600
|
body: 'body',
|
|
2502
2601
|
};
|
|
2503
2602
|
}
|
|
2504
2603
|
static types() {
|
|
2505
2604
|
return {
|
|
2506
2605
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2606
|
+
statusCode: 'number',
|
|
2507
2607
|
body: DescribeInstanceSpecificationsResponseBody,
|
|
2508
2608
|
};
|
|
2509
2609
|
}
|
|
@@ -2560,12 +2660,14 @@ class DescribeNamespaceResponse extends $tea.Model {
|
|
|
2560
2660
|
static names() {
|
|
2561
2661
|
return {
|
|
2562
2662
|
headers: 'headers',
|
|
2663
|
+
statusCode: 'statusCode',
|
|
2563
2664
|
body: 'body',
|
|
2564
2665
|
};
|
|
2565
2666
|
}
|
|
2566
2667
|
static types() {
|
|
2567
2668
|
return {
|
|
2568
2669
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2670
|
+
statusCode: 'number',
|
|
2569
2671
|
body: DescribeNamespaceResponseBody,
|
|
2570
2672
|
};
|
|
2571
2673
|
}
|
|
@@ -2624,12 +2726,14 @@ class DescribeNamespaceListResponse extends $tea.Model {
|
|
|
2624
2726
|
static names() {
|
|
2625
2727
|
return {
|
|
2626
2728
|
headers: 'headers',
|
|
2729
|
+
statusCode: 'statusCode',
|
|
2627
2730
|
body: 'body',
|
|
2628
2731
|
};
|
|
2629
2732
|
}
|
|
2630
2733
|
static types() {
|
|
2631
2734
|
return {
|
|
2632
2735
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2736
|
+
statusCode: 'number',
|
|
2633
2737
|
body: DescribeNamespaceListResponseBody,
|
|
2634
2738
|
};
|
|
2635
2739
|
}
|
|
@@ -2686,12 +2790,14 @@ class DescribeNamespaceResourcesResponse extends $tea.Model {
|
|
|
2686
2790
|
static names() {
|
|
2687
2791
|
return {
|
|
2688
2792
|
headers: 'headers',
|
|
2793
|
+
statusCode: 'statusCode',
|
|
2689
2794
|
body: 'body',
|
|
2690
2795
|
};
|
|
2691
2796
|
}
|
|
2692
2797
|
static types() {
|
|
2693
2798
|
return {
|
|
2694
2799
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2800
|
+
statusCode: 'number',
|
|
2695
2801
|
body: DescribeNamespaceResourcesResponseBody,
|
|
2696
2802
|
};
|
|
2697
2803
|
}
|
|
@@ -2750,12 +2856,14 @@ class DescribeNamespacesResponse extends $tea.Model {
|
|
|
2750
2856
|
static names() {
|
|
2751
2857
|
return {
|
|
2752
2858
|
headers: 'headers',
|
|
2859
|
+
statusCode: 'statusCode',
|
|
2753
2860
|
body: 'body',
|
|
2754
2861
|
};
|
|
2755
2862
|
}
|
|
2756
2863
|
static types() {
|
|
2757
2864
|
return {
|
|
2758
2865
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2866
|
+
statusCode: 'number',
|
|
2759
2867
|
body: DescribeNamespacesResponseBody,
|
|
2760
2868
|
};
|
|
2761
2869
|
}
|
|
@@ -2812,12 +2920,14 @@ class DescribePipelineResponse extends $tea.Model {
|
|
|
2812
2920
|
static names() {
|
|
2813
2921
|
return {
|
|
2814
2922
|
headers: 'headers',
|
|
2923
|
+
statusCode: 'statusCode',
|
|
2815
2924
|
body: 'body',
|
|
2816
2925
|
};
|
|
2817
2926
|
}
|
|
2818
2927
|
static types() {
|
|
2819
2928
|
return {
|
|
2820
2929
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2930
|
+
statusCode: 'number',
|
|
2821
2931
|
body: DescribePipelineResponseBody,
|
|
2822
2932
|
};
|
|
2823
2933
|
}
|
|
@@ -2852,12 +2962,14 @@ class DescribeRegionsResponse extends $tea.Model {
|
|
|
2852
2962
|
static names() {
|
|
2853
2963
|
return {
|
|
2854
2964
|
headers: 'headers',
|
|
2965
|
+
statusCode: 'statusCode',
|
|
2855
2966
|
body: 'body',
|
|
2856
2967
|
};
|
|
2857
2968
|
}
|
|
2858
2969
|
static types() {
|
|
2859
2970
|
return {
|
|
2860
2971
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2972
|
+
statusCode: 'number',
|
|
2861
2973
|
body: DescribeRegionsResponseBody,
|
|
2862
2974
|
};
|
|
2863
2975
|
}
|
|
@@ -2906,83 +3018,19 @@ class DisableApplicationScalingRuleResponse extends $tea.Model {
|
|
|
2906
3018
|
static names() {
|
|
2907
3019
|
return {
|
|
2908
3020
|
headers: 'headers',
|
|
3021
|
+
statusCode: 'statusCode',
|
|
2909
3022
|
body: 'body',
|
|
2910
3023
|
};
|
|
2911
3024
|
}
|
|
2912
3025
|
static types() {
|
|
2913
3026
|
return {
|
|
2914
3027
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3028
|
+
statusCode: 'number',
|
|
2915
3029
|
body: DisableApplicationScalingRuleResponseBody,
|
|
2916
3030
|
};
|
|
2917
3031
|
}
|
|
2918
3032
|
}
|
|
2919
3033
|
exports.DisableApplicationScalingRuleResponse = DisableApplicationScalingRuleResponse;
|
|
2920
|
-
class DownloadFilesRequest extends $tea.Model {
|
|
2921
|
-
constructor(map) {
|
|
2922
|
-
super(map);
|
|
2923
|
-
}
|
|
2924
|
-
static names() {
|
|
2925
|
-
return {
|
|
2926
|
-
appId: 'AppId',
|
|
2927
|
-
instanceId: 'InstanceId',
|
|
2928
|
-
localpath: 'Localpath',
|
|
2929
|
-
};
|
|
2930
|
-
}
|
|
2931
|
-
static types() {
|
|
2932
|
-
return {
|
|
2933
|
-
appId: 'string',
|
|
2934
|
-
instanceId: 'string',
|
|
2935
|
-
localpath: 'string',
|
|
2936
|
-
};
|
|
2937
|
-
}
|
|
2938
|
-
}
|
|
2939
|
-
exports.DownloadFilesRequest = DownloadFilesRequest;
|
|
2940
|
-
class DownloadFilesResponseBody extends $tea.Model {
|
|
2941
|
-
constructor(map) {
|
|
2942
|
-
super(map);
|
|
2943
|
-
}
|
|
2944
|
-
static names() {
|
|
2945
|
-
return {
|
|
2946
|
-
code: 'Code',
|
|
2947
|
-
data: 'Data',
|
|
2948
|
-
errorCode: 'ErrorCode',
|
|
2949
|
-
message: 'Message',
|
|
2950
|
-
requestId: 'RequestId',
|
|
2951
|
-
success: 'Success',
|
|
2952
|
-
traceId: 'TraceId',
|
|
2953
|
-
};
|
|
2954
|
-
}
|
|
2955
|
-
static types() {
|
|
2956
|
-
return {
|
|
2957
|
-
code: 'string',
|
|
2958
|
-
data: 'string',
|
|
2959
|
-
errorCode: 'string',
|
|
2960
|
-
message: 'string',
|
|
2961
|
-
requestId: 'string',
|
|
2962
|
-
success: 'boolean',
|
|
2963
|
-
traceId: 'string',
|
|
2964
|
-
};
|
|
2965
|
-
}
|
|
2966
|
-
}
|
|
2967
|
-
exports.DownloadFilesResponseBody = DownloadFilesResponseBody;
|
|
2968
|
-
class DownloadFilesResponse extends $tea.Model {
|
|
2969
|
-
constructor(map) {
|
|
2970
|
-
super(map);
|
|
2971
|
-
}
|
|
2972
|
-
static names() {
|
|
2973
|
-
return {
|
|
2974
|
-
headers: 'headers',
|
|
2975
|
-
body: 'body',
|
|
2976
|
-
};
|
|
2977
|
-
}
|
|
2978
|
-
static types() {
|
|
2979
|
-
return {
|
|
2980
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2981
|
-
body: DownloadFilesResponseBody,
|
|
2982
|
-
};
|
|
2983
|
-
}
|
|
2984
|
-
}
|
|
2985
|
-
exports.DownloadFilesResponse = DownloadFilesResponse;
|
|
2986
3034
|
class EnableApplicationScalingRuleRequest extends $tea.Model {
|
|
2987
3035
|
constructor(map) {
|
|
2988
3036
|
super(map);
|
|
@@ -3026,12 +3074,14 @@ class EnableApplicationScalingRuleResponse extends $tea.Model {
|
|
|
3026
3074
|
static names() {
|
|
3027
3075
|
return {
|
|
3028
3076
|
headers: 'headers',
|
|
3077
|
+
statusCode: 'statusCode',
|
|
3029
3078
|
body: 'body',
|
|
3030
3079
|
};
|
|
3031
3080
|
}
|
|
3032
3081
|
static types() {
|
|
3033
3082
|
return {
|
|
3034
3083
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3084
|
+
statusCode: 'number',
|
|
3035
3085
|
body: EnableApplicationScalingRuleResponseBody,
|
|
3036
3086
|
};
|
|
3037
3087
|
}
|
|
@@ -3100,12 +3150,14 @@ class ListAppEventsResponse extends $tea.Model {
|
|
|
3100
3150
|
static names() {
|
|
3101
3151
|
return {
|
|
3102
3152
|
headers: 'headers',
|
|
3153
|
+
statusCode: 'statusCode',
|
|
3103
3154
|
body: 'body',
|
|
3104
3155
|
};
|
|
3105
3156
|
}
|
|
3106
3157
|
static types() {
|
|
3107
3158
|
return {
|
|
3108
3159
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3160
|
+
statusCode: 'number',
|
|
3109
3161
|
body: ListAppEventsResponseBody,
|
|
3110
3162
|
};
|
|
3111
3163
|
}
|
|
@@ -3168,12 +3220,14 @@ class ListAppServicesPageResponse extends $tea.Model {
|
|
|
3168
3220
|
static names() {
|
|
3169
3221
|
return {
|
|
3170
3222
|
headers: 'headers',
|
|
3223
|
+
statusCode: 'statusCode',
|
|
3171
3224
|
body: 'body',
|
|
3172
3225
|
};
|
|
3173
3226
|
}
|
|
3174
3227
|
static types() {
|
|
3175
3228
|
return {
|
|
3176
3229
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3230
|
+
statusCode: 'number',
|
|
3177
3231
|
body: ListAppServicesPageResponseBody,
|
|
3178
3232
|
};
|
|
3179
3233
|
}
|
|
@@ -3228,12 +3282,14 @@ class ListAppVersionsResponse extends $tea.Model {
|
|
|
3228
3282
|
static names() {
|
|
3229
3283
|
return {
|
|
3230
3284
|
headers: 'headers',
|
|
3285
|
+
statusCode: 'statusCode',
|
|
3231
3286
|
body: 'body',
|
|
3232
3287
|
};
|
|
3233
3288
|
}
|
|
3234
3289
|
static types() {
|
|
3235
3290
|
return {
|
|
3236
3291
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3292
|
+
statusCode: 'number',
|
|
3237
3293
|
body: ListAppVersionsResponseBody,
|
|
3238
3294
|
};
|
|
3239
3295
|
}
|
|
@@ -3310,12 +3366,14 @@ class ListApplicationsResponse extends $tea.Model {
|
|
|
3310
3366
|
static names() {
|
|
3311
3367
|
return {
|
|
3312
3368
|
headers: 'headers',
|
|
3369
|
+
statusCode: 'statusCode',
|
|
3313
3370
|
body: 'body',
|
|
3314
3371
|
};
|
|
3315
3372
|
}
|
|
3316
3373
|
static types() {
|
|
3317
3374
|
return {
|
|
3318
3375
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3376
|
+
statusCode: 'number',
|
|
3319
3377
|
body: ListApplicationsResponseBody,
|
|
3320
3378
|
};
|
|
3321
3379
|
}
|
|
@@ -3382,12 +3440,14 @@ class ListChangeOrdersResponse extends $tea.Model {
|
|
|
3382
3440
|
static names() {
|
|
3383
3441
|
return {
|
|
3384
3442
|
headers: 'headers',
|
|
3443
|
+
statusCode: 'statusCode',
|
|
3385
3444
|
body: 'body',
|
|
3386
3445
|
};
|
|
3387
3446
|
}
|
|
3388
3447
|
static types() {
|
|
3389
3448
|
return {
|
|
3390
3449
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3450
|
+
statusCode: 'number',
|
|
3391
3451
|
body: ListChangeOrdersResponseBody,
|
|
3392
3452
|
};
|
|
3393
3453
|
}
|
|
@@ -3444,12 +3504,14 @@ class ListConsumedServicesResponse extends $tea.Model {
|
|
|
3444
3504
|
static names() {
|
|
3445
3505
|
return {
|
|
3446
3506
|
headers: 'headers',
|
|
3507
|
+
statusCode: 'statusCode',
|
|
3447
3508
|
body: 'body',
|
|
3448
3509
|
};
|
|
3449
3510
|
}
|
|
3450
3511
|
static types() {
|
|
3451
3512
|
return {
|
|
3452
3513
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3514
|
+
statusCode: 'number',
|
|
3453
3515
|
body: ListConsumedServicesResponseBody,
|
|
3454
3516
|
};
|
|
3455
3517
|
}
|
|
@@ -3506,12 +3568,14 @@ class ListGreyTagRouteResponse extends $tea.Model {
|
|
|
3506
3568
|
static names() {
|
|
3507
3569
|
return {
|
|
3508
3570
|
headers: 'headers',
|
|
3571
|
+
statusCode: 'statusCode',
|
|
3509
3572
|
body: 'body',
|
|
3510
3573
|
};
|
|
3511
3574
|
}
|
|
3512
3575
|
static types() {
|
|
3513
3576
|
return {
|
|
3514
3577
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3578
|
+
statusCode: 'number',
|
|
3515
3579
|
body: ListGreyTagRouteResponseBody,
|
|
3516
3580
|
};
|
|
3517
3581
|
}
|
|
@@ -3570,12 +3634,14 @@ class ListIngressesResponse extends $tea.Model {
|
|
|
3570
3634
|
static names() {
|
|
3571
3635
|
return {
|
|
3572
3636
|
headers: 'headers',
|
|
3637
|
+
statusCode: 'statusCode',
|
|
3573
3638
|
body: 'body',
|
|
3574
3639
|
};
|
|
3575
3640
|
}
|
|
3576
3641
|
static types() {
|
|
3577
3642
|
return {
|
|
3578
3643
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3644
|
+
statusCode: 'number',
|
|
3579
3645
|
body: ListIngressesResponseBody,
|
|
3580
3646
|
};
|
|
3581
3647
|
}
|
|
@@ -3636,12 +3702,14 @@ class ListLogConfigsResponse extends $tea.Model {
|
|
|
3636
3702
|
static names() {
|
|
3637
3703
|
return {
|
|
3638
3704
|
headers: 'headers',
|
|
3705
|
+
statusCode: 'statusCode',
|
|
3639
3706
|
body: 'body',
|
|
3640
3707
|
};
|
|
3641
3708
|
}
|
|
3642
3709
|
static types() {
|
|
3643
3710
|
return {
|
|
3644
3711
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3712
|
+
statusCode: 'number',
|
|
3645
3713
|
body: ListLogConfigsResponseBody,
|
|
3646
3714
|
};
|
|
3647
3715
|
}
|
|
@@ -3708,12 +3776,14 @@ class ListNamespaceChangeOrdersResponse extends $tea.Model {
|
|
|
3708
3776
|
static names() {
|
|
3709
3777
|
return {
|
|
3710
3778
|
headers: 'headers',
|
|
3779
|
+
statusCode: 'statusCode',
|
|
3711
3780
|
body: 'body',
|
|
3712
3781
|
};
|
|
3713
3782
|
}
|
|
3714
3783
|
static types() {
|
|
3715
3784
|
return {
|
|
3716
3785
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3786
|
+
statusCode: 'number',
|
|
3717
3787
|
body: ListNamespaceChangeOrdersResponseBody,
|
|
3718
3788
|
};
|
|
3719
3789
|
}
|
|
@@ -3770,12 +3840,14 @@ class ListNamespacedConfigMapsResponse extends $tea.Model {
|
|
|
3770
3840
|
static names() {
|
|
3771
3841
|
return {
|
|
3772
3842
|
headers: 'headers',
|
|
3843
|
+
statusCode: 'statusCode',
|
|
3773
3844
|
body: 'body',
|
|
3774
3845
|
};
|
|
3775
3846
|
}
|
|
3776
3847
|
static types() {
|
|
3777
3848
|
return {
|
|
3778
3849
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3850
|
+
statusCode: 'number',
|
|
3779
3851
|
body: ListNamespacedConfigMapsResponseBody,
|
|
3780
3852
|
};
|
|
3781
3853
|
}
|
|
@@ -3832,12 +3904,14 @@ class ListPublishedServicesResponse extends $tea.Model {
|
|
|
3832
3904
|
static names() {
|
|
3833
3905
|
return {
|
|
3834
3906
|
headers: 'headers',
|
|
3907
|
+
statusCode: 'statusCode',
|
|
3835
3908
|
body: 'body',
|
|
3836
3909
|
};
|
|
3837
3910
|
}
|
|
3838
3911
|
static types() {
|
|
3839
3912
|
return {
|
|
3840
3913
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3914
|
+
statusCode: 'number',
|
|
3841
3915
|
body: ListPublishedServicesResponseBody,
|
|
3842
3916
|
};
|
|
3843
3917
|
}
|
|
@@ -3902,12 +3976,14 @@ class ListTagResourcesResponse extends $tea.Model {
|
|
|
3902
3976
|
static names() {
|
|
3903
3977
|
return {
|
|
3904
3978
|
headers: 'headers',
|
|
3979
|
+
statusCode: 'statusCode',
|
|
3905
3980
|
body: 'body',
|
|
3906
3981
|
};
|
|
3907
3982
|
}
|
|
3908
3983
|
static types() {
|
|
3909
3984
|
return {
|
|
3910
3985
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3986
|
+
statusCode: 'number',
|
|
3911
3987
|
body: ListTagResourcesResponseBody,
|
|
3912
3988
|
};
|
|
3913
3989
|
}
|
|
@@ -3938,12 +4014,14 @@ class OpenSaeServiceResponse extends $tea.Model {
|
|
|
3938
4014
|
static names() {
|
|
3939
4015
|
return {
|
|
3940
4016
|
headers: 'headers',
|
|
4017
|
+
statusCode: 'statusCode',
|
|
3941
4018
|
body: 'body',
|
|
3942
4019
|
};
|
|
3943
4020
|
}
|
|
3944
4021
|
static types() {
|
|
3945
4022
|
return {
|
|
3946
4023
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4024
|
+
statusCode: 'number',
|
|
3947
4025
|
body: OpenSaeServiceResponseBody,
|
|
3948
4026
|
};
|
|
3949
4027
|
}
|
|
@@ -4000,12 +4078,14 @@ class QueryResourceStaticsResponse extends $tea.Model {
|
|
|
4000
4078
|
static names() {
|
|
4001
4079
|
return {
|
|
4002
4080
|
headers: 'headers',
|
|
4081
|
+
statusCode: 'statusCode',
|
|
4003
4082
|
body: 'body',
|
|
4004
4083
|
};
|
|
4005
4084
|
}
|
|
4006
4085
|
static types() {
|
|
4007
4086
|
return {
|
|
4008
4087
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4088
|
+
statusCode: 'number',
|
|
4009
4089
|
body: QueryResourceStaticsResponseBody,
|
|
4010
4090
|
};
|
|
4011
4091
|
}
|
|
@@ -4064,12 +4144,14 @@ class ReduceApplicationCapacityByInstanceIdsResponse extends $tea.Model {
|
|
|
4064
4144
|
static names() {
|
|
4065
4145
|
return {
|
|
4066
4146
|
headers: 'headers',
|
|
4147
|
+
statusCode: 'statusCode',
|
|
4067
4148
|
body: 'body',
|
|
4068
4149
|
};
|
|
4069
4150
|
}
|
|
4070
4151
|
static types() {
|
|
4071
4152
|
return {
|
|
4072
4153
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4154
|
+
statusCode: 'number',
|
|
4073
4155
|
body: ReduceApplicationCapacityByInstanceIdsResponseBody,
|
|
4074
4156
|
};
|
|
4075
4157
|
}
|
|
@@ -4132,12 +4214,14 @@ class RescaleApplicationResponse extends $tea.Model {
|
|
|
4132
4214
|
static names() {
|
|
4133
4215
|
return {
|
|
4134
4216
|
headers: 'headers',
|
|
4217
|
+
statusCode: 'statusCode',
|
|
4135
4218
|
body: 'body',
|
|
4136
4219
|
};
|
|
4137
4220
|
}
|
|
4138
4221
|
static types() {
|
|
4139
4222
|
return {
|
|
4140
4223
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4224
|
+
statusCode: 'number',
|
|
4141
4225
|
body: RescaleApplicationResponseBody,
|
|
4142
4226
|
};
|
|
4143
4227
|
}
|
|
@@ -4198,12 +4282,14 @@ class RescaleApplicationVerticallyResponse extends $tea.Model {
|
|
|
4198
4282
|
static names() {
|
|
4199
4283
|
return {
|
|
4200
4284
|
headers: 'headers',
|
|
4285
|
+
statusCode: 'statusCode',
|
|
4201
4286
|
body: 'body',
|
|
4202
4287
|
};
|
|
4203
4288
|
}
|
|
4204
4289
|
static types() {
|
|
4205
4290
|
return {
|
|
4206
4291
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4292
|
+
statusCode: 'number',
|
|
4207
4293
|
body: RescaleApplicationVerticallyResponseBody,
|
|
4208
4294
|
};
|
|
4209
4295
|
}
|
|
@@ -4264,12 +4350,14 @@ class RestartApplicationResponse extends $tea.Model {
|
|
|
4264
4350
|
static names() {
|
|
4265
4351
|
return {
|
|
4266
4352
|
headers: 'headers',
|
|
4353
|
+
statusCode: 'statusCode',
|
|
4267
4354
|
body: 'body',
|
|
4268
4355
|
};
|
|
4269
4356
|
}
|
|
4270
4357
|
static types() {
|
|
4271
4358
|
return {
|
|
4272
4359
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4360
|
+
statusCode: 'number',
|
|
4273
4361
|
body: RestartApplicationResponseBody,
|
|
4274
4362
|
};
|
|
4275
4363
|
}
|
|
@@ -4328,12 +4416,14 @@ class RestartInstancesResponse extends $tea.Model {
|
|
|
4328
4416
|
static names() {
|
|
4329
4417
|
return {
|
|
4330
4418
|
headers: 'headers',
|
|
4419
|
+
statusCode: 'statusCode',
|
|
4331
4420
|
body: 'body',
|
|
4332
4421
|
};
|
|
4333
4422
|
}
|
|
4334
4423
|
static types() {
|
|
4335
4424
|
return {
|
|
4336
4425
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4426
|
+
statusCode: 'number',
|
|
4337
4427
|
body: RestartInstancesResponseBody,
|
|
4338
4428
|
};
|
|
4339
4429
|
}
|
|
@@ -4402,12 +4492,14 @@ class RollbackApplicationResponse extends $tea.Model {
|
|
|
4402
4492
|
static names() {
|
|
4403
4493
|
return {
|
|
4404
4494
|
headers: 'headers',
|
|
4495
|
+
statusCode: 'statusCode',
|
|
4405
4496
|
body: 'body',
|
|
4406
4497
|
};
|
|
4407
4498
|
}
|
|
4408
4499
|
static types() {
|
|
4409
4500
|
return {
|
|
4410
4501
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4502
|
+
statusCode: 'number',
|
|
4411
4503
|
body: RollbackApplicationResponseBody,
|
|
4412
4504
|
};
|
|
4413
4505
|
}
|
|
@@ -4464,12 +4556,14 @@ class StartApplicationResponse extends $tea.Model {
|
|
|
4464
4556
|
static names() {
|
|
4465
4557
|
return {
|
|
4466
4558
|
headers: 'headers',
|
|
4559
|
+
statusCode: 'statusCode',
|
|
4467
4560
|
body: 'body',
|
|
4468
4561
|
};
|
|
4469
4562
|
}
|
|
4470
4563
|
static types() {
|
|
4471
4564
|
return {
|
|
4472
4565
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4566
|
+
statusCode: 'number',
|
|
4473
4567
|
body: StartApplicationResponseBody,
|
|
4474
4568
|
};
|
|
4475
4569
|
}
|
|
@@ -4526,12 +4620,14 @@ class StopApplicationResponse extends $tea.Model {
|
|
|
4526
4620
|
static names() {
|
|
4527
4621
|
return {
|
|
4528
4622
|
headers: 'headers',
|
|
4623
|
+
statusCode: 'statusCode',
|
|
4529
4624
|
body: 'body',
|
|
4530
4625
|
};
|
|
4531
4626
|
}
|
|
4532
4627
|
static types() {
|
|
4533
4628
|
return {
|
|
4534
4629
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4630
|
+
statusCode: 'number',
|
|
4535
4631
|
body: StopApplicationResponseBody,
|
|
4536
4632
|
};
|
|
4537
4633
|
}
|
|
@@ -4594,12 +4690,14 @@ class TagResourcesResponse extends $tea.Model {
|
|
|
4594
4690
|
static names() {
|
|
4595
4691
|
return {
|
|
4596
4692
|
headers: 'headers',
|
|
4693
|
+
statusCode: 'statusCode',
|
|
4597
4694
|
body: 'body',
|
|
4598
4695
|
};
|
|
4599
4696
|
}
|
|
4600
4697
|
static types() {
|
|
4601
4698
|
return {
|
|
4602
4699
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4700
|
+
statusCode: 'number',
|
|
4603
4701
|
body: TagResourcesResponseBody,
|
|
4604
4702
|
};
|
|
4605
4703
|
}
|
|
@@ -4660,12 +4758,14 @@ class UnbindSlbResponse extends $tea.Model {
|
|
|
4660
4758
|
static names() {
|
|
4661
4759
|
return {
|
|
4662
4760
|
headers: 'headers',
|
|
4761
|
+
statusCode: 'statusCode',
|
|
4663
4762
|
body: 'body',
|
|
4664
4763
|
};
|
|
4665
4764
|
}
|
|
4666
4765
|
static types() {
|
|
4667
4766
|
return {
|
|
4668
4767
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4768
|
+
statusCode: 'number',
|
|
4669
4769
|
body: UnbindSlbResponseBody,
|
|
4670
4770
|
};
|
|
4671
4771
|
}
|
|
@@ -4730,12 +4830,14 @@ class UntagResourcesResponse extends $tea.Model {
|
|
|
4730
4830
|
static names() {
|
|
4731
4831
|
return {
|
|
4732
4832
|
headers: 'headers',
|
|
4833
|
+
statusCode: 'statusCode',
|
|
4733
4834
|
body: 'body',
|
|
4734
4835
|
};
|
|
4735
4836
|
}
|
|
4736
4837
|
static types() {
|
|
4737
4838
|
return {
|
|
4738
4839
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4840
|
+
statusCode: 'number',
|
|
4739
4841
|
body: UntagResourcesResponseBody,
|
|
4740
4842
|
};
|
|
4741
4843
|
}
|
|
@@ -4792,17 +4894,83 @@ class UpdateAppSecurityGroupResponse extends $tea.Model {
|
|
|
4792
4894
|
static names() {
|
|
4793
4895
|
return {
|
|
4794
4896
|
headers: 'headers',
|
|
4897
|
+
statusCode: 'statusCode',
|
|
4795
4898
|
body: 'body',
|
|
4796
4899
|
};
|
|
4797
4900
|
}
|
|
4798
4901
|
static types() {
|
|
4799
4902
|
return {
|
|
4800
4903
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4904
|
+
statusCode: 'number',
|
|
4801
4905
|
body: UpdateAppSecurityGroupResponseBody,
|
|
4802
4906
|
};
|
|
4803
4907
|
}
|
|
4804
4908
|
}
|
|
4805
4909
|
exports.UpdateAppSecurityGroupResponse = UpdateAppSecurityGroupResponse;
|
|
4910
|
+
class UpdateApplicationDescriptionRequest extends $tea.Model {
|
|
4911
|
+
constructor(map) {
|
|
4912
|
+
super(map);
|
|
4913
|
+
}
|
|
4914
|
+
static names() {
|
|
4915
|
+
return {
|
|
4916
|
+
appDescription: 'AppDescription',
|
|
4917
|
+
appId: 'AppId',
|
|
4918
|
+
};
|
|
4919
|
+
}
|
|
4920
|
+
static types() {
|
|
4921
|
+
return {
|
|
4922
|
+
appDescription: 'string',
|
|
4923
|
+
appId: 'string',
|
|
4924
|
+
};
|
|
4925
|
+
}
|
|
4926
|
+
}
|
|
4927
|
+
exports.UpdateApplicationDescriptionRequest = UpdateApplicationDescriptionRequest;
|
|
4928
|
+
class UpdateApplicationDescriptionResponseBody extends $tea.Model {
|
|
4929
|
+
constructor(map) {
|
|
4930
|
+
super(map);
|
|
4931
|
+
}
|
|
4932
|
+
static names() {
|
|
4933
|
+
return {
|
|
4934
|
+
code: 'Code',
|
|
4935
|
+
errorCode: 'ErrorCode',
|
|
4936
|
+
message: 'Message',
|
|
4937
|
+
requestId: 'RequestId',
|
|
4938
|
+
success: 'Success',
|
|
4939
|
+
traceId: 'TraceId',
|
|
4940
|
+
};
|
|
4941
|
+
}
|
|
4942
|
+
static types() {
|
|
4943
|
+
return {
|
|
4944
|
+
code: 'string',
|
|
4945
|
+
errorCode: 'string',
|
|
4946
|
+
message: 'string',
|
|
4947
|
+
requestId: 'string',
|
|
4948
|
+
success: 'boolean',
|
|
4949
|
+
traceId: 'string',
|
|
4950
|
+
};
|
|
4951
|
+
}
|
|
4952
|
+
}
|
|
4953
|
+
exports.UpdateApplicationDescriptionResponseBody = UpdateApplicationDescriptionResponseBody;
|
|
4954
|
+
class UpdateApplicationDescriptionResponse extends $tea.Model {
|
|
4955
|
+
constructor(map) {
|
|
4956
|
+
super(map);
|
|
4957
|
+
}
|
|
4958
|
+
static names() {
|
|
4959
|
+
return {
|
|
4960
|
+
headers: 'headers',
|
|
4961
|
+
statusCode: 'statusCode',
|
|
4962
|
+
body: 'body',
|
|
4963
|
+
};
|
|
4964
|
+
}
|
|
4965
|
+
static types() {
|
|
4966
|
+
return {
|
|
4967
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4968
|
+
statusCode: 'number',
|
|
4969
|
+
body: UpdateApplicationDescriptionResponseBody,
|
|
4970
|
+
};
|
|
4971
|
+
}
|
|
4972
|
+
}
|
|
4973
|
+
exports.UpdateApplicationDescriptionResponse = UpdateApplicationDescriptionResponse;
|
|
4806
4974
|
class UpdateApplicationScalingRuleRequest extends $tea.Model {
|
|
4807
4975
|
constructor(map) {
|
|
4808
4976
|
super(map);
|
|
@@ -4856,17 +5024,83 @@ class UpdateApplicationScalingRuleResponse extends $tea.Model {
|
|
|
4856
5024
|
static names() {
|
|
4857
5025
|
return {
|
|
4858
5026
|
headers: 'headers',
|
|
5027
|
+
statusCode: 'statusCode',
|
|
4859
5028
|
body: 'body',
|
|
4860
5029
|
};
|
|
4861
5030
|
}
|
|
4862
5031
|
static types() {
|
|
4863
5032
|
return {
|
|
4864
5033
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5034
|
+
statusCode: 'number',
|
|
4865
5035
|
body: UpdateApplicationScalingRuleResponseBody,
|
|
4866
5036
|
};
|
|
4867
5037
|
}
|
|
4868
5038
|
}
|
|
4869
5039
|
exports.UpdateApplicationScalingRuleResponse = UpdateApplicationScalingRuleResponse;
|
|
5040
|
+
class UpdateApplicationVswitchesRequest extends $tea.Model {
|
|
5041
|
+
constructor(map) {
|
|
5042
|
+
super(map);
|
|
5043
|
+
}
|
|
5044
|
+
static names() {
|
|
5045
|
+
return {
|
|
5046
|
+
appId: 'AppId',
|
|
5047
|
+
vSwitchId: 'VSwitchId',
|
|
5048
|
+
};
|
|
5049
|
+
}
|
|
5050
|
+
static types() {
|
|
5051
|
+
return {
|
|
5052
|
+
appId: 'string',
|
|
5053
|
+
vSwitchId: 'string',
|
|
5054
|
+
};
|
|
5055
|
+
}
|
|
5056
|
+
}
|
|
5057
|
+
exports.UpdateApplicationVswitchesRequest = UpdateApplicationVswitchesRequest;
|
|
5058
|
+
class UpdateApplicationVswitchesResponseBody extends $tea.Model {
|
|
5059
|
+
constructor(map) {
|
|
5060
|
+
super(map);
|
|
5061
|
+
}
|
|
5062
|
+
static names() {
|
|
5063
|
+
return {
|
|
5064
|
+
code: 'Code',
|
|
5065
|
+
errorCode: 'ErrorCode',
|
|
5066
|
+
message: 'Message',
|
|
5067
|
+
requestId: 'RequestId',
|
|
5068
|
+
success: 'Success',
|
|
5069
|
+
traceId: 'TraceId',
|
|
5070
|
+
};
|
|
5071
|
+
}
|
|
5072
|
+
static types() {
|
|
5073
|
+
return {
|
|
5074
|
+
code: 'string',
|
|
5075
|
+
errorCode: 'string',
|
|
5076
|
+
message: 'string',
|
|
5077
|
+
requestId: 'string',
|
|
5078
|
+
success: 'boolean',
|
|
5079
|
+
traceId: 'string',
|
|
5080
|
+
};
|
|
5081
|
+
}
|
|
5082
|
+
}
|
|
5083
|
+
exports.UpdateApplicationVswitchesResponseBody = UpdateApplicationVswitchesResponseBody;
|
|
5084
|
+
class UpdateApplicationVswitchesResponse extends $tea.Model {
|
|
5085
|
+
constructor(map) {
|
|
5086
|
+
super(map);
|
|
5087
|
+
}
|
|
5088
|
+
static names() {
|
|
5089
|
+
return {
|
|
5090
|
+
headers: 'headers',
|
|
5091
|
+
statusCode: 'statusCode',
|
|
5092
|
+
body: 'body',
|
|
5093
|
+
};
|
|
5094
|
+
}
|
|
5095
|
+
static types() {
|
|
5096
|
+
return {
|
|
5097
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5098
|
+
statusCode: 'number',
|
|
5099
|
+
body: UpdateApplicationVswitchesResponseBody,
|
|
5100
|
+
};
|
|
5101
|
+
}
|
|
5102
|
+
}
|
|
5103
|
+
exports.UpdateApplicationVswitchesResponse = UpdateApplicationVswitchesResponse;
|
|
4870
5104
|
class UpdateConfigMapRequest extends $tea.Model {
|
|
4871
5105
|
constructor(map) {
|
|
4872
5106
|
super(map);
|
|
@@ -4922,12 +5156,14 @@ class UpdateConfigMapResponse extends $tea.Model {
|
|
|
4922
5156
|
static names() {
|
|
4923
5157
|
return {
|
|
4924
5158
|
headers: 'headers',
|
|
5159
|
+
statusCode: 'statusCode',
|
|
4925
5160
|
body: 'body',
|
|
4926
5161
|
};
|
|
4927
5162
|
}
|
|
4928
5163
|
static types() {
|
|
4929
5164
|
return {
|
|
4930
5165
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5166
|
+
statusCode: 'number',
|
|
4931
5167
|
body: UpdateConfigMapResponseBody,
|
|
4932
5168
|
};
|
|
4933
5169
|
}
|
|
@@ -4990,12 +5226,14 @@ class UpdateGreyTagRouteResponse extends $tea.Model {
|
|
|
4990
5226
|
static names() {
|
|
4991
5227
|
return {
|
|
4992
5228
|
headers: 'headers',
|
|
5229
|
+
statusCode: 'statusCode',
|
|
4993
5230
|
body: 'body',
|
|
4994
5231
|
};
|
|
4995
5232
|
}
|
|
4996
5233
|
static types() {
|
|
4997
5234
|
return {
|
|
4998
5235
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5236
|
+
statusCode: 'number',
|
|
4999
5237
|
body: UpdateGreyTagRouteResponseBody,
|
|
5000
5238
|
};
|
|
5001
5239
|
}
|
|
@@ -5012,6 +5250,8 @@ class UpdateIngressRequest extends $tea.Model {
|
|
|
5012
5250
|
description: 'Description',
|
|
5013
5251
|
ingressId: 'IngressId',
|
|
5014
5252
|
listenerPort: 'ListenerPort',
|
|
5253
|
+
listenerProtocol: 'ListenerProtocol',
|
|
5254
|
+
loadBalanceType: 'LoadBalanceType',
|
|
5015
5255
|
rules: 'Rules',
|
|
5016
5256
|
};
|
|
5017
5257
|
}
|
|
@@ -5022,6 +5262,8 @@ class UpdateIngressRequest extends $tea.Model {
|
|
|
5022
5262
|
description: 'string',
|
|
5023
5263
|
ingressId: 'number',
|
|
5024
5264
|
listenerPort: 'string',
|
|
5265
|
+
listenerProtocol: 'string',
|
|
5266
|
+
loadBalanceType: 'string',
|
|
5025
5267
|
rules: 'string',
|
|
5026
5268
|
};
|
|
5027
5269
|
}
|
|
@@ -5062,12 +5304,14 @@ class UpdateIngressResponse extends $tea.Model {
|
|
|
5062
5304
|
static names() {
|
|
5063
5305
|
return {
|
|
5064
5306
|
headers: 'headers',
|
|
5307
|
+
statusCode: 'statusCode',
|
|
5065
5308
|
body: 'body',
|
|
5066
5309
|
};
|
|
5067
5310
|
}
|
|
5068
5311
|
static types() {
|
|
5069
5312
|
return {
|
|
5070
5313
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5314
|
+
statusCode: 'number',
|
|
5071
5315
|
body: UpdateIngressResponseBody,
|
|
5072
5316
|
};
|
|
5073
5317
|
}
|
|
@@ -5128,12 +5372,14 @@ class UpdateNamespaceResponse extends $tea.Model {
|
|
|
5128
5372
|
static names() {
|
|
5129
5373
|
return {
|
|
5130
5374
|
headers: 'headers',
|
|
5375
|
+
statusCode: 'statusCode',
|
|
5131
5376
|
body: 'body',
|
|
5132
5377
|
};
|
|
5133
5378
|
}
|
|
5134
5379
|
static types() {
|
|
5135
5380
|
return {
|
|
5136
5381
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5382
|
+
statusCode: 'number',
|
|
5137
5383
|
body: UpdateNamespaceResponseBody,
|
|
5138
5384
|
};
|
|
5139
5385
|
}
|
|
@@ -5190,85 +5436,19 @@ class UpdateNamespaceVpcResponse extends $tea.Model {
|
|
|
5190
5436
|
static names() {
|
|
5191
5437
|
return {
|
|
5192
5438
|
headers: 'headers',
|
|
5439
|
+
statusCode: 'statusCode',
|
|
5193
5440
|
body: 'body',
|
|
5194
5441
|
};
|
|
5195
5442
|
}
|
|
5196
5443
|
static types() {
|
|
5197
5444
|
return {
|
|
5198
5445
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5446
|
+
statusCode: 'number',
|
|
5199
5447
|
body: UpdateNamespaceVpcResponseBody,
|
|
5200
5448
|
};
|
|
5201
5449
|
}
|
|
5202
5450
|
}
|
|
5203
5451
|
exports.UpdateNamespaceVpcResponse = UpdateNamespaceVpcResponse;
|
|
5204
|
-
class UploadFilesRequest extends $tea.Model {
|
|
5205
|
-
constructor(map) {
|
|
5206
|
-
super(map);
|
|
5207
|
-
}
|
|
5208
|
-
static names() {
|
|
5209
|
-
return {
|
|
5210
|
-
appId: 'AppId',
|
|
5211
|
-
cloudUrl: 'CloudUrl',
|
|
5212
|
-
instanceId: 'InstanceId',
|
|
5213
|
-
localpath: 'Localpath',
|
|
5214
|
-
};
|
|
5215
|
-
}
|
|
5216
|
-
static types() {
|
|
5217
|
-
return {
|
|
5218
|
-
appId: 'string',
|
|
5219
|
-
cloudUrl: 'string',
|
|
5220
|
-
instanceId: 'string',
|
|
5221
|
-
localpath: 'string',
|
|
5222
|
-
};
|
|
5223
|
-
}
|
|
5224
|
-
}
|
|
5225
|
-
exports.UploadFilesRequest = UploadFilesRequest;
|
|
5226
|
-
class UploadFilesResponseBody extends $tea.Model {
|
|
5227
|
-
constructor(map) {
|
|
5228
|
-
super(map);
|
|
5229
|
-
}
|
|
5230
|
-
static names() {
|
|
5231
|
-
return {
|
|
5232
|
-
code: 'Code',
|
|
5233
|
-
data: 'Data',
|
|
5234
|
-
errorCode: 'ErrorCode',
|
|
5235
|
-
message: 'Message',
|
|
5236
|
-
requestId: 'RequestId',
|
|
5237
|
-
success: 'Success',
|
|
5238
|
-
traceId: 'TraceId',
|
|
5239
|
-
};
|
|
5240
|
-
}
|
|
5241
|
-
static types() {
|
|
5242
|
-
return {
|
|
5243
|
-
code: 'string',
|
|
5244
|
-
data: 'string',
|
|
5245
|
-
errorCode: 'string',
|
|
5246
|
-
message: 'string',
|
|
5247
|
-
requestId: 'string',
|
|
5248
|
-
success: 'boolean',
|
|
5249
|
-
traceId: 'string',
|
|
5250
|
-
};
|
|
5251
|
-
}
|
|
5252
|
-
}
|
|
5253
|
-
exports.UploadFilesResponseBody = UploadFilesResponseBody;
|
|
5254
|
-
class UploadFilesResponse extends $tea.Model {
|
|
5255
|
-
constructor(map) {
|
|
5256
|
-
super(map);
|
|
5257
|
-
}
|
|
5258
|
-
static names() {
|
|
5259
|
-
return {
|
|
5260
|
-
headers: 'headers',
|
|
5261
|
-
body: 'body',
|
|
5262
|
-
};
|
|
5263
|
-
}
|
|
5264
|
-
static types() {
|
|
5265
|
-
return {
|
|
5266
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5267
|
-
body: UploadFilesResponseBody,
|
|
5268
|
-
};
|
|
5269
|
-
}
|
|
5270
|
-
}
|
|
5271
|
-
exports.UploadFilesResponse = UploadFilesResponse;
|
|
5272
5452
|
class AbortAndRollbackChangeOrderResponseBodyData extends $tea.Model {
|
|
5273
5453
|
constructor(map) {
|
|
5274
5454
|
super(map);
|
|
@@ -5820,6 +6000,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
5820
6000
|
static names() {
|
|
5821
6001
|
return {
|
|
5822
6002
|
acrAssumeRoleArn: 'AcrAssumeRoleArn',
|
|
6003
|
+
acrInstanceId: 'AcrInstanceId',
|
|
5823
6004
|
appDescription: 'AppDescription',
|
|
5824
6005
|
appId: 'AppId',
|
|
5825
6006
|
appName: 'AppName',
|
|
@@ -5838,6 +6019,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
5838
6019
|
jarStartArgs: 'JarStartArgs',
|
|
5839
6020
|
jarStartOptions: 'JarStartOptions',
|
|
5840
6021
|
jdk: 'Jdk',
|
|
6022
|
+
kafkaConfigs: 'KafkaConfigs',
|
|
5841
6023
|
liveness: 'Liveness',
|
|
5842
6024
|
memory: 'Memory',
|
|
5843
6025
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
@@ -5858,6 +6040,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
5858
6040
|
phpConfigLocation: 'PhpConfigLocation',
|
|
5859
6041
|
postStart: 'PostStart',
|
|
5860
6042
|
preStop: 'PreStop',
|
|
6043
|
+
programmingLanguage: 'ProgrammingLanguage',
|
|
5861
6044
|
readiness: 'Readiness',
|
|
5862
6045
|
regionId: 'RegionId',
|
|
5863
6046
|
replicas: 'Replicas',
|
|
@@ -5877,6 +6060,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
5877
6060
|
static types() {
|
|
5878
6061
|
return {
|
|
5879
6062
|
acrAssumeRoleArn: 'string',
|
|
6063
|
+
acrInstanceId: 'string',
|
|
5880
6064
|
appDescription: 'string',
|
|
5881
6065
|
appId: 'string',
|
|
5882
6066
|
appName: 'string',
|
|
@@ -5895,6 +6079,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
5895
6079
|
jarStartArgs: 'string',
|
|
5896
6080
|
jarStartOptions: 'string',
|
|
5897
6081
|
jdk: 'string',
|
|
6082
|
+
kafkaConfigs: 'string',
|
|
5898
6083
|
liveness: 'string',
|
|
5899
6084
|
memory: 'number',
|
|
5900
6085
|
minReadyInstanceRatio: 'number',
|
|
@@ -5915,6 +6100,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
5915
6100
|
phpConfigLocation: 'string',
|
|
5916
6101
|
postStart: 'string',
|
|
5917
6102
|
preStop: 'string',
|
|
6103
|
+
programmingLanguage: 'string',
|
|
5918
6104
|
readiness: 'string',
|
|
5919
6105
|
regionId: 'string',
|
|
5920
6106
|
replicas: 'number',
|
|
@@ -6009,6 +6195,7 @@ class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.Model {
|
|
|
6009
6195
|
return {
|
|
6010
6196
|
createTimeStamp: 'CreateTimeStamp',
|
|
6011
6197
|
eip: 'Eip',
|
|
6198
|
+
finishTimeStamp: 'FinishTimeStamp',
|
|
6012
6199
|
groupId: 'GroupId',
|
|
6013
6200
|
imageUrl: 'ImageUrl',
|
|
6014
6201
|
instanceContainerIp: 'InstanceContainerIp',
|
|
@@ -6024,6 +6211,7 @@ class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.Model {
|
|
|
6024
6211
|
return {
|
|
6025
6212
|
createTimeStamp: 'number',
|
|
6026
6213
|
eip: 'string',
|
|
6214
|
+
finishTimeStamp: 'number',
|
|
6027
6215
|
groupId: 'string',
|
|
6028
6216
|
imageUrl: 'string',
|
|
6029
6217
|
instanceContainerIp: 'string',
|
|
@@ -6675,6 +6863,7 @@ class DescribeChangeOrderResponseBodyData extends $tea.Model {
|
|
|
6675
6863
|
}
|
|
6676
6864
|
static names() {
|
|
6677
6865
|
return {
|
|
6866
|
+
appId: 'AppId',
|
|
6678
6867
|
appName: 'AppName',
|
|
6679
6868
|
approvalId: 'ApprovalId',
|
|
6680
6869
|
auto: 'Auto',
|
|
@@ -6696,6 +6885,7 @@ class DescribeChangeOrderResponseBodyData extends $tea.Model {
|
|
|
6696
6885
|
}
|
|
6697
6886
|
static types() {
|
|
6698
6887
|
return {
|
|
6888
|
+
appId: 'string',
|
|
6699
6889
|
appName: 'string',
|
|
6700
6890
|
approvalId: 'string',
|
|
6701
6891
|
auto: 'boolean',
|
|
@@ -6991,6 +7181,7 @@ class DescribeGreyTagRouteResponseBodyData extends $tea.Model {
|
|
|
6991
7181
|
}
|
|
6992
7182
|
static names() {
|
|
6993
7183
|
return {
|
|
7184
|
+
appId: 'AppId',
|
|
6994
7185
|
createTime: 'CreateTime',
|
|
6995
7186
|
description: 'Description',
|
|
6996
7187
|
dubboRules: 'DubboRules',
|
|
@@ -7002,6 +7193,7 @@ class DescribeGreyTagRouteResponseBodyData extends $tea.Model {
|
|
|
7002
7193
|
}
|
|
7003
7194
|
static types() {
|
|
7004
7195
|
return {
|
|
7196
|
+
appId: 'string',
|
|
7005
7197
|
createTime: 'number',
|
|
7006
7198
|
description: 'string',
|
|
7007
7199
|
dubboRules: { 'type': 'array', 'itemType': DescribeGreyTagRouteResponseBodyDataDubboRules },
|
|
@@ -7068,6 +7260,8 @@ class DescribeIngressResponseBodyData extends $tea.Model {
|
|
|
7068
7260
|
description: 'Description',
|
|
7069
7261
|
id: 'Id',
|
|
7070
7262
|
listenerPort: 'ListenerPort',
|
|
7263
|
+
listenerProtocol: 'ListenerProtocol',
|
|
7264
|
+
loadBalanceType: 'LoadBalanceType',
|
|
7071
7265
|
name: 'Name',
|
|
7072
7266
|
namespaceId: 'NamespaceId',
|
|
7073
7267
|
rules: 'Rules',
|
|
@@ -7082,6 +7276,8 @@ class DescribeIngressResponseBodyData extends $tea.Model {
|
|
|
7082
7276
|
description: 'string',
|
|
7083
7277
|
id: 'number',
|
|
7084
7278
|
listenerPort: 'number',
|
|
7279
|
+
listenerProtocol: 'string',
|
|
7280
|
+
loadBalanceType: 'string',
|
|
7085
7281
|
name: 'string',
|
|
7086
7282
|
namespaceId: 'string',
|
|
7087
7283
|
rules: { 'type': 'array', 'itemType': DescribeIngressResponseBodyDataRules },
|
|
@@ -7182,6 +7378,8 @@ class DescribeNamespaceResourcesResponseBodyData extends $tea.Model {
|
|
|
7182
7378
|
appCount: 'AppCount',
|
|
7183
7379
|
belongRegion: 'BelongRegion',
|
|
7184
7380
|
description: 'Description',
|
|
7381
|
+
jumpServerAppId: 'JumpServerAppId',
|
|
7382
|
+
jumpServerIp: 'JumpServerIp',
|
|
7185
7383
|
lastChangeOrderId: 'LastChangeOrderId',
|
|
7186
7384
|
lastChangeOrderRunning: 'LastChangeOrderRunning',
|
|
7187
7385
|
lastChangeOrderStatus: 'LastChangeOrderStatus',
|
|
@@ -7202,6 +7400,8 @@ class DescribeNamespaceResourcesResponseBodyData extends $tea.Model {
|
|
|
7202
7400
|
appCount: 'number',
|
|
7203
7401
|
belongRegion: 'string',
|
|
7204
7402
|
description: 'string',
|
|
7403
|
+
jumpServerAppId: 'string',
|
|
7404
|
+
jumpServerIp: 'string',
|
|
7205
7405
|
lastChangeOrderId: 'string',
|
|
7206
7406
|
lastChangeOrderRunning: 'boolean',
|
|
7207
7407
|
lastChangeOrderStatus: 'string',
|
|
@@ -7465,10 +7665,8 @@ class ListAppServicesPageResponseBodyDataResult extends $tea.Model {
|
|
|
7465
7665
|
}
|
|
7466
7666
|
static names() {
|
|
7467
7667
|
return {
|
|
7468
|
-
clusterName: 'ClusterName',
|
|
7469
7668
|
edasAppId: 'EdasAppId',
|
|
7470
7669
|
edasAppName: 'EdasAppName',
|
|
7471
|
-
gmtModifyTime: 'GmtModifyTime',
|
|
7472
7670
|
group: 'Group',
|
|
7473
7671
|
instanceNum: 'InstanceNum',
|
|
7474
7672
|
serviceName: 'ServiceName',
|
|
@@ -7477,10 +7675,8 @@ class ListAppServicesPageResponseBodyDataResult extends $tea.Model {
|
|
|
7477
7675
|
}
|
|
7478
7676
|
static types() {
|
|
7479
7677
|
return {
|
|
7480
|
-
clusterName: 'string',
|
|
7481
7678
|
edasAppId: 'string',
|
|
7482
7679
|
edasAppName: 'string',
|
|
7483
|
-
gmtModifyTime: 'string',
|
|
7484
7680
|
group: 'string',
|
|
7485
7681
|
instanceNum: 'number',
|
|
7486
7682
|
serviceName: 'string',
|
|
@@ -7863,6 +8059,8 @@ class ListIngressesResponseBodyDataIngressList extends $tea.Model {
|
|
|
7863
8059
|
description: 'Description',
|
|
7864
8060
|
id: 'Id',
|
|
7865
8061
|
listenerPort: 'ListenerPort',
|
|
8062
|
+
listenerProtocol: 'ListenerProtocol',
|
|
8063
|
+
loadBalanceType: 'LoadBalanceType',
|
|
7866
8064
|
name: 'Name',
|
|
7867
8065
|
namespaceId: 'NamespaceId',
|
|
7868
8066
|
slbId: 'SlbId',
|
|
@@ -7875,6 +8073,8 @@ class ListIngressesResponseBodyDataIngressList extends $tea.Model {
|
|
|
7875
8073
|
description: 'string',
|
|
7876
8074
|
id: 'number',
|
|
7877
8075
|
listenerPort: 'string',
|
|
8076
|
+
listenerProtocol: 'string',
|
|
8077
|
+
loadBalanceType: 'string',
|
|
7878
8078
|
name: 'string',
|
|
7879
8079
|
namespaceId: 'string',
|
|
7880
8080
|
slbId: 'string',
|
|
@@ -8787,6 +8987,18 @@ class Client extends openapi_client_1.default {
|
|
|
8787
8987
|
if (!tea_util_1.default.isUnset(request.jdk)) {
|
|
8788
8988
|
query["Jdk"] = request.jdk;
|
|
8789
8989
|
}
|
|
8990
|
+
if (!tea_util_1.default.isUnset(request.kafkaConfigs)) {
|
|
8991
|
+
query["KafkaConfigs"] = request.kafkaConfigs;
|
|
8992
|
+
}
|
|
8993
|
+
if (!tea_util_1.default.isUnset(request.kafkaEndpoint)) {
|
|
8994
|
+
query["KafkaEndpoint"] = request.kafkaEndpoint;
|
|
8995
|
+
}
|
|
8996
|
+
if (!tea_util_1.default.isUnset(request.kafkaInstanceId)) {
|
|
8997
|
+
query["KafkaInstanceId"] = request.kafkaInstanceId;
|
|
8998
|
+
}
|
|
8999
|
+
if (!tea_util_1.default.isUnset(request.kafkaLogfileConfig)) {
|
|
9000
|
+
query["KafkaLogfileConfig"] = request.kafkaLogfileConfig;
|
|
9001
|
+
}
|
|
8790
9002
|
if (!tea_util_1.default.isUnset(request.liveness)) {
|
|
8791
9003
|
query["Liveness"] = request.liveness;
|
|
8792
9004
|
}
|
|
@@ -8805,6 +9017,9 @@ class Client extends openapi_client_1.default {
|
|
|
8805
9017
|
if (!tea_util_1.default.isUnset(request.nasId)) {
|
|
8806
9018
|
query["NasId"] = request.nasId;
|
|
8807
9019
|
}
|
|
9020
|
+
if (!tea_util_1.default.isUnset(request.openCollectToKafka)) {
|
|
9021
|
+
query["OpenCollectToKafka"] = request.openCollectToKafka;
|
|
9022
|
+
}
|
|
8808
9023
|
if (!tea_util_1.default.isUnset(request.packageType)) {
|
|
8809
9024
|
query["PackageType"] = request.packageType;
|
|
8810
9025
|
}
|
|
@@ -8826,6 +9041,9 @@ class Client extends openapi_client_1.default {
|
|
|
8826
9041
|
if (!tea_util_1.default.isUnset(request.preStop)) {
|
|
8827
9042
|
query["PreStop"] = request.preStop;
|
|
8828
9043
|
}
|
|
9044
|
+
if (!tea_util_1.default.isUnset(request.programmingLanguage)) {
|
|
9045
|
+
query["ProgrammingLanguage"] = request.programmingLanguage;
|
|
9046
|
+
}
|
|
8829
9047
|
if (!tea_util_1.default.isUnset(request.readiness)) {
|
|
8830
9048
|
query["Readiness"] = request.readiness;
|
|
8831
9049
|
}
|
|
@@ -9047,6 +9265,12 @@ class Client extends openapi_client_1.default {
|
|
|
9047
9265
|
if (!tea_util_1.default.isUnset(request.listenerPort)) {
|
|
9048
9266
|
query["ListenerPort"] = request.listenerPort;
|
|
9049
9267
|
}
|
|
9268
|
+
if (!tea_util_1.default.isUnset(request.listenerProtocol)) {
|
|
9269
|
+
query["ListenerProtocol"] = request.listenerProtocol;
|
|
9270
|
+
}
|
|
9271
|
+
if (!tea_util_1.default.isUnset(request.loadBalanceType)) {
|
|
9272
|
+
query["LoadBalanceType"] = request.loadBalanceType;
|
|
9273
|
+
}
|
|
9050
9274
|
if (!tea_util_1.default.isUnset(request.namespaceId)) {
|
|
9051
9275
|
query["NamespaceId"] = request.namespaceId;
|
|
9052
9276
|
}
|
|
@@ -9336,6 +9560,18 @@ class Client extends openapi_client_1.default {
|
|
|
9336
9560
|
if (!tea_util_1.default.isUnset(request.jdk)) {
|
|
9337
9561
|
query["Jdk"] = request.jdk;
|
|
9338
9562
|
}
|
|
9563
|
+
if (!tea_util_1.default.isUnset(request.kafkaConfigs)) {
|
|
9564
|
+
query["KafkaConfigs"] = request.kafkaConfigs;
|
|
9565
|
+
}
|
|
9566
|
+
if (!tea_util_1.default.isUnset(request.kafkaEndpoint)) {
|
|
9567
|
+
query["KafkaEndpoint"] = request.kafkaEndpoint;
|
|
9568
|
+
}
|
|
9569
|
+
if (!tea_util_1.default.isUnset(request.kafkaInstanceId)) {
|
|
9570
|
+
query["KafkaInstanceId"] = request.kafkaInstanceId;
|
|
9571
|
+
}
|
|
9572
|
+
if (!tea_util_1.default.isUnset(request.kafkaLogfileConfig)) {
|
|
9573
|
+
query["KafkaLogfileConfig"] = request.kafkaLogfileConfig;
|
|
9574
|
+
}
|
|
9339
9575
|
if (!tea_util_1.default.isUnset(request.liveness)) {
|
|
9340
9576
|
query["Liveness"] = request.liveness;
|
|
9341
9577
|
}
|
|
@@ -9354,6 +9590,9 @@ class Client extends openapi_client_1.default {
|
|
|
9354
9590
|
if (!tea_util_1.default.isUnset(request.nasId)) {
|
|
9355
9591
|
query["NasId"] = request.nasId;
|
|
9356
9592
|
}
|
|
9593
|
+
if (!tea_util_1.default.isUnset(request.openCollectToKafka)) {
|
|
9594
|
+
query["OpenCollectToKafka"] = request.openCollectToKafka;
|
|
9595
|
+
}
|
|
9357
9596
|
if (!tea_util_1.default.isUnset(request.packageUrl)) {
|
|
9358
9597
|
query["PackageUrl"] = request.packageUrl;
|
|
9359
9598
|
}
|
|
@@ -10172,40 +10411,6 @@ class Client extends openapi_client_1.default {
|
|
|
10172
10411
|
});
|
|
10173
10412
|
return $tea.cast(await this.callApi(params, req, runtime), new DisableApplicationScalingRuleResponse({}));
|
|
10174
10413
|
}
|
|
10175
|
-
async downloadFiles(request) {
|
|
10176
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
10177
|
-
let headers = {};
|
|
10178
|
-
return await this.downloadFilesWithOptions(request, headers, runtime);
|
|
10179
|
-
}
|
|
10180
|
-
async downloadFilesWithOptions(request, headers, runtime) {
|
|
10181
|
-
tea_util_1.default.validateModel(request);
|
|
10182
|
-
let query = {};
|
|
10183
|
-
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
10184
|
-
query["AppId"] = request.appId;
|
|
10185
|
-
}
|
|
10186
|
-
if (!tea_util_1.default.isUnset(request.instanceId)) {
|
|
10187
|
-
query["InstanceId"] = request.instanceId;
|
|
10188
|
-
}
|
|
10189
|
-
if (!tea_util_1.default.isUnset(request.localpath)) {
|
|
10190
|
-
query["Localpath"] = request.localpath;
|
|
10191
|
-
}
|
|
10192
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
10193
|
-
headers: headers,
|
|
10194
|
-
query: openapi_util_1.default.query(query),
|
|
10195
|
-
});
|
|
10196
|
-
let params = new $OpenApi.Params({
|
|
10197
|
-
action: "DownloadFiles",
|
|
10198
|
-
version: "2019-05-06",
|
|
10199
|
-
protocol: "HTTPS",
|
|
10200
|
-
pathname: `/pop/v1/sam/app/downloadFiles`,
|
|
10201
|
-
method: "POST",
|
|
10202
|
-
authType: "AK",
|
|
10203
|
-
style: "ROA",
|
|
10204
|
-
reqBodyType: "json",
|
|
10205
|
-
bodyType: "json",
|
|
10206
|
-
});
|
|
10207
|
-
return $tea.cast(await this.callApi(params, req, runtime), new DownloadFilesResponse({}));
|
|
10208
|
-
}
|
|
10209
10414
|
async enableApplicationScalingRule(request) {
|
|
10210
10415
|
let runtime = new $Util.RuntimeOptions({});
|
|
10211
10416
|
let headers = {};
|
|
@@ -11170,6 +11375,37 @@ class Client extends openapi_client_1.default {
|
|
|
11170
11375
|
});
|
|
11171
11376
|
return $tea.cast(await this.callApi(params, req, runtime), new UpdateAppSecurityGroupResponse({}));
|
|
11172
11377
|
}
|
|
11378
|
+
async updateApplicationDescription(request) {
|
|
11379
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11380
|
+
let headers = {};
|
|
11381
|
+
return await this.updateApplicationDescriptionWithOptions(request, headers, runtime);
|
|
11382
|
+
}
|
|
11383
|
+
async updateApplicationDescriptionWithOptions(request, headers, runtime) {
|
|
11384
|
+
tea_util_1.default.validateModel(request);
|
|
11385
|
+
let query = {};
|
|
11386
|
+
if (!tea_util_1.default.isUnset(request.appDescription)) {
|
|
11387
|
+
query["AppDescription"] = request.appDescription;
|
|
11388
|
+
}
|
|
11389
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
11390
|
+
query["AppId"] = request.appId;
|
|
11391
|
+
}
|
|
11392
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11393
|
+
headers: headers,
|
|
11394
|
+
query: openapi_util_1.default.query(query),
|
|
11395
|
+
});
|
|
11396
|
+
let params = new $OpenApi.Params({
|
|
11397
|
+
action: "UpdateApplicationDescription",
|
|
11398
|
+
version: "2019-05-06",
|
|
11399
|
+
protocol: "HTTPS",
|
|
11400
|
+
pathname: `/pop/v1/sam/app/updateAppDescription`,
|
|
11401
|
+
method: "PUT",
|
|
11402
|
+
authType: "AK",
|
|
11403
|
+
style: "ROA",
|
|
11404
|
+
reqBodyType: "json",
|
|
11405
|
+
bodyType: "json",
|
|
11406
|
+
});
|
|
11407
|
+
return $tea.cast(await this.callApi(params, req, runtime), new UpdateApplicationDescriptionResponse({}));
|
|
11408
|
+
}
|
|
11173
11409
|
async updateApplicationScalingRule(request) {
|
|
11174
11410
|
let runtime = new $Util.RuntimeOptions({});
|
|
11175
11411
|
let headers = {};
|
|
@@ -11213,6 +11449,37 @@ class Client extends openapi_client_1.default {
|
|
|
11213
11449
|
});
|
|
11214
11450
|
return $tea.cast(await this.callApi(params, req, runtime), new UpdateApplicationScalingRuleResponse({}));
|
|
11215
11451
|
}
|
|
11452
|
+
async updateApplicationVswitches(request) {
|
|
11453
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11454
|
+
let headers = {};
|
|
11455
|
+
return await this.updateApplicationVswitchesWithOptions(request, headers, runtime);
|
|
11456
|
+
}
|
|
11457
|
+
async updateApplicationVswitchesWithOptions(request, headers, runtime) {
|
|
11458
|
+
tea_util_1.default.validateModel(request);
|
|
11459
|
+
let query = {};
|
|
11460
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
11461
|
+
query["AppId"] = request.appId;
|
|
11462
|
+
}
|
|
11463
|
+
if (!tea_util_1.default.isUnset(request.vSwitchId)) {
|
|
11464
|
+
query["VSwitchId"] = request.vSwitchId;
|
|
11465
|
+
}
|
|
11466
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
11467
|
+
headers: headers,
|
|
11468
|
+
query: openapi_util_1.default.query(query),
|
|
11469
|
+
});
|
|
11470
|
+
let params = new $OpenApi.Params({
|
|
11471
|
+
action: "UpdateApplicationVswitches",
|
|
11472
|
+
version: "2019-05-06",
|
|
11473
|
+
protocol: "HTTPS",
|
|
11474
|
+
pathname: `/pop/v1/sam/app/updateAppVswitches`,
|
|
11475
|
+
method: "PUT",
|
|
11476
|
+
authType: "AK",
|
|
11477
|
+
style: "ROA",
|
|
11478
|
+
reqBodyType: "json",
|
|
11479
|
+
bodyType: "json",
|
|
11480
|
+
});
|
|
11481
|
+
return $tea.cast(await this.callApi(params, req, runtime), new UpdateApplicationVswitchesResponse({}));
|
|
11482
|
+
}
|
|
11216
11483
|
async updateConfigMap(request) {
|
|
11217
11484
|
let runtime = new $Util.RuntimeOptions({});
|
|
11218
11485
|
let headers = {};
|
|
@@ -11309,6 +11576,12 @@ class Client extends openapi_client_1.default {
|
|
|
11309
11576
|
if (!tea_util_1.default.isUnset(request.listenerPort)) {
|
|
11310
11577
|
query["ListenerPort"] = request.listenerPort;
|
|
11311
11578
|
}
|
|
11579
|
+
if (!tea_util_1.default.isUnset(request.listenerProtocol)) {
|
|
11580
|
+
query["ListenerProtocol"] = request.listenerProtocol;
|
|
11581
|
+
}
|
|
11582
|
+
if (!tea_util_1.default.isUnset(request.loadBalanceType)) {
|
|
11583
|
+
query["LoadBalanceType"] = request.loadBalanceType;
|
|
11584
|
+
}
|
|
11312
11585
|
let body = {};
|
|
11313
11586
|
if (!tea_util_1.default.isUnset(request.rules)) {
|
|
11314
11587
|
body["Rules"] = request.rules;
|
|
@@ -11396,43 +11669,6 @@ class Client extends openapi_client_1.default {
|
|
|
11396
11669
|
});
|
|
11397
11670
|
return $tea.cast(await this.callApi(params, req, runtime), new UpdateNamespaceVpcResponse({}));
|
|
11398
11671
|
}
|
|
11399
|
-
async uploadFiles(request) {
|
|
11400
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
11401
|
-
let headers = {};
|
|
11402
|
-
return await this.uploadFilesWithOptions(request, headers, runtime);
|
|
11403
|
-
}
|
|
11404
|
-
async uploadFilesWithOptions(request, headers, runtime) {
|
|
11405
|
-
tea_util_1.default.validateModel(request);
|
|
11406
|
-
let query = {};
|
|
11407
|
-
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
11408
|
-
query["AppId"] = request.appId;
|
|
11409
|
-
}
|
|
11410
|
-
if (!tea_util_1.default.isUnset(request.cloudUrl)) {
|
|
11411
|
-
query["CloudUrl"] = request.cloudUrl;
|
|
11412
|
-
}
|
|
11413
|
-
if (!tea_util_1.default.isUnset(request.instanceId)) {
|
|
11414
|
-
query["InstanceId"] = request.instanceId;
|
|
11415
|
-
}
|
|
11416
|
-
if (!tea_util_1.default.isUnset(request.localpath)) {
|
|
11417
|
-
query["Localpath"] = request.localpath;
|
|
11418
|
-
}
|
|
11419
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
11420
|
-
headers: headers,
|
|
11421
|
-
query: openapi_util_1.default.query(query),
|
|
11422
|
-
});
|
|
11423
|
-
let params = new $OpenApi.Params({
|
|
11424
|
-
action: "UploadFiles",
|
|
11425
|
-
version: "2019-05-06",
|
|
11426
|
-
protocol: "HTTPS",
|
|
11427
|
-
pathname: `/pop/v1/sam/app/uploadFiles`,
|
|
11428
|
-
method: "POST",
|
|
11429
|
-
authType: "AK",
|
|
11430
|
-
style: "ROA",
|
|
11431
|
-
reqBodyType: "json",
|
|
11432
|
-
bodyType: "json",
|
|
11433
|
-
});
|
|
11434
|
-
return $tea.cast(await this.callApi(params, req, runtime), new UploadFilesResponse({}));
|
|
11435
|
-
}
|
|
11436
11672
|
}
|
|
11437
11673
|
exports.default = Client;
|
|
11438
11674
|
//# sourceMappingURL=client.js.map
|