tencentcloud-sdk-python-intl-en 3.0.1149__py2.py3-none-any.whl → 3.0.1150__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/models.py +4 -4
- tencentcloud/cvm/v20170312/cvm_client.py +26 -0
- tencentcloud/cvm/v20170312/models.py +81 -2
- tencentcloud/mdp/v20200527/mdp_client.py +92 -0
- tencentcloud/mdp/v20200527/models.py +632 -2
- tencentcloud/organization/v20210331/errorcodes.py +60 -0
- tencentcloud/organization/v20210331/models.py +528 -0
- tencentcloud/organization/v20210331/organization_client.py +92 -0
- {tencentcloud_sdk_python_intl_en-3.0.1149.dist-info → tencentcloud_sdk_python_intl_en-3.0.1150.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1149.dist-info → tencentcloud_sdk_python_intl_en-3.0.1150.dist-info}/RECORD +13 -13
- {tencentcloud_sdk_python_intl_en-3.0.1149.dist-info → tencentcloud_sdk_python_intl_en-3.0.1150.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1149.dist-info → tencentcloud_sdk_python_intl_en-3.0.1150.dist-info}/top_level.txt +0 -0
|
@@ -219,6 +219,85 @@ class AliasValueConf(AbstractModel):
|
|
|
219
219
|
|
|
220
220
|
|
|
221
221
|
|
|
222
|
+
class BindLinearAssemblyCDNDomainWithChannelRequest(AbstractModel):
|
|
223
|
+
"""BindLinearAssemblyCDNDomainWithChannel request structure.
|
|
224
|
+
|
|
225
|
+
"""
|
|
226
|
+
|
|
227
|
+
def __init__(self):
|
|
228
|
+
r"""
|
|
229
|
+
:param _ChannelId: Channel Id.
|
|
230
|
+
:type ChannelId: str
|
|
231
|
+
:param _CdnDomain: Cdn playback domain.
|
|
232
|
+
:type CdnDomain: str
|
|
233
|
+
"""
|
|
234
|
+
self._ChannelId = None
|
|
235
|
+
self._CdnDomain = None
|
|
236
|
+
|
|
237
|
+
@property
|
|
238
|
+
def ChannelId(self):
|
|
239
|
+
"""Channel Id.
|
|
240
|
+
:rtype: str
|
|
241
|
+
"""
|
|
242
|
+
return self._ChannelId
|
|
243
|
+
|
|
244
|
+
@ChannelId.setter
|
|
245
|
+
def ChannelId(self, ChannelId):
|
|
246
|
+
self._ChannelId = ChannelId
|
|
247
|
+
|
|
248
|
+
@property
|
|
249
|
+
def CdnDomain(self):
|
|
250
|
+
"""Cdn playback domain.
|
|
251
|
+
:rtype: str
|
|
252
|
+
"""
|
|
253
|
+
return self._CdnDomain
|
|
254
|
+
|
|
255
|
+
@CdnDomain.setter
|
|
256
|
+
def CdnDomain(self, CdnDomain):
|
|
257
|
+
self._CdnDomain = CdnDomain
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
def _deserialize(self, params):
|
|
261
|
+
self._ChannelId = params.get("ChannelId")
|
|
262
|
+
self._CdnDomain = params.get("CdnDomain")
|
|
263
|
+
memeber_set = set(params.keys())
|
|
264
|
+
for name, value in vars(self).items():
|
|
265
|
+
property_name = name[1:]
|
|
266
|
+
if property_name in memeber_set:
|
|
267
|
+
memeber_set.remove(property_name)
|
|
268
|
+
if len(memeber_set) > 0:
|
|
269
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
class BindLinearAssemblyCDNDomainWithChannelResponse(AbstractModel):
|
|
274
|
+
"""BindLinearAssemblyCDNDomainWithChannel response structure.
|
|
275
|
+
|
|
276
|
+
"""
|
|
277
|
+
|
|
278
|
+
def __init__(self):
|
|
279
|
+
r"""
|
|
280
|
+
:param _RequestId: 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.
|
|
281
|
+
:type RequestId: str
|
|
282
|
+
"""
|
|
283
|
+
self._RequestId = None
|
|
284
|
+
|
|
285
|
+
@property
|
|
286
|
+
def RequestId(self):
|
|
287
|
+
"""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.
|
|
288
|
+
:rtype: str
|
|
289
|
+
"""
|
|
290
|
+
return self._RequestId
|
|
291
|
+
|
|
292
|
+
@RequestId.setter
|
|
293
|
+
def RequestId(self, RequestId):
|
|
294
|
+
self._RequestId = RequestId
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
def _deserialize(self, params):
|
|
298
|
+
self._RequestId = params.get("RequestId")
|
|
299
|
+
|
|
300
|
+
|
|
222
301
|
class BindNewLVBDomainWithChannelRequest(AbstractModel):
|
|
223
302
|
"""BindNewLVBDomainWithChannel request structure.
|
|
224
303
|
|
|
@@ -413,6 +492,62 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
413
492
|
|
|
414
493
|
|
|
415
494
|
|
|
495
|
+
class CdnDomainInfo(AbstractModel):
|
|
496
|
+
"""
|
|
497
|
+
|
|
498
|
+
"""
|
|
499
|
+
|
|
500
|
+
def __init__(self):
|
|
501
|
+
r"""
|
|
502
|
+
:param _TotalSize:
|
|
503
|
+
:type TotalSize: int
|
|
504
|
+
:param _Records:
|
|
505
|
+
:type Records: list of DomainRecordInfo
|
|
506
|
+
"""
|
|
507
|
+
self._TotalSize = None
|
|
508
|
+
self._Records = None
|
|
509
|
+
|
|
510
|
+
@property
|
|
511
|
+
def TotalSize(self):
|
|
512
|
+
"""
|
|
513
|
+
:rtype: int
|
|
514
|
+
"""
|
|
515
|
+
return self._TotalSize
|
|
516
|
+
|
|
517
|
+
@TotalSize.setter
|
|
518
|
+
def TotalSize(self, TotalSize):
|
|
519
|
+
self._TotalSize = TotalSize
|
|
520
|
+
|
|
521
|
+
@property
|
|
522
|
+
def Records(self):
|
|
523
|
+
"""
|
|
524
|
+
:rtype: list of DomainRecordInfo
|
|
525
|
+
"""
|
|
526
|
+
return self._Records
|
|
527
|
+
|
|
528
|
+
@Records.setter
|
|
529
|
+
def Records(self, Records):
|
|
530
|
+
self._Records = Records
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
def _deserialize(self, params):
|
|
534
|
+
self._TotalSize = params.get("TotalSize")
|
|
535
|
+
if params.get("Records") is not None:
|
|
536
|
+
self._Records = []
|
|
537
|
+
for item in params.get("Records"):
|
|
538
|
+
obj = DomainRecordInfo()
|
|
539
|
+
obj._deserialize(item)
|
|
540
|
+
self._Records.append(obj)
|
|
541
|
+
memeber_set = set(params.keys())
|
|
542
|
+
for name, value in vars(self).items():
|
|
543
|
+
property_name = name[1:]
|
|
544
|
+
if property_name in memeber_set:
|
|
545
|
+
memeber_set.remove(property_name)
|
|
546
|
+
if len(memeber_set) > 0:
|
|
547
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
|
|
416
551
|
class ChannelAlertResp(AbstractModel):
|
|
417
552
|
"""Linear assembly channel alarm return information.
|
|
418
553
|
|
|
@@ -1904,6 +2039,177 @@ class CreateStreamPackageSourceResponse(AbstractModel):
|
|
|
1904
2039
|
self._RequestId = params.get("RequestId")
|
|
1905
2040
|
|
|
1906
2041
|
|
|
2042
|
+
class DRMInfo(AbstractModel):
|
|
2043
|
+
"""DRM configure info.
|
|
2044
|
+
|
|
2045
|
+
"""
|
|
2046
|
+
|
|
2047
|
+
def __init__(self):
|
|
2048
|
+
r"""
|
|
2049
|
+
:param _EncryptionMethod: Encryption method, optional values: `CBCS`, `CENC`.
|
|
2050
|
+
:type EncryptionMethod: str
|
|
2051
|
+
:param _DRMSystems: DRM system providers, when the encryption method is CBCS, the optional values are `PlayReady`, `Widevine`, `FairPlay`; when the encryption method is CENC, the oprional values are `PlayReady`, `Widevine`.
|
|
2052
|
+
:type DRMSystems: list of str
|
|
2053
|
+
:param _ResourceID: The resource ID sent to the key server. It can contain 1 to 128 characters, including numbers, letters, underscores (_), and hyphens (-).
|
|
2054
|
+
:type ResourceID: str
|
|
2055
|
+
:param _KeyServerUrl: Key server address; must start with https://.
|
|
2056
|
+
:type KeyServerUrl: str
|
|
2057
|
+
:param _VideoEncryptionPreset: Video encryption presets, options:
|
|
2058
|
+
`Preset Video 1` - Encrypts all video tracks with one key
|
|
2059
|
+
`Preset Video 2` - Encrypts SD and HD video tracks with 2 different keys
|
|
2060
|
+
`Preset Video 3` - Encrypts SD, HD and UHD video tracks with 3 different keys
|
|
2061
|
+
`Preset Video 4` - Encrypts SD, HD, UHD1 and UHD2 video tracks with 4 different keys
|
|
2062
|
+
`Preset Video 5` - Encrypts SD, HD1, HD2, UHD1 and UHD2 video tracks with 5 different keys
|
|
2063
|
+
`Preset Video 6` - Encrypts SD, HD1, HD2, UHD video tracks with 4 different keys
|
|
2064
|
+
`Preset Video 7` - Encrypts SD + HD1, HD2, UHD video tracks with 3 different keys
|
|
2065
|
+
`Preset Video 8` - Encrypts SD + HD1, HD2, UHD1, UHD2 video tracks with 4 different keys
|
|
2066
|
+
`Shared` - Encrypts all video and audio tracks with one key
|
|
2067
|
+
`Unencrypted` - Does not encrypt any track
|
|
2068
|
+
:type VideoEncryptionPreset: str
|
|
2069
|
+
:param _AudioEncryptionPreset: Audio encryption presets, options:
|
|
2070
|
+
`Preset Audio 1` - Encrypts all audio tracks with one key
|
|
2071
|
+
`Preset Audio 2` - Encrypts STEREO and MULTICHANNEL audio tracks with 2 different keys
|
|
2072
|
+
`Preset Audio 3` - Encrypts STEREO, MULTICHANNEL 3-6 and MULTICHANNEL 7 audio tracks with 3 different keys
|
|
2073
|
+
`Shared` - Encrypts all video and audio tracks with one key
|
|
2074
|
+
`Unencrypted` - Does not encrypt any track
|
|
2075
|
+
:type AudioEncryptionPreset: str
|
|
2076
|
+
:param _ConstantInitializationVector: Optional, used together with the key to encrypt the content; a 128-bit, 32-character, hexadecimal-encoded string.
|
|
2077
|
+
:type ConstantInitializationVector: str
|
|
2078
|
+
:param _KeyRotationInterval: Optional, specifies the rotation interval in seconds; empty, or an integer between 300-2592000.
|
|
2079
|
+
:type KeyRotationInterval: int
|
|
2080
|
+
"""
|
|
2081
|
+
self._EncryptionMethod = None
|
|
2082
|
+
self._DRMSystems = None
|
|
2083
|
+
self._ResourceID = None
|
|
2084
|
+
self._KeyServerUrl = None
|
|
2085
|
+
self._VideoEncryptionPreset = None
|
|
2086
|
+
self._AudioEncryptionPreset = None
|
|
2087
|
+
self._ConstantInitializationVector = None
|
|
2088
|
+
self._KeyRotationInterval = None
|
|
2089
|
+
|
|
2090
|
+
@property
|
|
2091
|
+
def EncryptionMethod(self):
|
|
2092
|
+
"""Encryption method, optional values: `CBCS`, `CENC`.
|
|
2093
|
+
:rtype: str
|
|
2094
|
+
"""
|
|
2095
|
+
return self._EncryptionMethod
|
|
2096
|
+
|
|
2097
|
+
@EncryptionMethod.setter
|
|
2098
|
+
def EncryptionMethod(self, EncryptionMethod):
|
|
2099
|
+
self._EncryptionMethod = EncryptionMethod
|
|
2100
|
+
|
|
2101
|
+
@property
|
|
2102
|
+
def DRMSystems(self):
|
|
2103
|
+
"""DRM system providers, when the encryption method is CBCS, the optional values are `PlayReady`, `Widevine`, `FairPlay`; when the encryption method is CENC, the oprional values are `PlayReady`, `Widevine`.
|
|
2104
|
+
:rtype: list of str
|
|
2105
|
+
"""
|
|
2106
|
+
return self._DRMSystems
|
|
2107
|
+
|
|
2108
|
+
@DRMSystems.setter
|
|
2109
|
+
def DRMSystems(self, DRMSystems):
|
|
2110
|
+
self._DRMSystems = DRMSystems
|
|
2111
|
+
|
|
2112
|
+
@property
|
|
2113
|
+
def ResourceID(self):
|
|
2114
|
+
"""The resource ID sent to the key server. It can contain 1 to 128 characters, including numbers, letters, underscores (_), and hyphens (-).
|
|
2115
|
+
:rtype: str
|
|
2116
|
+
"""
|
|
2117
|
+
return self._ResourceID
|
|
2118
|
+
|
|
2119
|
+
@ResourceID.setter
|
|
2120
|
+
def ResourceID(self, ResourceID):
|
|
2121
|
+
self._ResourceID = ResourceID
|
|
2122
|
+
|
|
2123
|
+
@property
|
|
2124
|
+
def KeyServerUrl(self):
|
|
2125
|
+
"""Key server address; must start with https://.
|
|
2126
|
+
:rtype: str
|
|
2127
|
+
"""
|
|
2128
|
+
return self._KeyServerUrl
|
|
2129
|
+
|
|
2130
|
+
@KeyServerUrl.setter
|
|
2131
|
+
def KeyServerUrl(self, KeyServerUrl):
|
|
2132
|
+
self._KeyServerUrl = KeyServerUrl
|
|
2133
|
+
|
|
2134
|
+
@property
|
|
2135
|
+
def VideoEncryptionPreset(self):
|
|
2136
|
+
"""Video encryption presets, options:
|
|
2137
|
+
`Preset Video 1` - Encrypts all video tracks with one key
|
|
2138
|
+
`Preset Video 2` - Encrypts SD and HD video tracks with 2 different keys
|
|
2139
|
+
`Preset Video 3` - Encrypts SD, HD and UHD video tracks with 3 different keys
|
|
2140
|
+
`Preset Video 4` - Encrypts SD, HD, UHD1 and UHD2 video tracks with 4 different keys
|
|
2141
|
+
`Preset Video 5` - Encrypts SD, HD1, HD2, UHD1 and UHD2 video tracks with 5 different keys
|
|
2142
|
+
`Preset Video 6` - Encrypts SD, HD1, HD2, UHD video tracks with 4 different keys
|
|
2143
|
+
`Preset Video 7` - Encrypts SD + HD1, HD2, UHD video tracks with 3 different keys
|
|
2144
|
+
`Preset Video 8` - Encrypts SD + HD1, HD2, UHD1, UHD2 video tracks with 4 different keys
|
|
2145
|
+
`Shared` - Encrypts all video and audio tracks with one key
|
|
2146
|
+
`Unencrypted` - Does not encrypt any track
|
|
2147
|
+
:rtype: str
|
|
2148
|
+
"""
|
|
2149
|
+
return self._VideoEncryptionPreset
|
|
2150
|
+
|
|
2151
|
+
@VideoEncryptionPreset.setter
|
|
2152
|
+
def VideoEncryptionPreset(self, VideoEncryptionPreset):
|
|
2153
|
+
self._VideoEncryptionPreset = VideoEncryptionPreset
|
|
2154
|
+
|
|
2155
|
+
@property
|
|
2156
|
+
def AudioEncryptionPreset(self):
|
|
2157
|
+
"""Audio encryption presets, options:
|
|
2158
|
+
`Preset Audio 1` - Encrypts all audio tracks with one key
|
|
2159
|
+
`Preset Audio 2` - Encrypts STEREO and MULTICHANNEL audio tracks with 2 different keys
|
|
2160
|
+
`Preset Audio 3` - Encrypts STEREO, MULTICHANNEL 3-6 and MULTICHANNEL 7 audio tracks with 3 different keys
|
|
2161
|
+
`Shared` - Encrypts all video and audio tracks with one key
|
|
2162
|
+
`Unencrypted` - Does not encrypt any track
|
|
2163
|
+
:rtype: str
|
|
2164
|
+
"""
|
|
2165
|
+
return self._AudioEncryptionPreset
|
|
2166
|
+
|
|
2167
|
+
@AudioEncryptionPreset.setter
|
|
2168
|
+
def AudioEncryptionPreset(self, AudioEncryptionPreset):
|
|
2169
|
+
self._AudioEncryptionPreset = AudioEncryptionPreset
|
|
2170
|
+
|
|
2171
|
+
@property
|
|
2172
|
+
def ConstantInitializationVector(self):
|
|
2173
|
+
"""Optional, used together with the key to encrypt the content; a 128-bit, 32-character, hexadecimal-encoded string.
|
|
2174
|
+
:rtype: str
|
|
2175
|
+
"""
|
|
2176
|
+
return self._ConstantInitializationVector
|
|
2177
|
+
|
|
2178
|
+
@ConstantInitializationVector.setter
|
|
2179
|
+
def ConstantInitializationVector(self, ConstantInitializationVector):
|
|
2180
|
+
self._ConstantInitializationVector = ConstantInitializationVector
|
|
2181
|
+
|
|
2182
|
+
@property
|
|
2183
|
+
def KeyRotationInterval(self):
|
|
2184
|
+
"""Optional, specifies the rotation interval in seconds; empty, or an integer between 300-2592000.
|
|
2185
|
+
:rtype: int
|
|
2186
|
+
"""
|
|
2187
|
+
return self._KeyRotationInterval
|
|
2188
|
+
|
|
2189
|
+
@KeyRotationInterval.setter
|
|
2190
|
+
def KeyRotationInterval(self, KeyRotationInterval):
|
|
2191
|
+
self._KeyRotationInterval = KeyRotationInterval
|
|
2192
|
+
|
|
2193
|
+
|
|
2194
|
+
def _deserialize(self, params):
|
|
2195
|
+
self._EncryptionMethod = params.get("EncryptionMethod")
|
|
2196
|
+
self._DRMSystems = params.get("DRMSystems")
|
|
2197
|
+
self._ResourceID = params.get("ResourceID")
|
|
2198
|
+
self._KeyServerUrl = params.get("KeyServerUrl")
|
|
2199
|
+
self._VideoEncryptionPreset = params.get("VideoEncryptionPreset")
|
|
2200
|
+
self._AudioEncryptionPreset = params.get("AudioEncryptionPreset")
|
|
2201
|
+
self._ConstantInitializationVector = params.get("ConstantInitializationVector")
|
|
2202
|
+
self._KeyRotationInterval = params.get("KeyRotationInterval")
|
|
2203
|
+
memeber_set = set(params.keys())
|
|
2204
|
+
for name, value in vars(self).items():
|
|
2205
|
+
property_name = name[1:]
|
|
2206
|
+
if property_name in memeber_set:
|
|
2207
|
+
memeber_set.remove(property_name)
|
|
2208
|
+
if len(memeber_set) > 0:
|
|
2209
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2210
|
+
|
|
2211
|
+
|
|
2212
|
+
|
|
1907
2213
|
class DashManifestInfo(AbstractModel):
|
|
1908
2214
|
"""The manifest info used when Type is DASH.
|
|
1909
2215
|
|
|
@@ -2744,6 +3050,138 @@ class DeleteStreamPackageSourceResponse(AbstractModel):
|
|
|
2744
3050
|
self._RequestId = params.get("RequestId")
|
|
2745
3051
|
|
|
2746
3052
|
|
|
3053
|
+
class DescribeLinearAssemblyCDNDomainWithChannelRequest(AbstractModel):
|
|
3054
|
+
"""DescribeLinearAssemblyCDNDomainWithChannel request structure.
|
|
3055
|
+
|
|
3056
|
+
"""
|
|
3057
|
+
|
|
3058
|
+
def __init__(self):
|
|
3059
|
+
r"""
|
|
3060
|
+
:param _ChannelId: Channel Id.
|
|
3061
|
+
:type ChannelId: str
|
|
3062
|
+
"""
|
|
3063
|
+
self._ChannelId = None
|
|
3064
|
+
|
|
3065
|
+
@property
|
|
3066
|
+
def ChannelId(self):
|
|
3067
|
+
"""Channel Id.
|
|
3068
|
+
:rtype: str
|
|
3069
|
+
"""
|
|
3070
|
+
return self._ChannelId
|
|
3071
|
+
|
|
3072
|
+
@ChannelId.setter
|
|
3073
|
+
def ChannelId(self, ChannelId):
|
|
3074
|
+
self._ChannelId = ChannelId
|
|
3075
|
+
|
|
3076
|
+
|
|
3077
|
+
def _deserialize(self, params):
|
|
3078
|
+
self._ChannelId = params.get("ChannelId")
|
|
3079
|
+
memeber_set = set(params.keys())
|
|
3080
|
+
for name, value in vars(self).items():
|
|
3081
|
+
property_name = name[1:]
|
|
3082
|
+
if property_name in memeber_set:
|
|
3083
|
+
memeber_set.remove(property_name)
|
|
3084
|
+
if len(memeber_set) > 0:
|
|
3085
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
3086
|
+
|
|
3087
|
+
|
|
3088
|
+
|
|
3089
|
+
class DescribeLinearAssemblyCDNDomainWithChannelResponse(AbstractModel):
|
|
3090
|
+
"""DescribeLinearAssemblyCDNDomainWithChannel response structure.
|
|
3091
|
+
|
|
3092
|
+
"""
|
|
3093
|
+
|
|
3094
|
+
def __init__(self):
|
|
3095
|
+
r"""
|
|
3096
|
+
:param _Info: The CDN domain name information associated with the channel.
|
|
3097
|
+
:type Info: :class:`tencentcloud.mdp.v20200527.models.CdnDomainInfo`
|
|
3098
|
+
:param _RequestId: 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.
|
|
3099
|
+
:type RequestId: str
|
|
3100
|
+
"""
|
|
3101
|
+
self._Info = None
|
|
3102
|
+
self._RequestId = None
|
|
3103
|
+
|
|
3104
|
+
@property
|
|
3105
|
+
def Info(self):
|
|
3106
|
+
"""The CDN domain name information associated with the channel.
|
|
3107
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.CdnDomainInfo`
|
|
3108
|
+
"""
|
|
3109
|
+
return self._Info
|
|
3110
|
+
|
|
3111
|
+
@Info.setter
|
|
3112
|
+
def Info(self, Info):
|
|
3113
|
+
self._Info = Info
|
|
3114
|
+
|
|
3115
|
+
@property
|
|
3116
|
+
def RequestId(self):
|
|
3117
|
+
"""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.
|
|
3118
|
+
:rtype: str
|
|
3119
|
+
"""
|
|
3120
|
+
return self._RequestId
|
|
3121
|
+
|
|
3122
|
+
@RequestId.setter
|
|
3123
|
+
def RequestId(self, RequestId):
|
|
3124
|
+
self._RequestId = RequestId
|
|
3125
|
+
|
|
3126
|
+
|
|
3127
|
+
def _deserialize(self, params):
|
|
3128
|
+
if params.get("Info") is not None:
|
|
3129
|
+
self._Info = CdnDomainInfo()
|
|
3130
|
+
self._Info._deserialize(params.get("Info"))
|
|
3131
|
+
self._RequestId = params.get("RequestId")
|
|
3132
|
+
|
|
3133
|
+
|
|
3134
|
+
class DescribeLinearAssemblyCDNDomainWithChannelsRequest(AbstractModel):
|
|
3135
|
+
"""DescribeLinearAssemblyCDNDomainWithChannels request structure.
|
|
3136
|
+
|
|
3137
|
+
"""
|
|
3138
|
+
|
|
3139
|
+
|
|
3140
|
+
class DescribeLinearAssemblyCDNDomainWithChannelsResponse(AbstractModel):
|
|
3141
|
+
"""DescribeLinearAssemblyCDNDomainWithChannels response structure.
|
|
3142
|
+
|
|
3143
|
+
"""
|
|
3144
|
+
|
|
3145
|
+
def __init__(self):
|
|
3146
|
+
r"""
|
|
3147
|
+
:param _Info: The CDN domain name information associated with the channel.
|
|
3148
|
+
:type Info: :class:`tencentcloud.mdp.v20200527.models.CdnDomainInfo`
|
|
3149
|
+
:param _RequestId: 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.
|
|
3150
|
+
:type RequestId: str
|
|
3151
|
+
"""
|
|
3152
|
+
self._Info = None
|
|
3153
|
+
self._RequestId = None
|
|
3154
|
+
|
|
3155
|
+
@property
|
|
3156
|
+
def Info(self):
|
|
3157
|
+
"""The CDN domain name information associated with the channel.
|
|
3158
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.CdnDomainInfo`
|
|
3159
|
+
"""
|
|
3160
|
+
return self._Info
|
|
3161
|
+
|
|
3162
|
+
@Info.setter
|
|
3163
|
+
def Info(self, Info):
|
|
3164
|
+
self._Info = Info
|
|
3165
|
+
|
|
3166
|
+
@property
|
|
3167
|
+
def RequestId(self):
|
|
3168
|
+
"""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.
|
|
3169
|
+
:rtype: str
|
|
3170
|
+
"""
|
|
3171
|
+
return self._RequestId
|
|
3172
|
+
|
|
3173
|
+
@RequestId.setter
|
|
3174
|
+
def RequestId(self, RequestId):
|
|
3175
|
+
self._RequestId = RequestId
|
|
3176
|
+
|
|
3177
|
+
|
|
3178
|
+
def _deserialize(self, params):
|
|
3179
|
+
if params.get("Info") is not None:
|
|
3180
|
+
self._Info = CdnDomainInfo()
|
|
3181
|
+
self._Info._deserialize(params.get("Info"))
|
|
3182
|
+
self._RequestId = params.get("RequestId")
|
|
3183
|
+
|
|
3184
|
+
|
|
2747
3185
|
class DescribeStreamPackageChannelRequest(AbstractModel):
|
|
2748
3186
|
"""DescribeStreamPackageChannel request structure.
|
|
2749
3187
|
|
|
@@ -4956,6 +5394,87 @@ class DescribeStreamPackageSourcesResponse(AbstractModel):
|
|
|
4956
5394
|
self._RequestId = params.get("RequestId")
|
|
4957
5395
|
|
|
4958
5396
|
|
|
5397
|
+
class DomainRecordInfo(AbstractModel):
|
|
5398
|
+
"""
|
|
5399
|
+
|
|
5400
|
+
"""
|
|
5401
|
+
|
|
5402
|
+
def __init__(self):
|
|
5403
|
+
r"""
|
|
5404
|
+
:param _CdnDomain:
|
|
5405
|
+
:type CdnDomain: str
|
|
5406
|
+
:param _Region:
|
|
5407
|
+
:type Region: str
|
|
5408
|
+
:param _ChannelId:
|
|
5409
|
+
:type ChannelId: str
|
|
5410
|
+
:param _Id:
|
|
5411
|
+
:type Id: str
|
|
5412
|
+
"""
|
|
5413
|
+
self._CdnDomain = None
|
|
5414
|
+
self._Region = None
|
|
5415
|
+
self._ChannelId = None
|
|
5416
|
+
self._Id = None
|
|
5417
|
+
|
|
5418
|
+
@property
|
|
5419
|
+
def CdnDomain(self):
|
|
5420
|
+
"""
|
|
5421
|
+
:rtype: str
|
|
5422
|
+
"""
|
|
5423
|
+
return self._CdnDomain
|
|
5424
|
+
|
|
5425
|
+
@CdnDomain.setter
|
|
5426
|
+
def CdnDomain(self, CdnDomain):
|
|
5427
|
+
self._CdnDomain = CdnDomain
|
|
5428
|
+
|
|
5429
|
+
@property
|
|
5430
|
+
def Region(self):
|
|
5431
|
+
"""
|
|
5432
|
+
:rtype: str
|
|
5433
|
+
"""
|
|
5434
|
+
return self._Region
|
|
5435
|
+
|
|
5436
|
+
@Region.setter
|
|
5437
|
+
def Region(self, Region):
|
|
5438
|
+
self._Region = Region
|
|
5439
|
+
|
|
5440
|
+
@property
|
|
5441
|
+
def ChannelId(self):
|
|
5442
|
+
"""
|
|
5443
|
+
:rtype: str
|
|
5444
|
+
"""
|
|
5445
|
+
return self._ChannelId
|
|
5446
|
+
|
|
5447
|
+
@ChannelId.setter
|
|
5448
|
+
def ChannelId(self, ChannelId):
|
|
5449
|
+
self._ChannelId = ChannelId
|
|
5450
|
+
|
|
5451
|
+
@property
|
|
5452
|
+
def Id(self):
|
|
5453
|
+
"""
|
|
5454
|
+
:rtype: str
|
|
5455
|
+
"""
|
|
5456
|
+
return self._Id
|
|
5457
|
+
|
|
5458
|
+
@Id.setter
|
|
5459
|
+
def Id(self, Id):
|
|
5460
|
+
self._Id = Id
|
|
5461
|
+
|
|
5462
|
+
|
|
5463
|
+
def _deserialize(self, params):
|
|
5464
|
+
self._CdnDomain = params.get("CdnDomain")
|
|
5465
|
+
self._Region = params.get("Region")
|
|
5466
|
+
self._ChannelId = params.get("ChannelId")
|
|
5467
|
+
self._Id = params.get("Id")
|
|
5468
|
+
memeber_set = set(params.keys())
|
|
5469
|
+
for name, value in vars(self).items():
|
|
5470
|
+
property_name = name[1:]
|
|
5471
|
+
if property_name in memeber_set:
|
|
5472
|
+
memeber_set.remove(property_name)
|
|
5473
|
+
if len(memeber_set) > 0:
|
|
5474
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5475
|
+
|
|
5476
|
+
|
|
5477
|
+
|
|
4959
5478
|
class EndpointAuthInfo(AbstractModel):
|
|
4960
5479
|
"""The authentication information of channel endpoints.
|
|
4961
5480
|
|
|
@@ -5041,7 +5560,7 @@ class EndpointInfo(AbstractModel):
|
|
|
5041
5560
|
:type Url: str
|
|
5042
5561
|
:param _AuthInfo: Endpoint authentication information.
|
|
5043
5562
|
:type AuthInfo: :class:`tencentcloud.mdp.v20200527.models.EndpointAuthInfo`
|
|
5044
|
-
:param _Protocol: Endpoint protocol
|
|
5563
|
+
:param _Protocol: Endpoint protocol, supports `HLS`, `CMAF`, `CMAF-HLS`.
|
|
5045
5564
|
:type Protocol: str
|
|
5046
5565
|
:param _Manifest: Manifest name, default is main.
|
|
5047
5566
|
:type Manifest: str
|
|
@@ -5058,6 +5577,10 @@ class EndpointInfo(AbstractModel):
|
|
|
5058
5577
|
:param _CustomUrlParam: Customer-defined url parameters are inserted into the specified position of the Endpoint url based on the CustomUrlParamIndex.
|
|
5059
5578
|
The parameters can only contain digits, letters, underscores (_), and hyphens (-), with a length of 1 to 64 chars.
|
|
5060
5579
|
:type CustomUrlParam: str
|
|
5580
|
+
:param _DRMEnabled: DRM switch. If it is turned on, only CMAF will take effect.
|
|
5581
|
+
:type DRMEnabled: bool
|
|
5582
|
+
:param _DRMInfo: DRM configuration information.
|
|
5583
|
+
:type DRMInfo: :class:`tencentcloud.mdp.v20200527.models.DRMInfo`
|
|
5061
5584
|
"""
|
|
5062
5585
|
self._Name = None
|
|
5063
5586
|
self._Url = None
|
|
@@ -5070,6 +5593,8 @@ The parameters can only contain digits, letters, underscores (_), and hyphens (-
|
|
|
5070
5593
|
self._SSAIInfo = None
|
|
5071
5594
|
self._CustomUrlParamIndex = None
|
|
5072
5595
|
self._CustomUrlParam = None
|
|
5596
|
+
self._DRMEnabled = None
|
|
5597
|
+
self._DRMInfo = None
|
|
5073
5598
|
|
|
5074
5599
|
@property
|
|
5075
5600
|
def Name(self):
|
|
@@ -5106,7 +5631,7 @@ The parameters can only contain digits, letters, underscores (_), and hyphens (-
|
|
|
5106
5631
|
|
|
5107
5632
|
@property
|
|
5108
5633
|
def Protocol(self):
|
|
5109
|
-
"""Endpoint protocol
|
|
5634
|
+
"""Endpoint protocol, supports `HLS`, `CMAF`, `CMAF-HLS`.
|
|
5110
5635
|
:rtype: str
|
|
5111
5636
|
"""
|
|
5112
5637
|
return self._Protocol
|
|
@@ -5193,6 +5718,28 @@ The parameters can only contain digits, letters, underscores (_), and hyphens (-
|
|
|
5193
5718
|
def CustomUrlParam(self, CustomUrlParam):
|
|
5194
5719
|
self._CustomUrlParam = CustomUrlParam
|
|
5195
5720
|
|
|
5721
|
+
@property
|
|
5722
|
+
def DRMEnabled(self):
|
|
5723
|
+
"""DRM switch. If it is turned on, only CMAF will take effect.
|
|
5724
|
+
:rtype: bool
|
|
5725
|
+
"""
|
|
5726
|
+
return self._DRMEnabled
|
|
5727
|
+
|
|
5728
|
+
@DRMEnabled.setter
|
|
5729
|
+
def DRMEnabled(self, DRMEnabled):
|
|
5730
|
+
self._DRMEnabled = DRMEnabled
|
|
5731
|
+
|
|
5732
|
+
@property
|
|
5733
|
+
def DRMInfo(self):
|
|
5734
|
+
"""DRM configuration information.
|
|
5735
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.DRMInfo`
|
|
5736
|
+
"""
|
|
5737
|
+
return self._DRMInfo
|
|
5738
|
+
|
|
5739
|
+
@DRMInfo.setter
|
|
5740
|
+
def DRMInfo(self, DRMInfo):
|
|
5741
|
+
self._DRMInfo = DRMInfo
|
|
5742
|
+
|
|
5196
5743
|
|
|
5197
5744
|
def _deserialize(self, params):
|
|
5198
5745
|
self._Name = params.get("Name")
|
|
@@ -5210,6 +5757,10 @@ The parameters can only contain digits, letters, underscores (_), and hyphens (-
|
|
|
5210
5757
|
self._SSAIInfo._deserialize(params.get("SSAIInfo"))
|
|
5211
5758
|
self._CustomUrlParamIndex = params.get("CustomUrlParamIndex")
|
|
5212
5759
|
self._CustomUrlParam = params.get("CustomUrlParam")
|
|
5760
|
+
self._DRMEnabled = params.get("DRMEnabled")
|
|
5761
|
+
if params.get("DRMInfo") is not None:
|
|
5762
|
+
self._DRMInfo = DRMInfo()
|
|
5763
|
+
self._DRMInfo._deserialize(params.get("DRMInfo"))
|
|
5213
5764
|
memeber_set = set(params.keys())
|
|
5214
5765
|
for name, value in vars(self).items():
|
|
5215
5766
|
property_name = name[1:]
|
|
@@ -9672,5 +10223,84 @@ class UnbindCdnDomainWithChannelResponse(AbstractModel):
|
|
|
9672
10223
|
self._RequestId = RequestId
|
|
9673
10224
|
|
|
9674
10225
|
|
|
10226
|
+
def _deserialize(self, params):
|
|
10227
|
+
self._RequestId = params.get("RequestId")
|
|
10228
|
+
|
|
10229
|
+
|
|
10230
|
+
class UnbindLinearAssemblyCDNDomainWithChannelRequest(AbstractModel):
|
|
10231
|
+
"""UnbindLinearAssemblyCDNDomainWithChannel request structure.
|
|
10232
|
+
|
|
10233
|
+
"""
|
|
10234
|
+
|
|
10235
|
+
def __init__(self):
|
|
10236
|
+
r"""
|
|
10237
|
+
:param _ChannelId: Channel Id.
|
|
10238
|
+
:type ChannelId: str
|
|
10239
|
+
:param _CdnDomain: Cdn playback domain.
|
|
10240
|
+
:type CdnDomain: str
|
|
10241
|
+
"""
|
|
10242
|
+
self._ChannelId = None
|
|
10243
|
+
self._CdnDomain = None
|
|
10244
|
+
|
|
10245
|
+
@property
|
|
10246
|
+
def ChannelId(self):
|
|
10247
|
+
"""Channel Id.
|
|
10248
|
+
:rtype: str
|
|
10249
|
+
"""
|
|
10250
|
+
return self._ChannelId
|
|
10251
|
+
|
|
10252
|
+
@ChannelId.setter
|
|
10253
|
+
def ChannelId(self, ChannelId):
|
|
10254
|
+
self._ChannelId = ChannelId
|
|
10255
|
+
|
|
10256
|
+
@property
|
|
10257
|
+
def CdnDomain(self):
|
|
10258
|
+
"""Cdn playback domain.
|
|
10259
|
+
:rtype: str
|
|
10260
|
+
"""
|
|
10261
|
+
return self._CdnDomain
|
|
10262
|
+
|
|
10263
|
+
@CdnDomain.setter
|
|
10264
|
+
def CdnDomain(self, CdnDomain):
|
|
10265
|
+
self._CdnDomain = CdnDomain
|
|
10266
|
+
|
|
10267
|
+
|
|
10268
|
+
def _deserialize(self, params):
|
|
10269
|
+
self._ChannelId = params.get("ChannelId")
|
|
10270
|
+
self._CdnDomain = params.get("CdnDomain")
|
|
10271
|
+
memeber_set = set(params.keys())
|
|
10272
|
+
for name, value in vars(self).items():
|
|
10273
|
+
property_name = name[1:]
|
|
10274
|
+
if property_name in memeber_set:
|
|
10275
|
+
memeber_set.remove(property_name)
|
|
10276
|
+
if len(memeber_set) > 0:
|
|
10277
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10278
|
+
|
|
10279
|
+
|
|
10280
|
+
|
|
10281
|
+
class UnbindLinearAssemblyCDNDomainWithChannelResponse(AbstractModel):
|
|
10282
|
+
"""UnbindLinearAssemblyCDNDomainWithChannel response structure.
|
|
10283
|
+
|
|
10284
|
+
"""
|
|
10285
|
+
|
|
10286
|
+
def __init__(self):
|
|
10287
|
+
r"""
|
|
10288
|
+
:param _RequestId: 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.
|
|
10289
|
+
:type RequestId: str
|
|
10290
|
+
"""
|
|
10291
|
+
self._RequestId = None
|
|
10292
|
+
|
|
10293
|
+
@property
|
|
10294
|
+
def RequestId(self):
|
|
10295
|
+
"""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.
|
|
10296
|
+
:rtype: str
|
|
10297
|
+
"""
|
|
10298
|
+
return self._RequestId
|
|
10299
|
+
|
|
10300
|
+
@RequestId.setter
|
|
10301
|
+
def RequestId(self, RequestId):
|
|
10302
|
+
self._RequestId = RequestId
|
|
10303
|
+
|
|
10304
|
+
|
|
9675
10305
|
def _deserialize(self, params):
|
|
9676
10306
|
self._RequestId = params.get("RequestId")
|