tencentcloud-sdk-python 3.0.1198__py2.py3-none-any.whl → 3.0.1200__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/aiart/v20221229/models.py +10 -12
- tencentcloud/cfg/v20210820/cfg_client.py +92 -0
- tencentcloud/cfg/v20210820/models.py +1384 -49
- tencentcloud/cfw/v20190904/models.py +15 -2
- tencentcloud/cls/v20201016/models.py +28 -9
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +163 -0
- tencentcloud/cwp/v20180228/models.py +26 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +1 -0
- tencentcloud/essbasic/v20210526/models.py +12 -0
- tencentcloud/iotexplorer/v20190423/errorcodes.py +3 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotexplorer/v20190423/models.py +28 -29
- tencentcloud/lcic/v20220817/lcic_client.py +23 -0
- tencentcloud/lcic/v20220817/models.py +82 -0
- tencentcloud/live/v20180801/models.py +1 -1
- tencentcloud/lke/v20231130/models.py +7 -7
- tencentcloud/ocr/v20181119/models.py +12 -0
- tencentcloud/trtc/v20190722/models.py +131 -0
- tencentcloud/trtc/v20190722/trtc_client.py +23 -0
- tencentcloud/vclm/v20240523/errorcodes.py +18 -0
- tencentcloud/vclm/v20240523/models.py +212 -0
- tencentcloud/vclm/v20240523/vclm_client.py +48 -0
- tencentcloud/vpc/v20170312/models.py +1 -0
- {tencentcloud_sdk_python-3.0.1198.dist-info → tencentcloud_sdk_python-3.0.1200.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1198.dist-info → tencentcloud_sdk_python-3.0.1200.dist-info}/RECORD +30 -30
- {tencentcloud_sdk_python-3.0.1198.dist-info → tencentcloud_sdk_python-3.0.1200.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1198.dist-info → tencentcloud_sdk_python-3.0.1200.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1198.dist-info → tencentcloud_sdk_python-3.0.1200.dist-info}/top_level.txt +0 -0
@@ -5341,6 +5341,9 @@ class DescAcItem(AbstractModel):
|
|
5341
5341
|
:param _TargetName: 访问目的名称
|
5342
5342
|
注意:此字段可能返回 null,表示取不到有效值。
|
5343
5343
|
:type TargetName: str
|
5344
|
+
:param _LastHitTime: 规则最近命中时间
|
5345
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5346
|
+
:type LastHitTime: str
|
5344
5347
|
"""
|
5345
5348
|
self._SourceContent = None
|
5346
5349
|
self._TargetContent = None
|
@@ -5373,6 +5376,7 @@ class DescAcItem(AbstractModel):
|
|
5373
5376
|
self._ParamTemplateId = None
|
5374
5377
|
self._SourceName = None
|
5375
5378
|
self._TargetName = None
|
5379
|
+
self._LastHitTime = None
|
5376
5380
|
|
5377
5381
|
@property
|
5378
5382
|
def SourceContent(self):
|
@@ -5622,6 +5626,14 @@ class DescAcItem(AbstractModel):
|
|
5622
5626
|
def TargetName(self, TargetName):
|
5623
5627
|
self._TargetName = TargetName
|
5624
5628
|
|
5629
|
+
@property
|
5630
|
+
def LastHitTime(self):
|
5631
|
+
return self._LastHitTime
|
5632
|
+
|
5633
|
+
@LastHitTime.setter
|
5634
|
+
def LastHitTime(self, LastHitTime):
|
5635
|
+
self._LastHitTime = LastHitTime
|
5636
|
+
|
5625
5637
|
|
5626
5638
|
def _deserialize(self, params):
|
5627
5639
|
self._SourceContent = params.get("SourceContent")
|
@@ -5660,6 +5672,7 @@ class DescAcItem(AbstractModel):
|
|
5660
5672
|
self._ParamTemplateId = params.get("ParamTemplateId")
|
5661
5673
|
self._SourceName = params.get("SourceName")
|
5662
5674
|
self._TargetName = params.get("TargetName")
|
5675
|
+
self._LastHitTime = params.get("LastHitTime")
|
5663
5676
|
memeber_set = set(params.keys())
|
5664
5677
|
for name, value in vars(self).items():
|
5665
5678
|
property_name = name[1:]
|
@@ -6366,9 +6379,9 @@ class DescribeAddressTemplateListResponse(AbstractModel):
|
|
6366
6379
|
:type DomainTemplateCount: int
|
6367
6380
|
:param _PortTemplateCount: 协议端口模板数量
|
6368
6381
|
:type PortTemplateCount: int
|
6369
|
-
:param _UsedTemplateCount:
|
6382
|
+
:param _UsedTemplateCount: 已使用的地址模板数
|
6370
6383
|
:type UsedTemplateCount: int
|
6371
|
-
:param _TemplateQuotaCount:
|
6384
|
+
:param _TemplateQuotaCount: 地址模板配额数量
|
6372
6385
|
:type TemplateQuotaCount: int
|
6373
6386
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6374
6387
|
:type RequestId: str
|
@@ -7313,6 +7313,9 @@ class DataTransformTaskInfo(AbstractModel):
|
|
7313
7313
|
:type DstResources: list of DataTransformResouceInfo
|
7314
7314
|
:param _EtlContent: 加工逻辑函数。
|
7315
7315
|
:type EtlContent: str
|
7316
|
+
:param _DataTransformType: 数据加工类型。0:标准加工任务;1:前置加工任务。
|
7317
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7318
|
+
:type DataTransformType: int
|
7316
7319
|
"""
|
7317
7320
|
self._Name = None
|
7318
7321
|
self._TaskId = None
|
@@ -7327,6 +7330,7 @@ class DataTransformTaskInfo(AbstractModel):
|
|
7327
7330
|
self._LogsetId = None
|
7328
7331
|
self._DstResources = None
|
7329
7332
|
self._EtlContent = None
|
7333
|
+
self._DataTransformType = None
|
7330
7334
|
|
7331
7335
|
@property
|
7332
7336
|
def Name(self):
|
@@ -7432,6 +7436,14 @@ class DataTransformTaskInfo(AbstractModel):
|
|
7432
7436
|
def EtlContent(self, EtlContent):
|
7433
7437
|
self._EtlContent = EtlContent
|
7434
7438
|
|
7439
|
+
@property
|
7440
|
+
def DataTransformType(self):
|
7441
|
+
return self._DataTransformType
|
7442
|
+
|
7443
|
+
@DataTransformType.setter
|
7444
|
+
def DataTransformType(self, DataTransformType):
|
7445
|
+
self._DataTransformType = DataTransformType
|
7446
|
+
|
7435
7447
|
|
7436
7448
|
def _deserialize(self, params):
|
7437
7449
|
self._Name = params.get("Name")
|
@@ -7452,6 +7464,7 @@ class DataTransformTaskInfo(AbstractModel):
|
|
7452
7464
|
obj._deserialize(item)
|
7453
7465
|
self._DstResources.append(obj)
|
7454
7466
|
self._EtlContent = params.get("EtlContent")
|
7467
|
+
self._DataTransformType = params.get("DataTransformType")
|
7455
7468
|
memeber_set = set(params.keys())
|
7456
7469
|
for name, value in vars(self).items():
|
7457
7470
|
property_name = name[1:]
|
@@ -9837,25 +9850,31 @@ class DescribeDataTransformInfoRequest(AbstractModel):
|
|
9837
9850
|
|
9838
9851
|
def __init__(self):
|
9839
9852
|
r"""
|
9840
|
-
:param _Filters:
|
9841
|
-
|
9853
|
+
:param _Filters: - taskName
|
9842
9854
|
按照【加工任务名称】进行过滤。
|
9843
9855
|
类型:String
|
9844
|
-
|
9845
9856
|
必选:否
|
9846
9857
|
|
9847
|
-
|
9848
|
-
|
9858
|
+
- taskId
|
9849
9859
|
按照【加工任务id】进行过滤。
|
9850
9860
|
类型:String
|
9851
|
-
|
9852
9861
|
必选:否
|
9853
9862
|
|
9854
|
-
|
9855
|
-
|
9863
|
+
- topicId
|
9856
9864
|
按照【源topicId】进行过滤。
|
9857
9865
|
类型:String
|
9858
|
-
|
9866
|
+
必选:否
|
9867
|
+
- status
|
9868
|
+
按照【 任务运行状态】进行过滤。 1:准备中,2:运行中,3:停止中,4:已停止
|
9869
|
+
类型:String
|
9870
|
+
必选:否
|
9871
|
+
- hasServiceLog
|
9872
|
+
按照【是否开启服务日志】进行过滤。 1:未开启,2:已开启
|
9873
|
+
类型:String
|
9874
|
+
必选:否
|
9875
|
+
- dstTopicType
|
9876
|
+
按照【目标topic类型】进行过滤。 1:固定,2:动态
|
9877
|
+
类型:String
|
9859
9878
|
必选:否
|
9860
9879
|
|
9861
9880
|
每次请求的Filters的上限为10,Filter.Values的上限为100。
|
@@ -187,6 +187,29 @@ class CsipClient(AbstractClient):
|
|
187
187
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
188
188
|
|
189
189
|
|
190
|
+
def DescribeCFWAssetStatistics(self, request):
|
191
|
+
"""云防资产中心统计数据
|
192
|
+
|
193
|
+
:param request: Request instance for DescribeCFWAssetStatistics.
|
194
|
+
:type request: :class:`tencentcloud.csip.v20221121.models.DescribeCFWAssetStatisticsRequest`
|
195
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.DescribeCFWAssetStatisticsResponse`
|
196
|
+
|
197
|
+
"""
|
198
|
+
try:
|
199
|
+
params = request._serialize()
|
200
|
+
headers = request.headers
|
201
|
+
body = self.call("DescribeCFWAssetStatistics", params, headers=headers)
|
202
|
+
response = json.loads(body)
|
203
|
+
model = models.DescribeCFWAssetStatisticsResponse()
|
204
|
+
model._deserialize(response["Response"])
|
205
|
+
return model
|
206
|
+
except Exception as e:
|
207
|
+
if isinstance(e, TencentCloudSDKException):
|
208
|
+
raise
|
209
|
+
else:
|
210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
211
|
+
|
212
|
+
|
190
213
|
def DescribeCVMAssetInfo(self, request):
|
191
214
|
"""cvm详情
|
192
215
|
|
@@ -6951,6 +6951,169 @@ class DescribeAssetViewVulRiskListResponse(AbstractModel):
|
|
6951
6951
|
self._RequestId = params.get("RequestId")
|
6952
6952
|
|
6953
6953
|
|
6954
|
+
class DescribeCFWAssetStatisticsRequest(AbstractModel):
|
6955
|
+
"""DescribeCFWAssetStatistics请求参数结构体
|
6956
|
+
|
6957
|
+
"""
|
6958
|
+
|
6959
|
+
|
6960
|
+
class DescribeCFWAssetStatisticsResponse(AbstractModel):
|
6961
|
+
"""DescribeCFWAssetStatistics返回参数结构体
|
6962
|
+
|
6963
|
+
"""
|
6964
|
+
|
6965
|
+
def __init__(self):
|
6966
|
+
r"""
|
6967
|
+
:param _NetworkTotal: 网络资产总数
|
6968
|
+
:type NetworkTotal: int
|
6969
|
+
:param _ClbTotal: 资产clb数量
|
6970
|
+
:type ClbTotal: int
|
6971
|
+
:param _NatTotal: nat数量
|
6972
|
+
:type NatTotal: int
|
6973
|
+
:param _PublicAssetTotal: 公网ip数量
|
6974
|
+
:type PublicAssetTotal: int
|
6975
|
+
:param _CVMAssetTotal: 主机数量
|
6976
|
+
:type CVMAssetTotal: int
|
6977
|
+
:param _CFGTotal: 配置风险
|
6978
|
+
:type CFGTotal: int
|
6979
|
+
:param _PortTotal: 端口风险
|
6980
|
+
:type PortTotal: int
|
6981
|
+
:param _WebsiteTotal: 内容风险
|
6982
|
+
:type WebsiteTotal: int
|
6983
|
+
:param _ServerTotal: 风险服务暴露
|
6984
|
+
:type ServerTotal: int
|
6985
|
+
:param _WeakPasswordTotal: 弱口令风险
|
6986
|
+
:type WeakPasswordTotal: int
|
6987
|
+
:param _VULTotal: 漏洞风险
|
6988
|
+
:type VULTotal: int
|
6989
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6990
|
+
:type RequestId: str
|
6991
|
+
"""
|
6992
|
+
self._NetworkTotal = None
|
6993
|
+
self._ClbTotal = None
|
6994
|
+
self._NatTotal = None
|
6995
|
+
self._PublicAssetTotal = None
|
6996
|
+
self._CVMAssetTotal = None
|
6997
|
+
self._CFGTotal = None
|
6998
|
+
self._PortTotal = None
|
6999
|
+
self._WebsiteTotal = None
|
7000
|
+
self._ServerTotal = None
|
7001
|
+
self._WeakPasswordTotal = None
|
7002
|
+
self._VULTotal = None
|
7003
|
+
self._RequestId = None
|
7004
|
+
|
7005
|
+
@property
|
7006
|
+
def NetworkTotal(self):
|
7007
|
+
return self._NetworkTotal
|
7008
|
+
|
7009
|
+
@NetworkTotal.setter
|
7010
|
+
def NetworkTotal(self, NetworkTotal):
|
7011
|
+
self._NetworkTotal = NetworkTotal
|
7012
|
+
|
7013
|
+
@property
|
7014
|
+
def ClbTotal(self):
|
7015
|
+
return self._ClbTotal
|
7016
|
+
|
7017
|
+
@ClbTotal.setter
|
7018
|
+
def ClbTotal(self, ClbTotal):
|
7019
|
+
self._ClbTotal = ClbTotal
|
7020
|
+
|
7021
|
+
@property
|
7022
|
+
def NatTotal(self):
|
7023
|
+
return self._NatTotal
|
7024
|
+
|
7025
|
+
@NatTotal.setter
|
7026
|
+
def NatTotal(self, NatTotal):
|
7027
|
+
self._NatTotal = NatTotal
|
7028
|
+
|
7029
|
+
@property
|
7030
|
+
def PublicAssetTotal(self):
|
7031
|
+
return self._PublicAssetTotal
|
7032
|
+
|
7033
|
+
@PublicAssetTotal.setter
|
7034
|
+
def PublicAssetTotal(self, PublicAssetTotal):
|
7035
|
+
self._PublicAssetTotal = PublicAssetTotal
|
7036
|
+
|
7037
|
+
@property
|
7038
|
+
def CVMAssetTotal(self):
|
7039
|
+
return self._CVMAssetTotal
|
7040
|
+
|
7041
|
+
@CVMAssetTotal.setter
|
7042
|
+
def CVMAssetTotal(self, CVMAssetTotal):
|
7043
|
+
self._CVMAssetTotal = CVMAssetTotal
|
7044
|
+
|
7045
|
+
@property
|
7046
|
+
def CFGTotal(self):
|
7047
|
+
return self._CFGTotal
|
7048
|
+
|
7049
|
+
@CFGTotal.setter
|
7050
|
+
def CFGTotal(self, CFGTotal):
|
7051
|
+
self._CFGTotal = CFGTotal
|
7052
|
+
|
7053
|
+
@property
|
7054
|
+
def PortTotal(self):
|
7055
|
+
return self._PortTotal
|
7056
|
+
|
7057
|
+
@PortTotal.setter
|
7058
|
+
def PortTotal(self, PortTotal):
|
7059
|
+
self._PortTotal = PortTotal
|
7060
|
+
|
7061
|
+
@property
|
7062
|
+
def WebsiteTotal(self):
|
7063
|
+
return self._WebsiteTotal
|
7064
|
+
|
7065
|
+
@WebsiteTotal.setter
|
7066
|
+
def WebsiteTotal(self, WebsiteTotal):
|
7067
|
+
self._WebsiteTotal = WebsiteTotal
|
7068
|
+
|
7069
|
+
@property
|
7070
|
+
def ServerTotal(self):
|
7071
|
+
return self._ServerTotal
|
7072
|
+
|
7073
|
+
@ServerTotal.setter
|
7074
|
+
def ServerTotal(self, ServerTotal):
|
7075
|
+
self._ServerTotal = ServerTotal
|
7076
|
+
|
7077
|
+
@property
|
7078
|
+
def WeakPasswordTotal(self):
|
7079
|
+
return self._WeakPasswordTotal
|
7080
|
+
|
7081
|
+
@WeakPasswordTotal.setter
|
7082
|
+
def WeakPasswordTotal(self, WeakPasswordTotal):
|
7083
|
+
self._WeakPasswordTotal = WeakPasswordTotal
|
7084
|
+
|
7085
|
+
@property
|
7086
|
+
def VULTotal(self):
|
7087
|
+
return self._VULTotal
|
7088
|
+
|
7089
|
+
@VULTotal.setter
|
7090
|
+
def VULTotal(self, VULTotal):
|
7091
|
+
self._VULTotal = VULTotal
|
7092
|
+
|
7093
|
+
@property
|
7094
|
+
def RequestId(self):
|
7095
|
+
return self._RequestId
|
7096
|
+
|
7097
|
+
@RequestId.setter
|
7098
|
+
def RequestId(self, RequestId):
|
7099
|
+
self._RequestId = RequestId
|
7100
|
+
|
7101
|
+
|
7102
|
+
def _deserialize(self, params):
|
7103
|
+
self._NetworkTotal = params.get("NetworkTotal")
|
7104
|
+
self._ClbTotal = params.get("ClbTotal")
|
7105
|
+
self._NatTotal = params.get("NatTotal")
|
7106
|
+
self._PublicAssetTotal = params.get("PublicAssetTotal")
|
7107
|
+
self._CVMAssetTotal = params.get("CVMAssetTotal")
|
7108
|
+
self._CFGTotal = params.get("CFGTotal")
|
7109
|
+
self._PortTotal = params.get("PortTotal")
|
7110
|
+
self._WebsiteTotal = params.get("WebsiteTotal")
|
7111
|
+
self._ServerTotal = params.get("ServerTotal")
|
7112
|
+
self._WeakPasswordTotal = params.get("WeakPasswordTotal")
|
7113
|
+
self._VULTotal = params.get("VULTotal")
|
7114
|
+
self._RequestId = params.get("RequestId")
|
7115
|
+
|
7116
|
+
|
6954
7117
|
class DescribeCVMAssetInfoRequest(AbstractModel):
|
6955
7118
|
"""DescribeCVMAssetInfo请求参数结构体
|
6956
7119
|
|
@@ -10592,6 +10592,9 @@ class BashEvent(AbstractModel):
|
|
10592
10592
|
:param _RegexBashCmd: 自动生成的正则表达式
|
10593
10593
|
注意:此字段可能返回 null,表示取不到有效值。
|
10594
10594
|
:type RegexBashCmd: str
|
10595
|
+
:param _HostName: 主机HostName
|
10596
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10597
|
+
:type HostName: str
|
10595
10598
|
"""
|
10596
10599
|
self._Id = None
|
10597
10600
|
self._Uuid = None
|
@@ -10612,6 +10615,7 @@ class BashEvent(AbstractModel):
|
|
10612
10615
|
self._ModifyTime = None
|
10613
10616
|
self._RuleCategory = None
|
10614
10617
|
self._RegexBashCmd = None
|
10618
|
+
self._HostName = None
|
10615
10619
|
|
10616
10620
|
@property
|
10617
10621
|
def Id(self):
|
@@ -10765,6 +10769,14 @@ class BashEvent(AbstractModel):
|
|
10765
10769
|
def RegexBashCmd(self, RegexBashCmd):
|
10766
10770
|
self._RegexBashCmd = RegexBashCmd
|
10767
10771
|
|
10772
|
+
@property
|
10773
|
+
def HostName(self):
|
10774
|
+
return self._HostName
|
10775
|
+
|
10776
|
+
@HostName.setter
|
10777
|
+
def HostName(self, HostName):
|
10778
|
+
self._HostName = HostName
|
10779
|
+
|
10768
10780
|
|
10769
10781
|
def _deserialize(self, params):
|
10770
10782
|
self._Id = params.get("Id")
|
@@ -10786,6 +10798,7 @@ class BashEvent(AbstractModel):
|
|
10786
10798
|
self._ModifyTime = params.get("ModifyTime")
|
10787
10799
|
self._RuleCategory = params.get("RuleCategory")
|
10788
10800
|
self._RegexBashCmd = params.get("RegexBashCmd")
|
10801
|
+
self._HostName = params.get("HostName")
|
10789
10802
|
memeber_set = set(params.keys())
|
10790
10803
|
for name, value in vars(self).items():
|
10791
10804
|
property_name = name[1:]
|
@@ -11149,6 +11162,9 @@ class BashEventsInfo(AbstractModel):
|
|
11149
11162
|
:param _Pid: 进程号
|
11150
11163
|
注意:此字段可能返回 null,表示取不到有效值。
|
11151
11164
|
:type Pid: str
|
11165
|
+
:param _DetectBy: 数据来源
|
11166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11167
|
+
:type DetectBy: str
|
11152
11168
|
"""
|
11153
11169
|
self._Id = None
|
11154
11170
|
self._Uuid = None
|
@@ -11175,6 +11191,7 @@ class BashEventsInfo(AbstractModel):
|
|
11175
11191
|
self._MachineStatus = None
|
11176
11192
|
self._User = None
|
11177
11193
|
self._Pid = None
|
11194
|
+
self._DetectBy = None
|
11178
11195
|
|
11179
11196
|
@property
|
11180
11197
|
def Id(self):
|
@@ -11376,6 +11393,14 @@ class BashEventsInfo(AbstractModel):
|
|
11376
11393
|
def Pid(self, Pid):
|
11377
11394
|
self._Pid = Pid
|
11378
11395
|
|
11396
|
+
@property
|
11397
|
+
def DetectBy(self):
|
11398
|
+
return self._DetectBy
|
11399
|
+
|
11400
|
+
@DetectBy.setter
|
11401
|
+
def DetectBy(self, DetectBy):
|
11402
|
+
self._DetectBy = DetectBy
|
11403
|
+
|
11379
11404
|
|
11380
11405
|
def _deserialize(self, params):
|
11381
11406
|
self._Id = params.get("Id")
|
@@ -11403,6 +11428,7 @@ class BashEventsInfo(AbstractModel):
|
|
11403
11428
|
self._MachineStatus = params.get("MachineStatus")
|
11404
11429
|
self._User = params.get("User")
|
11405
11430
|
self._Pid = params.get("Pid")
|
11431
|
+
self._DetectBy = params.get("DetectBy")
|
11406
11432
|
memeber_set = set(params.keys())
|
11407
11433
|
for name, value in vars(self).items():
|
11408
11434
|
property_name = name[1:]
|
@@ -420,6 +420,7 @@ class DnspodClient(AbstractClient):
|
|
420
420
|
|
421
421
|
def DeleteRecordBatch(self, request):
|
422
422
|
"""批量删除解析记录
|
423
|
+
备注:因存储限制, 建议一次批量删除最多2000条
|
423
424
|
|
424
425
|
:param request: Request instance for DeleteRecordBatch.
|
425
426
|
:type request: :class:`tencentcloud.dnspod.v20210323.models.DeleteRecordBatchRequest`
|
@@ -11216,12 +11216,15 @@ class CreatePartnerAutoSignAuthUrlRequest(AbstractModel):
|
|
11216
11216
|
- FINANCE : 财务专用章
|
11217
11217
|
- PERSONNEL : 人事专用章
|
11218
11218
|
:type SealTypes: list of str
|
11219
|
+
:param _AuthToMe: 他方授权给我方:- false:我方授权他方,AuthorizedOrganizationName代表【被授权方】企业名称- true:他方授权我方,AuthorizedOrganizationName代表【授权方】企业名称
|
11220
|
+
:type AuthToMe: bool
|
11219
11221
|
"""
|
11220
11222
|
self._Agent = None
|
11221
11223
|
self._AuthorizedOrganizationId = None
|
11222
11224
|
self._AuthorizedOrganizationName = None
|
11223
11225
|
self._PlatformAppAuthorization = None
|
11224
11226
|
self._SealTypes = None
|
11227
|
+
self._AuthToMe = None
|
11225
11228
|
|
11226
11229
|
@property
|
11227
11230
|
def Agent(self):
|
@@ -11263,6 +11266,14 @@ class CreatePartnerAutoSignAuthUrlRequest(AbstractModel):
|
|
11263
11266
|
def SealTypes(self, SealTypes):
|
11264
11267
|
self._SealTypes = SealTypes
|
11265
11268
|
|
11269
|
+
@property
|
11270
|
+
def AuthToMe(self):
|
11271
|
+
return self._AuthToMe
|
11272
|
+
|
11273
|
+
@AuthToMe.setter
|
11274
|
+
def AuthToMe(self, AuthToMe):
|
11275
|
+
self._AuthToMe = AuthToMe
|
11276
|
+
|
11266
11277
|
|
11267
11278
|
def _deserialize(self, params):
|
11268
11279
|
if params.get("Agent") is not None:
|
@@ -11272,6 +11283,7 @@ class CreatePartnerAutoSignAuthUrlRequest(AbstractModel):
|
|
11272
11283
|
self._AuthorizedOrganizationName = params.get("AuthorizedOrganizationName")
|
11273
11284
|
self._PlatformAppAuthorization = params.get("PlatformAppAuthorization")
|
11274
11285
|
self._SealTypes = params.get("SealTypes")
|
11286
|
+
self._AuthToMe = params.get("AuthToMe")
|
11275
11287
|
memeber_set = set(params.keys())
|
11276
11288
|
for name, value in vars(self).items():
|
11277
11289
|
property_name = name[1:]
|
@@ -47,6 +47,9 @@ FAILEDOPERATION_DEVICEOFFLINE = 'FailedOperation.DeviceOffline'
|
|
47
47
|
# 存在其他升级任务。
|
48
48
|
FAILEDOPERATION_OTHERUPDATETASKEXIST = 'FailedOperation.OtherUpdateTaskExist'
|
49
49
|
|
50
|
+
# 产品未开通 IoT Video 服务
|
51
|
+
FAILEDOPERATION_PRODUCTIOTVIDEOSERVICENOTENABLED = 'FailedOperation.ProductIotVideoServiceNotEnabled'
|
52
|
+
|
50
53
|
# 产品尚未发布。
|
51
54
|
FAILEDOPERATION_PRODUCTNOTRELEASED = 'FailedOperation.ProductNotReleased'
|
52
55
|
|
@@ -2534,7 +2534,7 @@ class IotexplorerClient(AbstractClient):
|
|
2534
2534
|
|
2535
2535
|
|
2536
2536
|
def ModifyCloudStorageAIService(self, request):
|
2537
|
-
"""修改指定设备的云存 AI
|
2537
|
+
"""修改指定设备的云存 AI 服务参数配置
|
2538
2538
|
|
2539
2539
|
:param request: Request instance for ModifyCloudStorageAIService.
|
2540
2540
|
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.ModifyCloudStorageAIServiceRequest`
|
@@ -4718,7 +4718,7 @@ class DescribeCloudStorageAIServiceCallbackRequest(AbstractModel):
|
|
4718
4718
|
|
4719
4719
|
def __init__(self):
|
4720
4720
|
r"""
|
4721
|
-
:param _ProductId: 产品ID
|
4721
|
+
:param _ProductId: 产品 ID
|
4722
4722
|
:type ProductId: str
|
4723
4723
|
"""
|
4724
4724
|
self._ProductId = None
|
@@ -4814,13 +4814,12 @@ class DescribeCloudStorageAIServiceRequest(AbstractModel):
|
|
4814
4814
|
|
4815
4815
|
def __init__(self):
|
4816
4816
|
r"""
|
4817
|
-
:param _ProductId: 产品ID
|
4817
|
+
:param _ProductId: 产品 ID
|
4818
4818
|
:type ProductId: str
|
4819
4819
|
:param _DeviceName: 设备名称
|
4820
4820
|
:type DeviceName: str
|
4821
4821
|
:param _ServiceType: 云存 AI 服务类型。可选值:
|
4822
|
-
|
4823
|
-
- `PackageDetect`:包裹检测
|
4822
|
+
- `RealtimeObjectDetect`:目标检测
|
4824
4823
|
- `Highlight`:视频浓缩
|
4825
4824
|
:type ServiceType: str
|
4826
4825
|
"""
|
@@ -4874,18 +4873,18 @@ class DescribeCloudStorageAIServiceResponse(AbstractModel):
|
|
4874
4873
|
|
4875
4874
|
def __init__(self):
|
4876
4875
|
r"""
|
4877
|
-
:param _Enabled:
|
4876
|
+
:param _Enabled: 视频分析启用状态
|
4878
4877
|
:type Enabled: bool
|
4879
|
-
:param
|
4880
|
-
:type ROI: str
|
4881
|
-
:param _Config: 云存 AI 服务的配置参数
|
4878
|
+
:param _Config: 视频分析配置参数
|
4882
4879
|
:type Config: str
|
4880
|
+
:param _ROI: 视频分析识别区域
|
4881
|
+
:type ROI: str
|
4883
4882
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4884
4883
|
:type RequestId: str
|
4885
4884
|
"""
|
4886
4885
|
self._Enabled = None
|
4887
|
-
self._ROI = None
|
4888
4886
|
self._Config = None
|
4887
|
+
self._ROI = None
|
4889
4888
|
self._RequestId = None
|
4890
4889
|
|
4891
4890
|
@property
|
@@ -4896,14 +4895,6 @@ class DescribeCloudStorageAIServiceResponse(AbstractModel):
|
|
4896
4895
|
def Enabled(self, Enabled):
|
4897
4896
|
self._Enabled = Enabled
|
4898
4897
|
|
4899
|
-
@property
|
4900
|
-
def ROI(self):
|
4901
|
-
return self._ROI
|
4902
|
-
|
4903
|
-
@ROI.setter
|
4904
|
-
def ROI(self, ROI):
|
4905
|
-
self._ROI = ROI
|
4906
|
-
|
4907
4898
|
@property
|
4908
4899
|
def Config(self):
|
4909
4900
|
return self._Config
|
@@ -4912,6 +4903,14 @@ class DescribeCloudStorageAIServiceResponse(AbstractModel):
|
|
4912
4903
|
def Config(self, Config):
|
4913
4904
|
self._Config = Config
|
4914
4905
|
|
4906
|
+
@property
|
4907
|
+
def ROI(self):
|
4908
|
+
return self._ROI
|
4909
|
+
|
4910
|
+
@ROI.setter
|
4911
|
+
def ROI(self, ROI):
|
4912
|
+
self._ROI = ROI
|
4913
|
+
|
4915
4914
|
@property
|
4916
4915
|
def RequestId(self):
|
4917
4916
|
return self._RequestId
|
@@ -4923,8 +4922,8 @@ class DescribeCloudStorageAIServiceResponse(AbstractModel):
|
|
4923
4922
|
|
4924
4923
|
def _deserialize(self, params):
|
4925
4924
|
self._Enabled = params.get("Enabled")
|
4926
|
-
self._ROI = params.get("ROI")
|
4927
4925
|
self._Config = params.get("Config")
|
4926
|
+
self._ROI = params.get("ROI")
|
4928
4927
|
self._RequestId = params.get("RequestId")
|
4929
4928
|
|
4930
4929
|
|
@@ -5012,7 +5011,7 @@ class DescribeCloudStorageAIServiceTasksRequest(AbstractModel):
|
|
5012
5011
|
:param _DeviceName: 设备名称
|
5013
5012
|
:type DeviceName: str
|
5014
5013
|
:param _ServiceType: 云存 AI 服务类型。可选值:
|
5015
|
-
- `
|
5014
|
+
- `RealtimeObjectDetect`:目标检测
|
5016
5015
|
- `Highlight`:视频浓缩
|
5017
5016
|
:type ServiceType: str
|
5018
5017
|
:param _Limit: 分页拉取数量
|
@@ -5026,9 +5025,9 @@ class DescribeCloudStorageAIServiceTasksRequest(AbstractModel):
|
|
5026
5025
|
- `3`:成功且结果非空
|
5027
5026
|
- `4`:执行中
|
5028
5027
|
:type Status: int
|
5029
|
-
:param _UserId: 用户ID
|
5028
|
+
:param _UserId: 用户 ID
|
5030
5029
|
:type UserId: str
|
5031
|
-
:param _ChannelId: 通道ID
|
5030
|
+
:param _ChannelId: 通道 ID
|
5032
5031
|
:type ChannelId: int
|
5033
5032
|
"""
|
5034
5033
|
self._ProductId = None
|
@@ -9466,7 +9465,7 @@ class DescribeProductCloudStorageAIServiceRequest(AbstractModel):
|
|
9466
9465
|
|
9467
9466
|
def __init__(self):
|
9468
9467
|
r"""
|
9469
|
-
:param _ProductId: 产品ID
|
9468
|
+
:param _ProductId: 产品 ID
|
9470
9469
|
:type ProductId: str
|
9471
9470
|
"""
|
9472
9471
|
self._ProductId = None
|
@@ -15224,7 +15223,7 @@ class ModifyCloudStorageAIServiceCallbackRequest(AbstractModel):
|
|
15224
15223
|
|
15225
15224
|
def __init__(self):
|
15226
15225
|
r"""
|
15227
|
-
:param _ProductId: 产品ID
|
15226
|
+
:param _ProductId: 产品 ID
|
15228
15227
|
:type ProductId: str
|
15229
15228
|
:param _Type: 推送类型。可选值:
|
15230
15229
|
- `http`:HTTP 回调
|
@@ -15319,19 +15318,19 @@ class ModifyCloudStorageAIServiceRequest(AbstractModel):
|
|
15319
15318
|
|
15320
15319
|
def __init__(self):
|
15321
15320
|
r"""
|
15322
|
-
:param _ProductId: 产品ID
|
15321
|
+
:param _ProductId: 产品 ID
|
15323
15322
|
:type ProductId: str
|
15324
15323
|
:param _DeviceName: 设备名称
|
15325
15324
|
:type DeviceName: str
|
15326
15325
|
:param _ServiceType: 云存 AI 服务类型。可选值:
|
15327
|
-
- `
|
15326
|
+
- `RealtimeObjectDetect`:目标检测
|
15328
15327
|
- `Highlight`:视频浓缩
|
15329
15328
|
:type ServiceType: str
|
15330
|
-
:param _Enabled:
|
15329
|
+
:param _Enabled: 视频分析启用状态
|
15331
15330
|
:type Enabled: bool
|
15332
|
-
:param _ROI:
|
15331
|
+
:param _ROI: 视频分析识别区域
|
15333
15332
|
:type ROI: str
|
15334
|
-
:param _Config:
|
15333
|
+
:param _Config: 视频分析配置参数
|
15335
15334
|
:type Config: str
|
15336
15335
|
"""
|
15337
15336
|
self._ProductId = None
|
@@ -16059,7 +16058,7 @@ class ModifyProductCloudStorageAIServiceRequest(AbstractModel):
|
|
16059
16058
|
|
16060
16059
|
def __init__(self):
|
16061
16060
|
r"""
|
16062
|
-
:param _ProductId: 产品ID
|
16061
|
+
:param _ProductId: 产品 ID
|
16063
16062
|
:type ProductId: str
|
16064
16063
|
:param _Enabled: 开通状态
|
16065
16064
|
:type Enabled: bool
|
@@ -1403,6 +1403,29 @@ class LcicClient(AbstractClient):
|
|
1403
1403
|
model = models.UnbindDocumentFromRoomResponse()
|
1404
1404
|
model._deserialize(response["Response"])
|
1405
1405
|
return model
|
1406
|
+
except Exception as e:
|
1407
|
+
if isinstance(e, TencentCloudSDKException):
|
1408
|
+
raise
|
1409
|
+
else:
|
1410
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1411
|
+
|
1412
|
+
|
1413
|
+
def UnblockKickedUser(self, request):
|
1414
|
+
"""解禁从房间里面踢出的用户
|
1415
|
+
|
1416
|
+
:param request: Request instance for UnblockKickedUser.
|
1417
|
+
:type request: :class:`tencentcloud.lcic.v20220817.models.UnblockKickedUserRequest`
|
1418
|
+
:rtype: :class:`tencentcloud.lcic.v20220817.models.UnblockKickedUserResponse`
|
1419
|
+
|
1420
|
+
"""
|
1421
|
+
try:
|
1422
|
+
params = request._serialize()
|
1423
|
+
headers = request.headers
|
1424
|
+
body = self.call("UnblockKickedUser", params, headers=headers)
|
1425
|
+
response = json.loads(body)
|
1426
|
+
model = models.UnblockKickedUserResponse()
|
1427
|
+
model._deserialize(response["Response"])
|
1428
|
+
return model
|
1406
1429
|
except Exception as e:
|
1407
1430
|
if isinstance(e, TencentCloudSDKException):
|
1408
1431
|
raise
|