@alicloud/sae20190506 1.26.2 → 1.26.3
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 +25 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +36 -0
package/dist/client.d.ts
CHANGED
|
@@ -3902,6 +3902,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
|
|
|
3902
3902
|
* [{"hostName":"samplehost","ip":"127.0.0.1"}]
|
|
3903
3903
|
*/
|
|
3904
3904
|
customHostAlias?: string;
|
|
3905
|
+
customImageNetworkType?: string;
|
|
3905
3906
|
/**
|
|
3906
3907
|
* @remarks
|
|
3907
3908
|
* true
|
|
@@ -4345,6 +4346,7 @@ export declare class CreateApplicationShrinkRequest extends $tea.Model {
|
|
|
4345
4346
|
* [{"hostName":"samplehost","ip":"127.0.0.1"}]
|
|
4346
4347
|
*/
|
|
4347
4348
|
customHostAlias?: string;
|
|
4349
|
+
customImageNetworkType?: string;
|
|
4348
4350
|
/**
|
|
4349
4351
|
* @remarks
|
|
4350
4352
|
* true
|
|
@@ -7629,6 +7631,7 @@ export declare class DeployApplicationRequest extends $tea.Model {
|
|
|
7629
7631
|
* [{"hostName":"samplehost","ip":"127.0.0.1"}]
|
|
7630
7632
|
*/
|
|
7631
7633
|
customHostAlias?: string;
|
|
7634
|
+
customImageNetworkType?: string;
|
|
7632
7635
|
/**
|
|
7633
7636
|
* @remarks
|
|
7634
7637
|
* This parameter takes effect only for applications that are in the Stopped state. If you call the **DeployApplication** operation to manage a running application, the application is immediately redeployed.
|
|
@@ -8262,6 +8265,7 @@ export declare class DeployApplicationShrinkRequest extends $tea.Model {
|
|
|
8262
8265
|
* [{"hostName":"samplehost","ip":"127.0.0.1"}]
|
|
8263
8266
|
*/
|
|
8264
8267
|
customHostAlias?: string;
|
|
8268
|
+
customImageNetworkType?: string;
|
|
8265
8269
|
/**
|
|
8266
8270
|
* @remarks
|
|
8267
8271
|
* This parameter takes effect only for applications that are in the Stopped state. If you call the **DeployApplication** operation to manage a running application, the application is immediately redeployed.
|
|
@@ -9401,6 +9405,7 @@ export declare class DescribeApplicationInstancesRequest extends $tea.Model {
|
|
|
9401
9405
|
* b2a8a925-477a-4ed7-b825-d5e22500****
|
|
9402
9406
|
*/
|
|
9403
9407
|
groupId?: string;
|
|
9408
|
+
instanceId?: string;
|
|
9404
9409
|
/**
|
|
9405
9410
|
* @remarks
|
|
9406
9411
|
* 10
|
|
@@ -21844,6 +21849,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
|
|
|
21844
21849
|
* [{"hostName":"test.host.name","ip":"0.0.0.0"}]
|
|
21845
21850
|
*/
|
|
21846
21851
|
customHostAlias?: string;
|
|
21852
|
+
customImageNetworkType?: string;
|
|
21847
21853
|
dotnet?: string;
|
|
21848
21854
|
/**
|
|
21849
21855
|
* @remarks
|
|
@@ -22698,6 +22704,7 @@ export declare class DescribeApplicationInstancesResponseBodyDataInstances exten
|
|
|
22698
22704
|
* b2a8a925-477a-4ed7-b825-d5e22500****
|
|
22699
22705
|
*/
|
|
22700
22706
|
instanceId?: string;
|
|
22707
|
+
mainContainerStatus?: string;
|
|
22701
22708
|
/**
|
|
22702
22709
|
* @remarks
|
|
22703
22710
|
* The version of the package.
|
|
@@ -22707,6 +22714,7 @@ export declare class DescribeApplicationInstancesResponseBodyDataInstances exten
|
|
|
22707
22714
|
*/
|
|
22708
22715
|
packageVersion?: string;
|
|
22709
22716
|
sidecarContainersStatus?: DescribeApplicationInstancesResponseBodyDataInstancesSidecarContainersStatus[];
|
|
22717
|
+
unhealthyMessage?: string;
|
|
22710
22718
|
/**
|
|
22711
22719
|
* @remarks
|
|
22712
22720
|
* The ID of the zone where the instance is deployed.
|
package/dist/client.js
CHANGED
|
@@ -4217,6 +4217,7 @@ class CreateApplicationRequest extends $tea.Model {
|
|
|
4217
4217
|
configMapMountDesc: 'ConfigMapMountDesc',
|
|
4218
4218
|
cpu: 'Cpu',
|
|
4219
4219
|
customHostAlias: 'CustomHostAlias',
|
|
4220
|
+
customImageNetworkType: 'CustomImageNetworkType',
|
|
4220
4221
|
deploy: 'Deploy',
|
|
4221
4222
|
dotnet: 'Dotnet',
|
|
4222
4223
|
edasContainerVersion: 'EdasContainerVersion',
|
|
@@ -4289,6 +4290,7 @@ class CreateApplicationRequest extends $tea.Model {
|
|
|
4289
4290
|
configMapMountDesc: 'string',
|
|
4290
4291
|
cpu: 'number',
|
|
4291
4292
|
customHostAlias: 'string',
|
|
4293
|
+
customImageNetworkType: 'string',
|
|
4292
4294
|
deploy: 'boolean',
|
|
4293
4295
|
dotnet: 'string',
|
|
4294
4296
|
edasContainerVersion: 'string',
|
|
@@ -4367,6 +4369,7 @@ class CreateApplicationShrinkRequest extends $tea.Model {
|
|
|
4367
4369
|
configMapMountDesc: 'ConfigMapMountDesc',
|
|
4368
4370
|
cpu: 'Cpu',
|
|
4369
4371
|
customHostAlias: 'CustomHostAlias',
|
|
4372
|
+
customImageNetworkType: 'CustomImageNetworkType',
|
|
4370
4373
|
deploy: 'Deploy',
|
|
4371
4374
|
dotnet: 'Dotnet',
|
|
4372
4375
|
edasContainerVersion: 'EdasContainerVersion',
|
|
@@ -4439,6 +4442,7 @@ class CreateApplicationShrinkRequest extends $tea.Model {
|
|
|
4439
4442
|
configMapMountDesc: 'string',
|
|
4440
4443
|
cpu: 'number',
|
|
4441
4444
|
customHostAlias: 'string',
|
|
4445
|
+
customImageNetworkType: 'string',
|
|
4442
4446
|
deploy: 'boolean',
|
|
4443
4447
|
dotnet: 'string',
|
|
4444
4448
|
edasContainerVersion: 'string',
|
|
@@ -5984,6 +5988,7 @@ class DeployApplicationRequest extends $tea.Model {
|
|
|
5984
5988
|
configMapMountDesc: 'ConfigMapMountDesc',
|
|
5985
5989
|
cpu: 'Cpu',
|
|
5986
5990
|
customHostAlias: 'CustomHostAlias',
|
|
5991
|
+
customImageNetworkType: 'CustomImageNetworkType',
|
|
5987
5992
|
deploy: 'Deploy',
|
|
5988
5993
|
dotnet: 'Dotnet',
|
|
5989
5994
|
edasContainerVersion: 'EdasContainerVersion',
|
|
@@ -6055,6 +6060,7 @@ class DeployApplicationRequest extends $tea.Model {
|
|
|
6055
6060
|
configMapMountDesc: 'string',
|
|
6056
6061
|
cpu: 'number',
|
|
6057
6062
|
customHostAlias: 'string',
|
|
6063
|
+
customImageNetworkType: 'string',
|
|
6058
6064
|
deploy: 'string',
|
|
6059
6065
|
dotnet: 'string',
|
|
6060
6066
|
edasContainerVersion: 'string',
|
|
@@ -6132,6 +6138,7 @@ class DeployApplicationShrinkRequest extends $tea.Model {
|
|
|
6132
6138
|
configMapMountDesc: 'ConfigMapMountDesc',
|
|
6133
6139
|
cpu: 'Cpu',
|
|
6134
6140
|
customHostAlias: 'CustomHostAlias',
|
|
6141
|
+
customImageNetworkType: 'CustomImageNetworkType',
|
|
6135
6142
|
deploy: 'Deploy',
|
|
6136
6143
|
dotnet: 'Dotnet',
|
|
6137
6144
|
edasContainerVersion: 'EdasContainerVersion',
|
|
@@ -6203,6 +6210,7 @@ class DeployApplicationShrinkRequest extends $tea.Model {
|
|
|
6203
6210
|
configMapMountDesc: 'string',
|
|
6204
6211
|
cpu: 'number',
|
|
6205
6212
|
customHostAlias: 'string',
|
|
6213
|
+
customImageNetworkType: 'string',
|
|
6206
6214
|
deploy: 'string',
|
|
6207
6215
|
dotnet: 'string',
|
|
6208
6216
|
edasContainerVersion: 'string',
|
|
@@ -6595,6 +6603,7 @@ class DescribeApplicationInstancesRequest extends $tea.Model {
|
|
|
6595
6603
|
appId: 'AppId',
|
|
6596
6604
|
currentPage: 'CurrentPage',
|
|
6597
6605
|
groupId: 'GroupId',
|
|
6606
|
+
instanceId: 'InstanceId',
|
|
6598
6607
|
pageSize: 'PageSize',
|
|
6599
6608
|
reverse: 'Reverse',
|
|
6600
6609
|
};
|
|
@@ -6604,6 +6613,7 @@ class DescribeApplicationInstancesRequest extends $tea.Model {
|
|
|
6604
6613
|
appId: 'string',
|
|
6605
6614
|
currentPage: 'number',
|
|
6606
6615
|
groupId: 'string',
|
|
6616
|
+
instanceId: 'string',
|
|
6607
6617
|
pageSize: 'number',
|
|
6608
6618
|
reverse: 'boolean',
|
|
6609
6619
|
};
|
|
@@ -14179,6 +14189,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
14179
14189
|
configMapMountDesc: 'ConfigMapMountDesc',
|
|
14180
14190
|
cpu: 'Cpu',
|
|
14181
14191
|
customHostAlias: 'CustomHostAlias',
|
|
14192
|
+
customImageNetworkType: 'CustomImageNetworkType',
|
|
14182
14193
|
dotnet: 'Dotnet',
|
|
14183
14194
|
edasContainerVersion: 'EdasContainerVersion',
|
|
14184
14195
|
enableAhas: 'EnableAhas',
|
|
@@ -14257,6 +14268,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
14257
14268
|
configMapMountDesc: { 'type': 'array', 'itemType': DescribeApplicationConfigResponseBodyDataConfigMapMountDesc },
|
|
14258
14269
|
cpu: 'number',
|
|
14259
14270
|
customHostAlias: 'string',
|
|
14271
|
+
customImageNetworkType: 'string',
|
|
14260
14272
|
dotnet: 'string',
|
|
14261
14273
|
edasContainerVersion: 'string',
|
|
14262
14274
|
enableAhas: 'string',
|
|
@@ -14427,8 +14439,10 @@ class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.Model {
|
|
|
14427
14439
|
instanceContainerStatus: 'InstanceContainerStatus',
|
|
14428
14440
|
instanceHealthStatus: 'InstanceHealthStatus',
|
|
14429
14441
|
instanceId: 'InstanceId',
|
|
14442
|
+
mainContainerStatus: 'MainContainerStatus',
|
|
14430
14443
|
packageVersion: 'PackageVersion',
|
|
14431
14444
|
sidecarContainersStatus: 'SidecarContainersStatus',
|
|
14445
|
+
unhealthyMessage: 'UnhealthyMessage',
|
|
14432
14446
|
vSwitchId: 'VSwitchId',
|
|
14433
14447
|
};
|
|
14434
14448
|
}
|
|
@@ -14445,8 +14459,10 @@ class DescribeApplicationInstancesResponseBodyDataInstances extends $tea.Model {
|
|
|
14445
14459
|
instanceContainerStatus: 'string',
|
|
14446
14460
|
instanceHealthStatus: 'string',
|
|
14447
14461
|
instanceId: 'string',
|
|
14462
|
+
mainContainerStatus: 'string',
|
|
14448
14463
|
packageVersion: 'string',
|
|
14449
14464
|
sidecarContainersStatus: { 'type': 'array', 'itemType': DescribeApplicationInstancesResponseBodyDataInstancesSidecarContainersStatus },
|
|
14465
|
+
unhealthyMessage: 'string',
|
|
14450
14466
|
vSwitchId: 'string',
|
|
14451
14467
|
};
|
|
14452
14468
|
}
|
|
@@ -18585,6 +18601,9 @@ class Client extends openapi_client_1.default {
|
|
|
18585
18601
|
if (!tea_util_1.default.isUnset(request.customHostAlias)) {
|
|
18586
18602
|
query["CustomHostAlias"] = request.customHostAlias;
|
|
18587
18603
|
}
|
|
18604
|
+
if (!tea_util_1.default.isUnset(request.customImageNetworkType)) {
|
|
18605
|
+
query["CustomImageNetworkType"] = request.customImageNetworkType;
|
|
18606
|
+
}
|
|
18588
18607
|
if (!tea_util_1.default.isUnset(request.deploy)) {
|
|
18589
18608
|
query["Deploy"] = request.deploy;
|
|
18590
18609
|
}
|
|
@@ -20023,6 +20042,9 @@ class Client extends openapi_client_1.default {
|
|
|
20023
20042
|
if (!tea_util_1.default.isUnset(request.customHostAlias)) {
|
|
20024
20043
|
query["CustomHostAlias"] = request.customHostAlias;
|
|
20025
20044
|
}
|
|
20045
|
+
if (!tea_util_1.default.isUnset(request.customImageNetworkType)) {
|
|
20046
|
+
query["CustomImageNetworkType"] = request.customImageNetworkType;
|
|
20047
|
+
}
|
|
20026
20048
|
if (!tea_util_1.default.isUnset(request.deploy)) {
|
|
20027
20049
|
query["Deploy"] = request.deploy;
|
|
20028
20050
|
}
|
|
@@ -20441,6 +20463,9 @@ class Client extends openapi_client_1.default {
|
|
|
20441
20463
|
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
20442
20464
|
query["GroupId"] = request.groupId;
|
|
20443
20465
|
}
|
|
20466
|
+
if (!tea_util_1.default.isUnset(request.instanceId)) {
|
|
20467
|
+
query["InstanceId"] = request.instanceId;
|
|
20468
|
+
}
|
|
20444
20469
|
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
20445
20470
|
query["PageSize"] = request.pageSize;
|
|
20446
20471
|
}
|