@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/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
English | [简体中文](README-CN.md)
|
|
2
|
+

|
|
3
|
+
|
|
4
|
+
# Alibaba Cloud sae SDK for NodeJS
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
If you use `npm` to manage your dependence, you can use the following command:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install @alicloud/sae20190506 -S
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Issues
|
|
14
|
+
[Opening an Issue](https://github.com/aliyun/alibabacloud-typescript-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
[Usage Document](https://github.com/aliyun/alibabacloud-typescript-sdk/blob/master/docs/Usage-EN.md#quick-examples)
|
|
18
|
+
|
|
19
|
+
## References
|
|
20
|
+
* [Latest Release](https://github.com/aliyun/alibabacloud-typescript-sdk/)
|
|
21
|
+
|
|
22
|
+
## License
|
|
23
|
+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
|
24
|
+
|
|
25
|
+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
package/dist/client.d.ts
CHANGED
|
@@ -300,12 +300,16 @@ export declare class CreateApplicationRequest extends $tea.Model {
|
|
|
300
300
|
jarStartArgs?: string;
|
|
301
301
|
jarStartOptions?: string;
|
|
302
302
|
jdk?: string;
|
|
303
|
+
kafkaEndpoint?: string;
|
|
304
|
+
kafkaInstanceId?: string;
|
|
305
|
+
kafkaLogfileConfig?: string;
|
|
303
306
|
liveness?: string;
|
|
304
307
|
memory?: number;
|
|
305
308
|
mountDesc?: string;
|
|
306
309
|
mountHost?: string;
|
|
307
310
|
namespaceId?: string;
|
|
308
311
|
nasId?: string;
|
|
312
|
+
openCollectToKafka?: boolean;
|
|
309
313
|
ossAkId?: string;
|
|
310
314
|
ossAkSecret?: string;
|
|
311
315
|
ossMountDescs?: string;
|
|
@@ -899,12 +903,16 @@ export declare class DeployApplicationRequest extends $tea.Model {
|
|
|
899
903
|
jarStartArgs?: string;
|
|
900
904
|
jarStartOptions?: string;
|
|
901
905
|
jdk?: string;
|
|
906
|
+
kafkaEndpoint?: string;
|
|
907
|
+
kafkaInstanceId?: string;
|
|
908
|
+
kafkaLogfileConfig?: string;
|
|
902
909
|
liveness?: string;
|
|
903
910
|
minReadyInstanceRatio?: number;
|
|
904
911
|
minReadyInstances?: number;
|
|
905
912
|
mountDesc?: string;
|
|
906
913
|
mountHost?: string;
|
|
907
914
|
nasId?: string;
|
|
915
|
+
openCollectToKafka?: boolean;
|
|
908
916
|
ossAkId?: string;
|
|
909
917
|
ossAkSecret?: string;
|
|
910
918
|
ossMountDescs?: string;
|
|
@@ -4139,6 +4147,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
|
|
|
4139
4147
|
jarStartArgs?: string;
|
|
4140
4148
|
jarStartOptions?: string;
|
|
4141
4149
|
jdk?: string;
|
|
4150
|
+
kafkaConfigs?: string;
|
|
4142
4151
|
liveness?: string;
|
|
4143
4152
|
memory?: number;
|
|
4144
4153
|
minReadyInstanceRatio?: number;
|
|
@@ -4228,6 +4237,7 @@ export declare class DescribeApplicationImageResponseBodyData extends $tea.Model
|
|
|
4228
4237
|
export declare class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.Model {
|
|
4229
4238
|
createTimeStamp?: number;
|
|
4230
4239
|
eip?: string;
|
|
4240
|
+
finishTimeStamp?: number;
|
|
4231
4241
|
groupId?: string;
|
|
4232
4242
|
imageUrl?: string;
|
|
4233
4243
|
instanceContainerIp?: string;
|
|
@@ -4672,6 +4682,7 @@ export declare class DescribeChangeOrderResponseBodyDataPipelines extends $tea.M
|
|
|
4672
4682
|
});
|
|
4673
4683
|
}
|
|
4674
4684
|
export declare class DescribeChangeOrderResponseBodyData extends $tea.Model {
|
|
4685
|
+
appId?: string;
|
|
4675
4686
|
appName?: string;
|
|
4676
4687
|
approvalId?: string;
|
|
4677
4688
|
auto?: boolean;
|
|
@@ -4884,6 +4895,7 @@ export declare class DescribeGreyTagRouteResponseBodyDataScRules extends $tea.Mo
|
|
|
4884
4895
|
});
|
|
4885
4896
|
}
|
|
4886
4897
|
export declare class DescribeGreyTagRouteResponseBodyData extends $tea.Model {
|
|
4898
|
+
appId?: string;
|
|
4887
4899
|
createTime?: number;
|
|
4888
4900
|
description?: string;
|
|
4889
4901
|
dubboRules?: DescribeGreyTagRouteResponseBodyDataDubboRules[];
|
|
@@ -5193,10 +5205,8 @@ export declare class ListAppEventsResponseBodyData extends $tea.Model {
|
|
|
5193
5205
|
});
|
|
5194
5206
|
}
|
|
5195
5207
|
export declare class ListAppServicesPageResponseBodyDataResult extends $tea.Model {
|
|
5196
|
-
clusterName?: string;
|
|
5197
5208
|
edasAppId?: string;
|
|
5198
5209
|
edasAppName?: string;
|
|
5199
|
-
gmtModifyTime?: string;
|
|
5200
5210
|
group?: string;
|
|
5201
5211
|
instanceNum?: number;
|
|
5202
5212
|
serviceName?: string;
|
package/dist/client.js
CHANGED
|
@@ -429,12 +429,16 @@ class CreateApplicationRequest extends $tea.Model {
|
|
|
429
429
|
jarStartArgs: 'JarStartArgs',
|
|
430
430
|
jarStartOptions: 'JarStartOptions',
|
|
431
431
|
jdk: 'Jdk',
|
|
432
|
+
kafkaEndpoint: 'KafkaEndpoint',
|
|
433
|
+
kafkaInstanceId: 'KafkaInstanceId',
|
|
434
|
+
kafkaLogfileConfig: 'KafkaLogfileConfig',
|
|
432
435
|
liveness: 'Liveness',
|
|
433
436
|
memory: 'Memory',
|
|
434
437
|
mountDesc: 'MountDesc',
|
|
435
438
|
mountHost: 'MountHost',
|
|
436
439
|
namespaceId: 'NamespaceId',
|
|
437
440
|
nasId: 'NasId',
|
|
441
|
+
openCollectToKafka: 'OpenCollectToKafka',
|
|
438
442
|
ossAkId: 'OssAkId',
|
|
439
443
|
ossAkSecret: 'OssAkSecret',
|
|
440
444
|
ossMountDescs: 'OssMountDescs',
|
|
@@ -479,12 +483,16 @@ class CreateApplicationRequest extends $tea.Model {
|
|
|
479
483
|
jarStartArgs: 'string',
|
|
480
484
|
jarStartOptions: 'string',
|
|
481
485
|
jdk: 'string',
|
|
486
|
+
kafkaEndpoint: 'string',
|
|
487
|
+
kafkaInstanceId: 'string',
|
|
488
|
+
kafkaLogfileConfig: 'string',
|
|
482
489
|
liveness: 'string',
|
|
483
490
|
memory: 'number',
|
|
484
491
|
mountDesc: 'string',
|
|
485
492
|
mountHost: 'string',
|
|
486
493
|
namespaceId: 'string',
|
|
487
494
|
nasId: 'string',
|
|
495
|
+
openCollectToKafka: 'boolean',
|
|
488
496
|
ossAkId: 'string',
|
|
489
497
|
ossAkSecret: 'string',
|
|
490
498
|
ossMountDescs: 'string',
|
|
@@ -1290,12 +1298,16 @@ class DeployApplicationRequest extends $tea.Model {
|
|
|
1290
1298
|
jarStartArgs: 'JarStartArgs',
|
|
1291
1299
|
jarStartOptions: 'JarStartOptions',
|
|
1292
1300
|
jdk: 'Jdk',
|
|
1301
|
+
kafkaEndpoint: 'KafkaEndpoint',
|
|
1302
|
+
kafkaInstanceId: 'KafkaInstanceId',
|
|
1303
|
+
kafkaLogfileConfig: 'KafkaLogfileConfig',
|
|
1293
1304
|
liveness: 'Liveness',
|
|
1294
1305
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
1295
1306
|
minReadyInstances: 'MinReadyInstances',
|
|
1296
1307
|
mountDesc: 'MountDesc',
|
|
1297
1308
|
mountHost: 'MountHost',
|
|
1298
1309
|
nasId: 'NasId',
|
|
1310
|
+
openCollectToKafka: 'OpenCollectToKafka',
|
|
1299
1311
|
ossAkId: 'OssAkId',
|
|
1300
1312
|
ossAkSecret: 'OssAkSecret',
|
|
1301
1313
|
ossMountDescs: 'OssMountDescs',
|
|
@@ -1337,12 +1349,16 @@ class DeployApplicationRequest extends $tea.Model {
|
|
|
1337
1349
|
jarStartArgs: 'string',
|
|
1338
1350
|
jarStartOptions: 'string',
|
|
1339
1351
|
jdk: 'string',
|
|
1352
|
+
kafkaEndpoint: 'string',
|
|
1353
|
+
kafkaInstanceId: 'string',
|
|
1354
|
+
kafkaLogfileConfig: 'string',
|
|
1340
1355
|
liveness: 'string',
|
|
1341
1356
|
minReadyInstanceRatio: 'number',
|
|
1342
1357
|
minReadyInstances: 'number',
|
|
1343
1358
|
mountDesc: 'string',
|
|
1344
1359
|
mountHost: 'string',
|
|
1345
1360
|
nasId: 'string',
|
|
1361
|
+
openCollectToKafka: 'boolean',
|
|
1346
1362
|
ossAkId: 'string',
|
|
1347
1363
|
ossAkSecret: 'string',
|
|
1348
1364
|
ossMountDescs: 'string',
|
|
@@ -5838,6 +5854,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
5838
5854
|
jarStartArgs: 'JarStartArgs',
|
|
5839
5855
|
jarStartOptions: 'JarStartOptions',
|
|
5840
5856
|
jdk: 'Jdk',
|
|
5857
|
+
kafkaConfigs: 'KafkaConfigs',
|
|
5841
5858
|
liveness: 'Liveness',
|
|
5842
5859
|
memory: 'Memory',
|
|
5843
5860
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
@@ -5895,6 +5912,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
5895
5912
|
jarStartArgs: 'string',
|
|
5896
5913
|
jarStartOptions: 'string',
|
|
5897
5914
|
jdk: 'string',
|
|
5915
|
+
kafkaConfigs: 'string',
|
|
5898
5916
|
liveness: 'string',
|
|
5899
5917
|
memory: 'number',
|
|
5900
5918
|
minReadyInstanceRatio: 'number',
|
|
@@ -6009,6 +6027,7 @@ class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.Model {
|
|
|
6009
6027
|
return {
|
|
6010
6028
|
createTimeStamp: 'CreateTimeStamp',
|
|
6011
6029
|
eip: 'Eip',
|
|
6030
|
+
finishTimeStamp: 'FinishTimeStamp',
|
|
6012
6031
|
groupId: 'GroupId',
|
|
6013
6032
|
imageUrl: 'ImageUrl',
|
|
6014
6033
|
instanceContainerIp: 'InstanceContainerIp',
|
|
@@ -6024,6 +6043,7 @@ class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.Model {
|
|
|
6024
6043
|
return {
|
|
6025
6044
|
createTimeStamp: 'number',
|
|
6026
6045
|
eip: 'string',
|
|
6046
|
+
finishTimeStamp: 'number',
|
|
6027
6047
|
groupId: 'string',
|
|
6028
6048
|
imageUrl: 'string',
|
|
6029
6049
|
instanceContainerIp: 'string',
|
|
@@ -6675,6 +6695,7 @@ class DescribeChangeOrderResponseBodyData extends $tea.Model {
|
|
|
6675
6695
|
}
|
|
6676
6696
|
static names() {
|
|
6677
6697
|
return {
|
|
6698
|
+
appId: 'AppId',
|
|
6678
6699
|
appName: 'AppName',
|
|
6679
6700
|
approvalId: 'ApprovalId',
|
|
6680
6701
|
auto: 'Auto',
|
|
@@ -6696,6 +6717,7 @@ class DescribeChangeOrderResponseBodyData extends $tea.Model {
|
|
|
6696
6717
|
}
|
|
6697
6718
|
static types() {
|
|
6698
6719
|
return {
|
|
6720
|
+
appId: 'string',
|
|
6699
6721
|
appName: 'string',
|
|
6700
6722
|
approvalId: 'string',
|
|
6701
6723
|
auto: 'boolean',
|
|
@@ -6991,6 +7013,7 @@ class DescribeGreyTagRouteResponseBodyData extends $tea.Model {
|
|
|
6991
7013
|
}
|
|
6992
7014
|
static names() {
|
|
6993
7015
|
return {
|
|
7016
|
+
appId: 'AppId',
|
|
6994
7017
|
createTime: 'CreateTime',
|
|
6995
7018
|
description: 'Description',
|
|
6996
7019
|
dubboRules: 'DubboRules',
|
|
@@ -7002,6 +7025,7 @@ class DescribeGreyTagRouteResponseBodyData extends $tea.Model {
|
|
|
7002
7025
|
}
|
|
7003
7026
|
static types() {
|
|
7004
7027
|
return {
|
|
7028
|
+
appId: 'string',
|
|
7005
7029
|
createTime: 'number',
|
|
7006
7030
|
description: 'string',
|
|
7007
7031
|
dubboRules: { 'type': 'array', 'itemType': DescribeGreyTagRouteResponseBodyDataDubboRules },
|
|
@@ -7465,10 +7489,8 @@ class ListAppServicesPageResponseBodyDataResult extends $tea.Model {
|
|
|
7465
7489
|
}
|
|
7466
7490
|
static names() {
|
|
7467
7491
|
return {
|
|
7468
|
-
clusterName: 'ClusterName',
|
|
7469
7492
|
edasAppId: 'EdasAppId',
|
|
7470
7493
|
edasAppName: 'EdasAppName',
|
|
7471
|
-
gmtModifyTime: 'GmtModifyTime',
|
|
7472
7494
|
group: 'Group',
|
|
7473
7495
|
instanceNum: 'InstanceNum',
|
|
7474
7496
|
serviceName: 'ServiceName',
|
|
@@ -7477,10 +7499,8 @@ class ListAppServicesPageResponseBodyDataResult extends $tea.Model {
|
|
|
7477
7499
|
}
|
|
7478
7500
|
static types() {
|
|
7479
7501
|
return {
|
|
7480
|
-
clusterName: 'string',
|
|
7481
7502
|
edasAppId: 'string',
|
|
7482
7503
|
edasAppName: 'string',
|
|
7483
|
-
gmtModifyTime: 'string',
|
|
7484
7504
|
group: 'string',
|
|
7485
7505
|
instanceNum: 'number',
|
|
7486
7506
|
serviceName: 'string',
|
|
@@ -8787,6 +8807,15 @@ class Client extends openapi_client_1.default {
|
|
|
8787
8807
|
if (!tea_util_1.default.isUnset(request.jdk)) {
|
|
8788
8808
|
query["Jdk"] = request.jdk;
|
|
8789
8809
|
}
|
|
8810
|
+
if (!tea_util_1.default.isUnset(request.kafkaEndpoint)) {
|
|
8811
|
+
query["KafkaEndpoint"] = request.kafkaEndpoint;
|
|
8812
|
+
}
|
|
8813
|
+
if (!tea_util_1.default.isUnset(request.kafkaInstanceId)) {
|
|
8814
|
+
query["KafkaInstanceId"] = request.kafkaInstanceId;
|
|
8815
|
+
}
|
|
8816
|
+
if (!tea_util_1.default.isUnset(request.kafkaLogfileConfig)) {
|
|
8817
|
+
query["KafkaLogfileConfig"] = request.kafkaLogfileConfig;
|
|
8818
|
+
}
|
|
8790
8819
|
if (!tea_util_1.default.isUnset(request.liveness)) {
|
|
8791
8820
|
query["Liveness"] = request.liveness;
|
|
8792
8821
|
}
|
|
@@ -8805,6 +8834,9 @@ class Client extends openapi_client_1.default {
|
|
|
8805
8834
|
if (!tea_util_1.default.isUnset(request.nasId)) {
|
|
8806
8835
|
query["NasId"] = request.nasId;
|
|
8807
8836
|
}
|
|
8837
|
+
if (!tea_util_1.default.isUnset(request.openCollectToKafka)) {
|
|
8838
|
+
query["OpenCollectToKafka"] = request.openCollectToKafka;
|
|
8839
|
+
}
|
|
8808
8840
|
if (!tea_util_1.default.isUnset(request.packageType)) {
|
|
8809
8841
|
query["PackageType"] = request.packageType;
|
|
8810
8842
|
}
|
|
@@ -9336,6 +9368,15 @@ class Client extends openapi_client_1.default {
|
|
|
9336
9368
|
if (!tea_util_1.default.isUnset(request.jdk)) {
|
|
9337
9369
|
query["Jdk"] = request.jdk;
|
|
9338
9370
|
}
|
|
9371
|
+
if (!tea_util_1.default.isUnset(request.kafkaEndpoint)) {
|
|
9372
|
+
query["KafkaEndpoint"] = request.kafkaEndpoint;
|
|
9373
|
+
}
|
|
9374
|
+
if (!tea_util_1.default.isUnset(request.kafkaInstanceId)) {
|
|
9375
|
+
query["KafkaInstanceId"] = request.kafkaInstanceId;
|
|
9376
|
+
}
|
|
9377
|
+
if (!tea_util_1.default.isUnset(request.kafkaLogfileConfig)) {
|
|
9378
|
+
query["KafkaLogfileConfig"] = request.kafkaLogfileConfig;
|
|
9379
|
+
}
|
|
9339
9380
|
if (!tea_util_1.default.isUnset(request.liveness)) {
|
|
9340
9381
|
query["Liveness"] = request.liveness;
|
|
9341
9382
|
}
|
|
@@ -9354,6 +9395,9 @@ class Client extends openapi_client_1.default {
|
|
|
9354
9395
|
if (!tea_util_1.default.isUnset(request.nasId)) {
|
|
9355
9396
|
query["NasId"] = request.nasId;
|
|
9356
9397
|
}
|
|
9398
|
+
if (!tea_util_1.default.isUnset(request.openCollectToKafka)) {
|
|
9399
|
+
query["OpenCollectToKafka"] = request.openCollectToKafka;
|
|
9400
|
+
}
|
|
9357
9401
|
if (!tea_util_1.default.isUnset(request.packageUrl)) {
|
|
9358
9402
|
query["PackageUrl"] = request.packageUrl;
|
|
9359
9403
|
}
|