@alicloud/ga20191120 2.0.0 → 2.1.1
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 +178 -20
- package/dist/client.js +240 -20
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +274 -20
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -4686,6 +4686,7 @@ export class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
|
4686
4686
|
regionId?: string;
|
|
4687
4687
|
requestId?: string;
|
|
4688
4688
|
silenceTime?: number;
|
|
4689
|
+
state?: string;
|
|
4689
4690
|
taskId?: string;
|
|
4690
4691
|
taskName?: string;
|
|
4691
4692
|
static names(): { [key: string]: string } {
|
|
@@ -4701,6 +4702,7 @@ export class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
|
4701
4702
|
regionId: 'RegionId',
|
|
4702
4703
|
requestId: 'RequestId',
|
|
4703
4704
|
silenceTime: 'SilenceTime',
|
|
4705
|
+
state: 'State',
|
|
4704
4706
|
taskId: 'TaskId',
|
|
4705
4707
|
taskName: 'TaskName',
|
|
4706
4708
|
};
|
|
@@ -4719,6 +4721,7 @@ export class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
|
4719
4721
|
regionId: 'string',
|
|
4720
4722
|
requestId: 'string',
|
|
4721
4723
|
silenceTime: 'number',
|
|
4724
|
+
state: 'string',
|
|
4722
4725
|
taskId: 'string',
|
|
4723
4726
|
taskName: 'string',
|
|
4724
4727
|
};
|
|
@@ -5927,6 +5930,99 @@ export class DescribeListenerResponse extends $tea.Model {
|
|
|
5927
5930
|
}
|
|
5928
5931
|
}
|
|
5929
5932
|
|
|
5933
|
+
export class DescribeLogStoreOfEndpointGroupRequest extends $tea.Model {
|
|
5934
|
+
acceleratorId?: string;
|
|
5935
|
+
endpointGroupId?: string;
|
|
5936
|
+
listenerId?: string;
|
|
5937
|
+
regionId?: string;
|
|
5938
|
+
static names(): { [key: string]: string } {
|
|
5939
|
+
return {
|
|
5940
|
+
acceleratorId: 'AcceleratorId',
|
|
5941
|
+
endpointGroupId: 'EndpointGroupId',
|
|
5942
|
+
listenerId: 'ListenerId',
|
|
5943
|
+
regionId: 'RegionId',
|
|
5944
|
+
};
|
|
5945
|
+
}
|
|
5946
|
+
|
|
5947
|
+
static types(): { [key: string]: any } {
|
|
5948
|
+
return {
|
|
5949
|
+
acceleratorId: 'string',
|
|
5950
|
+
endpointGroupId: 'string',
|
|
5951
|
+
listenerId: 'string',
|
|
5952
|
+
regionId: 'string',
|
|
5953
|
+
};
|
|
5954
|
+
}
|
|
5955
|
+
|
|
5956
|
+
constructor(map?: { [key: string]: any }) {
|
|
5957
|
+
super(map);
|
|
5958
|
+
}
|
|
5959
|
+
}
|
|
5960
|
+
|
|
5961
|
+
export class DescribeLogStoreOfEndpointGroupResponseBody extends $tea.Model {
|
|
5962
|
+
acceleratorId?: string;
|
|
5963
|
+
endpointGroupId?: string;
|
|
5964
|
+
listenerId?: string;
|
|
5965
|
+
requestId?: string;
|
|
5966
|
+
slsLogStoreName?: string;
|
|
5967
|
+
slsProjectName?: string;
|
|
5968
|
+
slsRegionId?: string;
|
|
5969
|
+
status?: string;
|
|
5970
|
+
static names(): { [key: string]: string } {
|
|
5971
|
+
return {
|
|
5972
|
+
acceleratorId: 'AcceleratorId',
|
|
5973
|
+
endpointGroupId: 'EndpointGroupId',
|
|
5974
|
+
listenerId: 'ListenerId',
|
|
5975
|
+
requestId: 'RequestId',
|
|
5976
|
+
slsLogStoreName: 'SlsLogStoreName',
|
|
5977
|
+
slsProjectName: 'SlsProjectName',
|
|
5978
|
+
slsRegionId: 'SlsRegionId',
|
|
5979
|
+
status: 'Status',
|
|
5980
|
+
};
|
|
5981
|
+
}
|
|
5982
|
+
|
|
5983
|
+
static types(): { [key: string]: any } {
|
|
5984
|
+
return {
|
|
5985
|
+
acceleratorId: 'string',
|
|
5986
|
+
endpointGroupId: 'string',
|
|
5987
|
+
listenerId: 'string',
|
|
5988
|
+
requestId: 'string',
|
|
5989
|
+
slsLogStoreName: 'string',
|
|
5990
|
+
slsProjectName: 'string',
|
|
5991
|
+
slsRegionId: 'string',
|
|
5992
|
+
status: 'string',
|
|
5993
|
+
};
|
|
5994
|
+
}
|
|
5995
|
+
|
|
5996
|
+
constructor(map?: { [key: string]: any }) {
|
|
5997
|
+
super(map);
|
|
5998
|
+
}
|
|
5999
|
+
}
|
|
6000
|
+
|
|
6001
|
+
export class DescribeLogStoreOfEndpointGroupResponse extends $tea.Model {
|
|
6002
|
+
headers: { [key: string]: string };
|
|
6003
|
+
statusCode: number;
|
|
6004
|
+
body: DescribeLogStoreOfEndpointGroupResponseBody;
|
|
6005
|
+
static names(): { [key: string]: string } {
|
|
6006
|
+
return {
|
|
6007
|
+
headers: 'headers',
|
|
6008
|
+
statusCode: 'statusCode',
|
|
6009
|
+
body: 'body',
|
|
6010
|
+
};
|
|
6011
|
+
}
|
|
6012
|
+
|
|
6013
|
+
static types(): { [key: string]: any } {
|
|
6014
|
+
return {
|
|
6015
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6016
|
+
statusCode: 'number',
|
|
6017
|
+
body: DescribeLogStoreOfEndpointGroupResponseBody,
|
|
6018
|
+
};
|
|
6019
|
+
}
|
|
6020
|
+
|
|
6021
|
+
constructor(map?: { [key: string]: any }) {
|
|
6022
|
+
super(map);
|
|
6023
|
+
}
|
|
6024
|
+
}
|
|
6025
|
+
|
|
5930
6026
|
export class DescribeRegionsRequest extends $tea.Model {
|
|
5931
6027
|
regionId?: string;
|
|
5932
6028
|
static names(): { [key: string]: string } {
|
|
@@ -13498,6 +13594,7 @@ export class CreateEndpointGroupRequestEndpointConfigurations extends $tea.Model
|
|
|
13498
13594
|
enableClientIPPreservation?: boolean;
|
|
13499
13595
|
enableProxyProtocol?: boolean;
|
|
13500
13596
|
endpoint?: string;
|
|
13597
|
+
subAddress?: string;
|
|
13501
13598
|
type?: string;
|
|
13502
13599
|
weight?: number;
|
|
13503
13600
|
static names(): { [key: string]: string } {
|
|
@@ -13505,6 +13602,7 @@ export class CreateEndpointGroupRequestEndpointConfigurations extends $tea.Model
|
|
|
13505
13602
|
enableClientIPPreservation: 'EnableClientIPPreservation',
|
|
13506
13603
|
enableProxyProtocol: 'EnableProxyProtocol',
|
|
13507
13604
|
endpoint: 'Endpoint',
|
|
13605
|
+
subAddress: 'SubAddress',
|
|
13508
13606
|
type: 'Type',
|
|
13509
13607
|
weight: 'Weight',
|
|
13510
13608
|
};
|
|
@@ -13515,6 +13613,7 @@ export class CreateEndpointGroupRequestEndpointConfigurations extends $tea.Model
|
|
|
13515
13613
|
enableClientIPPreservation: 'boolean',
|
|
13516
13614
|
enableProxyProtocol: 'boolean',
|
|
13517
13615
|
endpoint: 'string',
|
|
13616
|
+
subAddress: 'string',
|
|
13518
13617
|
type: 'string',
|
|
13519
13618
|
weight: 'number',
|
|
13520
13619
|
};
|
|
@@ -13571,11 +13670,13 @@ export class CreateEndpointGroupRequestTag extends $tea.Model {
|
|
|
13571
13670
|
|
|
13572
13671
|
export class CreateEndpointGroupsRequestEndpointGroupConfigurationsEndpointConfigurations extends $tea.Model {
|
|
13573
13672
|
endpoint?: string;
|
|
13673
|
+
subAddress?: string;
|
|
13574
13674
|
type?: string;
|
|
13575
13675
|
weight?: number;
|
|
13576
13676
|
static names(): { [key: string]: string } {
|
|
13577
13677
|
return {
|
|
13578
13678
|
endpoint: 'Endpoint',
|
|
13679
|
+
subAddress: 'SubAddress',
|
|
13579
13680
|
type: 'Type',
|
|
13580
13681
|
weight: 'Weight',
|
|
13581
13682
|
};
|
|
@@ -13584,6 +13685,7 @@ export class CreateEndpointGroupsRequestEndpointGroupConfigurationsEndpointConfi
|
|
|
13584
13685
|
static types(): { [key: string]: any } {
|
|
13585
13686
|
return {
|
|
13586
13687
|
endpoint: 'string',
|
|
13688
|
+
subAddress: 'string',
|
|
13587
13689
|
type: 'string',
|
|
13588
13690
|
weight: 'number',
|
|
13589
13691
|
};
|
|
@@ -14856,6 +14958,7 @@ export class DescribeEndpointGroupResponseBodyEndpointConfigurations extends $te
|
|
|
14856
14958
|
endpoint?: string;
|
|
14857
14959
|
probePort?: number;
|
|
14858
14960
|
probeProtocol?: string;
|
|
14961
|
+
subAddress?: string;
|
|
14859
14962
|
type?: string;
|
|
14860
14963
|
weight?: number;
|
|
14861
14964
|
static names(): { [key: string]: string } {
|
|
@@ -14865,6 +14968,7 @@ export class DescribeEndpointGroupResponseBodyEndpointConfigurations extends $te
|
|
|
14865
14968
|
endpoint: 'Endpoint',
|
|
14866
14969
|
probePort: 'ProbePort',
|
|
14867
14970
|
probeProtocol: 'ProbeProtocol',
|
|
14971
|
+
subAddress: 'SubAddress',
|
|
14868
14972
|
type: 'Type',
|
|
14869
14973
|
weight: 'Weight',
|
|
14870
14974
|
};
|
|
@@ -14877,6 +14981,7 @@ export class DescribeEndpointGroupResponseBodyEndpointConfigurations extends $te
|
|
|
14877
14981
|
endpoint: 'string',
|
|
14878
14982
|
probePort: 'number',
|
|
14879
14983
|
probeProtocol: 'string',
|
|
14984
|
+
subAddress: 'string',
|
|
14880
14985
|
type: 'string',
|
|
14881
14986
|
weight: 'number',
|
|
14882
14987
|
};
|
|
@@ -16984,6 +17089,7 @@ export class ListEndpointGroupsResponseBodyEndpointGroupsEndpointConfigurations
|
|
|
16984
17089
|
endpointId?: string;
|
|
16985
17090
|
probePort?: number;
|
|
16986
17091
|
probeProtocol?: string;
|
|
17092
|
+
subAddress?: string;
|
|
16987
17093
|
type?: string;
|
|
16988
17094
|
weight?: number;
|
|
16989
17095
|
static names(): { [key: string]: string } {
|
|
@@ -16993,6 +17099,7 @@ export class ListEndpointGroupsResponseBodyEndpointGroupsEndpointConfigurations
|
|
|
16993
17099
|
endpointId: 'EndpointId',
|
|
16994
17100
|
probePort: 'ProbePort',
|
|
16995
17101
|
probeProtocol: 'ProbeProtocol',
|
|
17102
|
+
subAddress: 'SubAddress',
|
|
16996
17103
|
type: 'Type',
|
|
16997
17104
|
weight: 'Weight',
|
|
16998
17105
|
};
|
|
@@ -17005,6 +17112,7 @@ export class ListEndpointGroupsResponseBodyEndpointGroupsEndpointConfigurations
|
|
|
17005
17112
|
endpointId: 'string',
|
|
17006
17113
|
probePort: 'number',
|
|
17007
17114
|
probeProtocol: 'string',
|
|
17115
|
+
subAddress: 'string',
|
|
17008
17116
|
type: 'string',
|
|
17009
17117
|
weight: 'number',
|
|
17010
17118
|
};
|
|
@@ -17977,6 +18085,7 @@ export class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model
|
|
|
17977
18085
|
enableClientIPPreservation?: boolean;
|
|
17978
18086
|
enableProxyProtocol?: boolean;
|
|
17979
18087
|
endpoint?: string;
|
|
18088
|
+
subAddress?: string;
|
|
17980
18089
|
type?: string;
|
|
17981
18090
|
weight?: number;
|
|
17982
18091
|
static names(): { [key: string]: string } {
|
|
@@ -17984,6 +18093,7 @@ export class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model
|
|
|
17984
18093
|
enableClientIPPreservation: 'EnableClientIPPreservation',
|
|
17985
18094
|
enableProxyProtocol: 'EnableProxyProtocol',
|
|
17986
18095
|
endpoint: 'Endpoint',
|
|
18096
|
+
subAddress: 'SubAddress',
|
|
17987
18097
|
type: 'Type',
|
|
17988
18098
|
weight: 'Weight',
|
|
17989
18099
|
};
|
|
@@ -17994,6 +18104,7 @@ export class UpdateEndpointGroupRequestEndpointConfigurations extends $tea.Model
|
|
|
17994
18104
|
enableClientIPPreservation: 'boolean',
|
|
17995
18105
|
enableProxyProtocol: 'boolean',
|
|
17996
18106
|
endpoint: 'string',
|
|
18107
|
+
subAddress: 'string',
|
|
17997
18108
|
type: 'string',
|
|
17998
18109
|
weight: 'number',
|
|
17999
18110
|
};
|
|
@@ -18028,11 +18139,13 @@ export class UpdateEndpointGroupRequestPortOverrides extends $tea.Model {
|
|
|
18028
18139
|
|
|
18029
18140
|
export class UpdateEndpointGroupsRequestEndpointGroupConfigurationsEndpointConfigurations extends $tea.Model {
|
|
18030
18141
|
endpoint?: string;
|
|
18142
|
+
subAddress?: string;
|
|
18031
18143
|
type?: string;
|
|
18032
18144
|
weight?: number;
|
|
18033
18145
|
static names(): { [key: string]: string } {
|
|
18034
18146
|
return {
|
|
18035
18147
|
endpoint: 'Endpoint',
|
|
18148
|
+
subAddress: 'SubAddress',
|
|
18036
18149
|
type: 'Type',
|
|
18037
18150
|
weight: 'Weight',
|
|
18038
18151
|
};
|
|
@@ -18041,6 +18154,7 @@ export class UpdateEndpointGroupsRequestEndpointGroupConfigurationsEndpointConfi
|
|
|
18041
18154
|
static types(): { [key: string]: any } {
|
|
18042
18155
|
return {
|
|
18043
18156
|
endpoint: 'string',
|
|
18157
|
+
subAddress: 'string',
|
|
18044
18158
|
type: 'string',
|
|
18045
18159
|
weight: 'number',
|
|
18046
18160
|
};
|
|
@@ -22585,6 +22699,14 @@ export default class Client extends OpenApi {
|
|
|
22585
22699
|
return await this.describeEndpointGroupWithOptions(request, runtime);
|
|
22586
22700
|
}
|
|
22587
22701
|
|
|
22702
|
+
/**
|
|
22703
|
+
* ## Debugging
|
|
22704
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Ga\\&api=DescribeIpSet\\&type=RPC\\&version=2019-11-20)
|
|
22705
|
+
*
|
|
22706
|
+
* @param request DescribeIpSetRequest
|
|
22707
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22708
|
+
* @return DescribeIpSetResponse
|
|
22709
|
+
*/
|
|
22588
22710
|
async describeIpSetWithOptions(request: DescribeIpSetRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpSetResponse> {
|
|
22589
22711
|
Util.validateModel(request);
|
|
22590
22712
|
let query = { };
|
|
@@ -22613,6 +22735,13 @@ export default class Client extends OpenApi {
|
|
|
22613
22735
|
return $tea.cast<DescribeIpSetResponse>(await this.callApi(params, req, runtime), new DescribeIpSetResponse({}));
|
|
22614
22736
|
}
|
|
22615
22737
|
|
|
22738
|
+
/**
|
|
22739
|
+
* ## Debugging
|
|
22740
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Ga\\&api=DescribeIpSet\\&type=RPC\\&version=2019-11-20)
|
|
22741
|
+
*
|
|
22742
|
+
* @param request DescribeIpSetRequest
|
|
22743
|
+
* @return DescribeIpSetResponse
|
|
22744
|
+
*/
|
|
22616
22745
|
async describeIpSet(request: DescribeIpSetRequest): Promise<DescribeIpSetResponse> {
|
|
22617
22746
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22618
22747
|
return await this.describeIpSetWithOptions(request, runtime);
|
|
@@ -22664,6 +22793,47 @@ export default class Client extends OpenApi {
|
|
|
22664
22793
|
return await this.describeListenerWithOptions(request, runtime);
|
|
22665
22794
|
}
|
|
22666
22795
|
|
|
22796
|
+
async describeLogStoreOfEndpointGroupWithOptions(request: DescribeLogStoreOfEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLogStoreOfEndpointGroupResponse> {
|
|
22797
|
+
Util.validateModel(request);
|
|
22798
|
+
let query = { };
|
|
22799
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
22800
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
22801
|
+
}
|
|
22802
|
+
|
|
22803
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
22804
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
22805
|
+
}
|
|
22806
|
+
|
|
22807
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
22808
|
+
query["ListenerId"] = request.listenerId;
|
|
22809
|
+
}
|
|
22810
|
+
|
|
22811
|
+
if (!Util.isUnset(request.regionId)) {
|
|
22812
|
+
query["RegionId"] = request.regionId;
|
|
22813
|
+
}
|
|
22814
|
+
|
|
22815
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
22816
|
+
query: OpenApiUtil.query(query),
|
|
22817
|
+
});
|
|
22818
|
+
let params = new $OpenApi.Params({
|
|
22819
|
+
action: "DescribeLogStoreOfEndpointGroup",
|
|
22820
|
+
version: "2019-11-20",
|
|
22821
|
+
protocol: "HTTPS",
|
|
22822
|
+
pathname: "/",
|
|
22823
|
+
method: "POST",
|
|
22824
|
+
authType: "AK",
|
|
22825
|
+
style: "RPC",
|
|
22826
|
+
reqBodyType: "formData",
|
|
22827
|
+
bodyType: "json",
|
|
22828
|
+
});
|
|
22829
|
+
return $tea.cast<DescribeLogStoreOfEndpointGroupResponse>(await this.callApi(params, req, runtime), new DescribeLogStoreOfEndpointGroupResponse({}));
|
|
22830
|
+
}
|
|
22831
|
+
|
|
22832
|
+
async describeLogStoreOfEndpointGroup(request: DescribeLogStoreOfEndpointGroupRequest): Promise<DescribeLogStoreOfEndpointGroupResponse> {
|
|
22833
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22834
|
+
return await this.describeLogStoreOfEndpointGroupWithOptions(request, runtime);
|
|
22835
|
+
}
|
|
22836
|
+
|
|
22667
22837
|
async describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
|
|
22668
22838
|
Util.validateModel(request);
|
|
22669
22839
|
let query = { };
|
|
@@ -22746,6 +22916,7 @@ export default class Client extends OpenApi {
|
|
|
22746
22916
|
}
|
|
22747
22917
|
|
|
22748
22918
|
/**
|
|
22919
|
+
* ## Description
|
|
22749
22920
|
* * **DetachLogStoreFromEndpointGroup** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the state of an endpoint group.
|
|
22750
22921
|
* * If the endpoint group is in the **updating** state, the Log Service Logstore is being disassociated from the endpoint group. In this case, you can perform only query operations.
|
|
22751
22922
|
* <!---->
|
|
@@ -22797,6 +22968,7 @@ export default class Client extends OpenApi {
|
|
|
22797
22968
|
}
|
|
22798
22969
|
|
|
22799
22970
|
/**
|
|
22971
|
+
* ## Description
|
|
22800
22972
|
* * **DetachLogStoreFromEndpointGroup** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the state of an endpoint group.
|
|
22801
22973
|
* * If the endpoint group is in the **updating** state, the Log Service Logstore is being disassociated from the endpoint group. In this case, you can perform only query operations.
|
|
22802
22974
|
* <!---->
|
|
@@ -22886,6 +23058,7 @@ export default class Client extends OpenApi {
|
|
|
22886
23058
|
}
|
|
22887
23059
|
|
|
22888
23060
|
/**
|
|
23061
|
+
* ## Description
|
|
22889
23062
|
* * **DissociateAclsFromListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeListener](~~153254~~) operation to query the state of a listener:
|
|
22890
23063
|
* * If the listener is in the **updating** state, ACLs are being disassociated from the listener. In this case, you can perform only query operations.
|
|
22891
23064
|
* * If the listener is in the **active** state, ACLs are disassociated from the listener.
|
|
@@ -22936,6 +23109,7 @@ export default class Client extends OpenApi {
|
|
|
22936
23109
|
}
|
|
22937
23110
|
|
|
22938
23111
|
/**
|
|
23112
|
+
* ## Description
|
|
22939
23113
|
* * **DissociateAclsFromListener** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeListener](~~153254~~) operation to query the state of a listener:
|
|
22940
23114
|
* * If the listener is in the **updating** state, ACLs are being disassociated from the listener. In this case, you can perform only query operations.
|
|
22941
23115
|
* * If the listener is in the **active** state, ACLs are disassociated from the listener.
|
|
@@ -22950,6 +23124,7 @@ export default class Client extends OpenApi {
|
|
|
22950
23124
|
}
|
|
22951
23125
|
|
|
22952
23126
|
/**
|
|
23127
|
+
* ## Description
|
|
22953
23128
|
* * **DissociateAdditionalCertificatesFromListener** is an asynchronous operation. After you send a request, the system returns a request ID, but this operation is still being performed in the system background. You can call the [DescribeListener](~~153254~~) operation to query the state of an HTTPS listener.
|
|
22954
23129
|
* * If the listener is in the **updating** state, it indicates that the additional certificate is being dissociated from the listener. In this case, you can perform only query operations.
|
|
22955
23130
|
* * If the listener is in the **active** state, it indicates that the additional certificate is dissociated from the listener.
|
|
@@ -23000,6 +23175,7 @@ export default class Client extends OpenApi {
|
|
|
23000
23175
|
}
|
|
23001
23176
|
|
|
23002
23177
|
/**
|
|
23178
|
+
* ## Description
|
|
23003
23179
|
* * **DissociateAdditionalCertificatesFromListener** is an asynchronous operation. After you send a request, the system returns a request ID, but this operation is still being performed in the system background. You can call the [DescribeListener](~~153254~~) operation to query the state of an HTTPS listener.
|
|
23004
23180
|
* * If the listener is in the **updating** state, it indicates that the additional certificate is being dissociated from the listener. In this case, you can perform only query operations.
|
|
23005
23181
|
* * If the listener is in the **active** state, it indicates that the additional certificate is dissociated from the listener.
|
|
@@ -24243,6 +24419,14 @@ export default class Client extends OpenApi {
|
|
|
24243
24419
|
return await this.listCustomRoutingEndpointGroupDestinationsWithOptions(request, runtime);
|
|
24244
24420
|
}
|
|
24245
24421
|
|
|
24422
|
+
/**
|
|
24423
|
+
* ## Debugging
|
|
24424
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code for different SDKs.](https://api.aliyun.com/#product=Ga\\&api=ListCustomRoutingEndpointGroups\\&type=RPC\\&version=2019-11-20)
|
|
24425
|
+
*
|
|
24426
|
+
* @param request ListCustomRoutingEndpointGroupsRequest
|
|
24427
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24428
|
+
* @return ListCustomRoutingEndpointGroupsResponse
|
|
24429
|
+
*/
|
|
24246
24430
|
async listCustomRoutingEndpointGroupsWithOptions(request: ListCustomRoutingEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListCustomRoutingEndpointGroupsResponse> {
|
|
24247
24431
|
Util.validateModel(request);
|
|
24248
24432
|
let query = { };
|
|
@@ -24287,6 +24471,13 @@ export default class Client extends OpenApi {
|
|
|
24287
24471
|
return $tea.cast<ListCustomRoutingEndpointGroupsResponse>(await this.callApi(params, req, runtime), new ListCustomRoutingEndpointGroupsResponse({}));
|
|
24288
24472
|
}
|
|
24289
24473
|
|
|
24474
|
+
/**
|
|
24475
|
+
* ## Debugging
|
|
24476
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code for different SDKs.](https://api.aliyun.com/#product=Ga\\&api=ListCustomRoutingEndpointGroups\\&type=RPC\\&version=2019-11-20)
|
|
24477
|
+
*
|
|
24478
|
+
* @param request ListCustomRoutingEndpointGroupsRequest
|
|
24479
|
+
* @return ListCustomRoutingEndpointGroupsResponse
|
|
24480
|
+
*/
|
|
24290
24481
|
async listCustomRoutingEndpointGroups(request: ListCustomRoutingEndpointGroupsRequest): Promise<ListCustomRoutingEndpointGroupsResponse> {
|
|
24291
24482
|
let runtime = new $Util.RuntimeOptions({ });
|
|
24292
24483
|
return await this.listCustomRoutingEndpointGroupsWithOptions(request, runtime);
|
|
@@ -24587,6 +24778,14 @@ export default class Client extends OpenApi {
|
|
|
24587
24778
|
return await this.listEndpointGroupIpAddressCidrBlocksWithOptions(request, runtime);
|
|
24588
24779
|
}
|
|
24589
24780
|
|
|
24781
|
+
/**
|
|
24782
|
+
* ## Debugging
|
|
24783
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Ga\\&api=ListEndpointGroups\\&type=RPC\\&version=2019-11-20)
|
|
24784
|
+
*
|
|
24785
|
+
* @param request ListEndpointGroupsRequest
|
|
24786
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24787
|
+
* @return ListEndpointGroupsResponse
|
|
24788
|
+
*/
|
|
24590
24789
|
async listEndpointGroupsWithOptions(request: ListEndpointGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListEndpointGroupsResponse> {
|
|
24591
24790
|
Util.validateModel(request);
|
|
24592
24791
|
let query = { };
|
|
@@ -24643,13 +24842,20 @@ export default class Client extends OpenApi {
|
|
|
24643
24842
|
return $tea.cast<ListEndpointGroupsResponse>(await this.callApi(params, req, runtime), new ListEndpointGroupsResponse({}));
|
|
24644
24843
|
}
|
|
24645
24844
|
|
|
24845
|
+
/**
|
|
24846
|
+
* ## Debugging
|
|
24847
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Ga\\&api=ListEndpointGroups\\&type=RPC\\&version=2019-11-20)
|
|
24848
|
+
*
|
|
24849
|
+
* @param request ListEndpointGroupsRequest
|
|
24850
|
+
* @return ListEndpointGroupsResponse
|
|
24851
|
+
*/
|
|
24646
24852
|
async listEndpointGroups(request: ListEndpointGroupsRequest): Promise<ListEndpointGroupsResponse> {
|
|
24647
24853
|
let runtime = new $Util.RuntimeOptions({ });
|
|
24648
24854
|
return await this.listEndpointGroupsWithOptions(request, runtime);
|
|
24649
24855
|
}
|
|
24650
24856
|
|
|
24651
24857
|
/**
|
|
24652
|
-
* >
|
|
24858
|
+
* > This operation is used to query only custom forwarding rules, not the default forwarding rule.
|
|
24653
24859
|
*
|
|
24654
24860
|
* @param request ListForwardingRulesRequest
|
|
24655
24861
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24704,7 +24910,7 @@ export default class Client extends OpenApi {
|
|
|
24704
24910
|
}
|
|
24705
24911
|
|
|
24706
24912
|
/**
|
|
24707
|
-
* >
|
|
24913
|
+
* > This operation is used to query only custom forwarding rules, not the default forwarding rule.
|
|
24708
24914
|
*
|
|
24709
24915
|
* @param request ListForwardingRulesRequest
|
|
24710
24916
|
* @return ListForwardingRulesResponse
|
|
@@ -25609,6 +25815,18 @@ export default class Client extends OpenApi {
|
|
|
25609
25815
|
return await this.updateAcceleratorCrossBorderModeWithOptions(request, runtime);
|
|
25610
25816
|
}
|
|
25611
25817
|
|
|
25818
|
+
/**
|
|
25819
|
+
* You can use this operation to enable or disable the cross-border data transmission feature for a GA instance. Before you enable the cross-border data transmission feature, make sure that the following requirements are met:
|
|
25820
|
+
* - **Basic GA instances**:
|
|
25821
|
+
* Cloud Data Transfer (CDT) is activated. When you call the CreateBasicAccelerator operation to create a basic GA instance, set BandwidthBillingType to CDT. Then, the system automatically activates CDT. The data transfer fees are managed by CDT.
|
|
25822
|
+
* If you want to enable the cross-border data transmission feature, make sure that the current account has completed enterprise real-name registration. For more information, see Real-name registration FAQs.
|
|
25823
|
+
* - **Standard GA instances**:
|
|
25824
|
+
* CDT is activated. When you call the CreateAccelerator operation to create a standard GA instance, set BandwidthBillingType to CDT. Then, the system automatically activates CDT. The data transfer fees are managed by CDT.
|
|
25825
|
+
*
|
|
25826
|
+
* @param request UpdateAcceleratorCrossBorderStatusRequest
|
|
25827
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
25828
|
+
* @return UpdateAcceleratorCrossBorderStatusResponse
|
|
25829
|
+
*/
|
|
25612
25830
|
async updateAcceleratorCrossBorderStatusWithOptions(request: UpdateAcceleratorCrossBorderStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorCrossBorderStatusResponse> {
|
|
25613
25831
|
Util.validateModel(request);
|
|
25614
25832
|
let query = { };
|
|
@@ -25645,6 +25863,17 @@ export default class Client extends OpenApi {
|
|
|
25645
25863
|
return $tea.cast<UpdateAcceleratorCrossBorderStatusResponse>(await this.callApi(params, req, runtime), new UpdateAcceleratorCrossBorderStatusResponse({}));
|
|
25646
25864
|
}
|
|
25647
25865
|
|
|
25866
|
+
/**
|
|
25867
|
+
* You can use this operation to enable or disable the cross-border data transmission feature for a GA instance. Before you enable the cross-border data transmission feature, make sure that the following requirements are met:
|
|
25868
|
+
* - **Basic GA instances**:
|
|
25869
|
+
* Cloud Data Transfer (CDT) is activated. When you call the CreateBasicAccelerator operation to create a basic GA instance, set BandwidthBillingType to CDT. Then, the system automatically activates CDT. The data transfer fees are managed by CDT.
|
|
25870
|
+
* If you want to enable the cross-border data transmission feature, make sure that the current account has completed enterprise real-name registration. For more information, see Real-name registration FAQs.
|
|
25871
|
+
* - **Standard GA instances**:
|
|
25872
|
+
* CDT is activated. When you call the CreateAccelerator operation to create a standard GA instance, set BandwidthBillingType to CDT. Then, the system automatically activates CDT. The data transfer fees are managed by CDT.
|
|
25873
|
+
*
|
|
25874
|
+
* @param request UpdateAcceleratorCrossBorderStatusRequest
|
|
25875
|
+
* @return UpdateAcceleratorCrossBorderStatusResponse
|
|
25876
|
+
*/
|
|
25648
25877
|
async updateAcceleratorCrossBorderStatus(request: UpdateAcceleratorCrossBorderStatusRequest): Promise<UpdateAcceleratorCrossBorderStatusResponse> {
|
|
25649
25878
|
let runtime = new $Util.RuntimeOptions({ });
|
|
25650
25879
|
return await this.updateAcceleratorCrossBorderStatusWithOptions(request, runtime);
|
|
@@ -26407,6 +26636,7 @@ export default class Client extends OpenApi {
|
|
|
26407
26636
|
}
|
|
26408
26637
|
|
|
26409
26638
|
/**
|
|
26639
|
+
* ## Description
|
|
26410
26640
|
* * **UpdateCustomRoutingEndpoints** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the state of the endpoint groups associated with a custom routing listener to check whether the endpoints in the endpoint groups are modified.
|
|
26411
26641
|
* * If an endpoint group is in the **updating** state, the endpoints in the endpoint group are being modified. In this case, you can perform only query operations.
|
|
26412
26642
|
* * If an endpoint group is in the **active** state, the endpoints in the endpoint group are modified.
|
|
@@ -26453,6 +26683,7 @@ export default class Client extends OpenApi {
|
|
|
26453
26683
|
}
|
|
26454
26684
|
|
|
26455
26685
|
/**
|
|
26686
|
+
* ## Description
|
|
26456
26687
|
* * **UpdateCustomRoutingEndpoints** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeCustomRoutingEndpointGroup](~~449373~~) operation to query the state of the endpoint groups associated with a custom routing listener to check whether the endpoints in the endpoint groups are modified.
|
|
26457
26688
|
* * If an endpoint group is in the **updating** state, the endpoints in the endpoint group are being modified. In this case, you can perform only query operations.
|
|
26458
26689
|
* * If an endpoint group is in the **active** state, the endpoints in the endpoint group are modified.
|
|
@@ -26568,9 +26799,9 @@ export default class Client extends OpenApi {
|
|
|
26568
26799
|
|
|
26569
26800
|
/**
|
|
26570
26801
|
* * **UpdateEndpointGroup** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the state of an endpoint group.
|
|
26571
|
-
* * If the endpoint group is in the **updating** state, the configurations of the endpoint group are being modified. In this case, you can perform only query operations.
|
|
26572
|
-
* * If the endpoint group is in the **active** state, the configurations of the endpoint group are modified.
|
|
26573
|
-
* * The **UpdateEndpointGroup** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
26802
|
+
* * If the endpoint group is in the **updating** state, it indicates that the configurations of the endpoint group are being modified. In this case, you can perform only query operations.
|
|
26803
|
+
* * If the endpoint group is in the **active** state, it indicates that the configurations of the endpoint group are modified.
|
|
26804
|
+
* * The **UpdateEndpointGroup** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
26574
26805
|
*
|
|
26575
26806
|
* @param request UpdateEndpointGroupRequest
|
|
26576
26807
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -26662,9 +26893,9 @@ export default class Client extends OpenApi {
|
|
|
26662
26893
|
|
|
26663
26894
|
/**
|
|
26664
26895
|
* * **UpdateEndpointGroup** is an asynchronous operation. After you send a request, the system returns a request ID, but the operation is still being performed in the system background. You can call the [DescribeEndpointGroup](~~153260~~) operation to query the state of an endpoint group.
|
|
26665
|
-
* * If the endpoint group is in the **updating** state, the configurations of the endpoint group are being modified. In this case, you can perform only query operations.
|
|
26666
|
-
* * If the endpoint group is in the **active** state, the configurations of the endpoint group are modified.
|
|
26667
|
-
* * The **UpdateEndpointGroup** operation cannot be repeatedly called for the same GA instance within a specific period of time.
|
|
26896
|
+
* * If the endpoint group is in the **updating** state, it indicates that the configurations of the endpoint group are being modified. In this case, you can perform only query operations.
|
|
26897
|
+
* * If the endpoint group is in the **active** state, it indicates that the configurations of the endpoint group are modified.
|
|
26898
|
+
* * The **UpdateEndpointGroup** operation cannot be repeatedly called for the same Global Accelerator (GA) instance within a specific period of time.
|
|
26668
26899
|
*
|
|
26669
26900
|
* @param request UpdateEndpointGroupRequest
|
|
26670
26901
|
* @return UpdateEndpointGroupResponse
|
|
@@ -26720,10 +26951,11 @@ export default class Client extends OpenApi {
|
|
|
26720
26951
|
}
|
|
26721
26952
|
|
|
26722
26953
|
/**
|
|
26723
|
-
*
|
|
26724
|
-
*
|
|
26725
|
-
* * If the endpoint group is in the **
|
|
26726
|
-
*
|
|
26954
|
+
* ### Description
|
|
26955
|
+
* * **UpdateEndpointGroups** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeEndpointGroup](~~153260~~) or [ListEndpointGroups](~~153261~~) operation to query the status of an endpoint group.
|
|
26956
|
+
* * If the endpoint group is in the **updating** state, it indicates that the configuration of the endpoint group is being modified. In this case, you can perform only query operations.
|
|
26957
|
+
* * If the endpoint group is in the **active** state, it indicates that the configuration of the endpoint group is modified.
|
|
26958
|
+
* * The **UpdateEndpointGroups** operation holds an exclusive lock on the Global Accelerator (GA) instance. While the operation is in progress, you cannot call the same operation in the same Alibaba Cloud account.
|
|
26727
26959
|
*
|
|
26728
26960
|
* @param request UpdateEndpointGroupsRequest
|
|
26729
26961
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -26770,10 +27002,11 @@ export default class Client extends OpenApi {
|
|
|
26770
27002
|
}
|
|
26771
27003
|
|
|
26772
27004
|
/**
|
|
26773
|
-
*
|
|
26774
|
-
*
|
|
26775
|
-
* * If the endpoint group is in the **
|
|
26776
|
-
*
|
|
27005
|
+
* ### Description
|
|
27006
|
+
* * **UpdateEndpointGroups** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeEndpointGroup](~~153260~~) or [ListEndpointGroups](~~153261~~) operation to query the status of an endpoint group.
|
|
27007
|
+
* * If the endpoint group is in the **updating** state, it indicates that the configuration of the endpoint group is being modified. In this case, you can perform only query operations.
|
|
27008
|
+
* * If the endpoint group is in the **active** state, it indicates that the configuration of the endpoint group is modified.
|
|
27009
|
+
* * The **UpdateEndpointGroups** operation holds an exclusive lock on the Global Accelerator (GA) instance. While the operation is in progress, you cannot call the same operation in the same Alibaba Cloud account.
|
|
26777
27010
|
*
|
|
26778
27011
|
* @param request UpdateEndpointGroupsRequest
|
|
26779
27012
|
* @return UpdateEndpointGroupsResponse
|
|
@@ -26784,10 +27017,10 @@ export default class Client extends OpenApi {
|
|
|
26784
27017
|
}
|
|
26785
27018
|
|
|
26786
27019
|
/**
|
|
26787
|
-
* * **UpdateForwardingRules** is an asynchronous operation. After
|
|
27020
|
+
* * **UpdateForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of a forwarding rule.
|
|
26788
27021
|
* * If the forwarding rule is in the **configuring** state, it indicates that the forwarding rule is being modified. In this case, you can perform only query operations.
|
|
26789
27022
|
* * If the forwarding rule is in the **active** state, it indicates that the forwarding rule is modified.
|
|
26790
|
-
* * The **UpdateForwardingRules** operation
|
|
27023
|
+
* * The **UpdateForwardingRules** operation holds an exclusive lock on the Global Accelerator (GA) instance. While the operation is in progress, you cannot call the same operation in the same Alibaba Cloud account.
|
|
26791
27024
|
*
|
|
26792
27025
|
* @param request UpdateForwardingRulesRequest
|
|
26793
27026
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -26834,10 +27067,10 @@ export default class Client extends OpenApi {
|
|
|
26834
27067
|
}
|
|
26835
27068
|
|
|
26836
27069
|
/**
|
|
26837
|
-
* * **UpdateForwardingRules** is an asynchronous operation. After
|
|
27070
|
+
* * **UpdateForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of a forwarding rule.
|
|
26838
27071
|
* * If the forwarding rule is in the **configuring** state, it indicates that the forwarding rule is being modified. In this case, you can perform only query operations.
|
|
26839
27072
|
* * If the forwarding rule is in the **active** state, it indicates that the forwarding rule is modified.
|
|
26840
|
-
* * The **UpdateForwardingRules** operation
|
|
27073
|
+
* * The **UpdateForwardingRules** operation holds an exclusive lock on the Global Accelerator (GA) instance. While the operation is in progress, you cannot call the same operation in the same Alibaba Cloud account.
|
|
26841
27074
|
*
|
|
26842
27075
|
* @param request UpdateForwardingRulesRequest
|
|
26843
27076
|
* @return UpdateForwardingRulesResponse
|
|
@@ -27059,6 +27292,17 @@ export default class Client extends OpenApi {
|
|
|
27059
27292
|
return await this.updateListenerWithOptions(request, runtime);
|
|
27060
27293
|
}
|
|
27061
27294
|
|
|
27295
|
+
/**
|
|
27296
|
+
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
27297
|
+
* * 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.
|
|
27298
|
+
* * 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.
|
|
27299
|
+
* **
|
|
27300
|
+
* **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.
|
|
27301
|
+
*
|
|
27302
|
+
* @param request UpdateServiceManagedControlRequest
|
|
27303
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
27304
|
+
* @return UpdateServiceManagedControlResponse
|
|
27305
|
+
*/
|
|
27062
27306
|
async updateServiceManagedControlWithOptions(request: UpdateServiceManagedControlRequest, runtime: $Util.RuntimeOptions): Promise<UpdateServiceManagedControlResponse> {
|
|
27063
27307
|
Util.validateModel(request);
|
|
27064
27308
|
let query = { };
|
|
@@ -27099,6 +27343,16 @@ export default class Client extends OpenApi {
|
|
|
27099
27343
|
return $tea.cast<UpdateServiceManagedControlResponse>(await this.callApi(params, req, runtime), new UpdateServiceManagedControlResponse({}));
|
|
27100
27344
|
}
|
|
27101
27345
|
|
|
27346
|
+
/**
|
|
27347
|
+
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
27348
|
+
* * 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.
|
|
27349
|
+
* * 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.
|
|
27350
|
+
* **
|
|
27351
|
+
* **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.
|
|
27352
|
+
*
|
|
27353
|
+
* @param request UpdateServiceManagedControlRequest
|
|
27354
|
+
* @return UpdateServiceManagedControlResponse
|
|
27355
|
+
*/
|
|
27102
27356
|
async updateServiceManagedControl(request: UpdateServiceManagedControlRequest): Promise<UpdateServiceManagedControlResponse> {
|
|
27103
27357
|
let runtime = new $Util.RuntimeOptions({ });
|
|
27104
27358
|
return await this.updateServiceManagedControlWithOptions(request, runtime);
|