tencentcloud-sdk-python-ioa 3.0.1417__tar.gz → 3.0.1447__tar.gz
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-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/setup.py +1 -1
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud/ioa/v20220601/errorcodes.py +6 -0
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud/ioa/v20220601/ioa_client.py +46 -0
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud/ioa/v20220601/models.py +1036 -91
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud_sdk_python_ioa.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ioa-3.0.1447/tencentcloud_sdk_python_ioa.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ioa-3.0.1417/tencentcloud_sdk_python_ioa.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/README.rst +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud/ioa/__init__.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud/ioa/v20220601/__init__.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud_sdk_python_ioa.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud_sdk_python_ioa.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1417 → tencentcloud-sdk-python-ioa-3.0.1447}/tencentcloud_sdk_python_ioa.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ioa',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1447,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ioa SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -35,12 +35,18 @@ INTERNALERROR_UNKNOWN = 'InternalError.Unknown'
|
|
|
35
35
|
# 参数错误:规则相关字段传参或者字段内容错误
|
|
36
36
|
INVALIDPARAMETER_AUTORULEPARAMETERERROR = 'InvalidParameter.AutoRuleParameterError'
|
|
37
37
|
|
|
38
|
+
# 数据库错误
|
|
39
|
+
INVALIDPARAMETER_DATABASEEXCEPTION = 'InvalidParameter.DatabaseException'
|
|
40
|
+
|
|
38
41
|
# 重复的终端自定义分组名称。
|
|
39
42
|
INVALIDPARAMETER_DUPLICATEDEVICEVIRTUALGROUPNAME = 'InvalidParameter.DuplicateDeviceVirtualGroupName'
|
|
40
43
|
|
|
41
44
|
# 黑白名单选中有相同的终端设备
|
|
42
45
|
INVALIDPARAMETER_DUPLICATEIDINBLACKWHITELIST = 'InvalidParameter.DuplicateIdInBlackWhiteList'
|
|
43
46
|
|
|
47
|
+
# 请求参数错误。
|
|
48
|
+
INVALIDPARAMETER_INVALIDPARAMETER = 'InvalidParameter.InvalidParameter'
|
|
49
|
+
|
|
44
50
|
# 请求参数错误。
|
|
45
51
|
INVALIDPARAMETER_REQUESTPARAM = 'InvalidParameter.RequestParam'
|
|
46
52
|
|
|
@@ -141,6 +141,29 @@ class IoaClient(AbstractClient):
|
|
|
141
141
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
142
142
|
|
|
143
143
|
|
|
144
|
+
def DescribeAggrSoftCategorySoftList(self, request):
|
|
145
|
+
"""聚合的分类软件列表
|
|
146
|
+
|
|
147
|
+
:param request: Request instance for DescribeAggrSoftCategorySoftList.
|
|
148
|
+
:type request: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftCategorySoftListRequest`
|
|
149
|
+
:rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftCategorySoftListResponse`
|
|
150
|
+
|
|
151
|
+
"""
|
|
152
|
+
try:
|
|
153
|
+
params = request._serialize()
|
|
154
|
+
headers = request.headers
|
|
155
|
+
body = self.call("DescribeAggrSoftCategorySoftList", params, headers=headers)
|
|
156
|
+
response = json.loads(body)
|
|
157
|
+
model = models.DescribeAggrSoftCategorySoftListResponse()
|
|
158
|
+
model._deserialize(response["Response"])
|
|
159
|
+
return model
|
|
160
|
+
except Exception as e:
|
|
161
|
+
if isinstance(e, TencentCloudSDKException):
|
|
162
|
+
raise
|
|
163
|
+
else:
|
|
164
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
165
|
+
|
|
166
|
+
|
|
144
167
|
def DescribeDLPFileDetectResult(self, request):
|
|
145
168
|
"""webservice查询文件检测结果
|
|
146
169
|
|
|
@@ -164,6 +187,29 @@ class IoaClient(AbstractClient):
|
|
|
164
187
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
165
188
|
|
|
166
189
|
|
|
190
|
+
def DescribeDeviceChildGroups(self, request):
|
|
191
|
+
"""查询设备组子分组详情,私有化调用path为:capi/Assets/Device/DescribeDeviceChildGroups
|
|
192
|
+
|
|
193
|
+
:param request: Request instance for DescribeDeviceChildGroups.
|
|
194
|
+
:type request: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceChildGroupsRequest`
|
|
195
|
+
:rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceChildGroupsResponse`
|
|
196
|
+
|
|
197
|
+
"""
|
|
198
|
+
try:
|
|
199
|
+
params = request._serialize()
|
|
200
|
+
headers = request.headers
|
|
201
|
+
body = self.call("DescribeDeviceChildGroups", params, headers=headers)
|
|
202
|
+
response = json.loads(body)
|
|
203
|
+
model = models.DescribeDeviceChildGroupsResponse()
|
|
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
|
+
|
|
167
213
|
def DescribeDeviceHardwareInfoList(self, request):
|
|
168
214
|
"""查询满足条件的查询终端硬件信息列表,私有化调用path为:/capi/Assets/Device/DescribeDeviceHardwareInfoList
|
|
169
215
|
|