tencentcloud-sdk-nodejs-intl-en 3.0.940 → 3.0.942
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,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.942";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -1734,6 +1734,30 @@ class CreateStreamPackageChannelEndpointRequest extends AbstractModel {
|
|
|
1734
1734
|
*/
|
|
1735
1735
|
this.AuthInfo = null;
|
|
1736
1736
|
|
|
1737
|
+
/**
|
|
1738
|
+
* Endpoint protocol type, supports HLS, DASH, CMAF (only HLS type input can create CMAF Endpoint).
|
|
1739
|
+
* @type {string || null}
|
|
1740
|
+
*/
|
|
1741
|
+
this.Protocol = null;
|
|
1742
|
+
|
|
1743
|
+
/**
|
|
1744
|
+
* Mainifest name, default is main.
|
|
1745
|
+
* @type {string || null}
|
|
1746
|
+
*/
|
|
1747
|
+
this.Manifest = null;
|
|
1748
|
+
|
|
1749
|
+
/**
|
|
1750
|
+
* Whether to turn on the TimeShift function, true: on, false: off, the default is off.
|
|
1751
|
+
* @type {boolean || null}
|
|
1752
|
+
*/
|
|
1753
|
+
this.TimeShiftEnable = null;
|
|
1754
|
+
|
|
1755
|
+
/**
|
|
1756
|
+
* The number of days to look back in TimeShift, up to 30 days is supported.
|
|
1757
|
+
* @type {number || null}
|
|
1758
|
+
*/
|
|
1759
|
+
this.TimeShiftDuration = null;
|
|
1760
|
+
|
|
1737
1761
|
}
|
|
1738
1762
|
|
|
1739
1763
|
/**
|
|
@@ -1751,6 +1775,10 @@ class CreateStreamPackageChannelEndpointRequest extends AbstractModel {
|
|
|
1751
1775
|
obj.deserialize(params.AuthInfo)
|
|
1752
1776
|
this.AuthInfo = obj;
|
|
1753
1777
|
}
|
|
1778
|
+
this.Protocol = 'Protocol' in params ? params.Protocol : null;
|
|
1779
|
+
this.Manifest = 'Manifest' in params ? params.Manifest : null;
|
|
1780
|
+
this.TimeShiftEnable = 'TimeShiftEnable' in params ? params.TimeShiftEnable : null;
|
|
1781
|
+
this.TimeShiftDuration = 'TimeShiftDuration' in params ? params.TimeShiftDuration : null;
|
|
1754
1782
|
|
|
1755
1783
|
}
|
|
1756
1784
|
}
|