@alicloud/ga20191120 2.1.1 → 2.1.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 +40 -4
- package/dist/client.js +74 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +98 -4
package/dist/client.d.ts
CHANGED
|
@@ -1440,11 +1440,13 @@ export declare class CreateListenerRequest extends $tea.Model {
|
|
|
1440
1440
|
customRoutingEndpointGroupConfigurations?: CreateListenerRequestCustomRoutingEndpointGroupConfigurations[];
|
|
1441
1441
|
description?: string;
|
|
1442
1442
|
endpointGroupConfigurations?: CreateListenerRequestEndpointGroupConfigurations[];
|
|
1443
|
+
idleTimeout?: number;
|
|
1443
1444
|
name?: string;
|
|
1444
1445
|
portRanges?: CreateListenerRequestPortRanges[];
|
|
1445
1446
|
protocol?: string;
|
|
1446
1447
|
proxyProtocol?: boolean;
|
|
1447
1448
|
regionId?: string;
|
|
1449
|
+
requestTimeout?: number;
|
|
1448
1450
|
securityPolicyId?: string;
|
|
1449
1451
|
type?: string;
|
|
1450
1452
|
XForwardedForConfig?: CreateListenerRequestXForwardedForConfig;
|
|
@@ -3249,6 +3251,7 @@ export declare class DescribeListenerResponseBody extends $tea.Model {
|
|
|
3249
3251
|
clientAffinity?: string;
|
|
3250
3252
|
createTime?: string;
|
|
3251
3253
|
description?: string;
|
|
3254
|
+
idleTimeout?: number;
|
|
3252
3255
|
listenerId?: string;
|
|
3253
3256
|
name?: string;
|
|
3254
3257
|
portRanges?: DescribeListenerResponseBodyPortRanges[];
|
|
@@ -3256,6 +3259,7 @@ export declare class DescribeListenerResponseBody extends $tea.Model {
|
|
|
3256
3259
|
proxyProtocol?: boolean;
|
|
3257
3260
|
relatedAcls?: DescribeListenerResponseBodyRelatedAcls[];
|
|
3258
3261
|
requestId?: string;
|
|
3262
|
+
requestTimeout?: number;
|
|
3259
3263
|
securityPolicyId?: string;
|
|
3260
3264
|
serviceId?: string;
|
|
3261
3265
|
serviceManaged?: boolean;
|
|
@@ -7230,12 +7234,14 @@ export declare class UpdateListenerRequest extends $tea.Model {
|
|
|
7230
7234
|
clientAffinity?: string;
|
|
7231
7235
|
clientToken?: string;
|
|
7232
7236
|
description?: string;
|
|
7237
|
+
idleTimeout?: number;
|
|
7233
7238
|
listenerId?: string;
|
|
7234
7239
|
name?: string;
|
|
7235
7240
|
portRanges?: UpdateListenerRequestPortRanges[];
|
|
7236
7241
|
protocol?: string;
|
|
7237
7242
|
proxyProtocol?: string;
|
|
7238
7243
|
regionId?: string;
|
|
7244
|
+
requestTimeout?: number;
|
|
7239
7245
|
securityPolicyId?: string;
|
|
7240
7246
|
XForwardedForConfig?: UpdateListenerRequestXForwardedForConfig;
|
|
7241
7247
|
static names(): {
|
|
@@ -7691,6 +7697,33 @@ export declare class CreateEndpointGroupsRequestEndpointGroupConfigurationsPortO
|
|
|
7691
7697
|
[key: string]: any;
|
|
7692
7698
|
});
|
|
7693
7699
|
}
|
|
7700
|
+
export declare class CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag extends $tea.Model {
|
|
7701
|
+
key?: string;
|
|
7702
|
+
scope?: string;
|
|
7703
|
+
value?: string;
|
|
7704
|
+
static names(): {
|
|
7705
|
+
[key: string]: string;
|
|
7706
|
+
};
|
|
7707
|
+
static types(): {
|
|
7708
|
+
[key: string]: any;
|
|
7709
|
+
};
|
|
7710
|
+
constructor(map?: {
|
|
7711
|
+
[key: string]: any;
|
|
7712
|
+
});
|
|
7713
|
+
}
|
|
7714
|
+
export declare class CreateEndpointGroupsRequestEndpointGroupConfigurationsTag extends $tea.Model {
|
|
7715
|
+
key?: string;
|
|
7716
|
+
value?: string;
|
|
7717
|
+
static names(): {
|
|
7718
|
+
[key: string]: string;
|
|
7719
|
+
};
|
|
7720
|
+
static types(): {
|
|
7721
|
+
[key: string]: any;
|
|
7722
|
+
};
|
|
7723
|
+
constructor(map?: {
|
|
7724
|
+
[key: string]: any;
|
|
7725
|
+
});
|
|
7726
|
+
}
|
|
7694
7727
|
export declare class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea.Model {
|
|
7695
7728
|
enableClientIPPreservationProxyProtocol?: boolean;
|
|
7696
7729
|
enableClientIPPreservationToa?: boolean;
|
|
@@ -7706,6 +7739,8 @@ export declare class CreateEndpointGroupsRequestEndpointGroupConfigurations exte
|
|
|
7706
7739
|
healthCheckPort?: number;
|
|
7707
7740
|
healthCheckProtocol?: string;
|
|
7708
7741
|
portOverrides?: CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides[];
|
|
7742
|
+
systemTag?: CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag[];
|
|
7743
|
+
tag?: CreateEndpointGroupsRequestEndpointGroupConfigurationsTag[];
|
|
7709
7744
|
thresholdCount?: number;
|
|
7710
7745
|
trafficPercentage?: number;
|
|
7711
7746
|
static names(): {
|
|
@@ -7939,6 +7974,7 @@ export declare class CreateListenerRequestCustomRoutingEndpointGroupConfiguratio
|
|
|
7939
7974
|
}
|
|
7940
7975
|
export declare class CreateListenerRequestEndpointGroupConfigurationsEndpointConfigurations extends $tea.Model {
|
|
7941
7976
|
endpoint?: string;
|
|
7977
|
+
subAddress?: string;
|
|
7942
7978
|
type?: string;
|
|
7943
7979
|
weight?: number;
|
|
7944
7980
|
static names(): {
|
|
@@ -9805,11 +9841,13 @@ export declare class ListListenersResponseBodyListeners extends $tea.Model {
|
|
|
9805
9841
|
clientAffinity?: string;
|
|
9806
9842
|
createTime?: number;
|
|
9807
9843
|
description?: string;
|
|
9844
|
+
idleTimeout?: number;
|
|
9808
9845
|
listenerId?: string;
|
|
9809
9846
|
name?: string;
|
|
9810
9847
|
portRanges?: ListListenersResponseBodyListenersPortRanges[];
|
|
9811
9848
|
protocol?: string;
|
|
9812
9849
|
proxyProtocol?: boolean;
|
|
9850
|
+
requestTimeout?: number;
|
|
9813
9851
|
securityPolicyId?: string;
|
|
9814
9852
|
serviceId?: string;
|
|
9815
9853
|
serviceManaged?: boolean;
|
|
@@ -12363,8 +12401,7 @@ export default class Client extends OpenApi {
|
|
|
12363
12401
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
12364
12402
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you cannot change the mode of the instance to managed mode.
|
|
12365
12403
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you can obtain all operation permissions on the instance.
|
|
12366
|
-
*
|
|
12367
|
-
* **Warning** If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.
|
|
12404
|
+
* <warning>If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.></warning>
|
|
12368
12405
|
*
|
|
12369
12406
|
* @param request UpdateServiceManagedControlRequest
|
|
12370
12407
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12375,8 +12412,7 @@ export default class Client extends OpenApi {
|
|
|
12375
12412
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
12376
12413
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you cannot change the mode of the instance to managed mode.
|
|
12377
12414
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you can obtain all operation permissions on the instance.
|
|
12378
|
-
*
|
|
12379
|
-
* **Warning** If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.
|
|
12415
|
+
* <warning>If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.></warning>
|
|
12380
12416
|
*
|
|
12381
12417
|
* @param request UpdateServiceManagedControlRequest
|
|
12382
12418
|
* @return UpdateServiceManagedControlResponse
|
package/dist/client.js
CHANGED
|
@@ -2048,11 +2048,13 @@ class CreateListenerRequest extends $tea.Model {
|
|
|
2048
2048
|
customRoutingEndpointGroupConfigurations: 'CustomRoutingEndpointGroupConfigurations',
|
|
2049
2049
|
description: 'Description',
|
|
2050
2050
|
endpointGroupConfigurations: 'EndpointGroupConfigurations',
|
|
2051
|
+
idleTimeout: 'IdleTimeout',
|
|
2051
2052
|
name: 'Name',
|
|
2052
2053
|
portRanges: 'PortRanges',
|
|
2053
2054
|
protocol: 'Protocol',
|
|
2054
2055
|
proxyProtocol: 'ProxyProtocol',
|
|
2055
2056
|
regionId: 'RegionId',
|
|
2057
|
+
requestTimeout: 'RequestTimeout',
|
|
2056
2058
|
securityPolicyId: 'SecurityPolicyId',
|
|
2057
2059
|
type: 'Type',
|
|
2058
2060
|
XForwardedForConfig: 'XForwardedForConfig',
|
|
@@ -2067,11 +2069,13 @@ class CreateListenerRequest extends $tea.Model {
|
|
|
2067
2069
|
customRoutingEndpointGroupConfigurations: { 'type': 'array', 'itemType': CreateListenerRequestCustomRoutingEndpointGroupConfigurations },
|
|
2068
2070
|
description: 'string',
|
|
2069
2071
|
endpointGroupConfigurations: { 'type': 'array', 'itemType': CreateListenerRequestEndpointGroupConfigurations },
|
|
2072
|
+
idleTimeout: 'number',
|
|
2070
2073
|
name: 'string',
|
|
2071
2074
|
portRanges: { 'type': 'array', 'itemType': CreateListenerRequestPortRanges },
|
|
2072
2075
|
protocol: 'string',
|
|
2073
2076
|
proxyProtocol: 'boolean',
|
|
2074
2077
|
regionId: 'string',
|
|
2078
|
+
requestTimeout: 'number',
|
|
2075
2079
|
securityPolicyId: 'string',
|
|
2076
2080
|
type: 'string',
|
|
2077
2081
|
XForwardedForConfig: CreateListenerRequestXForwardedForConfig,
|
|
@@ -4594,6 +4598,7 @@ class DescribeListenerResponseBody extends $tea.Model {
|
|
|
4594
4598
|
clientAffinity: 'ClientAffinity',
|
|
4595
4599
|
createTime: 'CreateTime',
|
|
4596
4600
|
description: 'Description',
|
|
4601
|
+
idleTimeout: 'IdleTimeout',
|
|
4597
4602
|
listenerId: 'ListenerId',
|
|
4598
4603
|
name: 'Name',
|
|
4599
4604
|
portRanges: 'PortRanges',
|
|
@@ -4601,6 +4606,7 @@ class DescribeListenerResponseBody extends $tea.Model {
|
|
|
4601
4606
|
proxyProtocol: 'ProxyProtocol',
|
|
4602
4607
|
relatedAcls: 'RelatedAcls',
|
|
4603
4608
|
requestId: 'RequestId',
|
|
4609
|
+
requestTimeout: 'RequestTimeout',
|
|
4604
4610
|
securityPolicyId: 'SecurityPolicyId',
|
|
4605
4611
|
serviceId: 'ServiceId',
|
|
4606
4612
|
serviceManaged: 'ServiceManaged',
|
|
@@ -4619,6 +4625,7 @@ class DescribeListenerResponseBody extends $tea.Model {
|
|
|
4619
4625
|
clientAffinity: 'string',
|
|
4620
4626
|
createTime: 'string',
|
|
4621
4627
|
description: 'string',
|
|
4628
|
+
idleTimeout: 'number',
|
|
4622
4629
|
listenerId: 'string',
|
|
4623
4630
|
name: 'string',
|
|
4624
4631
|
portRanges: { 'type': 'array', 'itemType': DescribeListenerResponseBodyPortRanges },
|
|
@@ -4626,6 +4633,7 @@ class DescribeListenerResponseBody extends $tea.Model {
|
|
|
4626
4633
|
proxyProtocol: 'boolean',
|
|
4627
4634
|
relatedAcls: { 'type': 'array', 'itemType': DescribeListenerResponseBodyRelatedAcls },
|
|
4628
4635
|
requestId: 'string',
|
|
4636
|
+
requestTimeout: 'number',
|
|
4629
4637
|
securityPolicyId: 'string',
|
|
4630
4638
|
serviceId: 'string',
|
|
4631
4639
|
serviceManaged: 'boolean',
|
|
@@ -10158,12 +10166,14 @@ class UpdateListenerRequest extends $tea.Model {
|
|
|
10158
10166
|
clientAffinity: 'ClientAffinity',
|
|
10159
10167
|
clientToken: 'ClientToken',
|
|
10160
10168
|
description: 'Description',
|
|
10169
|
+
idleTimeout: 'IdleTimeout',
|
|
10161
10170
|
listenerId: 'ListenerId',
|
|
10162
10171
|
name: 'Name',
|
|
10163
10172
|
portRanges: 'PortRanges',
|
|
10164
10173
|
protocol: 'Protocol',
|
|
10165
10174
|
proxyProtocol: 'ProxyProtocol',
|
|
10166
10175
|
regionId: 'RegionId',
|
|
10176
|
+
requestTimeout: 'RequestTimeout',
|
|
10167
10177
|
securityPolicyId: 'SecurityPolicyId',
|
|
10168
10178
|
XForwardedForConfig: 'XForwardedForConfig',
|
|
10169
10179
|
};
|
|
@@ -10175,12 +10185,14 @@ class UpdateListenerRequest extends $tea.Model {
|
|
|
10175
10185
|
clientAffinity: 'string',
|
|
10176
10186
|
clientToken: 'string',
|
|
10177
10187
|
description: 'string',
|
|
10188
|
+
idleTimeout: 'number',
|
|
10178
10189
|
listenerId: 'string',
|
|
10179
10190
|
name: 'string',
|
|
10180
10191
|
portRanges: { 'type': 'array', 'itemType': UpdateListenerRequestPortRanges },
|
|
10181
10192
|
protocol: 'string',
|
|
10182
10193
|
proxyProtocol: 'string',
|
|
10183
10194
|
regionId: 'string',
|
|
10195
|
+
requestTimeout: 'number',
|
|
10184
10196
|
securityPolicyId: 'string',
|
|
10185
10197
|
XForwardedForConfig: UpdateListenerRequestXForwardedForConfig,
|
|
10186
10198
|
};
|
|
@@ -10809,6 +10821,44 @@ class CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides extend
|
|
|
10809
10821
|
}
|
|
10810
10822
|
}
|
|
10811
10823
|
exports.CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides = CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides;
|
|
10824
|
+
class CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag extends $tea.Model {
|
|
10825
|
+
constructor(map) {
|
|
10826
|
+
super(map);
|
|
10827
|
+
}
|
|
10828
|
+
static names() {
|
|
10829
|
+
return {
|
|
10830
|
+
key: 'Key',
|
|
10831
|
+
scope: 'Scope',
|
|
10832
|
+
value: 'Value',
|
|
10833
|
+
};
|
|
10834
|
+
}
|
|
10835
|
+
static types() {
|
|
10836
|
+
return {
|
|
10837
|
+
key: 'string',
|
|
10838
|
+
scope: 'string',
|
|
10839
|
+
value: 'string',
|
|
10840
|
+
};
|
|
10841
|
+
}
|
|
10842
|
+
}
|
|
10843
|
+
exports.CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag = CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag;
|
|
10844
|
+
class CreateEndpointGroupsRequestEndpointGroupConfigurationsTag extends $tea.Model {
|
|
10845
|
+
constructor(map) {
|
|
10846
|
+
super(map);
|
|
10847
|
+
}
|
|
10848
|
+
static names() {
|
|
10849
|
+
return {
|
|
10850
|
+
key: 'Key',
|
|
10851
|
+
value: 'Value',
|
|
10852
|
+
};
|
|
10853
|
+
}
|
|
10854
|
+
static types() {
|
|
10855
|
+
return {
|
|
10856
|
+
key: 'string',
|
|
10857
|
+
value: 'string',
|
|
10858
|
+
};
|
|
10859
|
+
}
|
|
10860
|
+
}
|
|
10861
|
+
exports.CreateEndpointGroupsRequestEndpointGroupConfigurationsTag = CreateEndpointGroupsRequestEndpointGroupConfigurationsTag;
|
|
10812
10862
|
class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea.Model {
|
|
10813
10863
|
constructor(map) {
|
|
10814
10864
|
super(map);
|
|
@@ -10829,6 +10879,8 @@ class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea.Model
|
|
|
10829
10879
|
healthCheckPort: 'HealthCheckPort',
|
|
10830
10880
|
healthCheckProtocol: 'HealthCheckProtocol',
|
|
10831
10881
|
portOverrides: 'PortOverrides',
|
|
10882
|
+
systemTag: 'SystemTag',
|
|
10883
|
+
tag: 'Tag',
|
|
10832
10884
|
thresholdCount: 'ThresholdCount',
|
|
10833
10885
|
trafficPercentage: 'TrafficPercentage',
|
|
10834
10886
|
};
|
|
@@ -10849,6 +10901,8 @@ class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea.Model
|
|
|
10849
10901
|
healthCheckPort: 'number',
|
|
10850
10902
|
healthCheckProtocol: 'string',
|
|
10851
10903
|
portOverrides: { 'type': 'array', 'itemType': CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides },
|
|
10904
|
+
systemTag: { 'type': 'array', 'itemType': CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag },
|
|
10905
|
+
tag: { 'type': 'array', 'itemType': CreateEndpointGroupsRequestEndpointGroupConfigurationsTag },
|
|
10852
10906
|
thresholdCount: 'number',
|
|
10853
10907
|
trafficPercentage: 'number',
|
|
10854
10908
|
};
|
|
@@ -11172,6 +11226,7 @@ class CreateListenerRequestEndpointGroupConfigurationsEndpointConfigurations ext
|
|
|
11172
11226
|
static names() {
|
|
11173
11227
|
return {
|
|
11174
11228
|
endpoint: 'Endpoint',
|
|
11229
|
+
subAddress: 'SubAddress',
|
|
11175
11230
|
type: 'Type',
|
|
11176
11231
|
weight: 'Weight',
|
|
11177
11232
|
};
|
|
@@ -11179,6 +11234,7 @@ class CreateListenerRequestEndpointGroupConfigurationsEndpointConfigurations ext
|
|
|
11179
11234
|
static types() {
|
|
11180
11235
|
return {
|
|
11181
11236
|
endpoint: 'string',
|
|
11237
|
+
subAddress: 'string',
|
|
11182
11238
|
type: 'string',
|
|
11183
11239
|
weight: 'number',
|
|
11184
11240
|
};
|
|
@@ -13939,11 +13995,13 @@ class ListListenersResponseBodyListeners extends $tea.Model {
|
|
|
13939
13995
|
clientAffinity: 'ClientAffinity',
|
|
13940
13996
|
createTime: 'CreateTime',
|
|
13941
13997
|
description: 'Description',
|
|
13998
|
+
idleTimeout: 'IdleTimeout',
|
|
13942
13999
|
listenerId: 'ListenerId',
|
|
13943
14000
|
name: 'Name',
|
|
13944
14001
|
portRanges: 'PortRanges',
|
|
13945
14002
|
protocol: 'Protocol',
|
|
13946
14003
|
proxyProtocol: 'ProxyProtocol',
|
|
14004
|
+
requestTimeout: 'RequestTimeout',
|
|
13947
14005
|
securityPolicyId: 'SecurityPolicyId',
|
|
13948
14006
|
serviceId: 'ServiceId',
|
|
13949
14007
|
serviceManaged: 'ServiceManaged',
|
|
@@ -13961,11 +14019,13 @@ class ListListenersResponseBodyListeners extends $tea.Model {
|
|
|
13961
14019
|
clientAffinity: 'string',
|
|
13962
14020
|
createTime: 'number',
|
|
13963
14021
|
description: 'string',
|
|
14022
|
+
idleTimeout: 'number',
|
|
13964
14023
|
listenerId: 'string',
|
|
13965
14024
|
name: 'string',
|
|
13966
14025
|
portRanges: { 'type': 'array', 'itemType': ListListenersResponseBodyListenersPortRanges },
|
|
13967
14026
|
protocol: 'string',
|
|
13968
14027
|
proxyProtocol: 'boolean',
|
|
14028
|
+
requestTimeout: 'number',
|
|
13969
14029
|
securityPolicyId: 'string',
|
|
13970
14030
|
serviceId: 'string',
|
|
13971
14031
|
serviceManaged: 'boolean',
|
|
@@ -16598,6 +16658,9 @@ class Client extends openapi_client_1.default {
|
|
|
16598
16658
|
if (!tea_util_1.default.isUnset(request.endpointGroupConfigurations)) {
|
|
16599
16659
|
query["EndpointGroupConfigurations"] = request.endpointGroupConfigurations;
|
|
16600
16660
|
}
|
|
16661
|
+
if (!tea_util_1.default.isUnset(request.idleTimeout)) {
|
|
16662
|
+
query["IdleTimeout"] = request.idleTimeout;
|
|
16663
|
+
}
|
|
16601
16664
|
if (!tea_util_1.default.isUnset(request.name)) {
|
|
16602
16665
|
query["Name"] = request.name;
|
|
16603
16666
|
}
|
|
@@ -16613,6 +16676,9 @@ class Client extends openapi_client_1.default {
|
|
|
16613
16676
|
if (!tea_util_1.default.isUnset(request.regionId)) {
|
|
16614
16677
|
query["RegionId"] = request.regionId;
|
|
16615
16678
|
}
|
|
16679
|
+
if (!tea_util_1.default.isUnset(request.requestTimeout)) {
|
|
16680
|
+
query["RequestTimeout"] = request.requestTimeout;
|
|
16681
|
+
}
|
|
16616
16682
|
if (!tea_util_1.default.isUnset(request.securityPolicyId)) {
|
|
16617
16683
|
query["SecurityPolicyId"] = request.securityPolicyId;
|
|
16618
16684
|
}
|
|
@@ -22199,6 +22265,9 @@ class Client extends openapi_client_1.default {
|
|
|
22199
22265
|
if (!tea_util_1.default.isUnset(request.description)) {
|
|
22200
22266
|
query["Description"] = request.description;
|
|
22201
22267
|
}
|
|
22268
|
+
if (!tea_util_1.default.isUnset(request.idleTimeout)) {
|
|
22269
|
+
query["IdleTimeout"] = request.idleTimeout;
|
|
22270
|
+
}
|
|
22202
22271
|
if (!tea_util_1.default.isUnset(request.listenerId)) {
|
|
22203
22272
|
query["ListenerId"] = request.listenerId;
|
|
22204
22273
|
}
|
|
@@ -22217,6 +22286,9 @@ class Client extends openapi_client_1.default {
|
|
|
22217
22286
|
if (!tea_util_1.default.isUnset(request.regionId)) {
|
|
22218
22287
|
query["RegionId"] = request.regionId;
|
|
22219
22288
|
}
|
|
22289
|
+
if (!tea_util_1.default.isUnset(request.requestTimeout)) {
|
|
22290
|
+
query["RequestTimeout"] = request.requestTimeout;
|
|
22291
|
+
}
|
|
22220
22292
|
if (!tea_util_1.default.isUnset(request.securityPolicyId)) {
|
|
22221
22293
|
query["SecurityPolicyId"] = request.securityPolicyId;
|
|
22222
22294
|
}
|
|
@@ -22258,8 +22330,7 @@ class Client extends openapi_client_1.default {
|
|
|
22258
22330
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
22259
22331
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you cannot change the mode of the instance to managed mode.
|
|
22260
22332
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you can obtain all operation permissions on the instance.
|
|
22261
|
-
*
|
|
22262
|
-
* **Warning** If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.
|
|
22333
|
+
* <warning>If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.></warning>
|
|
22263
22334
|
*
|
|
22264
22335
|
* @param request UpdateServiceManagedControlRequest
|
|
22265
22336
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -22303,8 +22374,7 @@ class Client extends openapi_client_1.default {
|
|
|
22303
22374
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
22304
22375
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you cannot change the mode of the instance to managed mode.
|
|
22305
22376
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you can obtain all operation permissions on the instance.
|
|
22306
|
-
*
|
|
22307
|
-
* **Warning** If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.
|
|
22377
|
+
* <warning>If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.></warning>
|
|
22308
22378
|
*
|
|
22309
22379
|
* @param request UpdateServiceManagedControlRequest
|
|
22310
22380
|
* @return UpdateServiceManagedControlResponse
|