tencentcloud-sdk-python 3.0.1342__py2.py3-none-any.whl → 3.0.1343__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bi/v20220105/models.py +68 -0
- tencentcloud/billing/v20180709/billing_client.py +3 -1
- tencentcloud/billing/v20180709/models.py +90 -210
- tencentcloud/cdwpg/v20201230/models.py +4 -4
- tencentcloud/cdz/v20221123/models.py +0 -4
- tencentcloud/cfg/v20210820/models.py +0 -192
- tencentcloud/clb/v20180317/clb_client.py +2 -2
- tencentcloud/cwp/v20180228/models.py +61 -18
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +161 -0
- tencentcloud/dbbrain/v20210527/models.py +1743 -387
- tencentcloud/domain/v20180808/models.py +0 -2
- tencentcloud/dts/v20180330/models.py +0 -6
- tencentcloud/dts/v20211206/models.py +2 -210
- tencentcloud/ess/v20201111/models.py +69 -4
- tencentcloud/essbasic/v20210526/models.py +57 -2
- tencentcloud/iotexplorer/v20190423/errorcodes.py +12 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +995 -65
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +46 -0
- tencentcloud/iotvideo/v20211125/models.py +188 -0
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lighthouse/v20200324/errorcodes.py +12 -9
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +24 -17
- tencentcloud/lighthouse/v20200324/models.py +68 -36
- tencentcloud/lke/v20231130/models.py +2 -2
- tencentcloud/lkeap/v20240522/models.py +4 -8
- tencentcloud/mps/v20190612/models.py +170 -0
- tencentcloud/mqtt/v20240516/errorcodes.py +9 -0
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/organization/v20210331/models.py +0 -82
- tencentcloud/tcb/v20180608/models.py +0 -4
- tencentcloud/teo/v20220901/models.py +955 -20
- tencentcloud/tione/v20211111/models.py +90 -0
- tencentcloud/vdb/v20230616/models.py +45 -0
- tencentcloud/vdb/v20230616/vdb_client.py +1 -1
- tencentcloud/vrs/v20200824/models.py +32 -0
- tencentcloud/wedata/v20210820/models.py +77 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/RECORD +43 -43
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/top_level.txt +0 -0
@@ -29472,9 +29472,12 @@ class DrmInfo(AbstractModel):
|
|
29472
29472
|
:param _SimpleAesDrm: SimpleAes 加密信息。
|
29473
29473
|
注意:此字段可能返回 null,表示取不到有效值。
|
29474
29474
|
:type SimpleAesDrm: :class:`tencentcloud.mps.v20190612.models.SimpleAesDrm`
|
29475
|
+
:param _SpekeDrm: FairPlay, WideVine, PlayReady 加密信息。
|
29476
|
+
:type SpekeDrm: :class:`tencentcloud.mps.v20190612.models.SpekeDrm`
|
29475
29477
|
"""
|
29476
29478
|
self._Type = None
|
29477
29479
|
self._SimpleAesDrm = None
|
29480
|
+
self._SpekeDrm = None
|
29478
29481
|
|
29479
29482
|
@property
|
29480
29483
|
def Type(self):
|
@@ -29504,12 +29507,26 @@ class DrmInfo(AbstractModel):
|
|
29504
29507
|
def SimpleAesDrm(self, SimpleAesDrm):
|
29505
29508
|
self._SimpleAesDrm = SimpleAesDrm
|
29506
29509
|
|
29510
|
+
@property
|
29511
|
+
def SpekeDrm(self):
|
29512
|
+
"""FairPlay, WideVine, PlayReady 加密信息。
|
29513
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.SpekeDrm`
|
29514
|
+
"""
|
29515
|
+
return self._SpekeDrm
|
29516
|
+
|
29517
|
+
@SpekeDrm.setter
|
29518
|
+
def SpekeDrm(self, SpekeDrm):
|
29519
|
+
self._SpekeDrm = SpekeDrm
|
29520
|
+
|
29507
29521
|
|
29508
29522
|
def _deserialize(self, params):
|
29509
29523
|
self._Type = params.get("Type")
|
29510
29524
|
if params.get("SimpleAesDrm") is not None:
|
29511
29525
|
self._SimpleAesDrm = SimpleAesDrm()
|
29512
29526
|
self._SimpleAesDrm._deserialize(params.get("SimpleAesDrm"))
|
29527
|
+
if params.get("SpekeDrm") is not None:
|
29528
|
+
self._SpekeDrm = SpekeDrm()
|
29529
|
+
self._SpekeDrm._deserialize(params.get("SpekeDrm"))
|
29513
29530
|
memeber_set = set(params.keys())
|
29514
29531
|
for name, value in vars(self).items():
|
29515
29532
|
property_name = name[1:]
|
@@ -40497,6 +40514,20 @@ class MediaTranscodeItem(AbstractModel):
|
|
40497
40514
|
:type AudioStreamSet: list of MediaAudioStreamItem
|
40498
40515
|
:param _VideoStreamSet: 视频流信息。
|
40499
40516
|
:type VideoStreamSet: list of MediaVideoStreamItem
|
40517
|
+
:param _CallBackExtInfo: 视频转码使用增强项说明,增强项解释
|
40518
|
+
<li>hdr:HDR配置</li>
|
40519
|
+
<li>wd_fps:插帧帧率配置</li>
|
40520
|
+
<li>video_super_resolution: 超分配置</li>
|
40521
|
+
<li>repair:综合增强配置</li>
|
40522
|
+
<li>denoise:视频降噪配置</li>
|
40523
|
+
<li>color_enhance:色彩增强配置</li>
|
40524
|
+
<li>scratch:去划痕配置</li>
|
40525
|
+
<li>artifact:去伪影(毛刺)配置</li>
|
40526
|
+
<li>sharp:细节增强配置</li>
|
40527
|
+
<li>low_light:低光照增强配置</li>
|
40528
|
+
<li>face_enhance:人脸增强配置</li>
|
40529
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
40530
|
+
:type CallBackExtInfo: str
|
40500
40531
|
"""
|
40501
40532
|
self._OutputStorage = None
|
40502
40533
|
self._Path = None
|
@@ -40510,6 +40541,7 @@ class MediaTranscodeItem(AbstractModel):
|
|
40510
40541
|
self._Md5 = None
|
40511
40542
|
self._AudioStreamSet = None
|
40512
40543
|
self._VideoStreamSet = None
|
40544
|
+
self._CallBackExtInfo = None
|
40513
40545
|
|
40514
40546
|
@property
|
40515
40547
|
def OutputStorage(self):
|
@@ -40643,6 +40675,29 @@ class MediaTranscodeItem(AbstractModel):
|
|
40643
40675
|
def VideoStreamSet(self, VideoStreamSet):
|
40644
40676
|
self._VideoStreamSet = VideoStreamSet
|
40645
40677
|
|
40678
|
+
@property
|
40679
|
+
def CallBackExtInfo(self):
|
40680
|
+
"""视频转码使用增强项说明,增强项解释
|
40681
|
+
<li>hdr:HDR配置</li>
|
40682
|
+
<li>wd_fps:插帧帧率配置</li>
|
40683
|
+
<li>video_super_resolution: 超分配置</li>
|
40684
|
+
<li>repair:综合增强配置</li>
|
40685
|
+
<li>denoise:视频降噪配置</li>
|
40686
|
+
<li>color_enhance:色彩增强配置</li>
|
40687
|
+
<li>scratch:去划痕配置</li>
|
40688
|
+
<li>artifact:去伪影(毛刺)配置</li>
|
40689
|
+
<li>sharp:细节增强配置</li>
|
40690
|
+
<li>low_light:低光照增强配置</li>
|
40691
|
+
<li>face_enhance:人脸增强配置</li>
|
40692
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
40693
|
+
:rtype: str
|
40694
|
+
"""
|
40695
|
+
return self._CallBackExtInfo
|
40696
|
+
|
40697
|
+
@CallBackExtInfo.setter
|
40698
|
+
def CallBackExtInfo(self, CallBackExtInfo):
|
40699
|
+
self._CallBackExtInfo = CallBackExtInfo
|
40700
|
+
|
40646
40701
|
|
40647
40702
|
def _deserialize(self, params):
|
40648
40703
|
if params.get("OutputStorage") is not None:
|
@@ -40669,6 +40724,7 @@ class MediaTranscodeItem(AbstractModel):
|
|
40669
40724
|
obj = MediaVideoStreamItem()
|
40670
40725
|
obj._deserialize(item)
|
40671
40726
|
self._VideoStreamSet.append(obj)
|
40727
|
+
self._CallBackExtInfo = params.get("CallBackExtInfo")
|
40672
40728
|
memeber_set = set(params.keys())
|
40673
40729
|
for name, value in vars(self).items():
|
40674
40730
|
property_name = name[1:]
|
@@ -52880,6 +52936,120 @@ class SnapshotByTimeOffsetTemplate(AbstractModel):
|
|
52880
52936
|
|
52881
52937
|
|
52882
52938
|
|
52939
|
+
class SpekeDrm(AbstractModel):
|
52940
|
+
"""FairPlay,WideVine,PlayReady 等Drm加密方式。
|
52941
|
+
|
52942
|
+
"""
|
52943
|
+
|
52944
|
+
def __init__(self):
|
52945
|
+
r"""
|
52946
|
+
:param _ResourceId: 资源标记,
|
52947
|
+
支持1-128个字符的数字、字母、下划线(_)、中划线(-)。
|
52948
|
+
:type ResourceId: str
|
52949
|
+
:param _KeyServerUrl: drm厂商访问地址;
|
52950
|
+
|
52951
|
+
注: 不同DRM厂商对子流的数量限制不一样,如 pallycon 限制不能超过5条子流,drmtoday厂商最多仅支持9条子流加密
|
52952
|
+
:type KeyServerUrl: str
|
52953
|
+
:param _Vector: 加密初始化向量(32字节字符串)。
|
52954
|
+
:type Vector: str
|
52955
|
+
:param _EncryptionMethod: 加密方式,FairPlay 默认cbcs,PlayReady,Widevine 默认cenc
|
52956
|
+
|
52957
|
+
cbcs:PlayReady,Widevine,FairPlay 支持;
|
52958
|
+
cenc:PlayReady,Widevine支持;
|
52959
|
+
:type EncryptionMethod: str
|
52960
|
+
:param _EncryptionPreset: 子流加密规则,默认 preset0
|
52961
|
+
preset0:全部子流使用同一个key加密;
|
52962
|
+
preset1:每个子流使用不同的key加密;
|
52963
|
+
|
52964
|
+
:type EncryptionPreset: str
|
52965
|
+
"""
|
52966
|
+
self._ResourceId = None
|
52967
|
+
self._KeyServerUrl = None
|
52968
|
+
self._Vector = None
|
52969
|
+
self._EncryptionMethod = None
|
52970
|
+
self._EncryptionPreset = None
|
52971
|
+
|
52972
|
+
@property
|
52973
|
+
def ResourceId(self):
|
52974
|
+
"""资源标记,
|
52975
|
+
支持1-128个字符的数字、字母、下划线(_)、中划线(-)。
|
52976
|
+
:rtype: str
|
52977
|
+
"""
|
52978
|
+
return self._ResourceId
|
52979
|
+
|
52980
|
+
@ResourceId.setter
|
52981
|
+
def ResourceId(self, ResourceId):
|
52982
|
+
self._ResourceId = ResourceId
|
52983
|
+
|
52984
|
+
@property
|
52985
|
+
def KeyServerUrl(self):
|
52986
|
+
"""drm厂商访问地址;
|
52987
|
+
|
52988
|
+
注: 不同DRM厂商对子流的数量限制不一样,如 pallycon 限制不能超过5条子流,drmtoday厂商最多仅支持9条子流加密
|
52989
|
+
:rtype: str
|
52990
|
+
"""
|
52991
|
+
return self._KeyServerUrl
|
52992
|
+
|
52993
|
+
@KeyServerUrl.setter
|
52994
|
+
def KeyServerUrl(self, KeyServerUrl):
|
52995
|
+
self._KeyServerUrl = KeyServerUrl
|
52996
|
+
|
52997
|
+
@property
|
52998
|
+
def Vector(self):
|
52999
|
+
"""加密初始化向量(32字节字符串)。
|
53000
|
+
:rtype: str
|
53001
|
+
"""
|
53002
|
+
return self._Vector
|
53003
|
+
|
53004
|
+
@Vector.setter
|
53005
|
+
def Vector(self, Vector):
|
53006
|
+
self._Vector = Vector
|
53007
|
+
|
53008
|
+
@property
|
53009
|
+
def EncryptionMethod(self):
|
53010
|
+
"""加密方式,FairPlay 默认cbcs,PlayReady,Widevine 默认cenc
|
53011
|
+
|
53012
|
+
cbcs:PlayReady,Widevine,FairPlay 支持;
|
53013
|
+
cenc:PlayReady,Widevine支持;
|
53014
|
+
:rtype: str
|
53015
|
+
"""
|
53016
|
+
return self._EncryptionMethod
|
53017
|
+
|
53018
|
+
@EncryptionMethod.setter
|
53019
|
+
def EncryptionMethod(self, EncryptionMethod):
|
53020
|
+
self._EncryptionMethod = EncryptionMethod
|
53021
|
+
|
53022
|
+
@property
|
53023
|
+
def EncryptionPreset(self):
|
53024
|
+
"""子流加密规则,默认 preset0
|
53025
|
+
preset0:全部子流使用同一个key加密;
|
53026
|
+
preset1:每个子流使用不同的key加密;
|
53027
|
+
|
53028
|
+
:rtype: str
|
53029
|
+
"""
|
53030
|
+
return self._EncryptionPreset
|
53031
|
+
|
53032
|
+
@EncryptionPreset.setter
|
53033
|
+
def EncryptionPreset(self, EncryptionPreset):
|
53034
|
+
self._EncryptionPreset = EncryptionPreset
|
53035
|
+
|
53036
|
+
|
53037
|
+
def _deserialize(self, params):
|
53038
|
+
self._ResourceId = params.get("ResourceId")
|
53039
|
+
self._KeyServerUrl = params.get("KeyServerUrl")
|
53040
|
+
self._Vector = params.get("Vector")
|
53041
|
+
self._EncryptionMethod = params.get("EncryptionMethod")
|
53042
|
+
self._EncryptionPreset = params.get("EncryptionPreset")
|
53043
|
+
memeber_set = set(params.keys())
|
53044
|
+
for name, value in vars(self).items():
|
53045
|
+
property_name = name[1:]
|
53046
|
+
if property_name in memeber_set:
|
53047
|
+
memeber_set.remove(property_name)
|
53048
|
+
if len(memeber_set) > 0:
|
53049
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
53050
|
+
|
53051
|
+
|
53052
|
+
|
52883
53053
|
class StartStreamLinkFlowRequest(AbstractModel):
|
52884
53054
|
"""StartStreamLinkFlow请求参数结构体
|
52885
53055
|
|
@@ -20,6 +20,9 @@ FAILEDOPERATION = 'FailedOperation'
|
|
20
20
|
# FailedOperation.CertificateVerificationFailed
|
21
21
|
FAILEDOPERATION_CERTIFICATEVERIFICATIONFAILED = 'FailedOperation.CertificateVerificationFailed'
|
22
22
|
|
23
|
+
# 策略优先级重复
|
24
|
+
FAILEDOPERATION_DUPLICATEAUTHORIZATIONIDORPRIORITY = 'FailedOperation.DuplicateAuthorizationIdOrPriority'
|
25
|
+
|
23
26
|
# FailedOperation.InstanceNotReady
|
24
27
|
FAILEDOPERATION_INSTANCENOTREADY = 'FailedOperation.InstanceNotReady'
|
25
28
|
|
@@ -47,6 +50,9 @@ OPERATIONDENIED = 'OperationDenied'
|
|
47
50
|
# 资源被占用。
|
48
51
|
RESOURCEINUSE = 'ResourceInUse'
|
49
52
|
|
53
|
+
# 授权策略未找到
|
54
|
+
RESOURCENOTFOUND_AUTHORIZATIONPOLICY = 'ResourceNotFound.AuthorizationPolicy'
|
55
|
+
|
50
56
|
# ResourceNotFound.Instance
|
51
57
|
RESOURCENOTFOUND_INSTANCE = 'ResourceNotFound.Instance'
|
52
58
|
|
@@ -56,6 +62,9 @@ RESOURCENOTFOUND_ROLE = 'ResourceNotFound.Role'
|
|
56
62
|
# ResourceNotFound.Topic
|
57
63
|
RESOURCENOTFOUND_TOPIC = 'ResourceNotFound.Topic'
|
58
64
|
|
65
|
+
# 用户名未找到
|
66
|
+
RESOURCENOTFOUND_USERNAME = 'ResourceNotFound.Username'
|
67
|
+
|
59
68
|
# 资源不可用。
|
60
69
|
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
61
70
|
|
@@ -209,6 +209,9 @@ FAILEDOPERATION_OPERATEBILLINGPERMISSIONERR = 'FailedOperation.OperateBillingPer
|
|
209
209
|
# 操作策略失败。
|
210
210
|
FAILEDOPERATION_OPERATEPOLICY = 'FailedOperation.OperatePolicy'
|
211
211
|
|
212
|
+
# 存在组织成员访问策略。
|
213
|
+
FAILEDOPERATION_ORGMEMBERPOLICYEXIST = 'FailedOperation.OrgMemberPolicyExist'
|
214
|
+
|
212
215
|
# 成员是主体管理账号,不允许退出组织。
|
213
216
|
FAILEDOPERATION_ORGANIZATIONAUTHMANAGENOTALLOWDELETE = 'FailedOperation.OrganizationAuthManageNotAllowDelete'
|
214
217
|
|