tencentcloud-sdk-python 3.0.1347__py2.py3-none-any.whl → 3.0.1349__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/bh/v20230418/models.py +61 -23
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/captcha/v20190722/models.py +15 -30
- tencentcloud/cbs/v20170312/models.py +0 -4
- tencentcloud/ccc/v20200210/errorcodes.py +3 -0
- tencentcloud/ccc/v20200210/models.py +159 -2
- tencentcloud/cdwdoris/v20211228/models.py +300 -0
- tencentcloud/cdwpg/v20201230/models.py +98 -86
- tencentcloud/chc/v20230418/models.py +0 -30
- tencentcloud/clb/v20180317/models.py +48 -18
- tencentcloud/dbbrain/v20210527/models.py +0 -8
- tencentcloud/dbdc/v20201029/models.py +0 -16
- tencentcloud/dcdb/v20180411/errorcodes.py +3 -0
- tencentcloud/dcdb/v20180411/models.py +0 -64
- tencentcloud/dlc/v20210125/models.py +256 -16
- tencentcloud/emr/v20190103/models.py +15 -54
- tencentcloud/es/v20180416/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/models.py +12 -12
- tencentcloud/essbasic/v20210526/essbasic_client.py +2 -2
- tencentcloud/essbasic/v20210526/models.py +10 -10
- tencentcloud/gs/v20191118/models.py +4 -58
- tencentcloud/hai/v20230812/models.py +0 -96
- tencentcloud/hunyuan/v20230901/models.py +6 -4
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotvideo/v20191126/models.py +0 -4
- tencentcloud/iotvideo/v20201215/models.py +17 -0
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +1 -1
- tencentcloud/iotvideoindustry/v20201201/models.py +0 -30
- tencentcloud/lcic/v20220817/lcic_client.py +1 -1
- tencentcloud/lcic/v20220817/models.py +56 -68
- tencentcloud/live/v20180801/models.py +8 -24
- tencentcloud/lkeap/v20240522/lkeap_client.py +6 -0
- tencentcloud/mariadb/v20170312/models.py +4 -76
- tencentcloud/monitor/v20180724/models.py +95 -14
- tencentcloud/mps/v20190612/models.py +260 -0
- tencentcloud/mqtt/v20240516/models.py +402 -284
- tencentcloud/mqtt/v20240516/mqtt_client.py +2 -2
- tencentcloud/organization/v20210331/models.py +30 -0
- tencentcloud/privatedns/v20201028/models.py +0 -22
- tencentcloud/taf/v20200210/models.py +270 -0
- tencentcloud/taf/v20200210/taf_client.py +23 -0
- tencentcloud/tbaas/v20180416/models.py +0 -58
- tencentcloud/tcb/v20180608/errorcodes.py +3 -0
- tencentcloud/tcr/v20190924/models.py +30 -154
- tencentcloud/tdmq/v20200217/models.py +0 -16
- tencentcloud/thpc/v20230321/models.py +34 -0
- tencentcloud/tke/v20180525/models.py +692 -622
- tencentcloud/tke/v20180525/tke_client.py +23 -0
- tencentcloud/trocket/v20230308/models.py +0 -24
- tencentcloud/tsf/v20180326/models.py +252 -196
- tencentcloud/vcube/v20220410/models.py +51 -158
- tencentcloud/vcube/v20220410/vcube_client.py +2 -2
- tencentcloud/vod/v20180717/errorcodes.py +3 -0
- tencentcloud/vod/v20180717/models.py +28 -260
- tencentcloud/vpc/v20170312/models.py +135 -0
- tencentcloud/wedata/v20210820/models.py +17 -0
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/RECORD +62 -62
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1349.dist-info}/top_level.txt +0 -0
@@ -13230,6 +13230,9 @@ class VideoProduct(AbstractModel):
|
|
13230
13230
|
:param _NetType: 连接类型,wifi表示WIFI连接,cellular表示4G连接
|
13231
13231
|
注意:此字段可能返回 null,表示取不到有效值。
|
13232
13232
|
:type NetType: str
|
13233
|
+
:param _CategoryId: 产品品类id,113:摄像头
|
13234
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13235
|
+
:type CategoryId: int
|
13233
13236
|
"""
|
13234
13237
|
self._ProductId = None
|
13235
13238
|
self._ProductName = None
|
@@ -13243,6 +13246,7 @@ class VideoProduct(AbstractModel):
|
|
13243
13246
|
self._CreateTime = None
|
13244
13247
|
self._UpdateTime = None
|
13245
13248
|
self._NetType = None
|
13249
|
+
self._CategoryId = None
|
13246
13250
|
|
13247
13251
|
@property
|
13248
13252
|
def ProductId(self):
|
@@ -13377,6 +13381,18 @@ class VideoProduct(AbstractModel):
|
|
13377
13381
|
def NetType(self, NetType):
|
13378
13382
|
self._NetType = NetType
|
13379
13383
|
|
13384
|
+
@property
|
13385
|
+
def CategoryId(self):
|
13386
|
+
"""产品品类id,113:摄像头
|
13387
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13388
|
+
:rtype: int
|
13389
|
+
"""
|
13390
|
+
return self._CategoryId
|
13391
|
+
|
13392
|
+
@CategoryId.setter
|
13393
|
+
def CategoryId(self, CategoryId):
|
13394
|
+
self._CategoryId = CategoryId
|
13395
|
+
|
13380
13396
|
|
13381
13397
|
def _deserialize(self, params):
|
13382
13398
|
self._ProductId = params.get("ProductId")
|
@@ -13391,6 +13407,7 @@ class VideoProduct(AbstractModel):
|
|
13391
13407
|
self._CreateTime = params.get("CreateTime")
|
13392
13408
|
self._UpdateTime = params.get("UpdateTime")
|
13393
13409
|
self._NetType = params.get("NetType")
|
13410
|
+
self._CategoryId = params.get("CategoryId")
|
13394
13411
|
memeber_set = set(params.keys())
|
13395
13412
|
for name, value in vars(self).items():
|
13396
13413
|
property_name = name[1:]
|
@@ -211,7 +211,7 @@ class IotvideoClient(AbstractClient):
|
|
211
211
|
|
212
212
|
|
213
213
|
def ChangeP2PRoute(self, request):
|
214
|
-
"""p2p
|
214
|
+
"""p2p路线切换(此接口目前处于内测接口,可以联系申请加白 )
|
215
215
|
|
216
216
|
:param request: Request instance for ChangeP2PRoute.
|
217
217
|
:type request: :class:`tencentcloud.iotvideo.v20211125.models.ChangeP2PRouteRequest`
|
@@ -12189,10 +12189,8 @@ class LiveRecordPlanItem(AbstractModel):
|
|
12189
12189
|
def __init__(self):
|
12190
12190
|
r"""
|
12191
12191
|
:param _PlanId: 计划ID
|
12192
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12193
12192
|
:type PlanId: str
|
12194
12193
|
:param _PlanName: 计划名称
|
12195
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12196
12194
|
:type PlanName: str
|
12197
12195
|
"""
|
12198
12196
|
self._PlanId = None
|
@@ -12201,7 +12199,6 @@ class LiveRecordPlanItem(AbstractModel):
|
|
12201
12199
|
@property
|
12202
12200
|
def PlanId(self):
|
12203
12201
|
"""计划ID
|
12204
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12205
12202
|
:rtype: str
|
12206
12203
|
"""
|
12207
12204
|
return self._PlanId
|
@@ -12213,7 +12210,6 @@ class LiveRecordPlanItem(AbstractModel):
|
|
12213
12210
|
@property
|
12214
12211
|
def PlanName(self):
|
12215
12212
|
"""计划名称
|
12216
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12217
12213
|
:rtype: str
|
12218
12214
|
"""
|
12219
12215
|
return self._PlanName
|
@@ -14127,13 +14123,10 @@ class RecordStatisticValue(AbstractModel):
|
|
14127
14123
|
def __init__(self):
|
14128
14124
|
r"""
|
14129
14125
|
:param _ExpectTimeLen: 期望执行时间 秒
|
14130
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14131
14126
|
:type ExpectTimeLen: int
|
14132
14127
|
:param _RecordTimeLen: 实际执行时间 秒
|
14133
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14134
14128
|
:type RecordTimeLen: int
|
14135
14129
|
:param _FileSize: 存储大小 G
|
14136
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14137
14130
|
:type FileSize: float
|
14138
14131
|
"""
|
14139
14132
|
self._ExpectTimeLen = None
|
@@ -14143,7 +14136,6 @@ class RecordStatisticValue(AbstractModel):
|
|
14143
14136
|
@property
|
14144
14137
|
def ExpectTimeLen(self):
|
14145
14138
|
"""期望执行时间 秒
|
14146
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14147
14139
|
:rtype: int
|
14148
14140
|
"""
|
14149
14141
|
return self._ExpectTimeLen
|
@@ -14155,7 +14147,6 @@ class RecordStatisticValue(AbstractModel):
|
|
14155
14147
|
@property
|
14156
14148
|
def RecordTimeLen(self):
|
14157
14149
|
"""实际执行时间 秒
|
14158
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14159
14150
|
:rtype: int
|
14160
14151
|
"""
|
14161
14152
|
return self._RecordTimeLen
|
@@ -14167,7 +14158,6 @@ class RecordStatisticValue(AbstractModel):
|
|
14167
14158
|
@property
|
14168
14159
|
def FileSize(self):
|
14169
14160
|
"""存储大小 G
|
14170
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14171
14161
|
:rtype: float
|
14172
14162
|
"""
|
14173
14163
|
return self._FileSize
|
@@ -14671,10 +14661,8 @@ class StatisticItem(AbstractModel):
|
|
14671
14661
|
def __init__(self):
|
14672
14662
|
r"""
|
14673
14663
|
:param _Date: 日期。格式【YYYY-MM-DD】
|
14674
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14675
14664
|
:type Date: str
|
14676
14665
|
:param _Sum: 统计数额
|
14677
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14678
14666
|
:type Sum: float
|
14679
14667
|
"""
|
14680
14668
|
self._Date = None
|
@@ -14683,7 +14671,6 @@ class StatisticItem(AbstractModel):
|
|
14683
14671
|
@property
|
14684
14672
|
def Date(self):
|
14685
14673
|
"""日期。格式【YYYY-MM-DD】
|
14686
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14687
14674
|
:rtype: str
|
14688
14675
|
"""
|
14689
14676
|
return self._Date
|
@@ -14695,7 +14682,6 @@ class StatisticItem(AbstractModel):
|
|
14695
14682
|
@property
|
14696
14683
|
def Sum(self):
|
14697
14684
|
"""统计数额
|
14698
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14699
14685
|
:rtype: float
|
14700
14686
|
"""
|
14701
14687
|
return self._Sum
|
@@ -14726,19 +14712,14 @@ class StreamAddress(AbstractModel):
|
|
14726
14712
|
def __init__(self):
|
14727
14713
|
r"""
|
14728
14714
|
:param _StreamId: 流ID
|
14729
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14730
14715
|
:type StreamId: str
|
14731
14716
|
:param _RtspAddr: rtsp流地址
|
14732
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14733
14717
|
:type RtspAddr: str
|
14734
14718
|
:param _RtmpAddr: rtmp流地址
|
14735
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14736
14719
|
:type RtmpAddr: str
|
14737
14720
|
:param _HlsAddr: hls流地址
|
14738
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14739
14721
|
:type HlsAddr: str
|
14740
14722
|
:param _FlvAddr: flv流地址
|
14741
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14742
14723
|
:type FlvAddr: str
|
14743
14724
|
"""
|
14744
14725
|
self._StreamId = None
|
@@ -14750,7 +14731,6 @@ class StreamAddress(AbstractModel):
|
|
14750
14731
|
@property
|
14751
14732
|
def StreamId(self):
|
14752
14733
|
"""流ID
|
14753
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14754
14734
|
:rtype: str
|
14755
14735
|
"""
|
14756
14736
|
return self._StreamId
|
@@ -14762,7 +14742,6 @@ class StreamAddress(AbstractModel):
|
|
14762
14742
|
@property
|
14763
14743
|
def RtspAddr(self):
|
14764
14744
|
"""rtsp流地址
|
14765
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14766
14745
|
:rtype: str
|
14767
14746
|
"""
|
14768
14747
|
return self._RtspAddr
|
@@ -14774,7 +14753,6 @@ class StreamAddress(AbstractModel):
|
|
14774
14753
|
@property
|
14775
14754
|
def RtmpAddr(self):
|
14776
14755
|
"""rtmp流地址
|
14777
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14778
14756
|
:rtype: str
|
14779
14757
|
"""
|
14780
14758
|
return self._RtmpAddr
|
@@ -14786,7 +14764,6 @@ class StreamAddress(AbstractModel):
|
|
14786
14764
|
@property
|
14787
14765
|
def HlsAddr(self):
|
14788
14766
|
"""hls流地址
|
14789
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14790
14767
|
:rtype: str
|
14791
14768
|
"""
|
14792
14769
|
return self._HlsAddr
|
@@ -14798,7 +14775,6 @@ class StreamAddress(AbstractModel):
|
|
14798
14775
|
@property
|
14799
14776
|
def FlvAddr(self):
|
14800
14777
|
"""flv流地址
|
14801
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14802
14778
|
:rtype: str
|
14803
14779
|
"""
|
14804
14780
|
return self._FlvAddr
|
@@ -14933,13 +14909,10 @@ class TimeTemplateSpec(AbstractModel):
|
|
14933
14909
|
def __init__(self):
|
14934
14910
|
r"""
|
14935
14911
|
:param _DayofWeek: 一周中的周几
|
14936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14937
14912
|
:type DayofWeek: int
|
14938
14913
|
:param _BeginTime: 时间片段的开始时分。格式【HH:MM】
|
14939
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14940
14914
|
:type BeginTime: str
|
14941
14915
|
:param _EndTime: 时间片段的结束时分。格式【HH:MM】
|
14942
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14943
14916
|
:type EndTime: str
|
14944
14917
|
"""
|
14945
14918
|
self._DayofWeek = None
|
@@ -14949,7 +14922,6 @@ class TimeTemplateSpec(AbstractModel):
|
|
14949
14922
|
@property
|
14950
14923
|
def DayofWeek(self):
|
14951
14924
|
"""一周中的周几
|
14952
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14953
14925
|
:rtype: int
|
14954
14926
|
"""
|
14955
14927
|
return self._DayofWeek
|
@@ -14961,7 +14933,6 @@ class TimeTemplateSpec(AbstractModel):
|
|
14961
14933
|
@property
|
14962
14934
|
def BeginTime(self):
|
14963
14935
|
"""时间片段的开始时分。格式【HH:MM】
|
14964
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14965
14936
|
:rtype: str
|
14966
14937
|
"""
|
14967
14938
|
return self._BeginTime
|
@@ -14973,7 +14944,6 @@ class TimeTemplateSpec(AbstractModel):
|
|
14973
14944
|
@property
|
14974
14945
|
def EndTime(self):
|
14975
14946
|
"""时间片段的结束时分。格式【HH:MM】
|
14976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14977
14947
|
:rtype: str
|
14978
14948
|
"""
|
14979
14949
|
return self._EndTime
|