tencentcloud-sdk-python 3.0.1395__py2.py3-none-any.whl → 3.0.1397__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/apm/v20210622/models.py +17 -2
- tencentcloud/cbs/v20170312/cbs_client.py +3 -2
- tencentcloud/cbs/v20170312/models.py +14 -10
- tencentcloud/ccc/v20200210/models.py +71 -0
- tencentcloud/cdb/v20170320/models.py +6 -6
- tencentcloud/cdwch/v20200915/models.py +0 -2
- tencentcloud/cfs/v20190719/models.py +2 -2
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +1 -1
- tencentcloud/dbbrain/v20210527/models.py +4 -4
- tencentcloud/emr/v20190103/models.py +314 -4
- tencentcloud/ess/v20201111/ess_client.py +59 -0
- tencentcloud/ess/v20201111/models.py +257 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -0
- tencentcloud/essbasic/v20210526/models.py +2 -0
- tencentcloud/gs/v20191118/gs_client.py +192 -8
- tencentcloud/gs/v20191118/models.py +1001 -48
- tencentcloud/hai/v20230812/errorcodes.py +3 -0
- tencentcloud/hai/v20230812/hai_client.py +23 -0
- tencentcloud/hai/v20230812/models.py +109 -0
- tencentcloud/ioa/v20220601/ioa_client.py +23 -0
- tencentcloud/ioa/v20220601/models.py +447 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +2 -2
- tencentcloud/iotexplorer/v20190423/models.py +102 -0
- tencentcloud/lighthouse/v20200324/models.py +6 -2
- tencentcloud/lke/v20231130/models.py +527 -2
- tencentcloud/ocr/v20181119/models.py +135 -18
- tencentcloud/ocr/v20181119/ocr_client.py +1 -4
- tencentcloud/sqlserver/v20180328/models.py +47 -2
- tencentcloud/ssl/v20191205/models.py +131 -0
- tencentcloud/tem/v20210701/errorcodes.py +6 -0
- tencentcloud/tem/v20210701/models.py +200 -0
- tencentcloud/tem/v20210701/tem_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +1417 -117
- tencentcloud/tke/v20220501/errorcodes.py +3 -0
- tencentcloud/tke/v20220501/models.py +109 -0
- tencentcloud/tke/v20220501/tke_client.py +23 -0
- tencentcloud/trtc/v20190722/errorcodes.py +24 -0
- tencentcloud/trtc/v20190722/models.py +752 -0
- tencentcloud/trtc/v20190722/trtc_client.py +92 -0
- tencentcloud/vm/v20210922/models.py +2 -2
- tencentcloud/vod/v20180717/models.py +4 -0
- tencentcloud/waf/v20180125/models.py +0 -2
- tencentcloud/wedata/v20210820/models.py +1902 -0
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1397.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1397.dist-info}/RECORD +50 -50
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1397.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1397.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1397.dist-info}/top_level.txt +0 -0
@@ -15921,6 +15921,89 @@ class DevicesItem(AbstractModel):
|
|
15921
15921
|
|
15922
15922
|
|
15923
15923
|
|
15924
|
+
class DiarySHLConfig(AbstractModel):
|
15925
|
+
"""Diary Simple Highlight 配置
|
15926
|
+
|
15927
|
+
"""
|
15928
|
+
|
15929
|
+
def __init__(self):
|
15930
|
+
r"""
|
15931
|
+
:param _StartOffset: 每个视频偏移时长,单位秒
|
15932
|
+
:type StartOffset: int
|
15933
|
+
:param _PlaySpeed: 视频浓缩倍数,支持1,2,4之间
|
15934
|
+
:type PlaySpeed: int
|
15935
|
+
:param _MiniExtract: 单个视频最小提取时长,单位秒
|
15936
|
+
:type MiniExtract: int
|
15937
|
+
:param _OutDuration: 每天最终输出视频时长,单位秒
|
15938
|
+
注:免费版固定10s
|
15939
|
+
:type OutDuration: int
|
15940
|
+
"""
|
15941
|
+
self._StartOffset = None
|
15942
|
+
self._PlaySpeed = None
|
15943
|
+
self._MiniExtract = None
|
15944
|
+
self._OutDuration = None
|
15945
|
+
|
15946
|
+
@property
|
15947
|
+
def StartOffset(self):
|
15948
|
+
"""每个视频偏移时长,单位秒
|
15949
|
+
:rtype: int
|
15950
|
+
"""
|
15951
|
+
return self._StartOffset
|
15952
|
+
|
15953
|
+
@StartOffset.setter
|
15954
|
+
def StartOffset(self, StartOffset):
|
15955
|
+
self._StartOffset = StartOffset
|
15956
|
+
|
15957
|
+
@property
|
15958
|
+
def PlaySpeed(self):
|
15959
|
+
"""视频浓缩倍数,支持1,2,4之间
|
15960
|
+
:rtype: int
|
15961
|
+
"""
|
15962
|
+
return self._PlaySpeed
|
15963
|
+
|
15964
|
+
@PlaySpeed.setter
|
15965
|
+
def PlaySpeed(self, PlaySpeed):
|
15966
|
+
self._PlaySpeed = PlaySpeed
|
15967
|
+
|
15968
|
+
@property
|
15969
|
+
def MiniExtract(self):
|
15970
|
+
"""单个视频最小提取时长,单位秒
|
15971
|
+
:rtype: int
|
15972
|
+
"""
|
15973
|
+
return self._MiniExtract
|
15974
|
+
|
15975
|
+
@MiniExtract.setter
|
15976
|
+
def MiniExtract(self, MiniExtract):
|
15977
|
+
self._MiniExtract = MiniExtract
|
15978
|
+
|
15979
|
+
@property
|
15980
|
+
def OutDuration(self):
|
15981
|
+
"""每天最终输出视频时长,单位秒
|
15982
|
+
注:免费版固定10s
|
15983
|
+
:rtype: int
|
15984
|
+
"""
|
15985
|
+
return self._OutDuration
|
15986
|
+
|
15987
|
+
@OutDuration.setter
|
15988
|
+
def OutDuration(self, OutDuration):
|
15989
|
+
self._OutDuration = OutDuration
|
15990
|
+
|
15991
|
+
|
15992
|
+
def _deserialize(self, params):
|
15993
|
+
self._StartOffset = params.get("StartOffset")
|
15994
|
+
self._PlaySpeed = params.get("PlaySpeed")
|
15995
|
+
self._MiniExtract = params.get("MiniExtract")
|
15996
|
+
self._OutDuration = params.get("OutDuration")
|
15997
|
+
memeber_set = set(params.keys())
|
15998
|
+
for name, value in vars(self).items():
|
15999
|
+
property_name = name[1:]
|
16000
|
+
if property_name in memeber_set:
|
16001
|
+
memeber_set.remove(property_name)
|
16002
|
+
if len(memeber_set) > 0:
|
16003
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
16004
|
+
|
16005
|
+
|
16006
|
+
|
15924
16007
|
class DirectBindDeviceInFamilyRequest(AbstractModel):
|
15925
16008
|
"""DirectBindDeviceInFamily请求参数结构体
|
15926
16009
|
|
@@ -22769,6 +22852,7 @@ class ModifyCloudStorageAIServiceRequest(AbstractModel):
|
|
22769
22852
|
:param _ServiceType: 云存 AI 服务类型。可选值:
|
22770
22853
|
- `RealtimeObjectDetect`:目标检测
|
22771
22854
|
- `Highlight`:视频浓缩
|
22855
|
+
- `SimpleHighlight`:TrueX SimpleHighlight
|
22772
22856
|
:type ServiceType: str
|
22773
22857
|
:param _Enabled: 视频分析启用状态
|
22774
22858
|
:type Enabled: bool
|
@@ -22776,6 +22860,8 @@ class ModifyCloudStorageAIServiceRequest(AbstractModel):
|
|
22776
22860
|
:type ROI: str
|
22777
22861
|
:param _Config: 视频分析配置参数
|
22778
22862
|
:type Config: str
|
22863
|
+
:param _SHLConfig: SimpleHighlight 算法配置参数
|
22864
|
+
:type SHLConfig: :class:`tencentcloud.iotexplorer.v20190423.models.DiarySHLConfig`
|
22779
22865
|
"""
|
22780
22866
|
self._ProductId = None
|
22781
22867
|
self._DeviceName = None
|
@@ -22783,6 +22869,7 @@ class ModifyCloudStorageAIServiceRequest(AbstractModel):
|
|
22783
22869
|
self._Enabled = None
|
22784
22870
|
self._ROI = None
|
22785
22871
|
self._Config = None
|
22872
|
+
self._SHLConfig = None
|
22786
22873
|
|
22787
22874
|
@property
|
22788
22875
|
def ProductId(self):
|
@@ -22811,6 +22898,7 @@ class ModifyCloudStorageAIServiceRequest(AbstractModel):
|
|
22811
22898
|
"""云存 AI 服务类型。可选值:
|
22812
22899
|
- `RealtimeObjectDetect`:目标检测
|
22813
22900
|
- `Highlight`:视频浓缩
|
22901
|
+
- `SimpleHighlight`:TrueX SimpleHighlight
|
22814
22902
|
:rtype: str
|
22815
22903
|
"""
|
22816
22904
|
return self._ServiceType
|
@@ -22852,6 +22940,17 @@ class ModifyCloudStorageAIServiceRequest(AbstractModel):
|
|
22852
22940
|
def Config(self, Config):
|
22853
22941
|
self._Config = Config
|
22854
22942
|
|
22943
|
+
@property
|
22944
|
+
def SHLConfig(self):
|
22945
|
+
"""SimpleHighlight 算法配置参数
|
22946
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.DiarySHLConfig`
|
22947
|
+
"""
|
22948
|
+
return self._SHLConfig
|
22949
|
+
|
22950
|
+
@SHLConfig.setter
|
22951
|
+
def SHLConfig(self, SHLConfig):
|
22952
|
+
self._SHLConfig = SHLConfig
|
22953
|
+
|
22855
22954
|
|
22856
22955
|
def _deserialize(self, params):
|
22857
22956
|
self._ProductId = params.get("ProductId")
|
@@ -22860,6 +22959,9 @@ class ModifyCloudStorageAIServiceRequest(AbstractModel):
|
|
22860
22959
|
self._Enabled = params.get("Enabled")
|
22861
22960
|
self._ROI = params.get("ROI")
|
22862
22961
|
self._Config = params.get("Config")
|
22962
|
+
if params.get("SHLConfig") is not None:
|
22963
|
+
self._SHLConfig = DiarySHLConfig()
|
22964
|
+
self._SHLConfig._deserialize(params.get("SHLConfig"))
|
22863
22965
|
memeber_set = set(params.keys())
|
22864
22966
|
for name, value in vars(self).items():
|
22865
22967
|
property_name = name[1:]
|
@@ -680,7 +680,9 @@ class Blueprint(AbstractModel):
|
|
680
680
|
:type ImageUrl: str
|
681
681
|
:param _RequiredSystemDiskSize: 镜像所需系统盘大小,单位 GB。
|
682
682
|
:type RequiredSystemDiskSize: int
|
683
|
-
:param _BlueprintState:
|
683
|
+
:param _BlueprintState: 镜像状态。
|
684
|
+
可选值:
|
685
|
+
NORMAL(正常)、SYNCING(同步中)、OFFLINE(下线)、ISOLATED(已隔离)、CREATEFAILED(创建失败)、SYNCING_FAILED(目的地域同步失败)、ISOLATING(隔离中)、ISOLATED(已隔离)、DELETING(删除中)、DESTROYING(销毁中)。
|
684
686
|
:type BlueprintState: str
|
685
687
|
:param _CreatedTime: 创建时间。按照 ISO8601 标准表示,并且使用 UTC 时间。
|
686
688
|
格式为: YYYY-MM-DDThh:mm:ssZ。
|
@@ -841,7 +843,9 @@ class Blueprint(AbstractModel):
|
|
841
843
|
|
842
844
|
@property
|
843
845
|
def BlueprintState(self):
|
844
|
-
"""
|
846
|
+
"""镜像状态。
|
847
|
+
可选值:
|
848
|
+
NORMAL(正常)、SYNCING(同步中)、OFFLINE(下线)、ISOLATED(已隔离)、CREATEFAILED(创建失败)、SYNCING_FAILED(目的地域同步失败)、ISOLATING(隔离中)、ISOLATED(已隔离)、DELETING(删除中)、DESTROYING(销毁中)。
|
845
849
|
:rtype: str
|
846
850
|
"""
|
847
851
|
return self._BlueprintState
|