tencentcloud-sdk-python 3.0.1404__py2.py3-none-any.whl → 3.0.1405__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 +162 -0
- tencentcloud/cdb/v20170320/models.py +2 -2
- tencentcloud/cfs/v20190719/models.py +14 -14
- tencentcloud/cls/v20201016/models.py +15 -0
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
- tencentcloud/iotexplorer/v20190423/models.py +306 -0
- tencentcloud/lke/v20231130/models.py +34 -2
- tencentcloud/monitor/v20180724/models.py +79 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/ocr/v20181119/models.py +0 -8
- tencentcloud/tcbr/v20220217/models.py +30 -0
- {tencentcloud_sdk_python-3.0.1404.dist-info → tencentcloud_sdk_python-3.0.1405.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1404.dist-info → tencentcloud_sdk_python-3.0.1405.dist-info}/RECORD +18 -18
- {tencentcloud_sdk_python-3.0.1404.dist-info → tencentcloud_sdk_python-3.0.1405.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1404.dist-info → tencentcloud_sdk_python-3.0.1405.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1404.dist-info → tencentcloud_sdk_python-3.0.1405.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -8773,6 +8773,146 @@ class ProjectListData(AbstractModel):
|
|
8773
8773
|
|
8774
8774
|
|
8775
8775
|
|
8776
|
+
class UserGroupDTO(AbstractModel):
|
8777
|
+
"""用户组
|
8778
|
+
|
8779
|
+
"""
|
8780
|
+
|
8781
|
+
def __init__(self):
|
8782
|
+
r"""
|
8783
|
+
:param _Id: id
|
8784
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8785
|
+
:type Id: int
|
8786
|
+
:param _GroupName: 用户组名称
|
8787
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8788
|
+
:type GroupName: str
|
8789
|
+
:param _ParentId: 父节点id
|
8790
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8791
|
+
:type ParentId: int
|
8792
|
+
:param _IsDefault: 是否为默认
|
8793
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8794
|
+
:type IsDefault: int
|
8795
|
+
:param _AdminUserId: 管理员用户id
|
8796
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8797
|
+
:type AdminUserId: str
|
8798
|
+
:param _Description: 描述
|
8799
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8800
|
+
:type Description: str
|
8801
|
+
:param _Location: 定位
|
8802
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8803
|
+
:type Location: int
|
8804
|
+
"""
|
8805
|
+
self._Id = None
|
8806
|
+
self._GroupName = None
|
8807
|
+
self._ParentId = None
|
8808
|
+
self._IsDefault = None
|
8809
|
+
self._AdminUserId = None
|
8810
|
+
self._Description = None
|
8811
|
+
self._Location = None
|
8812
|
+
|
8813
|
+
@property
|
8814
|
+
def Id(self):
|
8815
|
+
"""id
|
8816
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8817
|
+
:rtype: int
|
8818
|
+
"""
|
8819
|
+
return self._Id
|
8820
|
+
|
8821
|
+
@Id.setter
|
8822
|
+
def Id(self, Id):
|
8823
|
+
self._Id = Id
|
8824
|
+
|
8825
|
+
@property
|
8826
|
+
def GroupName(self):
|
8827
|
+
"""用户组名称
|
8828
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8829
|
+
:rtype: str
|
8830
|
+
"""
|
8831
|
+
return self._GroupName
|
8832
|
+
|
8833
|
+
@GroupName.setter
|
8834
|
+
def GroupName(self, GroupName):
|
8835
|
+
self._GroupName = GroupName
|
8836
|
+
|
8837
|
+
@property
|
8838
|
+
def ParentId(self):
|
8839
|
+
"""父节点id
|
8840
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8841
|
+
:rtype: int
|
8842
|
+
"""
|
8843
|
+
return self._ParentId
|
8844
|
+
|
8845
|
+
@ParentId.setter
|
8846
|
+
def ParentId(self, ParentId):
|
8847
|
+
self._ParentId = ParentId
|
8848
|
+
|
8849
|
+
@property
|
8850
|
+
def IsDefault(self):
|
8851
|
+
"""是否为默认
|
8852
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8853
|
+
:rtype: int
|
8854
|
+
"""
|
8855
|
+
return self._IsDefault
|
8856
|
+
|
8857
|
+
@IsDefault.setter
|
8858
|
+
def IsDefault(self, IsDefault):
|
8859
|
+
self._IsDefault = IsDefault
|
8860
|
+
|
8861
|
+
@property
|
8862
|
+
def AdminUserId(self):
|
8863
|
+
"""管理员用户id
|
8864
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8865
|
+
:rtype: str
|
8866
|
+
"""
|
8867
|
+
return self._AdminUserId
|
8868
|
+
|
8869
|
+
@AdminUserId.setter
|
8870
|
+
def AdminUserId(self, AdminUserId):
|
8871
|
+
self._AdminUserId = AdminUserId
|
8872
|
+
|
8873
|
+
@property
|
8874
|
+
def Description(self):
|
8875
|
+
"""描述
|
8876
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8877
|
+
:rtype: str
|
8878
|
+
"""
|
8879
|
+
return self._Description
|
8880
|
+
|
8881
|
+
@Description.setter
|
8882
|
+
def Description(self, Description):
|
8883
|
+
self._Description = Description
|
8884
|
+
|
8885
|
+
@property
|
8886
|
+
def Location(self):
|
8887
|
+
"""定位
|
8888
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8889
|
+
:rtype: int
|
8890
|
+
"""
|
8891
|
+
return self._Location
|
8892
|
+
|
8893
|
+
@Location.setter
|
8894
|
+
def Location(self, Location):
|
8895
|
+
self._Location = Location
|
8896
|
+
|
8897
|
+
|
8898
|
+
def _deserialize(self, params):
|
8899
|
+
self._Id = params.get("Id")
|
8900
|
+
self._GroupName = params.get("GroupName")
|
8901
|
+
self._ParentId = params.get("ParentId")
|
8902
|
+
self._IsDefault = params.get("IsDefault")
|
8903
|
+
self._AdminUserId = params.get("AdminUserId")
|
8904
|
+
self._Description = params.get("Description")
|
8905
|
+
self._Location = params.get("Location")
|
8906
|
+
memeber_set = set(params.keys())
|
8907
|
+
for name, value in vars(self).items():
|
8908
|
+
property_name = name[1:]
|
8909
|
+
if property_name in memeber_set:
|
8910
|
+
memeber_set.remove(property_name)
|
8911
|
+
if len(memeber_set) > 0:
|
8912
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8913
|
+
|
8914
|
+
|
8915
|
+
|
8776
8916
|
class UserIdAndUserName(AbstractModel):
|
8777
8917
|
"""用户ID和用户名
|
8778
8918
|
|
@@ -9589,6 +9729,9 @@ class UserRoleListDataUserRoleInfo(AbstractModel):
|
|
9589
9729
|
:param _EmailActivationStatus: 邮箱激活状态
|
9590
9730
|
注意:此字段可能返回 null,表示取不到有效值。
|
9591
9731
|
:type EmailActivationStatus: int
|
9732
|
+
:param _UserGroupList: 用户组信息
|
9733
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9734
|
+
:type UserGroupList: list of UserGroupDTO
|
9592
9735
|
"""
|
9593
9736
|
self._Id = None
|
9594
9737
|
self._RoleList = None
|
@@ -9613,6 +9756,7 @@ class UserRoleListDataUserRoleInfo(AbstractModel):
|
|
9613
9756
|
self._InValidateAppRange = None
|
9614
9757
|
self._AppOpenUserId = None
|
9615
9758
|
self._EmailActivationStatus = None
|
9759
|
+
self._UserGroupList = None
|
9616
9760
|
|
9617
9761
|
@property
|
9618
9762
|
def Id(self):
|
@@ -9886,6 +10030,18 @@ class UserRoleListDataUserRoleInfo(AbstractModel):
|
|
9886
10030
|
def EmailActivationStatus(self, EmailActivationStatus):
|
9887
10031
|
self._EmailActivationStatus = EmailActivationStatus
|
9888
10032
|
|
10033
|
+
@property
|
10034
|
+
def UserGroupList(self):
|
10035
|
+
"""用户组信息
|
10036
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10037
|
+
:rtype: list of UserGroupDTO
|
10038
|
+
"""
|
10039
|
+
return self._UserGroupList
|
10040
|
+
|
10041
|
+
@UserGroupList.setter
|
10042
|
+
def UserGroupList(self, UserGroupList):
|
10043
|
+
self._UserGroupList = UserGroupList
|
10044
|
+
|
9889
10045
|
|
9890
10046
|
def _deserialize(self, params):
|
9891
10047
|
self._Id = params.get("Id")
|
@@ -9916,6 +10072,12 @@ class UserRoleListDataUserRoleInfo(AbstractModel):
|
|
9916
10072
|
self._InValidateAppRange = params.get("InValidateAppRange")
|
9917
10073
|
self._AppOpenUserId = params.get("AppOpenUserId")
|
9918
10074
|
self._EmailActivationStatus = params.get("EmailActivationStatus")
|
10075
|
+
if params.get("UserGroupList") is not None:
|
10076
|
+
self._UserGroupList = []
|
10077
|
+
for item in params.get("UserGroupList"):
|
10078
|
+
obj = UserGroupDTO()
|
10079
|
+
obj._deserialize(item)
|
10080
|
+
self._UserGroupList.append(obj)
|
9919
10081
|
memeber_set = set(params.keys())
|
9920
10082
|
for name, value in vars(self).items():
|
9921
10083
|
property_name = name[1:]
|
@@ -22022,7 +22022,7 @@ class DescribeTableColumnsRequest(AbstractModel):
|
|
22022
22022
|
r"""
|
22023
22023
|
:param _InstanceId: 实例ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例ID相同,可使用[查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口获取,其值为输出参数中字段 InstanceId 的值。
|
22024
22024
|
:type InstanceId: str
|
22025
|
-
:param _Database: 数据库名称,可使用[查询数据库](https://cloud.tencent.com/document/api/
|
22025
|
+
:param _Database: 数据库名称,可使用[查询数据库](https://cloud.tencent.com/document/api/236/17493)接口获得。
|
22026
22026
|
:type Database: str
|
22027
22027
|
:param _Table: 数据库中的表的名称。
|
22028
22028
|
:type Table: str
|
@@ -22044,7 +22044,7 @@ class DescribeTableColumnsRequest(AbstractModel):
|
|
22044
22044
|
|
22045
22045
|
@property
|
22046
22046
|
def Database(self):
|
22047
|
-
"""数据库名称,可使用[查询数据库](https://cloud.tencent.com/document/api/
|
22047
|
+
"""数据库名称,可使用[查询数据库](https://cloud.tencent.com/document/api/236/17493)接口获得。
|
22048
22048
|
:rtype: str
|
22049
22049
|
"""
|
22050
22050
|
return self._Database
|
@@ -5800,13 +5800,13 @@ class ModifyFileSystemAutoScaleUpRuleRequest(AbstractModel):
|
|
5800
5800
|
|
5801
5801
|
def __init__(self):
|
5802
5802
|
r"""
|
5803
|
-
:param _FileSystemId: 文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
|
5803
|
+
:param _FileSystemId: 文件系统 ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
|
5804
5804
|
:type FileSystemId: str
|
5805
5805
|
:param _ScaleUpThreshold: 扩容阈值,范围[10-90]
|
5806
5806
|
:type ScaleUpThreshold: int
|
5807
|
-
:param _TargetThreshold:
|
5807
|
+
:param _TargetThreshold: 扩容后目标阈值,范围[1-90],该值要小于 ScaleUpThreshold
|
5808
5808
|
:type TargetThreshold: int
|
5809
|
-
:param _Status: 规则状态0
|
5809
|
+
:param _Status: 规则状态 0:关闭,1:开启;不传保留原状态
|
5810
5810
|
:type Status: int
|
5811
5811
|
"""
|
5812
5812
|
self._FileSystemId = None
|
@@ -5816,7 +5816,7 @@ class ModifyFileSystemAutoScaleUpRuleRequest(AbstractModel):
|
|
5816
5816
|
|
5817
5817
|
@property
|
5818
5818
|
def FileSystemId(self):
|
5819
|
-
"""文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
|
5819
|
+
"""文件系统 ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
|
5820
5820
|
:rtype: str
|
5821
5821
|
"""
|
5822
5822
|
return self._FileSystemId
|
@@ -5838,7 +5838,7 @@ class ModifyFileSystemAutoScaleUpRuleRequest(AbstractModel):
|
|
5838
5838
|
|
5839
5839
|
@property
|
5840
5840
|
def TargetThreshold(self):
|
5841
|
-
"""
|
5841
|
+
"""扩容后目标阈值,范围[1-90],该值要小于 ScaleUpThreshold
|
5842
5842
|
:rtype: int
|
5843
5843
|
"""
|
5844
5844
|
return self._TargetThreshold
|
@@ -5849,7 +5849,7 @@ class ModifyFileSystemAutoScaleUpRuleRequest(AbstractModel):
|
|
5849
5849
|
|
5850
5850
|
@property
|
5851
5851
|
def Status(self):
|
5852
|
-
"""规则状态0
|
5852
|
+
"""规则状态 0:关闭,1:开启;不传保留原状态
|
5853
5853
|
:rtype: int
|
5854
5854
|
"""
|
5855
5855
|
return self._Status
|
@@ -5881,13 +5881,13 @@ class ModifyFileSystemAutoScaleUpRuleResponse(AbstractModel):
|
|
5881
5881
|
|
5882
5882
|
def __init__(self):
|
5883
5883
|
r"""
|
5884
|
-
:param _FileSystemId: 文件系统
|
5884
|
+
:param _FileSystemId: 文件系统 ID
|
5885
5885
|
:type FileSystemId: str
|
5886
|
-
:param _Status: 规则状态0
|
5886
|
+
:param _Status: 规则状态 0:关闭,1:开启
|
5887
5887
|
:type Status: int
|
5888
|
-
:param _ScaleUpThreshold:
|
5888
|
+
:param _ScaleUpThreshold: 扩容阈值,范围[10-90]
|
5889
5889
|
:type ScaleUpThreshold: int
|
5890
|
-
:param _TargetThreshold:
|
5890
|
+
:param _TargetThreshold: 扩容后达到阈值,范围[1-90]
|
5891
5891
|
:type TargetThreshold: int
|
5892
5892
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5893
5893
|
:type RequestId: str
|
@@ -5900,7 +5900,7 @@ class ModifyFileSystemAutoScaleUpRuleResponse(AbstractModel):
|
|
5900
5900
|
|
5901
5901
|
@property
|
5902
5902
|
def FileSystemId(self):
|
5903
|
-
"""文件系统
|
5903
|
+
"""文件系统 ID
|
5904
5904
|
:rtype: str
|
5905
5905
|
"""
|
5906
5906
|
return self._FileSystemId
|
@@ -5911,7 +5911,7 @@ class ModifyFileSystemAutoScaleUpRuleResponse(AbstractModel):
|
|
5911
5911
|
|
5912
5912
|
@property
|
5913
5913
|
def Status(self):
|
5914
|
-
"""规则状态0
|
5914
|
+
"""规则状态 0:关闭,1:开启
|
5915
5915
|
:rtype: int
|
5916
5916
|
"""
|
5917
5917
|
return self._Status
|
@@ -5922,7 +5922,7 @@ class ModifyFileSystemAutoScaleUpRuleResponse(AbstractModel):
|
|
5922
5922
|
|
5923
5923
|
@property
|
5924
5924
|
def ScaleUpThreshold(self):
|
5925
|
-
"""
|
5925
|
+
"""扩容阈值,范围[10-90]
|
5926
5926
|
:rtype: int
|
5927
5927
|
"""
|
5928
5928
|
return self._ScaleUpThreshold
|
@@ -5933,7 +5933,7 @@ class ModifyFileSystemAutoScaleUpRuleResponse(AbstractModel):
|
|
5933
5933
|
|
5934
5934
|
@property
|
5935
5935
|
def TargetThreshold(self):
|
5936
|
-
"""
|
5936
|
+
"""扩容后达到阈值,范围[1-90]
|
5937
5937
|
:rtype: int
|
5938
5938
|
"""
|
5939
5939
|
return self._TargetThreshold
|
@@ -8107,9 +8107,12 @@ class CreateLogsetRequest(AbstractModel):
|
|
8107
8107
|
:type LogsetName: str
|
8108
8108
|
:param _Tags: 标签描述列表。最大支持10个标签键值对,并且不能有重复的键值对
|
8109
8109
|
:type Tags: list of Tag
|
8110
|
+
:param _LogsetId: 日志集ID,格式为:用户自定义部分-用户appid,用户自定义部分仅支持小写字母、数字和-,且不能以-开头和结尾,长度为3至40字符,尾部需要使用-拼接用户appid
|
8111
|
+
:type LogsetId: str
|
8110
8112
|
"""
|
8111
8113
|
self._LogsetName = None
|
8112
8114
|
self._Tags = None
|
8115
|
+
self._LogsetId = None
|
8113
8116
|
|
8114
8117
|
@property
|
8115
8118
|
def LogsetName(self):
|
@@ -8133,6 +8136,17 @@ class CreateLogsetRequest(AbstractModel):
|
|
8133
8136
|
def Tags(self, Tags):
|
8134
8137
|
self._Tags = Tags
|
8135
8138
|
|
8139
|
+
@property
|
8140
|
+
def LogsetId(self):
|
8141
|
+
"""日志集ID,格式为:用户自定义部分-用户appid,用户自定义部分仅支持小写字母、数字和-,且不能以-开头和结尾,长度为3至40字符,尾部需要使用-拼接用户appid
|
8142
|
+
:rtype: str
|
8143
|
+
"""
|
8144
|
+
return self._LogsetId
|
8145
|
+
|
8146
|
+
@LogsetId.setter
|
8147
|
+
def LogsetId(self, LogsetId):
|
8148
|
+
self._LogsetId = LogsetId
|
8149
|
+
|
8136
8150
|
|
8137
8151
|
def _deserialize(self, params):
|
8138
8152
|
self._LogsetName = params.get("LogsetName")
|
@@ -8142,6 +8156,7 @@ class CreateLogsetRequest(AbstractModel):
|
|
8142
8156
|
obj = Tag()
|
8143
8157
|
obj._deserialize(item)
|
8144
8158
|
self._Tags.append(obj)
|
8159
|
+
self._LogsetId = params.get("LogsetId")
|
8145
8160
|
memeber_set = set(params.keys())
|
8146
8161
|
for name, value in vars(self).items():
|
8147
8162
|
property_name = name[1:]
|
@@ -29548,7 +29548,7 @@ class SyncProxyOrganizationOperatorsRequest(AbstractModel):
|
|
29548
29548
|
:type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
|
29549
29549
|
:param _OperatorType: 操作类型,对应的操作
|
29550
29550
|
<ul><li> **CREATE** :新增员工</li>
|
29551
|
-
<li> **UPDATE**
|
29551
|
+
<li> **UPDATE** :修改员工(仅支持修改未实名员工的信息,如果已经实名并加入企业的员工基础信息修改需要到小程序中进行)</li>
|
29552
29552
|
<li> **RESIGN** :离职员工</li></ul>
|
29553
29553
|
:type OperatorType: str
|
29554
29554
|
:param _ProxyOrganizationOperators: 员工信息列表,最多支持200个
|
@@ -29583,7 +29583,7 @@ class SyncProxyOrganizationOperatorsRequest(AbstractModel):
|
|
29583
29583
|
def OperatorType(self):
|
29584
29584
|
"""操作类型,对应的操作
|
29585
29585
|
<ul><li> **CREATE** :新增员工</li>
|
29586
|
-
<li> **UPDATE**
|
29586
|
+
<li> **UPDATE** :修改员工(仅支持修改未实名员工的信息,如果已经实名并加入企业的员工基础信息修改需要到小程序中进行)</li>
|
29587
29587
|
<li> **RESIGN** :离职员工</li></ul>
|
29588
29588
|
:rtype: str
|
29589
29589
|
"""
|
@@ -256,6 +256,29 @@ class IotexplorerClient(AbstractClient):
|
|
256
256
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
257
257
|
|
258
258
|
|
259
|
+
def CreateAISearchTaskAsync(self, request):
|
260
|
+
"""创建视频语义异步搜索任务
|
261
|
+
|
262
|
+
:param request: Request instance for CreateAISearchTaskAsync.
|
263
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.CreateAISearchTaskAsyncRequest`
|
264
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.CreateAISearchTaskAsyncResponse`
|
265
|
+
|
266
|
+
"""
|
267
|
+
try:
|
268
|
+
params = request._serialize()
|
269
|
+
headers = request.headers
|
270
|
+
body = self.call("CreateAISearchTaskAsync", params, headers=headers)
|
271
|
+
response = json.loads(body)
|
272
|
+
model = models.CreateAISearchTaskAsyncResponse()
|
273
|
+
model._deserialize(response["Response"])
|
274
|
+
return model
|
275
|
+
except Exception as e:
|
276
|
+
if isinstance(e, TencentCloudSDKException):
|
277
|
+
raise
|
278
|
+
else:
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
280
|
+
|
281
|
+
|
259
282
|
def CreateBatchProduction(self, request):
|
260
283
|
"""用于新建批量生产设备
|
261
284
|
|
@@ -969,6 +992,29 @@ class IotexplorerClient(AbstractClient):
|
|
969
992
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
970
993
|
|
971
994
|
|
995
|
+
def DescribeAISearchTaskAsync(self, request):
|
996
|
+
"""获取视频语义异步搜索任务详情
|
997
|
+
|
998
|
+
:param request: Request instance for DescribeAISearchTaskAsync.
|
999
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeAISearchTaskAsyncRequest`
|
1000
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeAISearchTaskAsyncResponse`
|
1001
|
+
|
1002
|
+
"""
|
1003
|
+
try:
|
1004
|
+
params = request._serialize()
|
1005
|
+
headers = request.headers
|
1006
|
+
body = self.call("DescribeAISearchTaskAsync", params, headers=headers)
|
1007
|
+
response = json.loads(body)
|
1008
|
+
model = models.DescribeAISearchTaskAsyncResponse()
|
1009
|
+
model._deserialize(response["Response"])
|
1010
|
+
return model
|
1011
|
+
except Exception as e:
|
1012
|
+
if isinstance(e, TencentCloudSDKException):
|
1013
|
+
raise
|
1014
|
+
else:
|
1015
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1016
|
+
|
1017
|
+
|
972
1018
|
def DescribeActivateDevice(self, request):
|
973
1019
|
"""获取设备激活详情
|
974
1020
|
|
@@ -18,6 +18,77 @@ import warnings
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
19
19
|
|
20
20
|
|
21
|
+
class AISearchInfo(AbstractModel):
|
22
|
+
"""AI视频搜索结果结构体。
|
23
|
+
|
24
|
+
"""
|
25
|
+
|
26
|
+
def __init__(self):
|
27
|
+
r"""
|
28
|
+
:param _Summary: 基于搜索结果的总结
|
29
|
+
:type Summary: str
|
30
|
+
:param _Targets: 视频结果集
|
31
|
+
:type Targets: list of TargetInfo
|
32
|
+
:param _VideoURL: 视频回放URL
|
33
|
+
:type VideoURL: str
|
34
|
+
"""
|
35
|
+
self._Summary = None
|
36
|
+
self._Targets = None
|
37
|
+
self._VideoURL = None
|
38
|
+
|
39
|
+
@property
|
40
|
+
def Summary(self):
|
41
|
+
"""基于搜索结果的总结
|
42
|
+
:rtype: str
|
43
|
+
"""
|
44
|
+
return self._Summary
|
45
|
+
|
46
|
+
@Summary.setter
|
47
|
+
def Summary(self, Summary):
|
48
|
+
self._Summary = Summary
|
49
|
+
|
50
|
+
@property
|
51
|
+
def Targets(self):
|
52
|
+
"""视频结果集
|
53
|
+
:rtype: list of TargetInfo
|
54
|
+
"""
|
55
|
+
return self._Targets
|
56
|
+
|
57
|
+
@Targets.setter
|
58
|
+
def Targets(self, Targets):
|
59
|
+
self._Targets = Targets
|
60
|
+
|
61
|
+
@property
|
62
|
+
def VideoURL(self):
|
63
|
+
"""视频回放URL
|
64
|
+
:rtype: str
|
65
|
+
"""
|
66
|
+
return self._VideoURL
|
67
|
+
|
68
|
+
@VideoURL.setter
|
69
|
+
def VideoURL(self, VideoURL):
|
70
|
+
self._VideoURL = VideoURL
|
71
|
+
|
72
|
+
|
73
|
+
def _deserialize(self, params):
|
74
|
+
self._Summary = params.get("Summary")
|
75
|
+
if params.get("Targets") is not None:
|
76
|
+
self._Targets = []
|
77
|
+
for item in params.get("Targets"):
|
78
|
+
obj = TargetInfo()
|
79
|
+
obj._deserialize(item)
|
80
|
+
self._Targets.append(obj)
|
81
|
+
self._VideoURL = params.get("VideoURL")
|
82
|
+
memeber_set = set(params.keys())
|
83
|
+
for name, value in vars(self).items():
|
84
|
+
property_name = name[1:]
|
85
|
+
if property_name in memeber_set:
|
86
|
+
memeber_set.remove(property_name)
|
87
|
+
if len(memeber_set) > 0:
|
88
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
89
|
+
|
90
|
+
|
91
|
+
|
21
92
|
class ActivateDeviceInfo(AbstractModel):
|
22
93
|
"""设备激活详情信息
|
23
94
|
|
@@ -3011,6 +3082,145 @@ class CountDataInfo(AbstractModel):
|
|
3011
3082
|
|
3012
3083
|
|
3013
3084
|
|
3085
|
+
class CreateAISearchTaskAsyncRequest(AbstractModel):
|
3086
|
+
"""CreateAISearchTaskAsync请求参数结构体
|
3087
|
+
|
3088
|
+
"""
|
3089
|
+
|
3090
|
+
def __init__(self):
|
3091
|
+
r"""
|
3092
|
+
:param _ProductId: 产品ID
|
3093
|
+
:type ProductId: str
|
3094
|
+
:param _DeviceName: 设备名称
|
3095
|
+
:type DeviceName: str
|
3096
|
+
:param _Query: 自然语言查询
|
3097
|
+
:type Query: str
|
3098
|
+
:param _SummaryLang: 搜索结果总结的语言类型,支持的类型有:en-US、zh-CN、id-ID、th-TH
|
3099
|
+
:type SummaryLang: str
|
3100
|
+
:param _ChannelId: 通道ID
|
3101
|
+
:type ChannelId: int
|
3102
|
+
"""
|
3103
|
+
self._ProductId = None
|
3104
|
+
self._DeviceName = None
|
3105
|
+
self._Query = None
|
3106
|
+
self._SummaryLang = None
|
3107
|
+
self._ChannelId = None
|
3108
|
+
|
3109
|
+
@property
|
3110
|
+
def ProductId(self):
|
3111
|
+
"""产品ID
|
3112
|
+
:rtype: str
|
3113
|
+
"""
|
3114
|
+
return self._ProductId
|
3115
|
+
|
3116
|
+
@ProductId.setter
|
3117
|
+
def ProductId(self, ProductId):
|
3118
|
+
self._ProductId = ProductId
|
3119
|
+
|
3120
|
+
@property
|
3121
|
+
def DeviceName(self):
|
3122
|
+
"""设备名称
|
3123
|
+
:rtype: str
|
3124
|
+
"""
|
3125
|
+
return self._DeviceName
|
3126
|
+
|
3127
|
+
@DeviceName.setter
|
3128
|
+
def DeviceName(self, DeviceName):
|
3129
|
+
self._DeviceName = DeviceName
|
3130
|
+
|
3131
|
+
@property
|
3132
|
+
def Query(self):
|
3133
|
+
"""自然语言查询
|
3134
|
+
:rtype: str
|
3135
|
+
"""
|
3136
|
+
return self._Query
|
3137
|
+
|
3138
|
+
@Query.setter
|
3139
|
+
def Query(self, Query):
|
3140
|
+
self._Query = Query
|
3141
|
+
|
3142
|
+
@property
|
3143
|
+
def SummaryLang(self):
|
3144
|
+
"""搜索结果总结的语言类型,支持的类型有:en-US、zh-CN、id-ID、th-TH
|
3145
|
+
:rtype: str
|
3146
|
+
"""
|
3147
|
+
return self._SummaryLang
|
3148
|
+
|
3149
|
+
@SummaryLang.setter
|
3150
|
+
def SummaryLang(self, SummaryLang):
|
3151
|
+
self._SummaryLang = SummaryLang
|
3152
|
+
|
3153
|
+
@property
|
3154
|
+
def ChannelId(self):
|
3155
|
+
"""通道ID
|
3156
|
+
:rtype: int
|
3157
|
+
"""
|
3158
|
+
return self._ChannelId
|
3159
|
+
|
3160
|
+
@ChannelId.setter
|
3161
|
+
def ChannelId(self, ChannelId):
|
3162
|
+
self._ChannelId = ChannelId
|
3163
|
+
|
3164
|
+
|
3165
|
+
def _deserialize(self, params):
|
3166
|
+
self._ProductId = params.get("ProductId")
|
3167
|
+
self._DeviceName = params.get("DeviceName")
|
3168
|
+
self._Query = params.get("Query")
|
3169
|
+
self._SummaryLang = params.get("SummaryLang")
|
3170
|
+
self._ChannelId = params.get("ChannelId")
|
3171
|
+
memeber_set = set(params.keys())
|
3172
|
+
for name, value in vars(self).items():
|
3173
|
+
property_name = name[1:]
|
3174
|
+
if property_name in memeber_set:
|
3175
|
+
memeber_set.remove(property_name)
|
3176
|
+
if len(memeber_set) > 0:
|
3177
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
3178
|
+
|
3179
|
+
|
3180
|
+
|
3181
|
+
class CreateAISearchTaskAsyncResponse(AbstractModel):
|
3182
|
+
"""CreateAISearchTaskAsync返回参数结构体
|
3183
|
+
|
3184
|
+
"""
|
3185
|
+
|
3186
|
+
def __init__(self):
|
3187
|
+
r"""
|
3188
|
+
:param _TaskId: 任务ID
|
3189
|
+
:type TaskId: str
|
3190
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3191
|
+
:type RequestId: str
|
3192
|
+
"""
|
3193
|
+
self._TaskId = None
|
3194
|
+
self._RequestId = None
|
3195
|
+
|
3196
|
+
@property
|
3197
|
+
def TaskId(self):
|
3198
|
+
"""任务ID
|
3199
|
+
:rtype: str
|
3200
|
+
"""
|
3201
|
+
return self._TaskId
|
3202
|
+
|
3203
|
+
@TaskId.setter
|
3204
|
+
def TaskId(self, TaskId):
|
3205
|
+
self._TaskId = TaskId
|
3206
|
+
|
3207
|
+
@property
|
3208
|
+
def RequestId(self):
|
3209
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3210
|
+
:rtype: str
|
3211
|
+
"""
|
3212
|
+
return self._RequestId
|
3213
|
+
|
3214
|
+
@RequestId.setter
|
3215
|
+
def RequestId(self, RequestId):
|
3216
|
+
self._RequestId = RequestId
|
3217
|
+
|
3218
|
+
|
3219
|
+
def _deserialize(self, params):
|
3220
|
+
self._TaskId = params.get("TaskId")
|
3221
|
+
self._RequestId = params.get("RequestId")
|
3222
|
+
|
3223
|
+
|
3014
3224
|
class CreateBatchProductionRequest(AbstractModel):
|
3015
3225
|
"""CreateBatchProduction请求参数结构体
|
3016
3226
|
|
@@ -7043,6 +7253,102 @@ class DeleteTopicRuleResponse(AbstractModel):
|
|
7043
7253
|
self._RequestId = params.get("RequestId")
|
7044
7254
|
|
7045
7255
|
|
7256
|
+
class DescribeAISearchTaskAsyncRequest(AbstractModel):
|
7257
|
+
"""DescribeAISearchTaskAsync请求参数结构体
|
7258
|
+
|
7259
|
+
"""
|
7260
|
+
|
7261
|
+
def __init__(self):
|
7262
|
+
r"""
|
7263
|
+
:param _TaskId: 任务ID
|
7264
|
+
:type TaskId: str
|
7265
|
+
"""
|
7266
|
+
self._TaskId = None
|
7267
|
+
|
7268
|
+
@property
|
7269
|
+
def TaskId(self):
|
7270
|
+
"""任务ID
|
7271
|
+
:rtype: str
|
7272
|
+
"""
|
7273
|
+
return self._TaskId
|
7274
|
+
|
7275
|
+
@TaskId.setter
|
7276
|
+
def TaskId(self, TaskId):
|
7277
|
+
self._TaskId = TaskId
|
7278
|
+
|
7279
|
+
|
7280
|
+
def _deserialize(self, params):
|
7281
|
+
self._TaskId = params.get("TaskId")
|
7282
|
+
memeber_set = set(params.keys())
|
7283
|
+
for name, value in vars(self).items():
|
7284
|
+
property_name = name[1:]
|
7285
|
+
if property_name in memeber_set:
|
7286
|
+
memeber_set.remove(property_name)
|
7287
|
+
if len(memeber_set) > 0:
|
7288
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7289
|
+
|
7290
|
+
|
7291
|
+
|
7292
|
+
class DescribeAISearchTaskAsyncResponse(AbstractModel):
|
7293
|
+
"""DescribeAISearchTaskAsync返回参数结构体
|
7294
|
+
|
7295
|
+
"""
|
7296
|
+
|
7297
|
+
def __init__(self):
|
7298
|
+
r"""
|
7299
|
+
:param _Status: 状态。0-初始状态;1-正在处理;2-处理失败;3-成功
|
7300
|
+
:type Status: int
|
7301
|
+
:param _Data: 任务处理结果数据
|
7302
|
+
:type Data: :class:`tencentcloud.iotexplorer.v20190423.models.AISearchInfo`
|
7303
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7304
|
+
:type RequestId: str
|
7305
|
+
"""
|
7306
|
+
self._Status = None
|
7307
|
+
self._Data = None
|
7308
|
+
self._RequestId = None
|
7309
|
+
|
7310
|
+
@property
|
7311
|
+
def Status(self):
|
7312
|
+
"""状态。0-初始状态;1-正在处理;2-处理失败;3-成功
|
7313
|
+
:rtype: int
|
7314
|
+
"""
|
7315
|
+
return self._Status
|
7316
|
+
|
7317
|
+
@Status.setter
|
7318
|
+
def Status(self, Status):
|
7319
|
+
self._Status = Status
|
7320
|
+
|
7321
|
+
@property
|
7322
|
+
def Data(self):
|
7323
|
+
"""任务处理结果数据
|
7324
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.AISearchInfo`
|
7325
|
+
"""
|
7326
|
+
return self._Data
|
7327
|
+
|
7328
|
+
@Data.setter
|
7329
|
+
def Data(self, Data):
|
7330
|
+
self._Data = Data
|
7331
|
+
|
7332
|
+
@property
|
7333
|
+
def RequestId(self):
|
7334
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7335
|
+
:rtype: str
|
7336
|
+
"""
|
7337
|
+
return self._RequestId
|
7338
|
+
|
7339
|
+
@RequestId.setter
|
7340
|
+
def RequestId(self, RequestId):
|
7341
|
+
self._RequestId = RequestId
|
7342
|
+
|
7343
|
+
|
7344
|
+
def _deserialize(self, params):
|
7345
|
+
self._Status = params.get("Status")
|
7346
|
+
if params.get("Data") is not None:
|
7347
|
+
self._Data = AISearchInfo()
|
7348
|
+
self._Data._deserialize(params.get("Data"))
|
7349
|
+
self._RequestId = params.get("RequestId")
|
7350
|
+
|
7351
|
+
|
7046
7352
|
class DescribeActivateDeviceRequest(AbstractModel):
|
7047
7353
|
"""DescribeActivateDevice请求参数结构体
|
7048
7354
|
|
@@ -14666,11 +14666,15 @@ class KnowledgeDetail(AbstractModel):
|
|
14666
14666
|
:param _ExceedCharSize: 超量字符数
|
14667
14667
|
注意:此字段可能返回 null,表示取不到有效值。
|
14668
14668
|
:type ExceedCharSize: str
|
14669
|
+
:param _IsSharedKnowledge: 是否共享知识库类型
|
14670
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
14671
|
+
:type IsSharedKnowledge: bool
|
14669
14672
|
"""
|
14670
14673
|
self._AppName = None
|
14671
14674
|
self._UsedCharSize = None
|
14672
14675
|
self._Proportion = None
|
14673
14676
|
self._ExceedCharSize = None
|
14677
|
+
self._IsSharedKnowledge = None
|
14674
14678
|
|
14675
14679
|
@property
|
14676
14680
|
def AppName(self):
|
@@ -14720,12 +14724,25 @@ class KnowledgeDetail(AbstractModel):
|
|
14720
14724
|
def ExceedCharSize(self, ExceedCharSize):
|
14721
14725
|
self._ExceedCharSize = ExceedCharSize
|
14722
14726
|
|
14727
|
+
@property
|
14728
|
+
def IsSharedKnowledge(self):
|
14729
|
+
"""是否共享知识库类型
|
14730
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
14731
|
+
:rtype: bool
|
14732
|
+
"""
|
14733
|
+
return self._IsSharedKnowledge
|
14734
|
+
|
14735
|
+
@IsSharedKnowledge.setter
|
14736
|
+
def IsSharedKnowledge(self, IsSharedKnowledge):
|
14737
|
+
self._IsSharedKnowledge = IsSharedKnowledge
|
14738
|
+
|
14723
14739
|
|
14724
14740
|
def _deserialize(self, params):
|
14725
14741
|
self._AppName = params.get("AppName")
|
14726
14742
|
self._UsedCharSize = params.get("UsedCharSize")
|
14727
14743
|
self._Proportion = params.get("Proportion")
|
14728
14744
|
self._ExceedCharSize = params.get("ExceedCharSize")
|
14745
|
+
self._IsSharedKnowledge = params.get("IsSharedKnowledge")
|
14729
14746
|
memeber_set = set(params.keys())
|
14730
14747
|
for name, value in vars(self).items():
|
14731
14748
|
property_name = name[1:]
|
@@ -21771,7 +21788,7 @@ class ModifyDocRequest(AbstractModel):
|
|
21771
21788
|
:type DocBizId: str
|
21772
21789
|
:param _IsRefer: 是否引用链接
|
21773
21790
|
:type IsRefer: bool
|
21774
|
-
:param _AttrRange:
|
21791
|
+
:param _AttrRange: 标签适用范围,需要传参为1
|
21775
21792
|
:type AttrRange: int
|
21776
21793
|
:param _LoginUin: 登录用户主账号(集成商模式必填)
|
21777
21794
|
:type LoginUin: str
|
@@ -21790,6 +21807,8 @@ class ModifyDocRequest(AbstractModel):
|
|
21790
21807
|
:type ExpireEnd: str
|
21791
21808
|
:param _CateBizId: 分类ID
|
21792
21809
|
:type CateBizId: str
|
21810
|
+
:param _IsDownload: 是否可下载,IsRefer为true并且ReferUrlType为0时,该值才有意义
|
21811
|
+
:type IsDownload: bool
|
21793
21812
|
"""
|
21794
21813
|
self._BotBizId = None
|
21795
21814
|
self._DocBizId = None
|
@@ -21803,6 +21822,7 @@ class ModifyDocRequest(AbstractModel):
|
|
21803
21822
|
self._ExpireStart = None
|
21804
21823
|
self._ExpireEnd = None
|
21805
21824
|
self._CateBizId = None
|
21825
|
+
self._IsDownload = None
|
21806
21826
|
|
21807
21827
|
@property
|
21808
21828
|
def BotBizId(self):
|
@@ -21839,7 +21859,7 @@ class ModifyDocRequest(AbstractModel):
|
|
21839
21859
|
|
21840
21860
|
@property
|
21841
21861
|
def AttrRange(self):
|
21842
|
-
"""
|
21862
|
+
"""标签适用范围,需要传参为1
|
21843
21863
|
:rtype: int
|
21844
21864
|
"""
|
21845
21865
|
return self._AttrRange
|
@@ -21937,6 +21957,17 @@ class ModifyDocRequest(AbstractModel):
|
|
21937
21957
|
def CateBizId(self, CateBizId):
|
21938
21958
|
self._CateBizId = CateBizId
|
21939
21959
|
|
21960
|
+
@property
|
21961
|
+
def IsDownload(self):
|
21962
|
+
"""是否可下载,IsRefer为true并且ReferUrlType为0时,该值才有意义
|
21963
|
+
:rtype: bool
|
21964
|
+
"""
|
21965
|
+
return self._IsDownload
|
21966
|
+
|
21967
|
+
@IsDownload.setter
|
21968
|
+
def IsDownload(self, IsDownload):
|
21969
|
+
self._IsDownload = IsDownload
|
21970
|
+
|
21940
21971
|
|
21941
21972
|
def _deserialize(self, params):
|
21942
21973
|
self._BotBizId = params.get("BotBizId")
|
@@ -21956,6 +21987,7 @@ class ModifyDocRequest(AbstractModel):
|
|
21956
21987
|
self._ExpireStart = params.get("ExpireStart")
|
21957
21988
|
self._ExpireEnd = params.get("ExpireEnd")
|
21958
21989
|
self._CateBizId = params.get("CateBizId")
|
21990
|
+
self._IsDownload = params.get("IsDownload")
|
21959
21991
|
memeber_set = set(params.keys())
|
21960
21992
|
for name, value in vars(self).items():
|
21961
21993
|
property_name = name[1:]
|
@@ -8522,6 +8522,85 @@ class DeleteAlarmPolicyResponse(AbstractModel):
|
|
8522
8522
|
self._RequestId = params.get("RequestId")
|
8523
8523
|
|
8524
8524
|
|
8525
|
+
class DeleteAlarmShieldsRequest(AbstractModel):
|
8526
|
+
"""DeleteAlarmShields请求参数结构体
|
8527
|
+
|
8528
|
+
"""
|
8529
|
+
|
8530
|
+
def __init__(self):
|
8531
|
+
r"""
|
8532
|
+
:param _Module: 模块名,这里填“monitor”
|
8533
|
+
:type Module: str
|
8534
|
+
:param _Shields: 屏蔽策略Id列表
|
8535
|
+
:type Shields: list of str
|
8536
|
+
"""
|
8537
|
+
self._Module = None
|
8538
|
+
self._Shields = None
|
8539
|
+
|
8540
|
+
@property
|
8541
|
+
def Module(self):
|
8542
|
+
"""模块名,这里填“monitor”
|
8543
|
+
:rtype: str
|
8544
|
+
"""
|
8545
|
+
return self._Module
|
8546
|
+
|
8547
|
+
@Module.setter
|
8548
|
+
def Module(self, Module):
|
8549
|
+
self._Module = Module
|
8550
|
+
|
8551
|
+
@property
|
8552
|
+
def Shields(self):
|
8553
|
+
"""屏蔽策略Id列表
|
8554
|
+
:rtype: list of str
|
8555
|
+
"""
|
8556
|
+
return self._Shields
|
8557
|
+
|
8558
|
+
@Shields.setter
|
8559
|
+
def Shields(self, Shields):
|
8560
|
+
self._Shields = Shields
|
8561
|
+
|
8562
|
+
|
8563
|
+
def _deserialize(self, params):
|
8564
|
+
self._Module = params.get("Module")
|
8565
|
+
self._Shields = params.get("Shields")
|
8566
|
+
memeber_set = set(params.keys())
|
8567
|
+
for name, value in vars(self).items():
|
8568
|
+
property_name = name[1:]
|
8569
|
+
if property_name in memeber_set:
|
8570
|
+
memeber_set.remove(property_name)
|
8571
|
+
if len(memeber_set) > 0:
|
8572
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8573
|
+
|
8574
|
+
|
8575
|
+
|
8576
|
+
class DeleteAlarmShieldsResponse(AbstractModel):
|
8577
|
+
"""DeleteAlarmShields返回参数结构体
|
8578
|
+
|
8579
|
+
"""
|
8580
|
+
|
8581
|
+
def __init__(self):
|
8582
|
+
r"""
|
8583
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8584
|
+
:type RequestId: str
|
8585
|
+
"""
|
8586
|
+
self._RequestId = None
|
8587
|
+
|
8588
|
+
@property
|
8589
|
+
def RequestId(self):
|
8590
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8591
|
+
:rtype: str
|
8592
|
+
"""
|
8593
|
+
return self._RequestId
|
8594
|
+
|
8595
|
+
@RequestId.setter
|
8596
|
+
def RequestId(self, RequestId):
|
8597
|
+
self._RequestId = RequestId
|
8598
|
+
|
8599
|
+
|
8600
|
+
def _deserialize(self, params):
|
8601
|
+
self._RequestId = params.get("RequestId")
|
8602
|
+
|
8603
|
+
|
8525
8604
|
class DeleteAlertRulesRequest(AbstractModel):
|
8526
8605
|
"""DeleteAlertRules请求参数结构体
|
8527
8606
|
|
@@ -723,6 +723,29 @@ class MonitorClient(AbstractClient):
|
|
723
723
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
724
724
|
|
725
725
|
|
726
|
+
def DeleteAlarmShields(self, request):
|
727
|
+
"""删除告警屏蔽规则
|
728
|
+
|
729
|
+
:param request: Request instance for DeleteAlarmShields.
|
730
|
+
:type request: :class:`tencentcloud.monitor.v20180724.models.DeleteAlarmShieldsRequest`
|
731
|
+
:rtype: :class:`tencentcloud.monitor.v20180724.models.DeleteAlarmShieldsResponse`
|
732
|
+
|
733
|
+
"""
|
734
|
+
try:
|
735
|
+
params = request._serialize()
|
736
|
+
headers = request.headers
|
737
|
+
body = self.call("DeleteAlarmShields", params, headers=headers)
|
738
|
+
response = json.loads(body)
|
739
|
+
model = models.DeleteAlarmShieldsResponse()
|
740
|
+
model._deserialize(response["Response"])
|
741
|
+
return model
|
742
|
+
except Exception as e:
|
743
|
+
if isinstance(e, TencentCloudSDKException):
|
744
|
+
raise
|
745
|
+
else:
|
746
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
747
|
+
|
748
|
+
|
726
749
|
def DeleteAlertRules(self, request):
|
727
750
|
"""批量删除 Prometheus 报警规则
|
728
751
|
|
@@ -8549,13 +8549,9 @@ WeightNote -- 磅单
|
|
8549
8549
|
MedicalMeter -- 血压仪表识别
|
8550
8550
|
BillOfLading -- 海运提单
|
8551
8551
|
EntrustmentBook -- 海运托书
|
8552
|
-
WordRecognize -- 手写英文作文模版
|
8553
8552
|
Statement -- 对账单识别模板
|
8554
8553
|
BookingConfirmation -- 配舱通知书识别模板
|
8555
8554
|
AirWayBill -- 航空运单识别模板
|
8556
|
-
DispatchWeightNote -- 磅单发货单识别模板
|
8557
|
-
ReceiptWeightNote -- 磅单收货单识别模板
|
8558
|
-
ArticalRecognize -- 手写作文模版
|
8559
8555
|
Table -- 表格模版
|
8560
8556
|
SteelLabel -- 实物标签识别模板
|
8561
8557
|
CarInsurance -- 车辆保险单识别模板
|
@@ -8657,13 +8653,9 @@ WeightNote -- 磅单
|
|
8657
8653
|
MedicalMeter -- 血压仪表识别
|
8658
8654
|
BillOfLading -- 海运提单
|
8659
8655
|
EntrustmentBook -- 海运托书
|
8660
|
-
WordRecognize -- 手写英文作文模版
|
8661
8656
|
Statement -- 对账单识别模板
|
8662
8657
|
BookingConfirmation -- 配舱通知书识别模板
|
8663
8658
|
AirWayBill -- 航空运单识别模板
|
8664
|
-
DispatchWeightNote -- 磅单发货单识别模板
|
8665
|
-
ReceiptWeightNote -- 磅单收货单识别模板
|
8666
|
-
ArticalRecognize -- 手写作文模版
|
8667
8659
|
Table -- 表格模版
|
8668
8660
|
SteelLabel -- 实物标签识别模板
|
8669
8661
|
CarInsurance -- 车辆保险单识别模板
|
@@ -2688,6 +2688,10 @@ class ServerBaseConfig(AbstractModel):
|
|
2688
2688
|
:type OperationMode: str
|
2689
2689
|
:param _TimerScale: 定时扩缩容配置
|
2690
2690
|
:type TimerScale: list of TimerScale
|
2691
|
+
:param _EntryPoint: Dockerfile EntryPoint 参数
|
2692
|
+
:type EntryPoint: list of str
|
2693
|
+
:param _Cmd: Dockerfile Cmd 参数
|
2694
|
+
:type Cmd: list of str
|
2691
2695
|
"""
|
2692
2696
|
self._EnvId = None
|
2693
2697
|
self._ServerName = None
|
@@ -2714,6 +2718,8 @@ class ServerBaseConfig(AbstractModel):
|
|
2714
2718
|
self._InternalDomain = None
|
2715
2719
|
self._OperationMode = None
|
2716
2720
|
self._TimerScale = None
|
2721
|
+
self._EntryPoint = None
|
2722
|
+
self._Cmd = None
|
2717
2723
|
|
2718
2724
|
@property
|
2719
2725
|
def EnvId(self):
|
@@ -2990,6 +2996,28 @@ class ServerBaseConfig(AbstractModel):
|
|
2990
2996
|
def TimerScale(self, TimerScale):
|
2991
2997
|
self._TimerScale = TimerScale
|
2992
2998
|
|
2999
|
+
@property
|
3000
|
+
def EntryPoint(self):
|
3001
|
+
"""Dockerfile EntryPoint 参数
|
3002
|
+
:rtype: list of str
|
3003
|
+
"""
|
3004
|
+
return self._EntryPoint
|
3005
|
+
|
3006
|
+
@EntryPoint.setter
|
3007
|
+
def EntryPoint(self, EntryPoint):
|
3008
|
+
self._EntryPoint = EntryPoint
|
3009
|
+
|
3010
|
+
@property
|
3011
|
+
def Cmd(self):
|
3012
|
+
"""Dockerfile Cmd 参数
|
3013
|
+
:rtype: list of str
|
3014
|
+
"""
|
3015
|
+
return self._Cmd
|
3016
|
+
|
3017
|
+
@Cmd.setter
|
3018
|
+
def Cmd(self, Cmd):
|
3019
|
+
self._Cmd = Cmd
|
3020
|
+
|
2993
3021
|
|
2994
3022
|
def _deserialize(self, params):
|
2995
3023
|
self._EnvId = params.get("EnvId")
|
@@ -3027,6 +3055,8 @@ class ServerBaseConfig(AbstractModel):
|
|
3027
3055
|
obj = TimerScale()
|
3028
3056
|
obj._deserialize(item)
|
3029
3057
|
self._TimerScale.append(obj)
|
3058
|
+
self._EntryPoint = params.get("EntryPoint")
|
3059
|
+
self._Cmd = params.get("Cmd")
|
3030
3060
|
memeber_set = set(params.keys())
|
3031
3061
|
for name, value in vars(self).items():
|
3032
3062
|
property_name = name[1:]
|
{tencentcloud_sdk_python-3.0.1404.dist-info → tencentcloud_sdk_python-3.0.1405.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=GwGOscomA2QYoFhz4T_9RDCrtrqnYFXjw9gkCNskaYA,631
|
54
54
|
tencentcloud/aai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aai/v20180522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aai/v20180522/aai_client.py,sha256=UNkXLBkE-C-wBaan9RD0U4t2H-XCJDTPgWDFYzUitgE,5497
|
@@ -169,7 +169,7 @@ tencentcloud/bi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
169
|
tencentcloud/bi/v20220105/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
170
170
|
tencentcloud/bi/v20220105/bi_client.py,sha256=-KfUqy5xpfyexEaOLuRykCKa6kv3c06Hk4djLNP8_0A,22059
|
171
171
|
tencentcloud/bi/v20220105/errorcodes.py,sha256=fTLDnf4fNmojkhSZbdj_0vrozWeMBpJpJuBxSU-rp-0,2128
|
172
|
-
tencentcloud/bi/v20220105/models.py,sha256=
|
172
|
+
tencentcloud/bi/v20220105/models.py,sha256=_Scgw4-XZMJBB4l1mE35B1TyXp3MXQ0GhG69ZzYrnCM,290794
|
173
173
|
tencentcloud/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
174
174
|
tencentcloud/billing/v20180709/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
175
175
|
tencentcloud/billing/v20180709/billing_client.py,sha256=UeYZh7rPB8qZflUvyVaKiPRhlyjStAUwjBsyQnlsmyA,55056
|
@@ -272,7 +272,7 @@ tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
272
272
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
273
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=i10_TW51FQ6asQjcaX0Lq5OY1oXSPItZQeCrivXToIk,173847
|
274
274
|
tencentcloud/cdb/v20170320/errorcodes.py,sha256=P9_n7BssOvR9ptKD-ojcdBM6kZfykjPVyWr6GdgGUFk,21155
|
275
|
-
tencentcloud/cdb/v20170320/models.py,sha256=
|
275
|
+
tencentcloud/cdb/v20170320/models.py,sha256=O_Sno6w0aoZ21w6u7nyDjjVWS2io3Id6pqIq1T1FDeg,1246038
|
276
276
|
tencentcloud/cdc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
277
277
|
tencentcloud/cdc/v20201214/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
278
|
tencentcloud/cdc/v20201214/cdc_client.py,sha256=drZo3gVqdh0ibMHSYbJWzDkWrUDo7lQ4zoS1J10FS-w,22442
|
@@ -317,7 +317,7 @@ tencentcloud/cfs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
317
317
|
tencentcloud/cfs/v20190719/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
318
318
|
tencentcloud/cfs/v20190719/cfs_client.py,sha256=nOGyw0zU6y-Uw67d13Xzl799mv5L4NTf5DmPukfixg0,42318
|
319
319
|
tencentcloud/cfs/v20190719/errorcodes.py,sha256=fAooEvSCsoA7spNuZ71SPpvkGbmD0fhP9xSCK1KTRsc,16563
|
320
|
-
tencentcloud/cfs/v20190719/models.py,sha256=
|
320
|
+
tencentcloud/cfs/v20190719/models.py,sha256=RSt368iKuIOBA2OomwZ3s0L6Li5O1RJrGiRHfDoP5Kg,269571
|
321
321
|
tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
322
322
|
tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
323
323
|
tencentcloud/cfw/v20190904/cfw_client.py,sha256=-SGv4CJzBmKKAzZO9gcNe2gyKC-RZrMzPyDPkeDDYNw,105727
|
@@ -395,7 +395,7 @@ tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
395
395
|
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
396
396
|
tencentcloud/cls/v20201016/cls_client.py,sha256=QQDmkeWdWZpazOJx8EFMYKadNXZEEXKigi8LAr69uMc,112668
|
397
397
|
tencentcloud/cls/v20201016/errorcodes.py,sha256=dlENEAcp9AfLe0wtVZ7Ct27YDDEZBd71UO-KaR-su80,11240
|
398
|
-
tencentcloud/cls/v20201016/models.py,sha256=
|
398
|
+
tencentcloud/cls/v20201016/models.py,sha256=ujfGh2HnepAIwwrmZBNDuNe72cr286ZZ6jsIcgu44tE,971032
|
399
399
|
tencentcloud/cme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
400
400
|
tencentcloud/cme/v20191029/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
401
401
|
tencentcloud/cme/v20191029/cme_client.py,sha256=-AhBD_M0Tjajeb6Z-YXvBeqoq57APfcDQ2MhGXLh4z0,55319
|
@@ -616,7 +616,7 @@ tencentcloud/essbasic/v20201222/models.py,sha256=O9e3iv74K4tUd9YKAf61DQ1KKG59MwV
|
|
616
616
|
tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
617
617
|
tencentcloud/essbasic/v20210526/errorcodes.py,sha256=rGuO2QCe_MNpkFXyqPHDYHDAHSgN1oEaxsZdvG1vz0s,18334
|
618
618
|
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=iR8Zn868uLzV62XRTeLUqIkcCVaRiB67FVFrsJ2X_BI,171780
|
619
|
-
tencentcloud/essbasic/v20210526/models.py,sha256=
|
619
|
+
tencentcloud/essbasic/v20210526/models.py,sha256=rBFmV9ElhwQ0Nd-vVPdooN7E2SD49VU-k0RCh8wXkig,1272101
|
620
620
|
tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
621
621
|
tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
622
622
|
tencentcloud/facefusion/v20181201/errorcodes.py,sha256=v269JghsRzIpaQbiHgyqn8wKNfvjYkVM7SjaPBRQYPs,5731
|
@@ -776,8 +776,8 @@ tencentcloud/iotcloud/v20210408/models.py,sha256=cV0raEIMAHSAJ0DHBG8uXMyT9G1LFfk
|
|
776
776
|
tencentcloud/iotexplorer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
777
777
|
tencentcloud/iotexplorer/v20190423/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
778
778
|
tencentcloud/iotexplorer/v20190423/errorcodes.py,sha256=NlaCY0q9zoE0VIKB92CqyFeUEeuKHtMbGk-5bJv48FE,24016
|
779
|
-
tencentcloud/iotexplorer/v20190423/iotexplorer_client.py,sha256=
|
780
|
-
tencentcloud/iotexplorer/v20190423/models.py,sha256=
|
779
|
+
tencentcloud/iotexplorer/v20190423/iotexplorer_client.py,sha256=QdO0a1p0u5Q_-IIhODa9dID1w-SgVXmbAz9V1Uay9U8,157790
|
780
|
+
tencentcloud/iotexplorer/v20190423/models.py,sha256=7Y1x2nzXXBeN30AJC7h-E2-DGj7bMoDshq6smVffoD0,865563
|
781
781
|
tencentcloud/iottid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
782
782
|
tencentcloud/iottid/v20190411/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
783
783
|
tencentcloud/iottid/v20190411/errorcodes.py,sha256=8HLJco204GFDbjmQDdjbUSLO1AFGPXVNVhsglGcae-g,1707
|
@@ -849,7 +849,7 @@ tencentcloud/lke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
849
849
|
tencentcloud/lke/v20231130/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
850
850
|
tencentcloud/lke/v20231130/errorcodes.py,sha256=F8jwAr2NVhzB1Nj3RsF71vsqdEzHFz-nNMv-1NOhRzU,1934
|
851
851
|
tencentcloud/lke/v20231130/lke_client.py,sha256=6wBWm22KogbcE9YLXwdMp7IcfSnZNpA3QtNmtOHLBiI,98969
|
852
|
-
tencentcloud/lke/v20231130/models.py,sha256=
|
852
|
+
tencentcloud/lke/v20231130/models.py,sha256=VYRiTNlT9qGu3ETA4gPZ3uY-nNZsNOv_YrNJcGaD9VA,903701
|
853
853
|
tencentcloud/lkeap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
854
854
|
tencentcloud/lkeap/v20240522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
855
855
|
tencentcloud/lkeap/v20240522/errorcodes.py,sha256=pSx0n_A6I_tVRJNr38UZIiklPU-CTx0v2g51OrUsnWM,2470
|
@@ -911,8 +911,8 @@ tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=0uvU5D9OwaNQmdzVdiDTTc7a
|
|
911
911
|
tencentcloud/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
912
912
|
tencentcloud/monitor/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
913
913
|
tencentcloud/monitor/v20180724/errorcodes.py,sha256=2C04qjLyO_5S3de44_vBCh8uogkW5jw1MLqs6U-3pM4,10609
|
914
|
-
tencentcloud/monitor/v20180724/models.py,sha256=
|
915
|
-
tencentcloud/monitor/v20180724/monitor_client.py,sha256=
|
914
|
+
tencentcloud/monitor/v20180724/models.py,sha256=QbI4epclHnZGA8x5azmGkOQsaTPYb_d5trE-X0prlrk,1256865
|
915
|
+
tencentcloud/monitor/v20180724/monitor_client.py,sha256=zEj3Ih5QFsz9qI7KqepbNDTwWc4vrVEM3Bsij9fvEsI,162859
|
916
916
|
tencentcloud/monitor/v20230616/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
917
917
|
tencentcloud/monitor/v20230616/errorcodes.py,sha256=H3uiPDQMUATkHro44GpouV3rxcjDd0Bcyl6FQ8Pc7NU,983
|
918
918
|
tencentcloud/monitor/v20230616/models.py,sha256=oy8bYeCXrlHV071A8mH8CsbX64bBcm3ISXwbJ6G_dXU,16234
|
@@ -965,7 +965,7 @@ tencentcloud/oceanus/v20190422/oceanus_client.py,sha256=HZQ5Dmh06DpxJX0Em6NmrlAX
|
|
965
965
|
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
966
966
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
967
967
|
tencentcloud/ocr/v20181119/errorcodes.py,sha256=L12AZxzshizeJibob00zcd-pBSaeP5XE7OlNM1Firlk,7012
|
968
|
-
tencentcloud/ocr/v20181119/models.py,sha256=
|
968
|
+
tencentcloud/ocr/v20181119/models.py,sha256=mJKuAvBA-yFru-9u2gWFkDykTqf4BHrm-Pwi5Rzm6jY,1361380
|
969
969
|
tencentcloud/ocr/v20181119/ocr_client.py,sha256=QDWZ3EFzUvC7XiVXtYpYqsAC0RmtlTTcoWWrTqSGPAI,121743
|
970
970
|
tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
971
971
|
tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1162,7 +1162,7 @@ tencentcloud/tcb/v20180608/tcb_client.py,sha256=JofJM1c-yIzzAav7SjoekKzIAirUNKPc
|
|
1162
1162
|
tencentcloud/tcbr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1163
1163
|
tencentcloud/tcbr/v20220217/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1164
1164
|
tencentcloud/tcbr/v20220217/errorcodes.py,sha256=iQT4JPXQWlKYSt7kyMisf3rEMTBU8-QOtNuI8x65myY,1182
|
1165
|
-
tencentcloud/tcbr/v20220217/models.py,sha256=
|
1165
|
+
tencentcloud/tcbr/v20220217/models.py,sha256=eTVrtFBr8roNkIAbRuHhFh6hMg2ypTt4-1jmMJzxtgk,113384
|
1166
1166
|
tencentcloud/tcbr/v20220217/tcbr_client.py,sha256=ZQLiQnhT_ldjjtwpi_UOZuE4Hm3Quz7LuCf91whrxH8,10074
|
1167
1167
|
tencentcloud/tccatalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1168
1168
|
tencentcloud/tccatalog/v20241024/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1502,8 +1502,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1502
1502
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1503
1503
|
tencentcloud/yunsou/v20191115/models.py,sha256=rL2feGJfTHvEmkfS_c9En9Xl1g32vTs9IC_q5p9CYgY,27680
|
1504
1504
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1505
|
-
tencentcloud_sdk_python-3.0.
|
1506
|
-
tencentcloud_sdk_python-3.0.
|
1507
|
-
tencentcloud_sdk_python-3.0.
|
1508
|
-
tencentcloud_sdk_python-3.0.
|
1509
|
-
tencentcloud_sdk_python-3.0.
|
1505
|
+
tencentcloud_sdk_python-3.0.1405.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1506
|
+
tencentcloud_sdk_python-3.0.1405.dist-info/METADATA,sha256=mlNWBydSM5fxEr5YGn0qUxZ1BddLD3UiL7GcMU8HyiE,1613
|
1507
|
+
tencentcloud_sdk_python-3.0.1405.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1508
|
+
tencentcloud_sdk_python-3.0.1405.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1509
|
+
tencentcloud_sdk_python-3.0.1405.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1404.dist-info → tencentcloud_sdk_python-3.0.1405.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1404.dist-info → tencentcloud_sdk_python-3.0.1405.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|