@alicloud/sae20190506 1.24.7 → 1.24.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +8 -0
- package/dist/client.js +31 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +44 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/sae20190506",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@alicloud/tea-typescript": "^1.7.1",
|
|
23
23
|
"@alicloud/tea-util": "^1.4.9",
|
|
24
|
-
"@alicloud/openapi-client": "^0.4.
|
|
24
|
+
"@alicloud/openapi-client": "^0.4.12",
|
|
25
25
|
"@alicloud/openapi-util": "^0.3.2",
|
|
26
26
|
"@alicloud/endpoint-util": "^0.0.1"
|
|
27
27
|
},
|
package/src/client.ts
CHANGED
|
@@ -6126,6 +6126,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
6126
6126
|
* true
|
|
6127
6127
|
*/
|
|
6128
6128
|
deploy?: boolean;
|
|
6129
|
+
dotnet?: string;
|
|
6129
6130
|
/**
|
|
6130
6131
|
* @remarks
|
|
6131
6132
|
* 3.5.3
|
|
@@ -6468,6 +6469,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
6468
6469
|
cpu: 'Cpu',
|
|
6469
6470
|
customHostAlias: 'CustomHostAlias',
|
|
6470
6471
|
deploy: 'Deploy',
|
|
6472
|
+
dotnet: 'Dotnet',
|
|
6471
6473
|
edasContainerVersion: 'EdasContainerVersion',
|
|
6472
6474
|
enableEbpf: 'EnableEbpf',
|
|
6473
6475
|
enableNewArms: 'EnableNewArms',
|
|
@@ -6535,6 +6537,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
6535
6537
|
cpu: 'number',
|
|
6536
6538
|
customHostAlias: 'string',
|
|
6537
6539
|
deploy: 'boolean',
|
|
6540
|
+
dotnet: 'string',
|
|
6538
6541
|
edasContainerVersion: 'string',
|
|
6539
6542
|
enableEbpf: 'string',
|
|
6540
6543
|
enableNewArms: 'boolean',
|
|
@@ -10278,6 +10281,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
10278
10281
|
* true
|
|
10279
10282
|
*/
|
|
10280
10283
|
deploy?: string;
|
|
10284
|
+
dotnet?: string;
|
|
10281
10285
|
/**
|
|
10282
10286
|
* @remarks
|
|
10283
10287
|
* The version of the container, such as Ali-Tomcat, in which an application developed based on High-speed Service Framework (HSF) is deployed.
|
|
@@ -10751,6 +10755,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
10751
10755
|
cpu: 'Cpu',
|
|
10752
10756
|
customHostAlias: 'CustomHostAlias',
|
|
10753
10757
|
deploy: 'Deploy',
|
|
10758
|
+
dotnet: 'Dotnet',
|
|
10754
10759
|
edasContainerVersion: 'EdasContainerVersion',
|
|
10755
10760
|
enableAhas: 'EnableAhas',
|
|
10756
10761
|
enableGreyTagRoute: 'EnableGreyTagRoute',
|
|
@@ -10817,6 +10822,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
10817
10822
|
cpu: 'number',
|
|
10818
10823
|
customHostAlias: 'string',
|
|
10819
10824
|
deploy: 'string',
|
|
10825
|
+
dotnet: 'string',
|
|
10820
10826
|
edasContainerVersion: 'string',
|
|
10821
10827
|
enableAhas: 'string',
|
|
10822
10828
|
enableGreyTagRoute: 'boolean',
|
|
@@ -20432,11 +20438,17 @@ export class RescaleApplicationVerticallyRequest extends $tea.Model {
|
|
|
20432
20438
|
* 2048
|
|
20433
20439
|
*/
|
|
20434
20440
|
memory?: string;
|
|
20441
|
+
autoEnableApplicationScalingRule?: boolean;
|
|
20442
|
+
minReadyInstanceRatio?: number;
|
|
20443
|
+
minReadyInstances?: number;
|
|
20435
20444
|
static names(): { [key: string]: string } {
|
|
20436
20445
|
return {
|
|
20437
20446
|
appId: 'AppId',
|
|
20438
20447
|
cpu: 'Cpu',
|
|
20439
20448
|
memory: 'Memory',
|
|
20449
|
+
autoEnableApplicationScalingRule: 'autoEnableApplicationScalingRule',
|
|
20450
|
+
minReadyInstanceRatio: 'minReadyInstanceRatio',
|
|
20451
|
+
minReadyInstances: 'minReadyInstances',
|
|
20440
20452
|
};
|
|
20441
20453
|
}
|
|
20442
20454
|
|
|
@@ -20445,6 +20457,9 @@ export class RescaleApplicationVerticallyRequest extends $tea.Model {
|
|
|
20445
20457
|
appId: 'string',
|
|
20446
20458
|
cpu: 'string',
|
|
20447
20459
|
memory: 'string',
|
|
20460
|
+
autoEnableApplicationScalingRule: 'boolean',
|
|
20461
|
+
minReadyInstanceRatio: 'number',
|
|
20462
|
+
minReadyInstances: 'number',
|
|
20448
20463
|
};
|
|
20449
20464
|
}
|
|
20450
20465
|
|
|
@@ -27354,6 +27369,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
27354
27369
|
* [{"hostName":"test.host.name","ip":"0.0.0.0"}]
|
|
27355
27370
|
*/
|
|
27356
27371
|
customHostAlias?: string;
|
|
27372
|
+
dotnet?: string;
|
|
27357
27373
|
/**
|
|
27358
27374
|
* @remarks
|
|
27359
27375
|
* The version of the container, such as Ali-Tomcat, in which an application developed based on High-speed Service Framework (HSF) is deployed.
|
|
@@ -27894,6 +27910,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
27894
27910
|
configMapMountDesc: 'ConfigMapMountDesc',
|
|
27895
27911
|
cpu: 'Cpu',
|
|
27896
27912
|
customHostAlias: 'CustomHostAlias',
|
|
27913
|
+
dotnet: 'Dotnet',
|
|
27897
27914
|
edasContainerVersion: 'EdasContainerVersion',
|
|
27898
27915
|
enableAhas: 'EnableAhas',
|
|
27899
27916
|
enableGreyTagRoute: 'EnableGreyTagRoute',
|
|
@@ -27968,6 +27985,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
27968
27985
|
configMapMountDesc: { 'type': 'array', 'itemType': DescribeApplicationConfigResponseBodyDataConfigMapMountDesc },
|
|
27969
27986
|
cpu: 'number',
|
|
27970
27987
|
customHostAlias: 'string',
|
|
27988
|
+
dotnet: 'string',
|
|
27971
27989
|
edasContainerVersion: 'string',
|
|
27972
27990
|
enableAhas: 'string',
|
|
27973
27991
|
enableGreyTagRoute: 'boolean',
|
|
@@ -35299,6 +35317,7 @@ export class ListApplicationsResponseBodyDataApplications extends $tea.Model {
|
|
|
35299
35317
|
* 1000
|
|
35300
35318
|
*/
|
|
35301
35319
|
cpu?: number;
|
|
35320
|
+
imageUrl?: string;
|
|
35302
35321
|
/**
|
|
35303
35322
|
* @remarks
|
|
35304
35323
|
* The number of application instances.
|
|
@@ -35336,6 +35355,7 @@ export class ListApplicationsResponseBodyDataApplications extends $tea.Model {
|
|
|
35336
35355
|
* cn-beijing:demo
|
|
35337
35356
|
*/
|
|
35338
35357
|
namespaceId?: string;
|
|
35358
|
+
packageUrl?: string;
|
|
35339
35359
|
programmingLanguage?: string;
|
|
35340
35360
|
/**
|
|
35341
35361
|
* @remarks
|
|
@@ -35367,11 +35387,13 @@ export class ListApplicationsResponseBodyDataApplications extends $tea.Model {
|
|
|
35367
35387
|
baseAppId: 'BaseAppId',
|
|
35368
35388
|
children: 'Children',
|
|
35369
35389
|
cpu: 'Cpu',
|
|
35390
|
+
imageUrl: 'ImageUrl',
|
|
35370
35391
|
instances: 'Instances',
|
|
35371
35392
|
mem: 'Mem',
|
|
35372
35393
|
mseEnabled: 'MseEnabled',
|
|
35373
35394
|
mseNamespaceId: 'MseNamespaceId',
|
|
35374
35395
|
namespaceId: 'NamespaceId',
|
|
35396
|
+
packageUrl: 'PackageUrl',
|
|
35375
35397
|
programmingLanguage: 'ProgrammingLanguage',
|
|
35376
35398
|
regionId: 'RegionId',
|
|
35377
35399
|
runningInstances: 'RunningInstances',
|
|
@@ -35388,11 +35410,13 @@ export class ListApplicationsResponseBodyDataApplications extends $tea.Model {
|
|
|
35388
35410
|
baseAppId: 'string',
|
|
35389
35411
|
children: { 'type': 'array', 'itemType': ListApplicationsResponseBodyDataApplicationsChildren },
|
|
35390
35412
|
cpu: 'number',
|
|
35413
|
+
imageUrl: 'string',
|
|
35391
35414
|
instances: 'number',
|
|
35392
35415
|
mem: 'number',
|
|
35393
35416
|
mseEnabled: 'boolean',
|
|
35394
35417
|
mseNamespaceId: 'string',
|
|
35395
35418
|
namespaceId: 'string',
|
|
35419
|
+
packageUrl: 'string',
|
|
35396
35420
|
programmingLanguage: 'string',
|
|
35397
35421
|
regionId: 'string',
|
|
35398
35422
|
runningInstances: 'number',
|
|
@@ -38903,6 +38927,10 @@ export default class Client extends OpenApi {
|
|
|
38903
38927
|
query["Deploy"] = request.deploy;
|
|
38904
38928
|
}
|
|
38905
38929
|
|
|
38930
|
+
if (!Util.isUnset(request.dotnet)) {
|
|
38931
|
+
query["Dotnet"] = request.dotnet;
|
|
38932
|
+
}
|
|
38933
|
+
|
|
38906
38934
|
if (!Util.isUnset(request.edasContainerVersion)) {
|
|
38907
38935
|
query["EdasContainerVersion"] = request.edasContainerVersion;
|
|
38908
38936
|
}
|
|
@@ -40523,6 +40551,10 @@ export default class Client extends OpenApi {
|
|
|
40523
40551
|
query["Deploy"] = request.deploy;
|
|
40524
40552
|
}
|
|
40525
40553
|
|
|
40554
|
+
if (!Util.isUnset(request.dotnet)) {
|
|
40555
|
+
query["Dotnet"] = request.dotnet;
|
|
40556
|
+
}
|
|
40557
|
+
|
|
40526
40558
|
if (!Util.isUnset(request.edasContainerVersion)) {
|
|
40527
40559
|
query["EdasContainerVersion"] = request.edasContainerVersion;
|
|
40528
40560
|
}
|
|
@@ -44246,6 +44278,18 @@ export default class Client extends OpenApi {
|
|
|
44246
44278
|
query["Memory"] = request.memory;
|
|
44247
44279
|
}
|
|
44248
44280
|
|
|
44281
|
+
if (!Util.isUnset(request.autoEnableApplicationScalingRule)) {
|
|
44282
|
+
query["autoEnableApplicationScalingRule"] = request.autoEnableApplicationScalingRule;
|
|
44283
|
+
}
|
|
44284
|
+
|
|
44285
|
+
if (!Util.isUnset(request.minReadyInstanceRatio)) {
|
|
44286
|
+
query["minReadyInstanceRatio"] = request.minReadyInstanceRatio;
|
|
44287
|
+
}
|
|
44288
|
+
|
|
44289
|
+
if (!Util.isUnset(request.minReadyInstances)) {
|
|
44290
|
+
query["minReadyInstances"] = request.minReadyInstances;
|
|
44291
|
+
}
|
|
44292
|
+
|
|
44249
44293
|
let req = new $OpenApi.OpenApiRequest({
|
|
44250
44294
|
headers: headers,
|
|
44251
44295
|
query: OpenApiUtil.query(query),
|