@alicloud/sae20190506 1.18.16 → 1.19.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 +12 -2
- package/dist/client.js +48 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +68 -6
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -516,12 +516,16 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
516
516
|
jarStartArgs?: string;
|
|
517
517
|
jarStartOptions?: string;
|
|
518
518
|
jdk?: string;
|
|
519
|
+
kafkaEndpoint?: string;
|
|
520
|
+
kafkaInstanceId?: string;
|
|
521
|
+
kafkaLogfileConfig?: string;
|
|
519
522
|
liveness?: string;
|
|
520
523
|
memory?: number;
|
|
521
524
|
mountDesc?: string;
|
|
522
525
|
mountHost?: string;
|
|
523
526
|
namespaceId?: string;
|
|
524
527
|
nasId?: string;
|
|
528
|
+
openCollectToKafka?: boolean;
|
|
525
529
|
ossAkId?: string;
|
|
526
530
|
ossAkSecret?: string;
|
|
527
531
|
ossMountDescs?: string;
|
|
@@ -564,12 +568,16 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
564
568
|
jarStartArgs: 'JarStartArgs',
|
|
565
569
|
jarStartOptions: 'JarStartOptions',
|
|
566
570
|
jdk: 'Jdk',
|
|
571
|
+
kafkaEndpoint: 'KafkaEndpoint',
|
|
572
|
+
kafkaInstanceId: 'KafkaInstanceId',
|
|
573
|
+
kafkaLogfileConfig: 'KafkaLogfileConfig',
|
|
567
574
|
liveness: 'Liveness',
|
|
568
575
|
memory: 'Memory',
|
|
569
576
|
mountDesc: 'MountDesc',
|
|
570
577
|
mountHost: 'MountHost',
|
|
571
578
|
namespaceId: 'NamespaceId',
|
|
572
579
|
nasId: 'NasId',
|
|
580
|
+
openCollectToKafka: 'OpenCollectToKafka',
|
|
573
581
|
ossAkId: 'OssAkId',
|
|
574
582
|
ossAkSecret: 'OssAkSecret',
|
|
575
583
|
ossMountDescs: 'OssMountDescs',
|
|
@@ -615,12 +623,16 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
615
623
|
jarStartArgs: 'string',
|
|
616
624
|
jarStartOptions: 'string',
|
|
617
625
|
jdk: 'string',
|
|
626
|
+
kafkaEndpoint: 'string',
|
|
627
|
+
kafkaInstanceId: 'string',
|
|
628
|
+
kafkaLogfileConfig: 'string',
|
|
618
629
|
liveness: 'string',
|
|
619
630
|
memory: 'number',
|
|
620
631
|
mountDesc: 'string',
|
|
621
632
|
mountHost: 'string',
|
|
622
633
|
namespaceId: 'string',
|
|
623
634
|
nasId: 'string',
|
|
635
|
+
openCollectToKafka: 'boolean',
|
|
624
636
|
ossAkId: 'string',
|
|
625
637
|
ossAkSecret: 'string',
|
|
626
638
|
ossMountDescs: 'string',
|
|
@@ -1627,12 +1639,16 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
1627
1639
|
jarStartArgs?: string;
|
|
1628
1640
|
jarStartOptions?: string;
|
|
1629
1641
|
jdk?: string;
|
|
1642
|
+
kafkaEndpoint?: string;
|
|
1643
|
+
kafkaInstanceId?: string;
|
|
1644
|
+
kafkaLogfileConfig?: string;
|
|
1630
1645
|
liveness?: string;
|
|
1631
1646
|
minReadyInstanceRatio?: number;
|
|
1632
1647
|
minReadyInstances?: number;
|
|
1633
1648
|
mountDesc?: string;
|
|
1634
1649
|
mountHost?: string;
|
|
1635
1650
|
nasId?: string;
|
|
1651
|
+
openCollectToKafka?: boolean;
|
|
1636
1652
|
ossAkId?: string;
|
|
1637
1653
|
ossAkSecret?: string;
|
|
1638
1654
|
ossMountDescs?: string;
|
|
@@ -1672,12 +1688,16 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
1672
1688
|
jarStartArgs: 'JarStartArgs',
|
|
1673
1689
|
jarStartOptions: 'JarStartOptions',
|
|
1674
1690
|
jdk: 'Jdk',
|
|
1691
|
+
kafkaEndpoint: 'KafkaEndpoint',
|
|
1692
|
+
kafkaInstanceId: 'KafkaInstanceId',
|
|
1693
|
+
kafkaLogfileConfig: 'KafkaLogfileConfig',
|
|
1675
1694
|
liveness: 'Liveness',
|
|
1676
1695
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
1677
1696
|
minReadyInstances: 'MinReadyInstances',
|
|
1678
1697
|
mountDesc: 'MountDesc',
|
|
1679
1698
|
mountHost: 'MountHost',
|
|
1680
1699
|
nasId: 'NasId',
|
|
1700
|
+
openCollectToKafka: 'OpenCollectToKafka',
|
|
1681
1701
|
ossAkId: 'OssAkId',
|
|
1682
1702
|
ossAkSecret: 'OssAkSecret',
|
|
1683
1703
|
ossMountDescs: 'OssMountDescs',
|
|
@@ -1720,12 +1740,16 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
1720
1740
|
jarStartArgs: 'string',
|
|
1721
1741
|
jarStartOptions: 'string',
|
|
1722
1742
|
jdk: 'string',
|
|
1743
|
+
kafkaEndpoint: 'string',
|
|
1744
|
+
kafkaInstanceId: 'string',
|
|
1745
|
+
kafkaLogfileConfig: 'string',
|
|
1723
1746
|
liveness: 'string',
|
|
1724
1747
|
minReadyInstanceRatio: 'number',
|
|
1725
1748
|
minReadyInstances: 'number',
|
|
1726
1749
|
mountDesc: 'string',
|
|
1727
1750
|
mountHost: 'string',
|
|
1728
1751
|
nasId: 'string',
|
|
1752
|
+
openCollectToKafka: 'boolean',
|
|
1729
1753
|
ossAkId: 'string',
|
|
1730
1754
|
ossAkSecret: 'string',
|
|
1731
1755
|
ossMountDescs: 'string',
|
|
@@ -7399,6 +7423,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
7399
7423
|
jarStartArgs?: string;
|
|
7400
7424
|
jarStartOptions?: string;
|
|
7401
7425
|
jdk?: string;
|
|
7426
|
+
kafkaConfigs?: string;
|
|
7402
7427
|
liveness?: string;
|
|
7403
7428
|
memory?: number;
|
|
7404
7429
|
minReadyInstanceRatio?: number;
|
|
@@ -7454,6 +7479,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
7454
7479
|
jarStartArgs: 'JarStartArgs',
|
|
7455
7480
|
jarStartOptions: 'JarStartOptions',
|
|
7456
7481
|
jdk: 'Jdk',
|
|
7482
|
+
kafkaConfigs: 'KafkaConfigs',
|
|
7457
7483
|
liveness: 'Liveness',
|
|
7458
7484
|
memory: 'Memory',
|
|
7459
7485
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
@@ -7512,6 +7538,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
7512
7538
|
jarStartArgs: 'string',
|
|
7513
7539
|
jarStartOptions: 'string',
|
|
7514
7540
|
jdk: 'string',
|
|
7541
|
+
kafkaConfigs: 'string',
|
|
7515
7542
|
liveness: 'string',
|
|
7516
7543
|
memory: 'number',
|
|
7517
7544
|
minReadyInstanceRatio: 'number',
|
|
@@ -7649,6 +7676,7 @@ export class DescribeApplicationImageResponseBodyData extends $tea.Model {
|
|
|
7649
7676
|
export class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.Model {
|
|
7650
7677
|
createTimeStamp?: number;
|
|
7651
7678
|
eip?: string;
|
|
7679
|
+
finishTimeStamp?: number;
|
|
7652
7680
|
groupId?: string;
|
|
7653
7681
|
imageUrl?: string;
|
|
7654
7682
|
instanceContainerIp?: string;
|
|
@@ -7662,6 +7690,7 @@ export class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.
|
|
|
7662
7690
|
return {
|
|
7663
7691
|
createTimeStamp: 'CreateTimeStamp',
|
|
7664
7692
|
eip: 'Eip',
|
|
7693
|
+
finishTimeStamp: 'FinishTimeStamp',
|
|
7665
7694
|
groupId: 'GroupId',
|
|
7666
7695
|
imageUrl: 'ImageUrl',
|
|
7667
7696
|
instanceContainerIp: 'InstanceContainerIp',
|
|
@@ -7678,6 +7707,7 @@ export class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.
|
|
|
7678
7707
|
return {
|
|
7679
7708
|
createTimeStamp: 'number',
|
|
7680
7709
|
eip: 'string',
|
|
7710
|
+
finishTimeStamp: 'number',
|
|
7681
7711
|
groupId: 'string',
|
|
7682
7712
|
imageUrl: 'string',
|
|
7683
7713
|
instanceContainerIp: 'string',
|
|
@@ -8509,6 +8539,7 @@ export class DescribeChangeOrderResponseBodyDataPipelines extends $tea.Model {
|
|
|
8509
8539
|
}
|
|
8510
8540
|
|
|
8511
8541
|
export class DescribeChangeOrderResponseBodyData extends $tea.Model {
|
|
8542
|
+
appId?: string;
|
|
8512
8543
|
appName?: string;
|
|
8513
8544
|
approvalId?: string;
|
|
8514
8545
|
auto?: boolean;
|
|
@@ -8528,6 +8559,7 @@ export class DescribeChangeOrderResponseBodyData extends $tea.Model {
|
|
|
8528
8559
|
supportRollback?: boolean;
|
|
8529
8560
|
static names(): { [key: string]: string } {
|
|
8530
8561
|
return {
|
|
8562
|
+
appId: 'AppId',
|
|
8531
8563
|
appName: 'AppName',
|
|
8532
8564
|
approvalId: 'ApprovalId',
|
|
8533
8565
|
auto: 'Auto',
|
|
@@ -8550,6 +8582,7 @@ export class DescribeChangeOrderResponseBodyData extends $tea.Model {
|
|
|
8550
8582
|
|
|
8551
8583
|
static types(): { [key: string]: any } {
|
|
8552
8584
|
return {
|
|
8585
|
+
appId: 'string',
|
|
8553
8586
|
appName: 'string',
|
|
8554
8587
|
approvalId: 'string',
|
|
8555
8588
|
auto: 'boolean',
|
|
@@ -8918,6 +8951,7 @@ export class DescribeGreyTagRouteResponseBodyDataScRules extends $tea.Model {
|
|
|
8918
8951
|
}
|
|
8919
8952
|
|
|
8920
8953
|
export class DescribeGreyTagRouteResponseBodyData extends $tea.Model {
|
|
8954
|
+
appId?: string;
|
|
8921
8955
|
createTime?: number;
|
|
8922
8956
|
description?: string;
|
|
8923
8957
|
dubboRules?: DescribeGreyTagRouteResponseBodyDataDubboRules[];
|
|
@@ -8927,6 +8961,7 @@ export class DescribeGreyTagRouteResponseBodyData extends $tea.Model {
|
|
|
8927
8961
|
updateTime?: number;
|
|
8928
8962
|
static names(): { [key: string]: string } {
|
|
8929
8963
|
return {
|
|
8964
|
+
appId: 'AppId',
|
|
8930
8965
|
createTime: 'CreateTime',
|
|
8931
8966
|
description: 'Description',
|
|
8932
8967
|
dubboRules: 'DubboRules',
|
|
@@ -8939,6 +8974,7 @@ export class DescribeGreyTagRouteResponseBodyData extends $tea.Model {
|
|
|
8939
8974
|
|
|
8940
8975
|
static types(): { [key: string]: any } {
|
|
8941
8976
|
return {
|
|
8977
|
+
appId: 'string',
|
|
8942
8978
|
createTime: 'number',
|
|
8943
8979
|
description: 'string',
|
|
8944
8980
|
dubboRules: { 'type': 'array', 'itemType': DescribeGreyTagRouteResponseBodyDataDubboRules },
|
|
@@ -9539,20 +9575,16 @@ export class ListAppEventsResponseBodyData extends $tea.Model {
|
|
|
9539
9575
|
}
|
|
9540
9576
|
|
|
9541
9577
|
export class ListAppServicesPageResponseBodyDataResult extends $tea.Model {
|
|
9542
|
-
clusterName?: string;
|
|
9543
9578
|
edasAppId?: string;
|
|
9544
9579
|
edasAppName?: string;
|
|
9545
|
-
gmtModifyTime?: string;
|
|
9546
9580
|
group?: string;
|
|
9547
9581
|
instanceNum?: number;
|
|
9548
9582
|
serviceName?: string;
|
|
9549
9583
|
version?: string;
|
|
9550
9584
|
static names(): { [key: string]: string } {
|
|
9551
9585
|
return {
|
|
9552
|
-
clusterName: 'ClusterName',
|
|
9553
9586
|
edasAppId: 'EdasAppId',
|
|
9554
9587
|
edasAppName: 'EdasAppName',
|
|
9555
|
-
gmtModifyTime: 'GmtModifyTime',
|
|
9556
9588
|
group: 'Group',
|
|
9557
9589
|
instanceNum: 'InstanceNum',
|
|
9558
9590
|
serviceName: 'ServiceName',
|
|
@@ -9562,10 +9594,8 @@ export class ListAppServicesPageResponseBodyDataResult extends $tea.Model {
|
|
|
9562
9594
|
|
|
9563
9595
|
static types(): { [key: string]: any } {
|
|
9564
9596
|
return {
|
|
9565
|
-
clusterName: 'string',
|
|
9566
9597
|
edasAppId: 'string',
|
|
9567
9598
|
edasAppName: 'string',
|
|
9568
|
-
gmtModifyTime: 'string',
|
|
9569
9599
|
group: 'string',
|
|
9570
9600
|
instanceNum: 'number',
|
|
9571
9601
|
serviceName: 'string',
|
|
@@ -11209,6 +11239,18 @@ export default class Client extends OpenApi {
|
|
|
11209
11239
|
query["Jdk"] = request.jdk;
|
|
11210
11240
|
}
|
|
11211
11241
|
|
|
11242
|
+
if (!Util.isUnset(request.kafkaEndpoint)) {
|
|
11243
|
+
query["KafkaEndpoint"] = request.kafkaEndpoint;
|
|
11244
|
+
}
|
|
11245
|
+
|
|
11246
|
+
if (!Util.isUnset(request.kafkaInstanceId)) {
|
|
11247
|
+
query["KafkaInstanceId"] = request.kafkaInstanceId;
|
|
11248
|
+
}
|
|
11249
|
+
|
|
11250
|
+
if (!Util.isUnset(request.kafkaLogfileConfig)) {
|
|
11251
|
+
query["KafkaLogfileConfig"] = request.kafkaLogfileConfig;
|
|
11252
|
+
}
|
|
11253
|
+
|
|
11212
11254
|
if (!Util.isUnset(request.liveness)) {
|
|
11213
11255
|
query["Liveness"] = request.liveness;
|
|
11214
11256
|
}
|
|
@@ -11233,6 +11275,10 @@ export default class Client extends OpenApi {
|
|
|
11233
11275
|
query["NasId"] = request.nasId;
|
|
11234
11276
|
}
|
|
11235
11277
|
|
|
11278
|
+
if (!Util.isUnset(request.openCollectToKafka)) {
|
|
11279
|
+
query["OpenCollectToKafka"] = request.openCollectToKafka;
|
|
11280
|
+
}
|
|
11281
|
+
|
|
11236
11282
|
if (!Util.isUnset(request.packageType)) {
|
|
11237
11283
|
query["PackageType"] = request.packageType;
|
|
11238
11284
|
}
|
|
@@ -11863,6 +11909,18 @@ export default class Client extends OpenApi {
|
|
|
11863
11909
|
query["Jdk"] = request.jdk;
|
|
11864
11910
|
}
|
|
11865
11911
|
|
|
11912
|
+
if (!Util.isUnset(request.kafkaEndpoint)) {
|
|
11913
|
+
query["KafkaEndpoint"] = request.kafkaEndpoint;
|
|
11914
|
+
}
|
|
11915
|
+
|
|
11916
|
+
if (!Util.isUnset(request.kafkaInstanceId)) {
|
|
11917
|
+
query["KafkaInstanceId"] = request.kafkaInstanceId;
|
|
11918
|
+
}
|
|
11919
|
+
|
|
11920
|
+
if (!Util.isUnset(request.kafkaLogfileConfig)) {
|
|
11921
|
+
query["KafkaLogfileConfig"] = request.kafkaLogfileConfig;
|
|
11922
|
+
}
|
|
11923
|
+
|
|
11866
11924
|
if (!Util.isUnset(request.liveness)) {
|
|
11867
11925
|
query["Liveness"] = request.liveness;
|
|
11868
11926
|
}
|
|
@@ -11887,6 +11945,10 @@ export default class Client extends OpenApi {
|
|
|
11887
11945
|
query["NasId"] = request.nasId;
|
|
11888
11946
|
}
|
|
11889
11947
|
|
|
11948
|
+
if (!Util.isUnset(request.openCollectToKafka)) {
|
|
11949
|
+
query["OpenCollectToKafka"] = request.openCollectToKafka;
|
|
11950
|
+
}
|
|
11951
|
+
|
|
11890
11952
|
if (!Util.isUnset(request.packageUrl)) {
|
|
11891
11953
|
query["PackageUrl"] = request.packageUrl;
|
|
11892
11954
|
}
|