tencentcloud-sdk-nodejs-intl-en 3.0.345 → 3.0.346
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/cdb/v20170320/cdb_client.js +4 -2
- package/tencentcloud/cdb/v20170320/models.js +18 -4
- package/tencentcloud/cdn/v20180606/cdn_client.js +12 -3
- package/tencentcloud/cdn/v20180606/models.js +1145 -89
- package/tencentcloud/clb/v20180317/clb_client.js +15 -1
- package/tencentcloud/clb/v20180317/models.js +138 -29
- package/tencentcloud/common/sdk_version.js +1 -1
package/package.json
CHANGED
|
@@ -540,7 +540,8 @@ Note that once an instance is deactivated, its resources and data will not be re
|
|
|
540
540
|
}
|
|
541
541
|
|
|
542
542
|
/**
|
|
543
|
-
* This API is used to query the
|
|
543
|
+
* This API is used to query the error logs of an instance over the past month by search criteria.
|
|
544
|
+
Note: the HTTP response packet will be very large if it contain a single large error log, which causes the API call to time out. If this happens, we recommend you lower the value of the input parameter `Limit` to reduce the packet size so that the API can respond timely.
|
|
544
545
|
* @param {DescribeErrorLogDataRequest} req
|
|
545
546
|
* @param {function(string, DescribeErrorLogDataResponse):void} cb
|
|
546
547
|
* @public
|
|
@@ -1191,7 +1192,8 @@ Note that the files for a data import task must be uploaded to Tencent Cloud in
|
|
|
1191
1192
|
}
|
|
1192
1193
|
|
|
1193
1194
|
/**
|
|
1194
|
-
* This API is used to
|
|
1195
|
+
* This API is used to query the slow logs of an instance over the past month by search criteria.
|
|
1196
|
+
Note: the HTTP response packet will be very large if it contain a single large slow log, which causes the API call to time out. If this happens, we recommend you lower the value of the input parameter `Limit` to reduce the packet size so that the API can respond timely.
|
|
1195
1197
|
* @param {DescribeSlowLogDataRequest} req
|
|
1196
1198
|
* @param {function(string, DescribeSlowLogDataResponse):void} cb
|
|
1197
1199
|
* @public
|
|
@@ -9558,6 +9558,12 @@ class UpgradeDBInstanceRequest extends AbstractModel {
|
|
|
9558
9558
|
*/
|
|
9559
9559
|
this.FastUpgrade = null;
|
|
9560
9560
|
|
|
9561
|
+
/**
|
|
9562
|
+
* Delay threshold. Value range: 1-10. Default value: `10`.
|
|
9563
|
+
* @type {number || null}
|
|
9564
|
+
*/
|
|
9565
|
+
this.MaxDelayTime = null;
|
|
9566
|
+
|
|
9561
9567
|
}
|
|
9562
9568
|
|
|
9563
9569
|
/**
|
|
@@ -9580,6 +9586,7 @@ class UpgradeDBInstanceRequest extends AbstractModel {
|
|
|
9580
9586
|
this.DeviceType = 'DeviceType' in params ? params.DeviceType : null;
|
|
9581
9587
|
this.Cpu = 'Cpu' in params ? params.Cpu : null;
|
|
9582
9588
|
this.FastUpgrade = 'FastUpgrade' in params ? params.FastUpgrade : null;
|
|
9589
|
+
this.MaxDelayTime = 'MaxDelayTime' in params ? params.MaxDelayTime : null;
|
|
9583
9590
|
|
|
9584
9591
|
}
|
|
9585
9592
|
}
|
|
@@ -10992,6 +10999,12 @@ class UpgradeDBInstanceEngineVersionRequest extends AbstractModel {
|
|
|
10992
10999
|
*/
|
|
10993
11000
|
this.UpgradeSubversion = null;
|
|
10994
11001
|
|
|
11002
|
+
/**
|
|
11003
|
+
* Delay threshold. Value range: 1-10
|
|
11004
|
+
* @type {number || null}
|
|
11005
|
+
*/
|
|
11006
|
+
this.MaxDelayTime = null;
|
|
11007
|
+
|
|
10995
11008
|
}
|
|
10996
11009
|
|
|
10997
11010
|
/**
|
|
@@ -11005,6 +11018,7 @@ class UpgradeDBInstanceEngineVersionRequest extends AbstractModel {
|
|
|
11005
11018
|
this.EngineVersion = 'EngineVersion' in params ? params.EngineVersion : null;
|
|
11006
11019
|
this.WaitSwitch = 'WaitSwitch' in params ? params.WaitSwitch : null;
|
|
11007
11020
|
this.UpgradeSubversion = 'UpgradeSubversion' in params ? params.UpgradeSubversion : null;
|
|
11021
|
+
this.MaxDelayTime = 'MaxDelayTime' in params ? params.MaxDelayTime : null;
|
|
11008
11022
|
|
|
11009
11023
|
}
|
|
11010
11024
|
}
|
|
@@ -12524,8 +12538,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
12524
12538
|
this.Timestamp = null;
|
|
12525
12539
|
|
|
12526
12540
|
/**
|
|
12527
|
-
* SQL execution duration.
|
|
12528
|
-
Note: this field may return null
|
|
12541
|
+
* SQL execution duration in seconds.
|
|
12542
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
12529
12543
|
* @type {number || null}
|
|
12530
12544
|
*/
|
|
12531
12545
|
this.QueryTime = null;
|
|
@@ -12559,8 +12573,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
12559
12573
|
this.Database = null;
|
|
12560
12574
|
|
|
12561
12575
|
/**
|
|
12562
|
-
* Lock duration.
|
|
12563
|
-
Note: this field may return null
|
|
12576
|
+
* Lock duration in seconds.
|
|
12577
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
12564
12578
|
* @type {number || null}
|
|
12565
12579
|
*/
|
|
12566
12580
|
this.LockTime = null;
|
|
@@ -18,19 +18,21 @@ const models = require("./models");
|
|
|
18
18
|
const AbstractClient = require('../../common/abstract_client')
|
|
19
19
|
const DescribeCdnDomainLogsResponse = models.DescribeCdnDomainLogsResponse;
|
|
20
20
|
const AdvancedAuthentication = models.AdvancedAuthentication;
|
|
21
|
-
const
|
|
21
|
+
const AdvanceHttps = models.AdvanceHttps;
|
|
22
22
|
const Revalidate = models.Revalidate;
|
|
23
23
|
const ResourceData = models.ResourceData;
|
|
24
24
|
const UrlRecord = models.UrlRecord;
|
|
25
25
|
const DescribePushQuotaResponse = models.DescribePushQuotaResponse;
|
|
26
26
|
const DescribePurgeQuotaResponse = models.DescribePurgeQuotaResponse;
|
|
27
|
+
const ScdnSevenLayerRules = models.ScdnSevenLayerRules;
|
|
27
28
|
const Authentication = models.Authentication;
|
|
28
29
|
const ImageOptimization = models.ImageOptimization;
|
|
29
30
|
const Https = models.Https;
|
|
30
31
|
const RuleCache = models.RuleCache;
|
|
31
32
|
const DescribeCdnDomainLogsRequest = models.DescribeCdnDomainLogsRequest;
|
|
32
33
|
const CreateClsLogTopicResponse = models.CreateClsLogTopicResponse;
|
|
33
|
-
const
|
|
34
|
+
const RemoteAuthenticationRule = models.RemoteAuthenticationRule;
|
|
35
|
+
const Compression = models.Compression;
|
|
34
36
|
const PurgePathCacheResponse = models.PurgePathCacheResponse;
|
|
35
37
|
const DomainFilter = models.DomainFilter;
|
|
36
38
|
const DescribeCdnOriginIpResponse = models.DescribeCdnOriginIpResponse;
|
|
@@ -68,6 +70,7 @@ const UserAgentFilter = models.UserAgentFilter;
|
|
|
68
70
|
const DescribeCdnOriginIpRequest = models.DescribeCdnOriginIpRequest;
|
|
69
71
|
const UpdatePayTypeResponse = models.UpdatePayTypeResponse;
|
|
70
72
|
const TopicInfo = models.TopicInfo;
|
|
73
|
+
const AdvancedCCRules = models.AdvancedCCRules;
|
|
71
74
|
const DescribeDomainsConfigResponse = models.DescribeDomainsConfigResponse;
|
|
72
75
|
const BriefDomain = models.BriefDomain;
|
|
73
76
|
const TimestampData = models.TimestampData;
|
|
@@ -119,6 +122,7 @@ const ServerCert = models.ServerCert;
|
|
|
119
122
|
const AccessControlRule = models.AccessControlRule;
|
|
120
123
|
const HttpHeaderPathRule = models.HttpHeaderPathRule;
|
|
121
124
|
const DisableCachesRequest = models.DisableCachesRequest;
|
|
125
|
+
const ScdnAclRule = models.ScdnAclRule;
|
|
122
126
|
const SimpleCacheRule = models.SimpleCacheRule;
|
|
123
127
|
const DisableClsLogTopicResponse = models.DisableClsLogTopicResponse;
|
|
124
128
|
const Hsts = models.Hsts;
|
|
@@ -156,6 +160,7 @@ const DescribeMapInfoResponse = models.DescribeMapInfoResponse;
|
|
|
156
160
|
const DescribeMapInfoRequest = models.DescribeMapInfoRequest;
|
|
157
161
|
const EnableCachesResponse = models.EnableCachesResponse;
|
|
158
162
|
const RuleQueryString = models.RuleQueryString;
|
|
163
|
+
const AdvancedScdnAclRule = models.AdvancedScdnAclRule;
|
|
159
164
|
const DescribeIpVisitRequest = models.DescribeIpVisitRequest;
|
|
160
165
|
const HttpHeaderRule = models.HttpHeaderRule;
|
|
161
166
|
const StatusCodeCacheRule = models.StatusCodeCacheRule;
|
|
@@ -169,6 +174,7 @@ const DeleteClsLogTopicResponse = models.DeleteClsLogTopicResponse;
|
|
|
169
174
|
const DescribeBillingDataResponse = models.DescribeBillingDataResponse;
|
|
170
175
|
const DisableCachesResponse = models.DisableCachesResponse;
|
|
171
176
|
const SchemeKey = models.SchemeKey;
|
|
177
|
+
const RangeOriginPullRule = models.RangeOriginPullRule;
|
|
172
178
|
const DescribeCdnIpResponse = models.DescribeCdnIpResponse;
|
|
173
179
|
const AdvanceCacheRule = models.AdvanceCacheRule;
|
|
174
180
|
const DescribeIpStatusResponse = models.DescribeIpStatusResponse;
|
|
@@ -178,8 +184,10 @@ const CacheKey = models.CacheKey;
|
|
|
178
184
|
const UrlRedirect = models.UrlRedirect;
|
|
179
185
|
const DownstreamCapping = models.DownstreamCapping;
|
|
180
186
|
const CookieKey = models.CookieKey;
|
|
187
|
+
const RemoteAuthentication = models.RemoteAuthentication;
|
|
181
188
|
const KeyRule = models.KeyRule;
|
|
182
189
|
const CappingRule = models.CappingRule;
|
|
190
|
+
const ShareCname = models.ShareCname;
|
|
183
191
|
const ListClsLogTopicsRequest = models.ListClsLogTopicsRequest;
|
|
184
192
|
const Seo = models.Seo;
|
|
185
193
|
const BandwidthAlert = models.BandwidthAlert;
|
|
@@ -212,9 +220,10 @@ const SecurityConfig = models.SecurityConfig;
|
|
|
212
220
|
const SearchClsLogRequest = models.SearchClsLogRequest;
|
|
213
221
|
const AdvanceConfig = models.AdvanceConfig;
|
|
214
222
|
const AwsPrivateAccess = models.AwsPrivateAccess;
|
|
215
|
-
const
|
|
223
|
+
const AdvancedScdnAclGroup = models.AdvancedScdnAclGroup;
|
|
216
224
|
const VideoSeek = models.VideoSeek;
|
|
217
225
|
const Compatibility = models.Compatibility;
|
|
226
|
+
const ManageClsTopicDomainsResponse = models.ManageClsTopicDomainsResponse;
|
|
218
227
|
const ScdnAclGroup = models.ScdnAclGroup;
|
|
219
228
|
const ScdnWafRule = models.ScdnWafRule;
|
|
220
229
|
const ClsSearchLogs = models.ClsSearchLogs;
|