tencentcloud-sdk-nodejs-intl-en 3.0.541 → 3.0.542
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/models.js +8 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/es/v20180416/models.js +22 -0
- package/tencentcloud/live/v20180801/live_client.js +34 -7
- package/tencentcloud/live/v20180801/models.js +346 -107
- package/tencentcloud/mps/v20190612/models.js +16 -2
- package/tencentcloud/mps/v20190612/mps_client.js +3 -3
- package/tencentcloud/sqlserver/v20180328/models.js +1089 -81
- package/tencentcloud/sqlserver/v20180328/sqlserver_client.js +149 -54
- package/tencentcloud/tdmq/v20200217/models.js +229 -4
- package/tencentcloud/tdmq/v20200217/tdmq_client.js +16 -2
- package/tencentcloud/vod/v20180717/models.js +120 -13
- package/tencentcloud/vod/v20180717/vod_client.js +16 -0
package/package.json
CHANGED
|
@@ -4788,6 +4788,12 @@ class CreateParamTemplateRequest extends AbstractModel {
|
|
|
4788
4788
|
*/
|
|
4789
4789
|
this.TemplateType = null;
|
|
4790
4790
|
|
|
4791
|
+
/**
|
|
4792
|
+
* Instance engine type. Valid values: `InnoDB` (default), `RocksDB`.
|
|
4793
|
+
* @type {string || null}
|
|
4794
|
+
*/
|
|
4795
|
+
this.EngineType = null;
|
|
4796
|
+
|
|
4791
4797
|
}
|
|
4792
4798
|
|
|
4793
4799
|
/**
|
|
@@ -4811,6 +4817,7 @@ class CreateParamTemplateRequest extends AbstractModel {
|
|
|
4811
4817
|
}
|
|
4812
4818
|
}
|
|
4813
4819
|
this.TemplateType = 'TemplateType' in params ? params.TemplateType : null;
|
|
4820
|
+
this.EngineType = 'EngineType' in params ? params.EngineType : null;
|
|
4814
4821
|
|
|
4815
4822
|
}
|
|
4816
4823
|
}
|
|
@@ -14576,7 +14583,7 @@ class DescribeDBInstancesResponse extends AbstractModel {
|
|
|
14576
14583
|
this.TotalCount = null;
|
|
14577
14584
|
|
|
14578
14585
|
/**
|
|
14579
|
-
*
|
|
14586
|
+
* List of instance details
|
|
14580
14587
|
* @type {Array.<InstanceInfo> || null}
|
|
14581
14588
|
*/
|
|
14582
14589
|
this.Items = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.542";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -3460,6 +3460,12 @@ Dedicated primary node disk size in GB. This is 50 GB by default and currently c
|
|
|
3460
3460
|
*/
|
|
3461
3461
|
this.OperationDuration = null;
|
|
3462
3462
|
|
|
3463
|
+
/**
|
|
3464
|
+
* Whether to enable the option for sending alerting messages over the public network.
|
|
3465
|
+
* @type {string || null}
|
|
3466
|
+
*/
|
|
3467
|
+
this.KibanaAlteringPublicAccess = null;
|
|
3468
|
+
|
|
3463
3469
|
}
|
|
3464
3470
|
|
|
3465
3471
|
/**
|
|
@@ -3546,6 +3552,7 @@ Dedicated primary node disk size in GB. This is 50 GB by default and currently c
|
|
|
3546
3552
|
obj.deserialize(params.OperationDuration)
|
|
3547
3553
|
this.OperationDuration = obj;
|
|
3548
3554
|
}
|
|
3555
|
+
this.KibanaAlteringPublicAccess = 'KibanaAlteringPublicAccess' in params ? params.KibanaAlteringPublicAccess : null;
|
|
3549
3556
|
|
|
3550
3557
|
}
|
|
3551
3558
|
}
|
|
@@ -4288,6 +4295,13 @@ class TaskDetail extends AbstractModel {
|
|
|
4288
4295
|
*/
|
|
4289
4296
|
this.SubTasks = null;
|
|
4290
4297
|
|
|
4298
|
+
/**
|
|
4299
|
+
* The task time.
|
|
4300
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4301
|
+
* @type {number || null}
|
|
4302
|
+
*/
|
|
4303
|
+
this.ElapsedTime = null;
|
|
4304
|
+
|
|
4291
4305
|
}
|
|
4292
4306
|
|
|
4293
4307
|
/**
|
|
@@ -4309,6 +4323,7 @@ class TaskDetail extends AbstractModel {
|
|
|
4309
4323
|
this.SubTasks.push(obj);
|
|
4310
4324
|
}
|
|
4311
4325
|
}
|
|
4326
|
+
this.ElapsedTime = 'ElapsedTime' in params ? params.ElapsedTime : null;
|
|
4312
4327
|
|
|
4313
4328
|
}
|
|
4314
4329
|
}
|
|
@@ -4625,6 +4640,12 @@ class UpgradeInstanceRequest extends AbstractModel {
|
|
|
4625
4640
|
*/
|
|
4626
4641
|
this.CosBackup = null;
|
|
4627
4642
|
|
|
4643
|
+
/**
|
|
4644
|
+
* Whether to skip the check and perform a force restart in the rolling mode. Default value: `false`.
|
|
4645
|
+
* @type {boolean || null}
|
|
4646
|
+
*/
|
|
4647
|
+
this.SkipCheckForceRestart = null;
|
|
4648
|
+
|
|
4628
4649
|
}
|
|
4629
4650
|
|
|
4630
4651
|
/**
|
|
@@ -4641,6 +4662,7 @@ class UpgradeInstanceRequest extends AbstractModel {
|
|
|
4641
4662
|
this.BasicSecurityType = 'BasicSecurityType' in params ? params.BasicSecurityType : null;
|
|
4642
4663
|
this.UpgradeMode = 'UpgradeMode' in params ? params.UpgradeMode : null;
|
|
4643
4664
|
this.CosBackup = 'CosBackup' in params ? params.CosBackup : null;
|
|
4665
|
+
this.SkipCheckForceRestart = 'SkipCheckForceRestart' in params ? params.SkipCheckForceRestart : null;
|
|
4644
4666
|
|
|
4645
4667
|
}
|
|
4646
4668
|
}
|
|
@@ -29,7 +29,7 @@ const FlvSpecialParam = models.FlvSpecialParam;
|
|
|
29
29
|
const TemplateInfo = models.TemplateInfo;
|
|
30
30
|
const DeleteLiveCallbackRuleResponse = models.DeleteLiveCallbackRuleResponse;
|
|
31
31
|
const ResumeDelayLiveStreamRequest = models.ResumeDelayLiveStreamRequest;
|
|
32
|
-
const
|
|
32
|
+
const DescribeLiveStreamPublishedListRequest = models.DescribeLiveStreamPublishedListRequest;
|
|
33
33
|
const DescribeLiveCallbackTemplateResponse = models.DescribeLiveCallbackTemplateResponse;
|
|
34
34
|
const CreateLivePullStreamTaskRequest = models.CreateLivePullStreamTaskRequest;
|
|
35
35
|
const DeleteLiveSnapshotTemplateRequest = models.DeleteLiveSnapshotTemplateRequest;
|
|
@@ -63,7 +63,7 @@ const DescribeUploadStreamNumsRequest = models.DescribeUploadStreamNumsRequest;
|
|
|
63
63
|
const DescribeLiveSnapshotRulesResponse = models.DescribeLiveSnapshotRulesResponse;
|
|
64
64
|
const DescribeLiveTranscodeDetailInfoResponse = models.DescribeLiveTranscodeDetailInfoResponse;
|
|
65
65
|
const DescribeLiveDomainRequest = models.DescribeLiveDomainRequest;
|
|
66
|
-
const
|
|
66
|
+
const AuthenticateDomainOwnerResponse = models.AuthenticateDomainOwnerResponse;
|
|
67
67
|
const DescribeGroupProIspPlayInfoListResponse = models.DescribeGroupProIspPlayInfoListResponse;
|
|
68
68
|
const CreateLiveRecordRuleRequest = models.CreateLiveRecordRuleRequest;
|
|
69
69
|
const DescribeLiveSnapshotTemplatesRequest = models.DescribeLiveSnapshotTemplatesRequest;
|
|
@@ -76,6 +76,7 @@ const ForbidLiveStreamRequest = models.ForbidLiveStreamRequest;
|
|
|
76
76
|
const DescribeDeliverBandwidthListRequest = models.DescribeDeliverBandwidthListRequest;
|
|
77
77
|
const PlayCodeTotalInfo = models.PlayCodeTotalInfo;
|
|
78
78
|
const DescribeConcurrentRecordStreamNumResponse = models.DescribeConcurrentRecordStreamNumResponse;
|
|
79
|
+
const TranscodeTaskNum = models.TranscodeTaskNum;
|
|
79
80
|
const ModifyLivePlayDomainRequest = models.ModifyLivePlayDomainRequest;
|
|
80
81
|
const DeleteLiveRecordTemplateResponse = models.DeleteLiveRecordTemplateResponse;
|
|
81
82
|
const DescribeLiveWatermarkRequest = models.DescribeLiveWatermarkRequest;
|
|
@@ -106,7 +107,7 @@ const AddLiveWatermarkRequest = models.AddLiveWatermarkRequest;
|
|
|
106
107
|
const DescribeLiveTimeShiftBillInfoListRequest = models.DescribeLiveTimeShiftBillInfoListRequest;
|
|
107
108
|
const DescribeLiveCertsResponse = models.DescribeLiveCertsResponse;
|
|
108
109
|
const CommonMixInputParam = models.CommonMixInputParam;
|
|
109
|
-
const
|
|
110
|
+
const DescribeLiveWatermarkRulesResponse = models.DescribeLiveWatermarkRulesResponse;
|
|
110
111
|
const DescribeLiveRecordTemplatesResponse = models.DescribeLiveRecordTemplatesResponse;
|
|
111
112
|
const PlayDataInfoByStream = models.PlayDataInfoByStream;
|
|
112
113
|
const DescribeLiveCertRequest = models.DescribeLiveCertRequest;
|
|
@@ -123,6 +124,7 @@ const DescribeLiveWatermarksRequest = models.DescribeLiveWatermarksRequest;
|
|
|
123
124
|
const CreateLiveTranscodeRuleRequest = models.CreateLiveTranscodeRuleRequest;
|
|
124
125
|
const DescribeLiveWatermarkRulesRequest = models.DescribeLiveWatermarkRulesRequest;
|
|
125
126
|
const PullPushWatermarkInfo = models.PullPushWatermarkInfo;
|
|
127
|
+
const DescribeProvinceIspPlayInfoListResponse = models.DescribeProvinceIspPlayInfoListResponse;
|
|
126
128
|
const CreateCommonMixStreamRequest = models.CreateCommonMixStreamRequest;
|
|
127
129
|
const RefererAuthConfig = models.RefererAuthConfig;
|
|
128
130
|
const PushDataInfo = models.PushDataInfo;
|
|
@@ -144,6 +146,7 @@ const ModifyLiveCallbackTemplateRequest = models.ModifyLiveCallbackTemplateReque
|
|
|
144
146
|
const DescribeProvinceIspPlayInfoListRequest = models.DescribeProvinceIspPlayInfoListRequest;
|
|
145
147
|
const DescribeLivePlayAuthKeyRequest = models.DescribeLivePlayAuthKeyRequest;
|
|
146
148
|
const DeleteLivePullStreamTaskResponse = models.DeleteLivePullStreamTaskResponse;
|
|
149
|
+
const AuthenticateDomainOwnerRequest = models.AuthenticateDomainOwnerRequest;
|
|
147
150
|
const DescribeLiveForbidStreamListResponse = models.DescribeLiveForbidStreamListResponse;
|
|
148
151
|
const DescribeVisitTopSumInfoListRequest = models.DescribeVisitTopSumInfoListRequest;
|
|
149
152
|
const DescribeLivePullStreamTasksResponse = models.DescribeLivePullStreamTasksResponse;
|
|
@@ -186,6 +189,7 @@ const DescribePlayErrorCodeSumInfoListRequest = models.DescribePlayErrorCodeSumI
|
|
|
186
189
|
const ModifyLiveRecordTemplateResponse = models.ModifyLiveRecordTemplateResponse;
|
|
187
190
|
const CommonMixControlParams = models.CommonMixControlParams;
|
|
188
191
|
const TranscodeTotalInfo = models.TranscodeTotalInfo;
|
|
192
|
+
const DescribeTranscodeTaskNumResponse = models.DescribeTranscodeTaskNumResponse;
|
|
189
193
|
const UnBindLiveDomainCertResponse = models.UnBindLiveDomainCertResponse;
|
|
190
194
|
const ForbidLiveDomainRequest = models.ForbidLiveDomainRequest;
|
|
191
195
|
const DescribeLiveRecordRulesRequest = models.DescribeLiveRecordRulesRequest;
|
|
@@ -254,6 +258,7 @@ const CreateLiveSnapshotRuleResponse = models.CreateLiveSnapshotRuleResponse;
|
|
|
254
258
|
const DelayInfo = models.DelayInfo;
|
|
255
259
|
const DescribeLiveStreamEventListResponse = models.DescribeLiveStreamEventListResponse;
|
|
256
260
|
const ForbidLiveDomainResponse = models.ForbidLiveDomainResponse;
|
|
261
|
+
const DescribeTranscodeTaskNumRequest = models.DescribeTranscodeTaskNumRequest;
|
|
257
262
|
const DescribeLiveCallbackRulesResponse = models.DescribeLiveCallbackRulesResponse;
|
|
258
263
|
const DescribeLiveTranscodeTotalInfoRequest = models.DescribeLiveTranscodeTotalInfoRequest;
|
|
259
264
|
const CreateRecordTaskResponse = models.CreateRecordTaskResponse;
|
|
@@ -487,6 +492,17 @@ Referer information is included in HTTP requests. After you enable referer confi
|
|
|
487
492
|
this.request("DescribeLiveRecordTemplates", req, resp, cb);
|
|
488
493
|
}
|
|
489
494
|
|
|
495
|
+
/**
|
|
496
|
+
* This API is used to verify the ownership of a domain.
|
|
497
|
+
* @param {AuthenticateDomainOwnerRequest} req
|
|
498
|
+
* @param {function(string, AuthenticateDomainOwnerResponse):void} cb
|
|
499
|
+
* @public
|
|
500
|
+
*/
|
|
501
|
+
AuthenticateDomainOwner(req, cb) {
|
|
502
|
+
let resp = new AuthenticateDomainOwnerResponse();
|
|
503
|
+
this.request("AuthenticateDomainOwner", req, resp, cb);
|
|
504
|
+
}
|
|
505
|
+
|
|
490
506
|
/**
|
|
491
507
|
* This API is used to query the information of the top n domain names or stream IDs in a certain period of time (top 1,000 is supported currently).
|
|
492
508
|
* @param {DescribeVisitTopSumInfoListRequest} req
|
|
@@ -544,8 +560,8 @@ After the number of watermarks exceeds the upper limit of 100, to add a new wate
|
|
|
544
560
|
}
|
|
545
561
|
|
|
546
562
|
/**
|
|
547
|
-
*
|
|
548
|
-
<br>
|
|
563
|
+
* This API is used to create a screencapture template. After a template ID is returned, you need to call the [CreateLiveSnapshotRule](https://intl.cloud.tencent.com/document/product/267/32625?from_cn_redirect=1) API to bind the template ID to a stream. You can create up to 50 screencapture templates.
|
|
564
|
+
<br>To learn more about the live screencapture feature, see [Live Screencapture](https://intl.cloud.tencent.com/document/product/267/32737?from_cn_redirect=1).
|
|
549
565
|
* @param {CreateLiveSnapshotTemplateRequest} req
|
|
550
566
|
* @param {function(string, CreateLiveSnapshotTemplateResponse):void} cb
|
|
551
567
|
* @public
|
|
@@ -707,10 +723,10 @@ Note: if you are to set the delay before stream push, set it at least 5 minutes
|
|
|
707
723
|
}
|
|
708
724
|
|
|
709
725
|
/**
|
|
710
|
-
* This API is used to query
|
|
726
|
+
* This API is used to query transcoding usage. You can use it to query data in the past three months.
|
|
711
727
|
Notes:
|
|
712
728
|
If the start time and end time are on the same day, the data returned will be on a 5-minute basis.
|
|
713
|
-
If not or if the data of specified domains is queried, the data returned will be on an hourly basis.
|
|
729
|
+
If the start time and end time are not on the same day or if the data of specified domains is queried, the data returned will be on an hourly basis.
|
|
714
730
|
* @param {DescribeLiveTranscodeTotalInfoRequest} req
|
|
715
731
|
* @param {function(string, DescribeLiveTranscodeTotalInfoResponse):void} cb
|
|
716
732
|
* @public
|
|
@@ -1417,6 +1433,17 @@ Referer information is included in HTTP requests. After you enable referer confi
|
|
|
1417
1433
|
this.request("CancelCommonMixStream", req, resp, cb);
|
|
1418
1434
|
}
|
|
1419
1435
|
|
|
1436
|
+
/**
|
|
1437
|
+
* This API is used to query the number of transcoding tasks.
|
|
1438
|
+
* @param {DescribeTranscodeTaskNumRequest} req
|
|
1439
|
+
* @param {function(string, DescribeTranscodeTaskNumResponse):void} cb
|
|
1440
|
+
* @public
|
|
1441
|
+
*/
|
|
1442
|
+
DescribeTranscodeTaskNum(req, cb) {
|
|
1443
|
+
let resp = new DescribeTranscodeTaskNumResponse();
|
|
1444
|
+
this.request("DescribeTranscodeTaskNum", req, resp, cb);
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1420
1447
|
/**
|
|
1421
1448
|
* This API is used to query the push information of all real-time streams, including client IP, server IP, frame rate, bitrate, domain name, and push start time.
|
|
1422
1449
|
* @param {DescribeLiveStreamPushInfoListRequest} req
|