tencentcloud-sdk-nodejs-intl-en 3.0.1208 → 3.0.1209

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1208",
3
+ "version": "3.0.1209",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1208";
1
+ const sdkVersion = "3.0.1209";
2
2
  module.exports = sdkVersion
@@ -158,6 +158,7 @@ const DescribeLiveSnapshotTemplateResponse = models.DescribeLiveSnapshotTemplate
158
158
  const DescribeLiveTranscodeRulesResponse = models.DescribeLiveTranscodeRulesResponse;
159
159
  const CreateLiveTimeShiftTemplateRequest = models.CreateLiveTimeShiftTemplateRequest;
160
160
  const DescribeLiveDomainRefererResponse = models.DescribeLiveDomainRefererResponse;
161
+ const StopLivePadStreamRequest = models.StopLivePadStreamRequest;
161
162
  const AddLiveDomainRequest = models.AddLiveDomainRequest;
162
163
  const StreamName = models.StreamName;
163
164
  const DescribeLiveCertsRequest = models.DescribeLiveCertsRequest;
@@ -228,6 +229,7 @@ const DescribePlayErrorCodeDetailInfoListResponse = models.DescribePlayErrorCode
228
229
  const StartLivePadStreamResponse = models.StartLivePadStreamResponse;
229
230
  const CreateLiveRecordTemplateResponse = models.CreateLiveRecordTemplateResponse;
230
231
  const GroupProIspDataInfo = models.GroupProIspDataInfo;
232
+ const StopLivePadStreamResponse = models.StopLivePadStreamResponse;
231
233
  const RecordParam = models.RecordParam;
232
234
  const ForbidLiveStreamResponse = models.ForbidLiveStreamResponse;
233
235
  const HttpStatusInfo = models.HttpStatusInfo;
@@ -1363,6 +1365,17 @@ Note:
1363
1365
  this.request("CreateLiveTimeShiftRule", req, resp, cb);
1364
1366
  }
1365
1367
 
1368
+ /**
1369
+ * Call this API to end the transition to standby footage.
1370
+ * @param {StopLivePadStreamRequest} req
1371
+ * @param {function(string, StopLivePadStreamResponse):void} cb
1372
+ * @public
1373
+ */
1374
+ StopLivePadStream(req, cb) {
1375
+ let resp = new StopLivePadStreamResponse();
1376
+ this.request("StopLivePadStream", req, resp, cb);
1377
+ }
1378
+
1366
1379
  /**
1367
1380
  * To create a recording rule, you need to first call the [CreateLiveRecordTemplate](https://intl.cloud.tencent.com/document/product/267/32614?from_cn_redirect=1) API to create a recording template and bind the returned template ID to the stream.
1368
1381
  <br>Recording-related document: [LVB Recording](https://intl.cloud.tencent.com/document/product/267/32739?from_cn_redirect=1).
@@ -7508,6 +7508,55 @@ class DescribeLiveDomainRefererResponse extends AbstractModel {
7508
7508
  }
7509
7509
  }
7510
7510
 
7511
+ /**
7512
+ * StopLivePadStream request structure.
7513
+ * @class
7514
+ */
7515
+ class StopLivePadStreamRequest extends AbstractModel {
7516
+ constructor(){
7517
+ super();
7518
+
7519
+ /**
7520
+ * Ensure the streaming path uses the same AppName as the push/play URLs (default: 'live')
7521
+ * @type {string || null}
7522
+ */
7523
+ this.AppName = null;
7524
+
7525
+ /**
7526
+ * Your RTMP push domain.
7527
+ * @type {string || null}
7528
+ */
7529
+ this.PushDomainName = null;
7530
+
7531
+ /**
7532
+ * Your stream name.
7533
+ * @type {string || null}
7534
+ */
7535
+ this.StreamName = null;
7536
+
7537
+ /**
7538
+ * Operator notes.
7539
+ * @type {string || null}
7540
+ */
7541
+ this.Operator = null;
7542
+
7543
+ }
7544
+
7545
+ /**
7546
+ * @private
7547
+ */
7548
+ deserialize(params) {
7549
+ if (!params) {
7550
+ return;
7551
+ }
7552
+ this.AppName = 'AppName' in params ? params.AppName : null;
7553
+ this.PushDomainName = 'PushDomainName' in params ? params.PushDomainName : null;
7554
+ this.StreamName = 'StreamName' in params ? params.StreamName : null;
7555
+ this.Operator = 'Operator' in params ? params.Operator : null;
7556
+
7557
+ }
7558
+ }
7559
+
7511
7560
  /**
7512
7561
  * AddLiveDomain request structure.
7513
7562
  * @class
@@ -11106,6 +11155,34 @@ class GroupProIspDataInfo extends AbstractModel {
11106
11155
  }
11107
11156
  }
11108
11157
 
11158
+ /**
11159
+ * StopLivePadStream response structure.
11160
+ * @class
11161
+ */
11162
+ class StopLivePadStreamResponse extends AbstractModel {
11163
+ constructor(){
11164
+ super();
11165
+
11166
+ /**
11167
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
11168
+ * @type {string || null}
11169
+ */
11170
+ this.RequestId = null;
11171
+
11172
+ }
11173
+
11174
+ /**
11175
+ * @private
11176
+ */
11177
+ deserialize(params) {
11178
+ if (!params) {
11179
+ return;
11180
+ }
11181
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
11182
+
11183
+ }
11184
+ }
11185
+
11109
11186
  /**
11110
11187
  * Recording template parameter.
11111
11188
  * @class
@@ -15957,6 +16034,7 @@ module.exports = {
15957
16034
  DescribeLiveTranscodeRulesResponse: DescribeLiveTranscodeRulesResponse,
15958
16035
  CreateLiveTimeShiftTemplateRequest: CreateLiveTimeShiftTemplateRequest,
15959
16036
  DescribeLiveDomainRefererResponse: DescribeLiveDomainRefererResponse,
16037
+ StopLivePadStreamRequest: StopLivePadStreamRequest,
15960
16038
  AddLiveDomainRequest: AddLiveDomainRequest,
15961
16039
  StreamName: StreamName,
15962
16040
  DescribeLiveCertsRequest: DescribeLiveCertsRequest,
@@ -16027,6 +16105,7 @@ module.exports = {
16027
16105
  StartLivePadStreamResponse: StartLivePadStreamResponse,
16028
16106
  CreateLiveRecordTemplateResponse: CreateLiveRecordTemplateResponse,
16029
16107
  GroupProIspDataInfo: GroupProIspDataInfo,
16108
+ StopLivePadStreamResponse: StopLivePadStreamResponse,
16030
16109
  RecordParam: RecordParam,
16031
16110
  ForbidLiveStreamResponse: ForbidLiveStreamResponse,
16032
16111
  HttpStatusInfo: HttpStatusInfo,