tencentcloud-sdk-nodejs-intl-en 3.0.543 → 3.0.544
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/package.json +1 -1
- package/tencentcloud/clb/v20180317/clb_client.js +22 -8
- package/tencentcloud/clb/v20180317/models.js +215 -41
- package/tencentcloud/cls/v20201016/models.js +29 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/tcr/v20190924/models.js +6960 -515
- package/tencentcloud/tcr/v20190924/tcr_client.js +857 -78
package/package.json
CHANGED
|
@@ -39,6 +39,7 @@ const DescribeBlockIPListResponse = models.DescribeBlockIPListResponse;
|
|
|
39
39
|
const DescribeRewriteRequest = models.DescribeRewriteRequest;
|
|
40
40
|
const ModifyLoadBalancerAttributesResponse = models.ModifyLoadBalancerAttributesResponse;
|
|
41
41
|
const DescribeTargetGroupInstancesRequest = models.DescribeTargetGroupInstancesRequest;
|
|
42
|
+
const DescribeIdleLoadBalancersResponse = models.DescribeIdleLoadBalancersResponse;
|
|
42
43
|
const AssociateTargetGroupsRequest = models.AssociateTargetGroupsRequest;
|
|
43
44
|
const ClassicalTarget = models.ClassicalTarget;
|
|
44
45
|
const ListenerItem = models.ListenerItem;
|
|
@@ -53,6 +54,8 @@ const DescribeClassicalLBByInstanceIdResponse = models.DescribeClassicalLBByInst
|
|
|
53
54
|
const CreateRuleResponse = models.CreateRuleResponse;
|
|
54
55
|
const CrossTargets = models.CrossTargets;
|
|
55
56
|
const RuleHealth = models.RuleHealth;
|
|
57
|
+
const ModifyDomainRequest = models.ModifyDomainRequest;
|
|
58
|
+
const IdleLoadBalancer = models.IdleLoadBalancer;
|
|
56
59
|
const RegisterTargetGroupInstancesResponse = models.RegisterTargetGroupInstancesResponse;
|
|
57
60
|
const ClassicalTargetInfo = models.ClassicalTargetInfo;
|
|
58
61
|
const DescribeTargetsRequest = models.DescribeTargetsRequest;
|
|
@@ -108,7 +111,7 @@ const ModifyBlockIPListRequest = models.ModifyBlockIPListRequest;
|
|
|
108
111
|
const ModifyBlockIPListResponse = models.ModifyBlockIPListResponse;
|
|
109
112
|
const ExclusiveCluster = models.ExclusiveCluster;
|
|
110
113
|
const DescribeClassicalLBHealthStatusRequest = models.DescribeClassicalLBHealthStatusRequest;
|
|
111
|
-
const
|
|
114
|
+
const DescribeListenersRequest = models.DescribeListenersRequest;
|
|
112
115
|
const CreateClsLogSetResponse = models.CreateClsLogSetResponse;
|
|
113
116
|
const DescribeCrossTargetsRequest = models.DescribeCrossTargetsRequest;
|
|
114
117
|
const LBChargePrepaid = models.LBChargePrepaid;
|
|
@@ -189,7 +192,7 @@ const Quota = models.Quota;
|
|
|
189
192
|
const SetLoadBalancerClsLogRequest = models.SetLoadBalancerClsLogRequest;
|
|
190
193
|
const LBItem = models.LBItem;
|
|
191
194
|
const DeleteLoadBalancerListenersResponse = models.DeleteLoadBalancerListenersResponse;
|
|
192
|
-
const
|
|
195
|
+
const DescribeIdleLoadBalancersRequest = models.DescribeIdleLoadBalancersRequest;
|
|
193
196
|
const DeleteLoadBalancerSnatIpsRequest = models.DeleteLoadBalancerSnatIpsRequest;
|
|
194
197
|
const SetLoadBalancerSecurityGroupsRequest = models.SetLoadBalancerSecurityGroupsRequest;
|
|
195
198
|
const DescribeClassicalLBTargetsResponse = models.DescribeClassicalLBTargetsResponse;
|
|
@@ -1014,6 +1017,17 @@ This API is only available for beta users. If you want to try it out, please [su
|
|
|
1014
1017
|
this.request("DeleteRewrite", req, resp, cb);
|
|
1015
1018
|
}
|
|
1016
1019
|
|
|
1020
|
+
/**
|
|
1021
|
+
* After the original access address and the address to be redirected are configured manually, the system will automatically redirect requests made to the original access address to the target address of the corresponding path. Multiple paths can be configured as a redirection policy under one domain name to achieve automatic redirection between HTTP and HTTPS. A redirection policy should meet the following rules: if A has already been redirected to B, then it cannot be redirected to C (unless the original redirection relationship is deleted and a new one is created), and B cannot be redirected to any other addresses.
|
|
1022
|
+
* @param {ManualRewriteRequest} req
|
|
1023
|
+
* @param {function(string, ManualRewriteResponse):void} cb
|
|
1024
|
+
* @public
|
|
1025
|
+
*/
|
|
1026
|
+
ManualRewrite(req, cb) {
|
|
1027
|
+
let resp = new ManualRewriteResponse();
|
|
1028
|
+
this.request("ManualRewrite", req, resp, cb);
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1017
1031
|
/**
|
|
1018
1032
|
* This API (CreateLoadBalancer) is used to create a CLB instance. To use the CLB service, you first need to purchase one or more instances. After this API is called successfully, a unique instance ID will be returned. There are two types of instances: public network and private network. For more information, see the product types in the product documentation.
|
|
1019
1033
|
Note: (1) To apply for a CLB instance in the specified AZ and cross-AZ disaster recovery, please [submit a ticket](https://console.cloud.tencent.com/workorder/category); (2) Currently, IPv6 is supported only in Beijing, Shanghai, and Guangzhou regions.
|
|
@@ -1028,14 +1042,14 @@ This is an async API. After it is returned successfully, you can call the Descri
|
|
|
1028
1042
|
}
|
|
1029
1043
|
|
|
1030
1044
|
/**
|
|
1031
|
-
*
|
|
1032
|
-
* @param {
|
|
1033
|
-
* @param {function(string,
|
|
1045
|
+
* Idle CLB instances are pay-as-you-go load balancers that, within seven days after the creation, do not have rules configured or the configured rules are not associated with any servers.
|
|
1046
|
+
* @param {DescribeIdleLoadBalancersRequest} req
|
|
1047
|
+
* @param {function(string, DescribeIdleLoadBalancersResponse):void} cb
|
|
1034
1048
|
* @public
|
|
1035
1049
|
*/
|
|
1036
|
-
|
|
1037
|
-
let resp = new
|
|
1038
|
-
this.request("
|
|
1050
|
+
DescribeIdleLoadBalancers(req, cb) {
|
|
1051
|
+
let resp = new DescribeIdleLoadBalancersResponse();
|
|
1052
|
+
this.request("DescribeIdleLoadBalancers", req, resp, cb);
|
|
1039
1053
|
}
|
|
1040
1054
|
|
|
1041
1055
|
|
|
@@ -736,13 +736,13 @@ class DeleteRuleRequest extends AbstractModel {
|
|
|
736
736
|
this.LocationIds = null;
|
|
737
737
|
|
|
738
738
|
/**
|
|
739
|
-
*
|
|
739
|
+
* The domain name associated with the forwarding rule to delete. If the rule is associated with multiple domain names, specify any one of them.
|
|
740
740
|
* @type {string || null}
|
|
741
741
|
*/
|
|
742
742
|
this.Domain = null;
|
|
743
743
|
|
|
744
744
|
/**
|
|
745
|
-
*
|
|
745
|
+
* The forwarding path of the forwarding rule to delete.
|
|
746
746
|
* @type {string || null}
|
|
747
747
|
*/
|
|
748
748
|
this.Url = null;
|
|
@@ -1387,6 +1387,57 @@ class DescribeTargetGroupInstancesRequest extends AbstractModel {
|
|
|
1387
1387
|
}
|
|
1388
1388
|
}
|
|
1389
1389
|
|
|
1390
|
+
/**
|
|
1391
|
+
* DescribeIdleLoadBalancers response structure.
|
|
1392
|
+
* @class
|
|
1393
|
+
*/
|
|
1394
|
+
class DescribeIdleLoadBalancersResponse extends AbstractModel {
|
|
1395
|
+
constructor(){
|
|
1396
|
+
super();
|
|
1397
|
+
|
|
1398
|
+
/**
|
|
1399
|
+
* List of idle CLBs
|
|
1400
|
+
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
1401
|
+
* @type {Array.<IdleLoadBalancer> || null}
|
|
1402
|
+
*/
|
|
1403
|
+
this.IdleLoadBalancers = null;
|
|
1404
|
+
|
|
1405
|
+
/**
|
|
1406
|
+
* Total number of idle CLB instances
|
|
1407
|
+
* @type {number || null}
|
|
1408
|
+
*/
|
|
1409
|
+
this.TotalCount = null;
|
|
1410
|
+
|
|
1411
|
+
/**
|
|
1412
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1413
|
+
* @type {string || null}
|
|
1414
|
+
*/
|
|
1415
|
+
this.RequestId = null;
|
|
1416
|
+
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
/**
|
|
1420
|
+
* @private
|
|
1421
|
+
*/
|
|
1422
|
+
deserialize(params) {
|
|
1423
|
+
if (!params) {
|
|
1424
|
+
return;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
if (params.IdleLoadBalancers) {
|
|
1428
|
+
this.IdleLoadBalancers = new Array();
|
|
1429
|
+
for (let z in params.IdleLoadBalancers) {
|
|
1430
|
+
let obj = new IdleLoadBalancer();
|
|
1431
|
+
obj.deserialize(params.IdleLoadBalancers[z]);
|
|
1432
|
+
this.IdleLoadBalancers.push(obj);
|
|
1433
|
+
}
|
|
1434
|
+
}
|
|
1435
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
1436
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1437
|
+
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1390
1441
|
/**
|
|
1391
1442
|
* AssociateTargetGroups request structure.
|
|
1392
1443
|
* @class
|
|
@@ -2079,6 +2130,126 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
2079
2130
|
}
|
|
2080
2131
|
}
|
|
2081
2132
|
|
|
2133
|
+
/**
|
|
2134
|
+
* ModifyDomain request structure.
|
|
2135
|
+
* @class
|
|
2136
|
+
*/
|
|
2137
|
+
class ModifyDomainRequest extends AbstractModel {
|
|
2138
|
+
constructor(){
|
|
2139
|
+
super();
|
|
2140
|
+
|
|
2141
|
+
/**
|
|
2142
|
+
* CLB instance ID.
|
|
2143
|
+
* @type {string || null}
|
|
2144
|
+
*/
|
|
2145
|
+
this.LoadBalancerId = null;
|
|
2146
|
+
|
|
2147
|
+
/**
|
|
2148
|
+
* CLB listener ID.
|
|
2149
|
+
* @type {string || null}
|
|
2150
|
+
*/
|
|
2151
|
+
this.ListenerId = null;
|
|
2152
|
+
|
|
2153
|
+
/**
|
|
2154
|
+
* Legacy domain name under a listener.
|
|
2155
|
+
* @type {string || null}
|
|
2156
|
+
*/
|
|
2157
|
+
this.Domain = null;
|
|
2158
|
+
|
|
2159
|
+
/**
|
|
2160
|
+
* New domain name. Length limit: 1-120. There are three usage formats: non-regular expression, wildcard, and regular expression. A non-regular expression can only contain letters, digits, "-", and ".". In a wildcard, "*" can only be at the beginning or the end. A regular expressions must begin with a "~".
|
|
2161
|
+
* @type {string || null}
|
|
2162
|
+
*/
|
|
2163
|
+
this.NewDomain = null;
|
|
2164
|
+
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
/**
|
|
2168
|
+
* @private
|
|
2169
|
+
*/
|
|
2170
|
+
deserialize(params) {
|
|
2171
|
+
if (!params) {
|
|
2172
|
+
return;
|
|
2173
|
+
}
|
|
2174
|
+
this.LoadBalancerId = 'LoadBalancerId' in params ? params.LoadBalancerId : null;
|
|
2175
|
+
this.ListenerId = 'ListenerId' in params ? params.ListenerId : null;
|
|
2176
|
+
this.Domain = 'Domain' in params ? params.Domain : null;
|
|
2177
|
+
this.NewDomain = 'NewDomain' in params ? params.NewDomain : null;
|
|
2178
|
+
|
|
2179
|
+
}
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
/**
|
|
2183
|
+
* ID of the idle CLB instance
|
|
2184
|
+
* @class
|
|
2185
|
+
*/
|
|
2186
|
+
class IdleLoadBalancer extends AbstractModel {
|
|
2187
|
+
constructor(){
|
|
2188
|
+
super();
|
|
2189
|
+
|
|
2190
|
+
/**
|
|
2191
|
+
* CLB instance ID
|
|
2192
|
+
* @type {string || null}
|
|
2193
|
+
*/
|
|
2194
|
+
this.LoadBalancerId = null;
|
|
2195
|
+
|
|
2196
|
+
/**
|
|
2197
|
+
* CLB instance name
|
|
2198
|
+
* @type {string || null}
|
|
2199
|
+
*/
|
|
2200
|
+
this.LoadBalancerName = null;
|
|
2201
|
+
|
|
2202
|
+
/**
|
|
2203
|
+
* CLB instance region
|
|
2204
|
+
* @type {string || null}
|
|
2205
|
+
*/
|
|
2206
|
+
this.Region = null;
|
|
2207
|
+
|
|
2208
|
+
/**
|
|
2209
|
+
* CLB instance VIP
|
|
2210
|
+
* @type {string || null}
|
|
2211
|
+
*/
|
|
2212
|
+
this.Vip = null;
|
|
2213
|
+
|
|
2214
|
+
/**
|
|
2215
|
+
* The reason why the load balancer is considered idle. `NO_RULES`: No rules configured. `NO_RS`: The rules are not associated with servers.
|
|
2216
|
+
* @type {string || null}
|
|
2217
|
+
*/
|
|
2218
|
+
this.IdleReason = null;
|
|
2219
|
+
|
|
2220
|
+
/**
|
|
2221
|
+
* CLB instance status, including:
|
|
2222
|
+
`0`: Creating; `1`: Running.
|
|
2223
|
+
* @type {number || null}
|
|
2224
|
+
*/
|
|
2225
|
+
this.Status = null;
|
|
2226
|
+
|
|
2227
|
+
/**
|
|
2228
|
+
* CLB type. Value range: `1` (CLB); `0` (classic CLB).
|
|
2229
|
+
* @type {number || null}
|
|
2230
|
+
*/
|
|
2231
|
+
this.Forward = null;
|
|
2232
|
+
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
/**
|
|
2236
|
+
* @private
|
|
2237
|
+
*/
|
|
2238
|
+
deserialize(params) {
|
|
2239
|
+
if (!params) {
|
|
2240
|
+
return;
|
|
2241
|
+
}
|
|
2242
|
+
this.LoadBalancerId = 'LoadBalancerId' in params ? params.LoadBalancerId : null;
|
|
2243
|
+
this.LoadBalancerName = 'LoadBalancerName' in params ? params.LoadBalancerName : null;
|
|
2244
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
2245
|
+
this.Vip = 'Vip' in params ? params.Vip : null;
|
|
2246
|
+
this.IdleReason = 'IdleReason' in params ? params.IdleReason : null;
|
|
2247
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
2248
|
+
this.Forward = 'Forward' in params ? params.Forward : null;
|
|
2249
|
+
|
|
2250
|
+
}
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2082
2253
|
/**
|
|
2083
2254
|
* RegisterTargetGroupInstances response structure.
|
|
2084
2255
|
* @class
|
|
@@ -4038,8 +4209,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4038
4209
|
|
|
4039
4210
|
/**
|
|
4040
4211
|
* Health check status code (applicable only to HTTP/HTTPS forwarding rules and HTTP health checks of TCP listeners). Value range: 1-31. Default value: 31.
|
|
4041
|
-
1
|
|
4042
|
-
Note: This field may return null
|
|
4212
|
+
`1`: Returns code 1xx for healthy status. `2`: Returns code 2xx for healthy status. `4`: Returns code 3xx for healthy status. `8`: Returns code 4xx for healthy status. `16`: Returns code 5xx for healthy status. If you want multiple return codes to represent healthy, sum up the corresponding values.
|
|
4213
|
+
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
4043
4214
|
* @type {number || null}
|
|
4044
4215
|
*/
|
|
4045
4216
|
this.HttpCode = null;
|
|
@@ -4052,8 +4223,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4052
4223
|
this.HttpCheckPath = null;
|
|
4053
4224
|
|
|
4054
4225
|
/**
|
|
4055
|
-
*
|
|
4056
|
-
Note: This field may return null
|
|
4226
|
+
* The target domain name for health check. It’s applicable only to HTTP/HTTPS forwarding rules and HTTP health checks of TCP listeners. It’s required for TCP listeners.
|
|
4227
|
+
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
4057
4228
|
* @type {string || null}
|
|
4058
4229
|
*/
|
|
4059
4230
|
this.HttpCheckDomain = null;
|
|
@@ -4211,6 +4382,12 @@ class CreateTopicRequest extends AbstractModel {
|
|
|
4211
4382
|
*/
|
|
4212
4383
|
this.Period = null;
|
|
4213
4384
|
|
|
4385
|
+
/**
|
|
4386
|
+
* Log topic storage type. Valid values: `hot` (STANDARD storage); `cold` (IA storage). Default value: `hot`.
|
|
4387
|
+
* @type {string || null}
|
|
4388
|
+
*/
|
|
4389
|
+
this.StorageType = null;
|
|
4390
|
+
|
|
4214
4391
|
}
|
|
4215
4392
|
|
|
4216
4393
|
/**
|
|
@@ -4224,6 +4401,7 @@ class CreateTopicRequest extends AbstractModel {
|
|
|
4224
4401
|
this.PartitionCount = 'PartitionCount' in params ? params.PartitionCount : null;
|
|
4225
4402
|
this.TopicType = 'TopicType' in params ? params.TopicType : null;
|
|
4226
4403
|
this.Period = 'Period' in params ? params.Period : null;
|
|
4404
|
+
this.StorageType = 'StorageType' in params ? params.StorageType : null;
|
|
4227
4405
|
|
|
4228
4406
|
}
|
|
4229
4407
|
}
|
|
@@ -4876,10 +5054,10 @@ class DescribeClassicalLBHealthStatusRequest extends AbstractModel {
|
|
|
4876
5054
|
}
|
|
4877
5055
|
|
|
4878
5056
|
/**
|
|
4879
|
-
*
|
|
5057
|
+
* DescribeListeners request structure.
|
|
4880
5058
|
* @class
|
|
4881
5059
|
*/
|
|
4882
|
-
class
|
|
5060
|
+
class DescribeListenersRequest extends AbstractModel {
|
|
4883
5061
|
constructor(){
|
|
4884
5062
|
super();
|
|
4885
5063
|
|
|
@@ -4890,22 +5068,22 @@ class ModifyDomainRequest extends AbstractModel {
|
|
|
4890
5068
|
this.LoadBalancerId = null;
|
|
4891
5069
|
|
|
4892
5070
|
/**
|
|
4893
|
-
* CLB listener
|
|
4894
|
-
* @type {string || null}
|
|
5071
|
+
* Array of CLB listener IDs to query (100 IDs at most).
|
|
5072
|
+
* @type {Array.<string> || null}
|
|
4895
5073
|
*/
|
|
4896
|
-
this.
|
|
5074
|
+
this.ListenerIds = null;
|
|
4897
5075
|
|
|
4898
5076
|
/**
|
|
4899
|
-
*
|
|
5077
|
+
* Type of the listener protocols to be queried. Valid values: TCP, UDP, HTTP, HTTPS, and TCP_SSL.
|
|
4900
5078
|
* @type {string || null}
|
|
4901
5079
|
*/
|
|
4902
|
-
this.
|
|
5080
|
+
this.Protocol = null;
|
|
4903
5081
|
|
|
4904
5082
|
/**
|
|
4905
|
-
*
|
|
4906
|
-
* @type {
|
|
5083
|
+
* Port of the listeners to be queried
|
|
5084
|
+
* @type {number || null}
|
|
4907
5085
|
*/
|
|
4908
|
-
this.
|
|
5086
|
+
this.Port = null;
|
|
4909
5087
|
|
|
4910
5088
|
}
|
|
4911
5089
|
|
|
@@ -4917,9 +5095,9 @@ class ModifyDomainRequest extends AbstractModel {
|
|
|
4917
5095
|
return;
|
|
4918
5096
|
}
|
|
4919
5097
|
this.LoadBalancerId = 'LoadBalancerId' in params ? params.LoadBalancerId : null;
|
|
4920
|
-
this.
|
|
4921
|
-
this.
|
|
4922
|
-
this.
|
|
5098
|
+
this.ListenerIds = 'ListenerIds' in params ? params.ListenerIds : null;
|
|
5099
|
+
this.Protocol = 'Protocol' in params ? params.Protocol : null;
|
|
5100
|
+
this.Port = 'Port' in params ? params.Port : null;
|
|
4923
5101
|
|
|
4924
5102
|
}
|
|
4925
5103
|
}
|
|
@@ -9198,36 +9376,30 @@ class DeleteLoadBalancerListenersResponse extends AbstractModel {
|
|
|
9198
9376
|
}
|
|
9199
9377
|
|
|
9200
9378
|
/**
|
|
9201
|
-
*
|
|
9379
|
+
* DescribeIdleLoadBalancers request structure.
|
|
9202
9380
|
* @class
|
|
9203
9381
|
*/
|
|
9204
|
-
class
|
|
9382
|
+
class DescribeIdleLoadBalancersRequest extends AbstractModel {
|
|
9205
9383
|
constructor(){
|
|
9206
9384
|
super();
|
|
9207
9385
|
|
|
9208
9386
|
/**
|
|
9209
|
-
*
|
|
9210
|
-
* @type {
|
|
9387
|
+
* Data offset. Default value: 0.
|
|
9388
|
+
* @type {number || null}
|
|
9211
9389
|
*/
|
|
9212
|
-
this.
|
|
9390
|
+
this.Offset = null;
|
|
9213
9391
|
|
|
9214
9392
|
/**
|
|
9215
|
-
*
|
|
9216
|
-
* @type {
|
|
9393
|
+
* Number of returned CLB instances. Default value: 20. Maximum value: 100.
|
|
9394
|
+
* @type {number || null}
|
|
9217
9395
|
*/
|
|
9218
|
-
this.
|
|
9396
|
+
this.Limit = null;
|
|
9219
9397
|
|
|
9220
9398
|
/**
|
|
9221
|
-
*
|
|
9399
|
+
* CLB instance region
|
|
9222
9400
|
* @type {string || null}
|
|
9223
9401
|
*/
|
|
9224
|
-
this.
|
|
9225
|
-
|
|
9226
|
-
/**
|
|
9227
|
-
* Port of the listeners to be queried
|
|
9228
|
-
* @type {number || null}
|
|
9229
|
-
*/
|
|
9230
|
-
this.Port = null;
|
|
9402
|
+
this.LoadBalancerRegion = null;
|
|
9231
9403
|
|
|
9232
9404
|
}
|
|
9233
9405
|
|
|
@@ -9238,10 +9410,9 @@ class DescribeListenersRequest extends AbstractModel {
|
|
|
9238
9410
|
if (!params) {
|
|
9239
9411
|
return;
|
|
9240
9412
|
}
|
|
9241
|
-
this.
|
|
9242
|
-
this.
|
|
9243
|
-
this.
|
|
9244
|
-
this.Port = 'Port' in params ? params.Port : null;
|
|
9413
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
9414
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
9415
|
+
this.LoadBalancerRegion = 'LoadBalancerRegion' in params ? params.LoadBalancerRegion : null;
|
|
9245
9416
|
|
|
9246
9417
|
}
|
|
9247
9418
|
}
|
|
@@ -10758,6 +10929,7 @@ module.exports = {
|
|
|
10758
10929
|
DescribeRewriteRequest: DescribeRewriteRequest,
|
|
10759
10930
|
ModifyLoadBalancerAttributesResponse: ModifyLoadBalancerAttributesResponse,
|
|
10760
10931
|
DescribeTargetGroupInstancesRequest: DescribeTargetGroupInstancesRequest,
|
|
10932
|
+
DescribeIdleLoadBalancersResponse: DescribeIdleLoadBalancersResponse,
|
|
10761
10933
|
AssociateTargetGroupsRequest: AssociateTargetGroupsRequest,
|
|
10762
10934
|
ClassicalTarget: ClassicalTarget,
|
|
10763
10935
|
ListenerItem: ListenerItem,
|
|
@@ -10772,6 +10944,8 @@ module.exports = {
|
|
|
10772
10944
|
CreateRuleResponse: CreateRuleResponse,
|
|
10773
10945
|
CrossTargets: CrossTargets,
|
|
10774
10946
|
RuleHealth: RuleHealth,
|
|
10947
|
+
ModifyDomainRequest: ModifyDomainRequest,
|
|
10948
|
+
IdleLoadBalancer: IdleLoadBalancer,
|
|
10775
10949
|
RegisterTargetGroupInstancesResponse: RegisterTargetGroupInstancesResponse,
|
|
10776
10950
|
ClassicalTargetInfo: ClassicalTargetInfo,
|
|
10777
10951
|
DescribeTargetsRequest: DescribeTargetsRequest,
|
|
@@ -10827,7 +11001,7 @@ module.exports = {
|
|
|
10827
11001
|
ModifyBlockIPListResponse: ModifyBlockIPListResponse,
|
|
10828
11002
|
ExclusiveCluster: ExclusiveCluster,
|
|
10829
11003
|
DescribeClassicalLBHealthStatusRequest: DescribeClassicalLBHealthStatusRequest,
|
|
10830
|
-
|
|
11004
|
+
DescribeListenersRequest: DescribeListenersRequest,
|
|
10831
11005
|
CreateClsLogSetResponse: CreateClsLogSetResponse,
|
|
10832
11006
|
DescribeCrossTargetsRequest: DescribeCrossTargetsRequest,
|
|
10833
11007
|
LBChargePrepaid: LBChargePrepaid,
|
|
@@ -10908,7 +11082,7 @@ module.exports = {
|
|
|
10908
11082
|
SetLoadBalancerClsLogRequest: SetLoadBalancerClsLogRequest,
|
|
10909
11083
|
LBItem: LBItem,
|
|
10910
11084
|
DeleteLoadBalancerListenersResponse: DeleteLoadBalancerListenersResponse,
|
|
10911
|
-
|
|
11085
|
+
DescribeIdleLoadBalancersRequest: DescribeIdleLoadBalancersRequest,
|
|
10912
11086
|
DeleteLoadBalancerSnatIpsRequest: DeleteLoadBalancerSnatIpsRequest,
|
|
10913
11087
|
SetLoadBalancerSecurityGroupsRequest: SetLoadBalancerSecurityGroupsRequest,
|
|
10914
11088
|
DescribeClassicalLBTargetsResponse: DescribeClassicalLBTargetsResponse,
|
|
@@ -1794,6 +1794,32 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1794
1794
|
*/
|
|
1795
1795
|
this.JsonStandard = null;
|
|
1796
1796
|
|
|
1797
|
+
/**
|
|
1798
|
+
* Syslog protocol. Valid values: `tcp`, `udp`.
|
|
1799
|
+
This field can be used when you create/modify collection rule configurations.
|
|
1800
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1801
|
+
* @type {string || null}
|
|
1802
|
+
*/
|
|
1803
|
+
this.Protocol = null;
|
|
1804
|
+
|
|
1805
|
+
/**
|
|
1806
|
+
* Listening address and port specified by the syslog collection. Format: [ip]:[port]. Example: 127.0.0.1:9000.
|
|
1807
|
+
This field can be used when you create/modify collection rule configurations.
|
|
1808
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1809
|
+
* @type {string || null}
|
|
1810
|
+
*/
|
|
1811
|
+
this.Address = null;
|
|
1812
|
+
|
|
1813
|
+
/**
|
|
1814
|
+
* `rfc3164`: Resolve logs by using the RFC3164 protocol during the syslog collection.
|
|
1815
|
+
`rfc5424`: Resolve logs by using the RFC5424 protocol during the syslog collection.
|
|
1816
|
+
`auto`: Automatically match either the RFC3164 or RFC5424 protocol.
|
|
1817
|
+
This field can be used when you create/modify collection rule configurations.
|
|
1818
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1819
|
+
* @type {string || null}
|
|
1820
|
+
*/
|
|
1821
|
+
this.ParseProtocol = null;
|
|
1822
|
+
|
|
1797
1823
|
}
|
|
1798
1824
|
|
|
1799
1825
|
/**
|
|
@@ -1823,6 +1849,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1823
1849
|
this.Backtracking = 'Backtracking' in params ? params.Backtracking : null;
|
|
1824
1850
|
this.IsGBK = 'IsGBK' in params ? params.IsGBK : null;
|
|
1825
1851
|
this.JsonStandard = 'JsonStandard' in params ? params.JsonStandard : null;
|
|
1852
|
+
this.Protocol = 'Protocol' in params ? params.Protocol : null;
|
|
1853
|
+
this.Address = 'Address' in params ? params.Address : null;
|
|
1854
|
+
this.ParseProtocol = 'ParseProtocol' in params ? params.ParseProtocol : null;
|
|
1826
1855
|
|
|
1827
1856
|
}
|
|
1828
1857
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.544";
|
|
2
2
|
module.exports = sdkVersion
|