@alicloud/sae20190506 1.24.4 → 1.24.6
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 +51 -30
- package/dist/client.js +41 -5
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +94 -33
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -1109,6 +1109,7 @@ export class CreateWebCustomDomainInput extends $tea.Model {
|
|
|
1109
1109
|
* HTTP
|
|
1110
1110
|
*/
|
|
1111
1111
|
protocol?: string;
|
|
1112
|
+
routeConfig?: RouteConfig;
|
|
1112
1113
|
webCertConfig?: WebCertConfig;
|
|
1113
1114
|
webTLSConfig?: WebTLSConfig;
|
|
1114
1115
|
webWAFConfig?: WebWAFConfig;
|
|
@@ -1117,6 +1118,7 @@ export class CreateWebCustomDomainInput extends $tea.Model {
|
|
|
1117
1118
|
defaultForwardingAppName: 'DefaultForwardingAppName',
|
|
1118
1119
|
domainName: 'DomainName',
|
|
1119
1120
|
protocol: 'Protocol',
|
|
1121
|
+
routeConfig: 'RouteConfig',
|
|
1120
1122
|
webCertConfig: 'WebCertConfig',
|
|
1121
1123
|
webTLSConfig: 'WebTLSConfig',
|
|
1122
1124
|
webWAFConfig: 'WebWAFConfig',
|
|
@@ -1128,6 +1130,7 @@ export class CreateWebCustomDomainInput extends $tea.Model {
|
|
|
1128
1130
|
defaultForwardingAppName: 'string',
|
|
1129
1131
|
domainName: 'string',
|
|
1130
1132
|
protocol: 'string',
|
|
1133
|
+
routeConfig: RouteConfig,
|
|
1131
1134
|
webCertConfig: WebCertConfig,
|
|
1132
1135
|
webTLSConfig: WebTLSConfig,
|
|
1133
1136
|
webWAFConfig: WebWAFConfig,
|
|
@@ -4075,6 +4078,7 @@ export class UpdateWebCustomDomainInput extends $tea.Model {
|
|
|
4075
4078
|
* HTTP
|
|
4076
4079
|
*/
|
|
4077
4080
|
protocol?: string;
|
|
4081
|
+
routeConfig?: RouteConfig;
|
|
4078
4082
|
webCertConfig?: WebCertConfig;
|
|
4079
4083
|
webTLSConfig?: WebTLSConfig;
|
|
4080
4084
|
webWAFConfig?: WebWAFConfig;
|
|
@@ -4082,6 +4086,7 @@ export class UpdateWebCustomDomainInput extends $tea.Model {
|
|
|
4082
4086
|
return {
|
|
4083
4087
|
defaultForwardingAppName: 'DefaultForwardingAppName',
|
|
4084
4088
|
protocol: 'Protocol',
|
|
4089
|
+
routeConfig: 'RouteConfig',
|
|
4085
4090
|
webCertConfig: 'WebCertConfig',
|
|
4086
4091
|
webTLSConfig: 'WebTLSConfig',
|
|
4087
4092
|
webWAFConfig: 'WebWAFConfig',
|
|
@@ -4092,6 +4097,7 @@ export class UpdateWebCustomDomainInput extends $tea.Model {
|
|
|
4092
4097
|
return {
|
|
4093
4098
|
defaultForwardingAppName: 'string',
|
|
4094
4099
|
protocol: 'string',
|
|
4100
|
+
routeConfig: RouteConfig,
|
|
4095
4101
|
webCertConfig: WebCertConfig,
|
|
4096
4102
|
webTLSConfig: WebTLSConfig,
|
|
4097
4103
|
webWAFConfig: WebWAFConfig,
|
|
@@ -4602,11 +4608,6 @@ export class WebCertConfig extends $tea.Model {
|
|
|
4602
4608
|
}
|
|
4603
4609
|
|
|
4604
4610
|
export class WebCustomDomain extends $tea.Model {
|
|
4605
|
-
/**
|
|
4606
|
-
* @example
|
|
4607
|
-
* 123xxxxxx
|
|
4608
|
-
*/
|
|
4609
|
-
accountId?: string;
|
|
4610
4611
|
/**
|
|
4611
4612
|
* @example
|
|
4612
4613
|
* 2023-03-30T08:02:19Z
|
|
@@ -4633,36 +4634,44 @@ export class WebCustomDomain extends $tea.Model {
|
|
|
4633
4634
|
* HTTP
|
|
4634
4635
|
*/
|
|
4635
4636
|
protocol?: string;
|
|
4637
|
+
routeConfig?: RouteConfig;
|
|
4636
4638
|
webCertConfig?: WebCertConfig;
|
|
4637
4639
|
webTLSConfig?: WebTLSConfig;
|
|
4638
4640
|
webWAFConfig?: WebWAFConfig;
|
|
4641
|
+
/**
|
|
4642
|
+
* @example
|
|
4643
|
+
* 123xxxxxx
|
|
4644
|
+
*/
|
|
4645
|
+
accountId?: string;
|
|
4639
4646
|
static names(): { [key: string]: string } {
|
|
4640
4647
|
return {
|
|
4641
|
-
accountId: 'AccountId',
|
|
4642
4648
|
createdTime: 'CreatedTime',
|
|
4643
4649
|
defaultForwardingAppName: 'DefaultForwardingAppName',
|
|
4644
4650
|
domainName: 'DomainName',
|
|
4645
4651
|
lastModifiedTime: 'LastModifiedTime',
|
|
4646
4652
|
namespaceId: 'NamespaceId',
|
|
4647
4653
|
protocol: 'Protocol',
|
|
4654
|
+
routeConfig: 'RouteConfig',
|
|
4648
4655
|
webCertConfig: 'WebCertConfig',
|
|
4649
4656
|
webTLSConfig: 'WebTLSConfig',
|
|
4650
4657
|
webWAFConfig: 'WebWAFConfig',
|
|
4658
|
+
accountId: 'accountId',
|
|
4651
4659
|
};
|
|
4652
4660
|
}
|
|
4653
4661
|
|
|
4654
4662
|
static types(): { [key: string]: any } {
|
|
4655
4663
|
return {
|
|
4656
|
-
accountId: 'string',
|
|
4657
4664
|
createdTime: 'string',
|
|
4658
4665
|
defaultForwardingAppName: 'string',
|
|
4659
4666
|
domainName: 'string',
|
|
4660
4667
|
lastModifiedTime: 'string',
|
|
4661
4668
|
namespaceId: 'string',
|
|
4662
4669
|
protocol: 'string',
|
|
4670
|
+
routeConfig: RouteConfig,
|
|
4663
4671
|
webCertConfig: WebCertConfig,
|
|
4664
4672
|
webTLSConfig: WebTLSConfig,
|
|
4665
4673
|
webWAFConfig: WebWAFConfig,
|
|
4674
|
+
accountId: 'string',
|
|
4666
4675
|
};
|
|
4667
4676
|
}
|
|
4668
4677
|
|
|
@@ -6111,6 +6120,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
6111
6120
|
*/
|
|
6112
6121
|
edasContainerVersion?: string;
|
|
6113
6122
|
enableEbpf?: string;
|
|
6123
|
+
enableNewArms?: boolean;
|
|
6114
6124
|
/**
|
|
6115
6125
|
* @remarks
|
|
6116
6126
|
* [{"name":"envtmp","value":"0"}]
|
|
@@ -6445,6 +6455,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
6445
6455
|
deploy: 'Deploy',
|
|
6446
6456
|
edasContainerVersion: 'EdasContainerVersion',
|
|
6447
6457
|
enableEbpf: 'EnableEbpf',
|
|
6458
|
+
enableNewArms: 'EnableNewArms',
|
|
6448
6459
|
envs: 'Envs',
|
|
6449
6460
|
imagePullSecrets: 'ImagePullSecrets',
|
|
6450
6461
|
imageUrl: 'ImageUrl',
|
|
@@ -6511,6 +6522,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
6511
6522
|
deploy: 'boolean',
|
|
6512
6523
|
edasContainerVersion: 'string',
|
|
6513
6524
|
enableEbpf: 'string',
|
|
6525
|
+
enableNewArms: 'boolean',
|
|
6514
6526
|
envs: 'string',
|
|
6515
6527
|
imagePullSecrets: 'string',
|
|
6516
6528
|
imageUrl: 'string',
|
|
@@ -6689,6 +6701,7 @@ export class CreateApplicationScalingRuleRequest extends $tea.Model {
|
|
|
6689
6701
|
* 7171a6ca-d1cd-4928-8642-7d5cfe69****
|
|
6690
6702
|
*/
|
|
6691
6703
|
appId?: string;
|
|
6704
|
+
enableIdle?: boolean;
|
|
6692
6705
|
/**
|
|
6693
6706
|
* @example
|
|
6694
6707
|
* -1
|
|
@@ -6733,6 +6746,7 @@ export class CreateApplicationScalingRuleRequest extends $tea.Model {
|
|
|
6733
6746
|
static names(): { [key: string]: string } {
|
|
6734
6747
|
return {
|
|
6735
6748
|
appId: 'AppId',
|
|
6749
|
+
enableIdle: 'EnableIdle',
|
|
6736
6750
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
6737
6751
|
minReadyInstances: 'MinReadyInstances',
|
|
6738
6752
|
scalingRuleEnable: 'ScalingRuleEnable',
|
|
@@ -6746,6 +6760,7 @@ export class CreateApplicationScalingRuleRequest extends $tea.Model {
|
|
|
6746
6760
|
static types(): { [key: string]: any } {
|
|
6747
6761
|
return {
|
|
6748
6762
|
appId: 'string',
|
|
6763
|
+
enableIdle: 'boolean',
|
|
6749
6764
|
minReadyInstanceRatio: 'number',
|
|
6750
6765
|
minReadyInstances: 'number',
|
|
6751
6766
|
scalingRuleEnable: 'boolean',
|
|
@@ -6846,6 +6861,8 @@ export class CreateApplicationScalingRuleResponse extends $tea.Model {
|
|
|
6846
6861
|
export class CreateConfigMapRequest extends $tea.Model {
|
|
6847
6862
|
/**
|
|
6848
6863
|
* @remarks
|
|
6864
|
+
* The ConfigMap data.
|
|
6865
|
+
*
|
|
6849
6866
|
* This parameter is required.
|
|
6850
6867
|
*
|
|
6851
6868
|
* @example
|
|
@@ -6853,13 +6870,20 @@ export class CreateConfigMapRequest extends $tea.Model {
|
|
|
6853
6870
|
*/
|
|
6854
6871
|
data?: string;
|
|
6855
6872
|
/**
|
|
6873
|
+
* @remarks
|
|
6874
|
+
* The key-value pairs of the ConfigMap in the JSON format. Format:
|
|
6875
|
+
*
|
|
6876
|
+
* {"Data":"{"k1":"v1", "k2":"v2"}"}
|
|
6877
|
+
*
|
|
6878
|
+
* k specifies a key and v specifies a value. For more information, see [Manage a Kubernetes ConfigMap](https://help.aliyun.com/document_detail/171326.html).
|
|
6879
|
+
*
|
|
6856
6880
|
* @example
|
|
6857
6881
|
* test-desc
|
|
6858
6882
|
*/
|
|
6859
6883
|
description?: string;
|
|
6860
6884
|
/**
|
|
6861
6885
|
* @remarks
|
|
6862
|
-
*
|
|
6886
|
+
* The name of the ConfigMap. The name can contain digits, letters, and underscores (_). The name must start with a letter.
|
|
6863
6887
|
*
|
|
6864
6888
|
* This parameter is required.
|
|
6865
6889
|
*
|
|
@@ -6869,7 +6893,7 @@ export class CreateConfigMapRequest extends $tea.Model {
|
|
|
6869
6893
|
name?: string;
|
|
6870
6894
|
/**
|
|
6871
6895
|
* @remarks
|
|
6872
|
-
* The ID of the
|
|
6896
|
+
* The ID of the namespace to which the ConfigMap instance belongs.
|
|
6873
6897
|
*
|
|
6874
6898
|
* This parameter is required.
|
|
6875
6899
|
*
|
|
@@ -6903,10 +6927,7 @@ export class CreateConfigMapRequest extends $tea.Model {
|
|
|
6903
6927
|
export class CreateConfigMapResponseBody extends $tea.Model {
|
|
6904
6928
|
/**
|
|
6905
6929
|
* @remarks
|
|
6906
|
-
*
|
|
6907
|
-
*
|
|
6908
|
-
* * **true**: The instance was created.
|
|
6909
|
-
* * **false**: The call failed to be created.
|
|
6930
|
+
* Empty
|
|
6910
6931
|
*
|
|
6911
6932
|
* @example
|
|
6912
6933
|
* 200
|
|
@@ -6914,22 +6935,23 @@ export class CreateConfigMapResponseBody extends $tea.Model {
|
|
|
6914
6935
|
code?: string;
|
|
6915
6936
|
/**
|
|
6916
6937
|
* @remarks
|
|
6917
|
-
* The ID
|
|
6938
|
+
* The trace ID that is used to query the details of the request.
|
|
6918
6939
|
*/
|
|
6919
6940
|
data?: CreateConfigMapResponseBodyData;
|
|
6920
6941
|
/**
|
|
6921
6942
|
* @remarks
|
|
6922
|
-
* The
|
|
6943
|
+
* The ID of the ConfigMap that was created.
|
|
6923
6944
|
*
|
|
6924
|
-
*
|
|
6925
|
-
*
|
|
6926
|
-
*
|
|
6927
|
-
* *
|
|
6945
|
+
* @example
|
|
6946
|
+
* The error code. Valid values:
|
|
6947
|
+
*
|
|
6948
|
+
* * If the call is successful, the **ErrorCode** parameter is not returned.
|
|
6949
|
+
* * If the call fails, the **ErrorCode** parameter is returned. For more information, see the **Error codes** section in this topic.
|
|
6928
6950
|
*/
|
|
6929
6951
|
errorCode?: string;
|
|
6930
6952
|
/**
|
|
6931
6953
|
* @remarks
|
|
6932
|
-
* The
|
|
6954
|
+
* The request ID.
|
|
6933
6955
|
*
|
|
6934
6956
|
* @example
|
|
6935
6957
|
* success
|
|
@@ -6937,20 +6959,28 @@ export class CreateConfigMapResponseBody extends $tea.Model {
|
|
|
6937
6959
|
message?: string;
|
|
6938
6960
|
/**
|
|
6939
6961
|
* @remarks
|
|
6940
|
-
* The returned
|
|
6962
|
+
* The returned data.
|
|
6941
6963
|
*
|
|
6942
6964
|
* @example
|
|
6943
6965
|
* 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
|
|
6944
6966
|
*/
|
|
6945
6967
|
requestId?: string;
|
|
6946
6968
|
/**
|
|
6969
|
+
* @remarks
|
|
6970
|
+
* The HTTP status code. Valid values:
|
|
6971
|
+
*
|
|
6972
|
+
* * **2xx**: The call was successful.
|
|
6973
|
+
* * **3xx**: The call was redirected.
|
|
6974
|
+
* * **4xx**: The call failed.
|
|
6975
|
+
* * **5xx**: A server error occurred.
|
|
6976
|
+
*
|
|
6947
6977
|
* @example
|
|
6948
6978
|
* true
|
|
6949
6979
|
*/
|
|
6950
6980
|
success?: boolean;
|
|
6951
6981
|
/**
|
|
6952
6982
|
* @remarks
|
|
6953
|
-
* The returned
|
|
6983
|
+
* The returned message.
|
|
6954
6984
|
*
|
|
6955
6985
|
* @example
|
|
6956
6986
|
* 0a98a02315955564772843261e****
|
|
@@ -10260,6 +10290,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
10260
10290
|
* false
|
|
10261
10291
|
*/
|
|
10262
10292
|
enableGreyTagRoute?: boolean;
|
|
10293
|
+
enableNewArms?: boolean;
|
|
10263
10294
|
/**
|
|
10264
10295
|
* @remarks
|
|
10265
10296
|
* The environment variables. You can configure custom environment variables or reference a ConfigMap. If you want to reference a ConfigMap, you must first create a ConfigMap. For more information, see [CreateConfigMap](https://help.aliyun.com/document_detail/176914.html). Take note of the following rules:
|
|
@@ -10705,6 +10736,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
10705
10736
|
edasContainerVersion: 'EdasContainerVersion',
|
|
10706
10737
|
enableAhas: 'EnableAhas',
|
|
10707
10738
|
enableGreyTagRoute: 'EnableGreyTagRoute',
|
|
10739
|
+
enableNewArms: 'EnableNewArms',
|
|
10708
10740
|
envs: 'Envs',
|
|
10709
10741
|
imagePullSecrets: 'ImagePullSecrets',
|
|
10710
10742
|
imageUrl: 'ImageUrl',
|
|
@@ -10770,6 +10802,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
10770
10802
|
edasContainerVersion: 'string',
|
|
10771
10803
|
enableAhas: 'string',
|
|
10772
10804
|
enableGreyTagRoute: 'boolean',
|
|
10805
|
+
enableNewArms: 'boolean',
|
|
10773
10806
|
envs: 'string',
|
|
10774
10807
|
imagePullSecrets: 'string',
|
|
10775
10808
|
imageUrl: 'string',
|
|
@@ -15352,7 +15385,7 @@ export class DescribeWebCustomDomainRequest extends $tea.Model {
|
|
|
15352
15385
|
export class DescribeWebCustomDomainResponse extends $tea.Model {
|
|
15353
15386
|
headers?: { [key: string]: string };
|
|
15354
15387
|
statusCode?: number;
|
|
15355
|
-
body?:
|
|
15388
|
+
body?: WebCustomDomain;
|
|
15356
15389
|
static names(): { [key: string]: string } {
|
|
15357
15390
|
return {
|
|
15358
15391
|
headers: 'headers',
|
|
@@ -15365,7 +15398,7 @@ export class DescribeWebCustomDomainResponse extends $tea.Model {
|
|
|
15365
15398
|
return {
|
|
15366
15399
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
15367
15400
|
statusCode: 'number',
|
|
15368
|
-
body:
|
|
15401
|
+
body: WebCustomDomain,
|
|
15369
15402
|
};
|
|
15370
15403
|
}
|
|
15371
15404
|
|
|
@@ -19666,9 +19699,6 @@ export class ListWebCustomDomainsRequest extends $tea.Model {
|
|
|
19666
19699
|
*/
|
|
19667
19700
|
limit?: number;
|
|
19668
19701
|
/**
|
|
19669
|
-
* @remarks
|
|
19670
|
-
* This parameter is required.
|
|
19671
|
-
*
|
|
19672
19702
|
* @example
|
|
19673
19703
|
* cn-hangzhou
|
|
19674
19704
|
*/
|
|
@@ -22471,6 +22501,7 @@ export class UpdateApplicationScalingRuleRequest extends $tea.Model {
|
|
|
22471
22501
|
* 7171a6ca-d1cd-4928-8642-7d5cfe69****
|
|
22472
22502
|
*/
|
|
22473
22503
|
appId?: string;
|
|
22504
|
+
enableIdle?: boolean;
|
|
22474
22505
|
/**
|
|
22475
22506
|
* @remarks
|
|
22476
22507
|
* The percentage of the minimum number of available instances. Take note of the following rules:
|
|
@@ -22604,6 +22635,7 @@ export class UpdateApplicationScalingRuleRequest extends $tea.Model {
|
|
|
22604
22635
|
static names(): { [key: string]: string } {
|
|
22605
22636
|
return {
|
|
22606
22637
|
appId: 'AppId',
|
|
22638
|
+
enableIdle: 'EnableIdle',
|
|
22607
22639
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
22608
22640
|
minReadyInstances: 'MinReadyInstances',
|
|
22609
22641
|
scalingRuleMetric: 'ScalingRuleMetric',
|
|
@@ -22615,6 +22647,7 @@ export class UpdateApplicationScalingRuleRequest extends $tea.Model {
|
|
|
22615
22647
|
static types(): { [key: string]: any } {
|
|
22616
22648
|
return {
|
|
22617
22649
|
appId: 'string',
|
|
22650
|
+
enableIdle: 'boolean',
|
|
22618
22651
|
minReadyInstanceRatio: 'number',
|
|
22619
22652
|
minReadyInstances: 'number',
|
|
22620
22653
|
scalingRuleMetric: 'string',
|
|
@@ -26230,6 +26263,7 @@ export class CreateApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
26230
26263
|
* 1616642248938
|
|
26231
26264
|
*/
|
|
26232
26265
|
createTime?: number;
|
|
26266
|
+
enableIdle?: boolean;
|
|
26233
26267
|
/**
|
|
26234
26268
|
* @example
|
|
26235
26269
|
* 1641882854484
|
|
@@ -26261,6 +26295,7 @@ export class CreateApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
26261
26295
|
return {
|
|
26262
26296
|
appId: 'AppId',
|
|
26263
26297
|
createTime: 'CreateTime',
|
|
26298
|
+
enableIdle: 'EnableIdle',
|
|
26264
26299
|
lastDisableTime: 'LastDisableTime',
|
|
26265
26300
|
metric: 'Metric',
|
|
26266
26301
|
scaleRuleEnabled: 'ScaleRuleEnabled',
|
|
@@ -26275,6 +26310,7 @@ export class CreateApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
26275
26310
|
return {
|
|
26276
26311
|
appId: 'string',
|
|
26277
26312
|
createTime: 'number',
|
|
26313
|
+
enableIdle: 'boolean',
|
|
26278
26314
|
lastDisableTime: 'number',
|
|
26279
26315
|
metric: CreateApplicationScalingRuleResponseBodyDataMetric,
|
|
26280
26316
|
scaleRuleEnabled: 'boolean',
|
|
@@ -26293,10 +26329,7 @@ export class CreateApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
26293
26329
|
export class CreateConfigMapResponseBodyData extends $tea.Model {
|
|
26294
26330
|
/**
|
|
26295
26331
|
* @remarks
|
|
26296
|
-
* The returned
|
|
26297
|
-
*
|
|
26298
|
-
* * If the call is successful, the **ErrorCode** parameter is not returned.
|
|
26299
|
-
* * If the call fails, the **ErrorCode** parameter is returned. For more information, see the "**Error codes**" section of this topic.
|
|
26332
|
+
* The returned result.
|
|
26300
26333
|
*
|
|
26301
26334
|
* @example
|
|
26302
26335
|
* 1
|
|
@@ -27331,6 +27364,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
27331
27364
|
*/
|
|
27332
27365
|
enableGreyTagRoute?: boolean;
|
|
27333
27366
|
enableIdle?: boolean;
|
|
27367
|
+
enableNewArms?: boolean;
|
|
27334
27368
|
/**
|
|
27335
27369
|
* @remarks
|
|
27336
27370
|
* The environment variables. Variable description:
|
|
@@ -27843,6 +27877,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
27843
27877
|
enableAhas: 'EnableAhas',
|
|
27844
27878
|
enableGreyTagRoute: 'EnableGreyTagRoute',
|
|
27845
27879
|
enableIdle: 'EnableIdle',
|
|
27880
|
+
enableNewArms: 'EnableNewArms',
|
|
27846
27881
|
envs: 'Envs',
|
|
27847
27882
|
imagePullSecrets: 'ImagePullSecrets',
|
|
27848
27883
|
imageUrl: 'ImageUrl',
|
|
@@ -27916,6 +27951,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
27916
27951
|
enableAhas: 'string',
|
|
27917
27952
|
enableGreyTagRoute: 'boolean',
|
|
27918
27953
|
enableIdle: 'boolean',
|
|
27954
|
+
enableNewArms: 'boolean',
|
|
27919
27955
|
envs: 'string',
|
|
27920
27956
|
imagePullSecrets: 'string',
|
|
27921
27957
|
imageUrl: 'string',
|
|
@@ -28969,6 +29005,7 @@ export class DescribeApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
28969
29005
|
* 1624329843790
|
|
28970
29006
|
*/
|
|
28971
29007
|
createTime?: number;
|
|
29008
|
+
enableIdle?: boolean;
|
|
28972
29009
|
/**
|
|
28973
29010
|
* @remarks
|
|
28974
29011
|
* The time when the auto scaling policy was last disabled.
|
|
@@ -29032,6 +29069,7 @@ export class DescribeApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
29032
29069
|
return {
|
|
29033
29070
|
appId: 'AppId',
|
|
29034
29071
|
createTime: 'CreateTime',
|
|
29072
|
+
enableIdle: 'EnableIdle',
|
|
29035
29073
|
lastDisableTime: 'LastDisableTime',
|
|
29036
29074
|
metric: 'Metric',
|
|
29037
29075
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
@@ -29048,6 +29086,7 @@ export class DescribeApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
29048
29086
|
return {
|
|
29049
29087
|
appId: 'string',
|
|
29050
29088
|
createTime: 'number',
|
|
29089
|
+
enableIdle: 'boolean',
|
|
29051
29090
|
lastDisableTime: 'number',
|
|
29052
29091
|
metric: DescribeApplicationScalingRuleResponseBodyDataMetric,
|
|
29053
29092
|
minReadyInstanceRatio: 'number',
|
|
@@ -29635,6 +29674,7 @@ export class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRu
|
|
|
29635
29674
|
* 1616642248938
|
|
29636
29675
|
*/
|
|
29637
29676
|
createTime?: number;
|
|
29677
|
+
enableIdle?: boolean;
|
|
29638
29678
|
/**
|
|
29639
29679
|
* @remarks
|
|
29640
29680
|
* The time when the auto scaling policy was last disabled.
|
|
@@ -29698,6 +29738,7 @@ export class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRu
|
|
|
29698
29738
|
return {
|
|
29699
29739
|
appId: 'AppId',
|
|
29700
29740
|
createTime: 'CreateTime',
|
|
29741
|
+
enableIdle: 'EnableIdle',
|
|
29701
29742
|
lastDisableTime: 'LastDisableTime',
|
|
29702
29743
|
metric: 'Metric',
|
|
29703
29744
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
@@ -29714,6 +29755,7 @@ export class DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRu
|
|
|
29714
29755
|
return {
|
|
29715
29756
|
appId: 'string',
|
|
29716
29757
|
createTime: 'number',
|
|
29758
|
+
enableIdle: 'boolean',
|
|
29717
29759
|
lastDisableTime: 'number',
|
|
29718
29760
|
metric: DescribeApplicationScalingRulesResponseBodyDataApplicationScalingRulesMetric,
|
|
29719
29761
|
minReadyInstanceRatio: 'number',
|
|
@@ -38141,6 +38183,7 @@ export class UpdateApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
38141
38183
|
* 1616642248938
|
|
38142
38184
|
*/
|
|
38143
38185
|
createTime?: number;
|
|
38186
|
+
enableIdle?: boolean;
|
|
38144
38187
|
/**
|
|
38145
38188
|
* @remarks
|
|
38146
38189
|
* The time when the auto scaling policy was last disabled.
|
|
@@ -38202,6 +38245,7 @@ export class UpdateApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
38202
38245
|
return {
|
|
38203
38246
|
appId: 'AppId',
|
|
38204
38247
|
createTime: 'CreateTime',
|
|
38248
|
+
enableIdle: 'EnableIdle',
|
|
38205
38249
|
lastDisableTime: 'LastDisableTime',
|
|
38206
38250
|
metric: 'Metric',
|
|
38207
38251
|
scaleRuleEnabled: 'ScaleRuleEnabled',
|
|
@@ -38216,6 +38260,7 @@ export class UpdateApplicationScalingRuleResponseBodyData extends $tea.Model {
|
|
|
38216
38260
|
return {
|
|
38217
38261
|
appId: 'string',
|
|
38218
38262
|
createTime: 'number',
|
|
38263
|
+
enableIdle: 'boolean',
|
|
38219
38264
|
lastDisableTime: 'number',
|
|
38220
38265
|
metric: UpdateApplicationScalingRuleResponseBodyDataMetric,
|
|
38221
38266
|
scaleRuleEnabled: 'boolean',
|
|
@@ -38842,6 +38887,10 @@ export default class Client extends OpenApi {
|
|
|
38842
38887
|
query["EnableEbpf"] = request.enableEbpf;
|
|
38843
38888
|
}
|
|
38844
38889
|
|
|
38890
|
+
if (!Util.isUnset(request.enableNewArms)) {
|
|
38891
|
+
query["EnableNewArms"] = request.enableNewArms;
|
|
38892
|
+
}
|
|
38893
|
+
|
|
38845
38894
|
if (!Util.isUnset(request.envs)) {
|
|
38846
38895
|
query["Envs"] = request.envs;
|
|
38847
38896
|
}
|
|
@@ -39090,6 +39139,10 @@ export default class Client extends OpenApi {
|
|
|
39090
39139
|
query["AppId"] = request.appId;
|
|
39091
39140
|
}
|
|
39092
39141
|
|
|
39142
|
+
if (!Util.isUnset(request.enableIdle)) {
|
|
39143
|
+
query["EnableIdle"] = request.enableIdle;
|
|
39144
|
+
}
|
|
39145
|
+
|
|
39093
39146
|
if (!Util.isUnset(request.minReadyInstanceRatio)) {
|
|
39094
39147
|
query["MinReadyInstanceRatio"] = request.minReadyInstanceRatio;
|
|
39095
39148
|
}
|
|
@@ -39156,7 +39209,7 @@ export default class Client extends OpenApi {
|
|
|
39156
39209
|
}
|
|
39157
39210
|
|
|
39158
39211
|
/**
|
|
39159
|
-
*
|
|
39212
|
+
* Create a ConfigMap in a namespace.
|
|
39160
39213
|
*
|
|
39161
39214
|
* @param request - CreateConfigMapRequest
|
|
39162
39215
|
* @param headers - map
|
|
@@ -39203,7 +39256,7 @@ export default class Client extends OpenApi {
|
|
|
39203
39256
|
}
|
|
39204
39257
|
|
|
39205
39258
|
/**
|
|
39206
|
-
*
|
|
39259
|
+
* Create a ConfigMap in a namespace.
|
|
39207
39260
|
*
|
|
39208
39261
|
* @param request - CreateConfigMapRequest
|
|
39209
39262
|
* @returns CreateConfigMapResponse
|
|
@@ -40454,6 +40507,10 @@ export default class Client extends OpenApi {
|
|
|
40454
40507
|
query["EnableGreyTagRoute"] = request.enableGreyTagRoute;
|
|
40455
40508
|
}
|
|
40456
40509
|
|
|
40510
|
+
if (!Util.isUnset(request.enableNewArms)) {
|
|
40511
|
+
query["EnableNewArms"] = request.enableNewArms;
|
|
40512
|
+
}
|
|
40513
|
+
|
|
40457
40514
|
if (!Util.isUnset(request.envs)) {
|
|
40458
40515
|
query["Envs"] = request.envs;
|
|
40459
40516
|
}
|
|
@@ -44879,6 +44936,10 @@ export default class Client extends OpenApi {
|
|
|
44879
44936
|
query["AppId"] = request.appId;
|
|
44880
44937
|
}
|
|
44881
44938
|
|
|
44939
|
+
if (!Util.isUnset(request.enableIdle)) {
|
|
44940
|
+
query["EnableIdle"] = request.enableIdle;
|
|
44941
|
+
}
|
|
44942
|
+
|
|
44882
44943
|
if (!Util.isUnset(request.minReadyInstanceRatio)) {
|
|
44883
44944
|
query["MinReadyInstanceRatio"] = request.minReadyInstanceRatio;
|
|
44884
44945
|
}
|