tencentcloud-sdk-nodejs-intl-en 3.0.1013 → 3.0.1015
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/ccc/v20200210/ccc_client.js +106 -12
- package/tencentcloud/ccc/v20200210/models.js +1307 -370
- package/tencentcloud/cdwdoris/v20211228/models.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/kms/v20190118/models.js +1 -1
- package/tencentcloud/mdc/v20200828/mdc_client.js +19 -6
- package/tencentcloud/mdc/v20200828/models.js +151 -33
|
@@ -5137,7 +5137,7 @@ class DeleteTableRequest extends AbstractModel {
|
|
|
5137
5137
|
this.InstanceId = null;
|
|
5138
5138
|
|
|
5139
5139
|
/**
|
|
5140
|
-
* The name of the database where the table belongs needs to be deleted
|
|
5140
|
+
* The name of the database where the table belongs needs to be deleted.
|
|
5141
5141
|
* @type {string || null}
|
|
5142
5142
|
*/
|
|
5143
5143
|
this.DbName = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1015";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -3333,7 +3333,7 @@ class PostQuantumCryptoDecryptRequest extends AbstractModel {
|
|
|
3333
3333
|
this.EncryptionPublicKey = null;
|
|
3334
3334
|
|
|
3335
3335
|
/**
|
|
3336
|
-
* Asymmetric encryption algorithm. It is used in combination with `EncryptionPublicKey` to encrypt the returned data. Values: `SM2`
|
|
3336
|
+
* Asymmetric encryption algorithm. It is used in combination with `EncryptionPublicKey` to encrypt the returned data. Values: `SM2`(Return the ciphertext in the format of "C1C3C2"), `SM2_C1C3C2_ASN1` (Return the ciphertext in the format of "C1C3C2 ASN1"), `RSAES_PKCS1_V1_5`, `RSAES_OAEP_SHA_1`, `RSAES_OAEP_SHA_256`. It defaults to `SM2` if it's not specified.
|
|
3337
3337
|
* @type {string || null}
|
|
3338
3338
|
*/
|
|
3339
3339
|
this.EncryptionAlgorithm = null;
|
|
@@ -97,6 +97,7 @@ const FlowRealtimeStatusCommon = models.FlowRealtimeStatusCommon;
|
|
|
97
97
|
const DescribeStreamLinkFlowMediaStatisticsRequest = models.DescribeStreamLinkFlowMediaStatisticsRequest;
|
|
98
98
|
const RegionInfo = models.RegionInfo;
|
|
99
99
|
const DescribeStreamLinkFlowResponse = models.DescribeStreamLinkFlowResponse;
|
|
100
|
+
const CreateStreamLinkInputResponse = models.CreateStreamLinkInputResponse;
|
|
100
101
|
const FlowRealtimeStatusRTMP = models.FlowRealtimeStatusRTMP;
|
|
101
102
|
const StopStreamLinkFlowRequest = models.StopStreamLinkFlowRequest;
|
|
102
103
|
const CreateInput = models.CreateInput;
|
|
@@ -108,6 +109,7 @@ const DeleteStreamLinkOutputResponse = models.DeleteStreamLinkOutputResponse;
|
|
|
108
109
|
const CreateStreamLinkOutputInfoRequest = models.CreateStreamLinkOutputInfoRequest;
|
|
109
110
|
const ModifyStreamLinkInputRequest = models.ModifyStreamLinkInputRequest;
|
|
110
111
|
const ResilientStreamConf = models.ResilientStreamConf;
|
|
112
|
+
const CreateStreamLinkInputRequest = models.CreateStreamLinkInputRequest;
|
|
111
113
|
const DescribeOutputRTSPPullServerUrl = models.DescribeOutputRTSPPullServerUrl;
|
|
112
114
|
const InputAddress = models.InputAddress;
|
|
113
115
|
const DescribeInputRTMPPullSettings = models.DescribeInputRTMPPullSettings;
|
|
@@ -160,14 +162,14 @@ class MdcClient extends AbstractClient {
|
|
|
160
162
|
}
|
|
161
163
|
|
|
162
164
|
/**
|
|
163
|
-
*
|
|
164
|
-
* @param {
|
|
165
|
-
* @param {function(string,
|
|
165
|
+
* Create an input configuration for the StreamLink.
|
|
166
|
+
* @param {CreateStreamLinkInputRequest} req
|
|
167
|
+
* @param {function(string, CreateStreamLinkInputResponse):void} cb
|
|
166
168
|
* @public
|
|
167
169
|
*/
|
|
168
|
-
|
|
169
|
-
let resp = new
|
|
170
|
-
this.request("
|
|
170
|
+
CreateStreamLinkInput(req, cb) {
|
|
171
|
+
let resp = new CreateStreamLinkInputResponse();
|
|
172
|
+
this.request("CreateStreamLinkInput", req, resp, cb);
|
|
171
173
|
}
|
|
172
174
|
|
|
173
175
|
/**
|
|
@@ -315,6 +317,17 @@ class MdcClient extends AbstractClient {
|
|
|
315
317
|
this.request("DescribeStreamLinkFlowStatistics", req, resp, cb);
|
|
316
318
|
}
|
|
317
319
|
|
|
320
|
+
/**
|
|
321
|
+
* This API is used to delete a StreamLink flow.
|
|
322
|
+
* @param {DeleteStreamLinkFlowRequest} req
|
|
323
|
+
* @param {function(string, DeleteStreamLinkFlowResponse):void} cb
|
|
324
|
+
* @public
|
|
325
|
+
*/
|
|
326
|
+
DeleteStreamLinkFlow(req, cb) {
|
|
327
|
+
let resp = new DeleteStreamLinkFlowResponse();
|
|
328
|
+
this.request("DeleteStreamLinkFlow", req, resp, cb);
|
|
329
|
+
}
|
|
330
|
+
|
|
318
331
|
|
|
319
332
|
}
|
|
320
333
|
module.exports = MdcClient;
|
|
@@ -206,7 +206,7 @@ class ModifyStreamLinkInputResponse extends AbstractModel {
|
|
|
206
206
|
this.Info = null;
|
|
207
207
|
|
|
208
208
|
/**
|
|
209
|
-
* The unique request ID,
|
|
209
|
+
* 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.
|
|
210
210
|
* @type {string || null}
|
|
211
211
|
*/
|
|
212
212
|
this.RequestId = null;
|
|
@@ -347,7 +347,7 @@ class StopStreamLinkFlowResponse extends AbstractModel {
|
|
|
347
347
|
super();
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
|
-
* The unique request ID,
|
|
350
|
+
* 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.
|
|
351
351
|
* @type {string || null}
|
|
352
352
|
*/
|
|
353
353
|
this.RequestId = null;
|
|
@@ -381,7 +381,7 @@ class ModifyStreamLinkOutputInfoResponse extends AbstractModel {
|
|
|
381
381
|
this.Info = null;
|
|
382
382
|
|
|
383
383
|
/**
|
|
384
|
-
* The unique request ID,
|
|
384
|
+
* 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.
|
|
385
385
|
* @type {string || null}
|
|
386
386
|
*/
|
|
387
387
|
this.RequestId = null;
|
|
@@ -988,7 +988,7 @@ class DescribeStreamLinkFlowSRTStatisticsResponse extends AbstractModel {
|
|
|
988
988
|
this.Infos = null;
|
|
989
989
|
|
|
990
990
|
/**
|
|
991
|
-
* The unique request ID,
|
|
991
|
+
* 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.
|
|
992
992
|
* @type {string || null}
|
|
993
993
|
*/
|
|
994
994
|
this.RequestId = null;
|
|
@@ -1067,14 +1067,13 @@ class ModifyOutputInfo extends AbstractModel {
|
|
|
1067
1067
|
this.RTMPSettings = null;
|
|
1068
1068
|
|
|
1069
1069
|
/**
|
|
1070
|
-
*
|
|
1071
|
-
This parameter is valid if `Protocol` is set to `RTMP_PULL`. If it is left empty, there is no restriction on clients’ IP addresses.
|
|
1070
|
+
* IP whitelist, in CIDR format, such as 0.0.0.0/0. This is valid when Protocol is RTMP_PULL, and empty means no restriction on client IP.
|
|
1072
1071
|
* @type {Array.<string> || null}
|
|
1073
1072
|
*/
|
|
1074
1073
|
this.AllowIpList = null;
|
|
1075
1074
|
|
|
1076
1075
|
/**
|
|
1077
|
-
*
|
|
1076
|
+
* The maximum number of concurrent stream pulls is 4, and the default value is 4.
|
|
1078
1077
|
* @type {number || null}
|
|
1079
1078
|
*/
|
|
1080
1079
|
this.MaxConcurrent = null;
|
|
@@ -1173,7 +1172,7 @@ class CreateStreamLinkOutputInfoResponse extends AbstractModel {
|
|
|
1173
1172
|
this.Info = null;
|
|
1174
1173
|
|
|
1175
1174
|
/**
|
|
1176
|
-
* The unique request ID,
|
|
1175
|
+
* 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.
|
|
1177
1176
|
* @type {string || null}
|
|
1178
1177
|
*/
|
|
1179
1178
|
this.RequestId = null;
|
|
@@ -1272,7 +1271,7 @@ class DescribeStreamLinkFlowLogsResponse extends AbstractModel {
|
|
|
1272
1271
|
this.TotalPage = null;
|
|
1273
1272
|
|
|
1274
1273
|
/**
|
|
1275
|
-
* The unique request ID,
|
|
1274
|
+
* 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.
|
|
1276
1275
|
* @type {string || null}
|
|
1277
1276
|
*/
|
|
1278
1277
|
this.RequestId = null;
|
|
@@ -1620,7 +1619,7 @@ class ModifyStreamLinkFlowResponse extends AbstractModel {
|
|
|
1620
1619
|
super();
|
|
1621
1620
|
|
|
1622
1621
|
/**
|
|
1623
|
-
* The unique request ID,
|
|
1622
|
+
* 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.
|
|
1624
1623
|
* @type {string || null}
|
|
1625
1624
|
*/
|
|
1626
1625
|
this.RequestId = null;
|
|
@@ -1676,7 +1675,7 @@ class StartStreamLinkFlowResponse extends AbstractModel {
|
|
|
1676
1675
|
super();
|
|
1677
1676
|
|
|
1678
1677
|
/**
|
|
1679
|
-
* The unique request ID,
|
|
1678
|
+
* 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.
|
|
1680
1679
|
* @type {string || null}
|
|
1681
1680
|
*/
|
|
1682
1681
|
this.RequestId = null;
|
|
@@ -1781,14 +1780,13 @@ class CreateOutputInfo extends AbstractModel {
|
|
|
1781
1780
|
this.RTPSettings = null;
|
|
1782
1781
|
|
|
1783
1782
|
/**
|
|
1784
|
-
*
|
|
1785
|
-
This parameter is valid if `Protocol` is set to `RTMP_PULL`. If it is left empty, there is no restriction on clients’ IP addresses.
|
|
1783
|
+
* IP whitelist, in CIDR format, such as 0.0.0.0/0. This is valid when Protocol is RTMP_PULL, and empty means no restriction on client IP.
|
|
1786
1784
|
* @type {Array.<string> || null}
|
|
1787
1785
|
*/
|
|
1788
1786
|
this.AllowIpList = null;
|
|
1789
1787
|
|
|
1790
1788
|
/**
|
|
1791
|
-
*
|
|
1789
|
+
* The maximum number of concurrent stream pulls is 4, and the default value is 4.
|
|
1792
1790
|
* @type {number || null}
|
|
1793
1791
|
*/
|
|
1794
1792
|
this.MaxConcurrent = null;
|
|
@@ -1799,6 +1797,12 @@ This parameter is valid if `Protocol` is set to `RTMP_PULL`. If it is left empty
|
|
|
1799
1797
|
*/
|
|
1800
1798
|
this.SecurityGroupIds = null;
|
|
1801
1799
|
|
|
1800
|
+
/**
|
|
1801
|
+
* Availability zone: output supports at most one availability zone as input.
|
|
1802
|
+
* @type {Array.<string> || null}
|
|
1803
|
+
*/
|
|
1804
|
+
this.Zones = null;
|
|
1805
|
+
|
|
1802
1806
|
}
|
|
1803
1807
|
|
|
1804
1808
|
/**
|
|
@@ -1833,6 +1837,7 @@ This parameter is valid if `Protocol` is set to `RTMP_PULL`. If it is left empty
|
|
|
1833
1837
|
this.AllowIpList = 'AllowIpList' in params ? params.AllowIpList : null;
|
|
1834
1838
|
this.MaxConcurrent = 'MaxConcurrent' in params ? params.MaxConcurrent : null;
|
|
1835
1839
|
this.SecurityGroupIds = 'SecurityGroupIds' in params ? params.SecurityGroupIds : null;
|
|
1840
|
+
this.Zones = 'Zones' in params ? params.Zones : null;
|
|
1836
1841
|
|
|
1837
1842
|
}
|
|
1838
1843
|
}
|
|
@@ -1858,7 +1863,7 @@ class DescribeStreamLinkFlowRealtimeStatusResponse extends AbstractModel {
|
|
|
1858
1863
|
this.Datas = null;
|
|
1859
1864
|
|
|
1860
1865
|
/**
|
|
1861
|
-
* The unique request ID,
|
|
1866
|
+
* 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.
|
|
1862
1867
|
* @type {string || null}
|
|
1863
1868
|
*/
|
|
1864
1869
|
this.RequestId = null;
|
|
@@ -1926,7 +1931,7 @@ class DescribeStreamLinkFlowsResponse extends AbstractModel {
|
|
|
1926
1931
|
this.TotalPage = null;
|
|
1927
1932
|
|
|
1928
1933
|
/**
|
|
1929
|
-
* The unique request ID,
|
|
1934
|
+
* 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.
|
|
1930
1935
|
* @type {string || null}
|
|
1931
1936
|
*/
|
|
1932
1937
|
this.RequestId = null;
|
|
@@ -2156,35 +2161,41 @@ If there is an SRT input, the output must be SRT.
|
|
|
2156
2161
|
this.FailOver = null;
|
|
2157
2162
|
|
|
2158
2163
|
/**
|
|
2159
|
-
*
|
|
2164
|
+
* Configuration information for RTMP_PULL.
|
|
2160
2165
|
* @type {CreateInputRTMPPullSettings || null}
|
|
2161
2166
|
*/
|
|
2162
2167
|
this.RTMPPullSettings = null;
|
|
2163
2168
|
|
|
2164
2169
|
/**
|
|
2165
|
-
*
|
|
2170
|
+
* Configuration information of RTSP_PULL.
|
|
2166
2171
|
* @type {CreateInputRTSPPullSettings || null}
|
|
2167
2172
|
*/
|
|
2168
2173
|
this.RTSPPullSettings = null;
|
|
2169
2174
|
|
|
2170
2175
|
/**
|
|
2171
|
-
*
|
|
2176
|
+
* HLS_PULL configuration information.
|
|
2172
2177
|
* @type {CreateInputHLSPullSettings || null}
|
|
2173
2178
|
*/
|
|
2174
2179
|
this.HLSPullSettings = null;
|
|
2175
2180
|
|
|
2176
2181
|
/**
|
|
2177
|
-
*
|
|
2182
|
+
* Delayed broadcast smooth streaming configuration information.
|
|
2178
2183
|
* @type {ResilientStreamConf || null}
|
|
2179
2184
|
*/
|
|
2180
2185
|
this.ResilientStream = null;
|
|
2181
2186
|
|
|
2182
2187
|
/**
|
|
2183
|
-
* The
|
|
2188
|
+
* The ID of the input security group to bind. Only one security group can be associated.
|
|
2184
2189
|
* @type {Array.<string> || null}
|
|
2185
2190
|
*/
|
|
2186
2191
|
this.SecurityGroupIds = null;
|
|
2187
2192
|
|
|
2193
|
+
/**
|
|
2194
|
+
* Availability zone, optional, supports up to two availability zones. For interfaces that need to be changed, the second availability zone will participate in resource allocation. This is effective if disaster recovery is enabled for input or RTSP_PULL protocol switching is involved (addresses will be reallocated).
|
|
2195
|
+
* @type {Array.<string> || null}
|
|
2196
|
+
*/
|
|
2197
|
+
this.Zones = null;
|
|
2198
|
+
|
|
2188
2199
|
}
|
|
2189
2200
|
|
|
2190
2201
|
/**
|
|
@@ -2237,6 +2248,7 @@ If there is an SRT input, the output must be SRT.
|
|
|
2237
2248
|
this.ResilientStream = obj;
|
|
2238
2249
|
}
|
|
2239
2250
|
this.SecurityGroupIds = 'SecurityGroupIds' in params ? params.SecurityGroupIds : null;
|
|
2251
|
+
this.Zones = 'Zones' in params ? params.Zones : null;
|
|
2240
2252
|
|
|
2241
2253
|
}
|
|
2242
2254
|
}
|
|
@@ -2608,7 +2620,7 @@ class DescribeStreamLinkFlowMediaStatisticsResponse extends AbstractModel {
|
|
|
2608
2620
|
this.Infos = null;
|
|
2609
2621
|
|
|
2610
2622
|
/**
|
|
2611
|
-
* The unique request ID,
|
|
2623
|
+
* 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.
|
|
2612
2624
|
* @type {string || null}
|
|
2613
2625
|
*/
|
|
2614
2626
|
this.RequestId = null;
|
|
@@ -2766,6 +2778,12 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
2766
2778
|
*/
|
|
2767
2779
|
this.OutputGroup = null;
|
|
2768
2780
|
|
|
2781
|
+
/**
|
|
2782
|
+
* EventId of the StreamLink event associated with this Flow.
|
|
2783
|
+
* @type {string || null}
|
|
2784
|
+
*/
|
|
2785
|
+
this.EventId = null;
|
|
2786
|
+
|
|
2769
2787
|
}
|
|
2770
2788
|
|
|
2771
2789
|
/**
|
|
@@ -2797,6 +2815,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
2797
2815
|
this.OutputGroup.push(obj);
|
|
2798
2816
|
}
|
|
2799
2817
|
}
|
|
2818
|
+
this.EventId = 'EventId' in params ? params.EventId : null;
|
|
2800
2819
|
|
|
2801
2820
|
}
|
|
2802
2821
|
}
|
|
@@ -2838,7 +2857,7 @@ class DeleteStreamLinkFlowResponse extends AbstractModel {
|
|
|
2838
2857
|
super();
|
|
2839
2858
|
|
|
2840
2859
|
/**
|
|
2841
|
-
* The unique request ID,
|
|
2860
|
+
* 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.
|
|
2842
2861
|
* @type {string || null}
|
|
2843
2862
|
*/
|
|
2844
2863
|
this.RequestId = null;
|
|
@@ -3248,7 +3267,7 @@ class DescribeStreamLinkRegionsResponse extends AbstractModel {
|
|
|
3248
3267
|
this.Info = null;
|
|
3249
3268
|
|
|
3250
3269
|
/**
|
|
3251
|
-
* The unique request ID,
|
|
3270
|
+
* 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.
|
|
3252
3271
|
* @type {string || null}
|
|
3253
3272
|
*/
|
|
3254
3273
|
this.RequestId = null;
|
|
@@ -3382,7 +3401,7 @@ class DescribeStreamLinkFlowStatisticsResponse extends AbstractModel {
|
|
|
3382
3401
|
this.Infos = null;
|
|
3383
3402
|
|
|
3384
3403
|
/**
|
|
3385
|
-
* The unique request ID,
|
|
3404
|
+
* 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.
|
|
3386
3405
|
* @type {string || null}
|
|
3387
3406
|
*/
|
|
3388
3407
|
this.RequestId = null;
|
|
@@ -3425,7 +3444,7 @@ class CreateStreamLinkFlowResponse extends AbstractModel {
|
|
|
3425
3444
|
this.Info = null;
|
|
3426
3445
|
|
|
3427
3446
|
/**
|
|
3428
|
-
* The unique request ID,
|
|
3447
|
+
* 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.
|
|
3429
3448
|
* @type {string || null}
|
|
3430
3449
|
*/
|
|
3431
3450
|
this.RequestId = null;
|
|
@@ -3842,6 +3861,12 @@ class CreateStreamLinkFlowRequest extends AbstractModel {
|
|
|
3842
3861
|
*/
|
|
3843
3862
|
this.InputGroup = null;
|
|
3844
3863
|
|
|
3864
|
+
/**
|
|
3865
|
+
* The media transmission event ID associated with the Flow. Each flow can only be associated with one event.
|
|
3866
|
+
* @type {string || null}
|
|
3867
|
+
*/
|
|
3868
|
+
this.EventId = null;
|
|
3869
|
+
|
|
3845
3870
|
}
|
|
3846
3871
|
|
|
3847
3872
|
/**
|
|
@@ -3862,6 +3887,7 @@ class CreateStreamLinkFlowRequest extends AbstractModel {
|
|
|
3862
3887
|
this.InputGroup.push(obj);
|
|
3863
3888
|
}
|
|
3864
3889
|
}
|
|
3890
|
+
this.EventId = 'EventId' in params ? params.EventId : null;
|
|
3865
3891
|
|
|
3866
3892
|
}
|
|
3867
3893
|
}
|
|
@@ -4200,7 +4226,47 @@ class DescribeStreamLinkFlowResponse extends AbstractModel {
|
|
|
4200
4226
|
this.Info = null;
|
|
4201
4227
|
|
|
4202
4228
|
/**
|
|
4203
|
-
* The unique request ID,
|
|
4229
|
+
* 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.
|
|
4230
|
+
* @type {string || null}
|
|
4231
|
+
*/
|
|
4232
|
+
this.RequestId = null;
|
|
4233
|
+
|
|
4234
|
+
}
|
|
4235
|
+
|
|
4236
|
+
/**
|
|
4237
|
+
* @private
|
|
4238
|
+
*/
|
|
4239
|
+
deserialize(params) {
|
|
4240
|
+
if (!params) {
|
|
4241
|
+
return;
|
|
4242
|
+
}
|
|
4243
|
+
|
|
4244
|
+
if (params.Info) {
|
|
4245
|
+
let obj = new DescribeFlow();
|
|
4246
|
+
obj.deserialize(params.Info)
|
|
4247
|
+
this.Info = obj;
|
|
4248
|
+
}
|
|
4249
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4250
|
+
|
|
4251
|
+
}
|
|
4252
|
+
}
|
|
4253
|
+
|
|
4254
|
+
/**
|
|
4255
|
+
* CreateStreamLinkInput response structure.
|
|
4256
|
+
* @class
|
|
4257
|
+
*/
|
|
4258
|
+
class CreateStreamLinkInputResponse extends AbstractModel {
|
|
4259
|
+
constructor(){
|
|
4260
|
+
super();
|
|
4261
|
+
|
|
4262
|
+
/**
|
|
4263
|
+
* Created Flow information.
|
|
4264
|
+
* @type {DescribeFlow || null}
|
|
4265
|
+
*/
|
|
4266
|
+
this.Info = null;
|
|
4267
|
+
|
|
4268
|
+
/**
|
|
4269
|
+
* 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.
|
|
4204
4270
|
* @type {string || null}
|
|
4205
4271
|
*/
|
|
4206
4272
|
this.RequestId = null;
|
|
@@ -4303,7 +4369,7 @@ class CreateInput extends AbstractModel {
|
|
|
4303
4369
|
this.InputName = null;
|
|
4304
4370
|
|
|
4305
4371
|
/**
|
|
4306
|
-
* Input protocol. Valid values: `SRT`, `RTP`, `RTMP`
|
|
4372
|
+
* Input protocol. Valid values: `SRT`, `RTP`, `RTMP`, `RTMP_PULL`, `RTSP_PULL `, `HLS_PULL`.
|
|
4307
4373
|
* @type {string || null}
|
|
4308
4374
|
*/
|
|
4309
4375
|
this.Protocol = null;
|
|
@@ -4339,25 +4405,25 @@ class CreateInput extends AbstractModel {
|
|
|
4339
4405
|
this.FailOver = null;
|
|
4340
4406
|
|
|
4341
4407
|
/**
|
|
4342
|
-
*
|
|
4408
|
+
* Input RTMP_PULL configuration information.
|
|
4343
4409
|
* @type {CreateInputRTMPPullSettings || null}
|
|
4344
4410
|
*/
|
|
4345
4411
|
this.RTMPPullSettings = null;
|
|
4346
4412
|
|
|
4347
4413
|
/**
|
|
4348
|
-
*
|
|
4414
|
+
* Input RTSP_PULL configuration information.
|
|
4349
4415
|
* @type {CreateInputRTSPPullSettings || null}
|
|
4350
4416
|
*/
|
|
4351
4417
|
this.RTSPPullSettings = null;
|
|
4352
4418
|
|
|
4353
4419
|
/**
|
|
4354
|
-
*
|
|
4420
|
+
* Input HLS_PULL configuration information.
|
|
4355
4421
|
* @type {CreateInputHLSPullSettings || null}
|
|
4356
4422
|
*/
|
|
4357
4423
|
this.HLSPullSettings = null;
|
|
4358
4424
|
|
|
4359
4425
|
/**
|
|
4360
|
-
*
|
|
4426
|
+
* Delayed broadcast smooth streaming configuration information.
|
|
4361
4427
|
* @type {ResilientStreamConf || null}
|
|
4362
4428
|
*/
|
|
4363
4429
|
this.ResilientStream = null;
|
|
@@ -4368,6 +4434,12 @@ class CreateInput extends AbstractModel {
|
|
|
4368
4434
|
*/
|
|
4369
4435
|
this.SecurityGroupIds = null;
|
|
4370
4436
|
|
|
4437
|
+
/**
|
|
4438
|
+
* Availability zone, optional. If disaster recovery is enabled, you must enter two different availability zones. Otherwise, you can only enter one availability zone at most.
|
|
4439
|
+
* @type {Array.<string> || null}
|
|
4440
|
+
*/
|
|
4441
|
+
this.Zones = null;
|
|
4442
|
+
|
|
4371
4443
|
}
|
|
4372
4444
|
|
|
4373
4445
|
/**
|
|
@@ -4419,6 +4491,7 @@ class CreateInput extends AbstractModel {
|
|
|
4419
4491
|
this.ResilientStream = obj;
|
|
4420
4492
|
}
|
|
4421
4493
|
this.SecurityGroupIds = 'SecurityGroupIds' in params ? params.SecurityGroupIds : null;
|
|
4494
|
+
this.Zones = 'Zones' in params ? params.Zones : null;
|
|
4422
4495
|
|
|
4423
4496
|
}
|
|
4424
4497
|
}
|
|
@@ -4629,7 +4702,7 @@ class DeleteStreamLinkOutputResponse extends AbstractModel {
|
|
|
4629
4702
|
super();
|
|
4630
4703
|
|
|
4631
4704
|
/**
|
|
4632
|
-
* The unique request ID,
|
|
4705
|
+
* 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.
|
|
4633
4706
|
* @type {string || null}
|
|
4634
4707
|
*/
|
|
4635
4708
|
this.RequestId = null;
|
|
@@ -4763,6 +4836,49 @@ class ResilientStreamConf extends AbstractModel {
|
|
|
4763
4836
|
}
|
|
4764
4837
|
}
|
|
4765
4838
|
|
|
4839
|
+
/**
|
|
4840
|
+
* CreateStreamLinkInput request structure.
|
|
4841
|
+
* @class
|
|
4842
|
+
*/
|
|
4843
|
+
class CreateStreamLinkInputRequest extends AbstractModel {
|
|
4844
|
+
constructor(){
|
|
4845
|
+
super();
|
|
4846
|
+
|
|
4847
|
+
/**
|
|
4848
|
+
* StreamLink stream ID.
|
|
4849
|
+
* @type {string || null}
|
|
4850
|
+
*/
|
|
4851
|
+
this.FlowId = null;
|
|
4852
|
+
|
|
4853
|
+
/**
|
|
4854
|
+
* The input group of the Flow.
|
|
4855
|
+
* @type {Array.<CreateInput> || null}
|
|
4856
|
+
*/
|
|
4857
|
+
this.InputGroup = null;
|
|
4858
|
+
|
|
4859
|
+
}
|
|
4860
|
+
|
|
4861
|
+
/**
|
|
4862
|
+
* @private
|
|
4863
|
+
*/
|
|
4864
|
+
deserialize(params) {
|
|
4865
|
+
if (!params) {
|
|
4866
|
+
return;
|
|
4867
|
+
}
|
|
4868
|
+
this.FlowId = 'FlowId' in params ? params.FlowId : null;
|
|
4869
|
+
|
|
4870
|
+
if (params.InputGroup) {
|
|
4871
|
+
this.InputGroup = new Array();
|
|
4872
|
+
for (let z in params.InputGroup) {
|
|
4873
|
+
let obj = new CreateInput();
|
|
4874
|
+
obj.deserialize(params.InputGroup[z]);
|
|
4875
|
+
this.InputGroup.push(obj);
|
|
4876
|
+
}
|
|
4877
|
+
}
|
|
4878
|
+
|
|
4879
|
+
}
|
|
4880
|
+
}
|
|
4881
|
+
|
|
4766
4882
|
/**
|
|
4767
4883
|
*
|
|
4768
4884
|
* @class
|
|
@@ -5107,6 +5223,7 @@ module.exports = {
|
|
|
5107
5223
|
DescribeStreamLinkFlowMediaStatisticsRequest: DescribeStreamLinkFlowMediaStatisticsRequest,
|
|
5108
5224
|
RegionInfo: RegionInfo,
|
|
5109
5225
|
DescribeStreamLinkFlowResponse: DescribeStreamLinkFlowResponse,
|
|
5226
|
+
CreateStreamLinkInputResponse: CreateStreamLinkInputResponse,
|
|
5110
5227
|
FlowRealtimeStatusRTMP: FlowRealtimeStatusRTMP,
|
|
5111
5228
|
StopStreamLinkFlowRequest: StopStreamLinkFlowRequest,
|
|
5112
5229
|
CreateInput: CreateInput,
|
|
@@ -5118,6 +5235,7 @@ module.exports = {
|
|
|
5118
5235
|
CreateStreamLinkOutputInfoRequest: CreateStreamLinkOutputInfoRequest,
|
|
5119
5236
|
ModifyStreamLinkInputRequest: ModifyStreamLinkInputRequest,
|
|
5120
5237
|
ResilientStreamConf: ResilientStreamConf,
|
|
5238
|
+
CreateStreamLinkInputRequest: CreateStreamLinkInputRequest,
|
|
5121
5239
|
DescribeOutputRTSPPullServerUrl: DescribeOutputRTSPPullServerUrl,
|
|
5122
5240
|
InputAddress: InputAddress,
|
|
5123
5241
|
DescribeInputRTMPPullSettings: DescribeInputRTMPPullSettings,
|