tencentcloud-sdk-python-ioa 3.0.1447__tar.gz → 3.0.1457__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud/ioa/v20220601/ioa_client.py +92 -0
  5. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud/ioa/v20220601/models.py +1755 -186
  6. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud_sdk_python_ioa.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-ioa-3.0.1457/tencentcloud_sdk_python_ioa.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-ioa-3.0.1447/tencentcloud_sdk_python_ioa.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/README.rst +0 -0
  10. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud/ioa/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud/ioa/v20220601/__init__.py +0 -0
  13. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud/ioa/v20220601/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud_sdk_python_ioa.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud_sdk_python_ioa.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ioa-3.0.1447 → tencentcloud-sdk-python-ioa-3.0.1457}/tencentcloud_sdk_python_ioa.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ioa
3
- Version: 3.0.1447
3
+ Version: 3.0.1457
4
4
  Summary: Tencent Cloud Ioa SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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>=3.0.1447,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1457,<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(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1447'
17
+ __version__ = '3.0.1457'
@@ -164,6 +164,52 @@ class IoaClient(AbstractClient):
164
164
  raise TencentCloudSDKException(type(e).__name__, str(e))
165
165
 
166
166
 
167
+ def DescribeAggrSoftDetail(self, request):
168
+ """聚合的软件详情
169
+
170
+ :param request: Request instance for DescribeAggrSoftDetail.
171
+ :type request: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftDetailRequest`
172
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftDetailResponse`
173
+
174
+ """
175
+ try:
176
+ params = request._serialize()
177
+ headers = request.headers
178
+ body = self.call("DescribeAggrSoftDetail", params, headers=headers)
179
+ response = json.loads(body)
180
+ model = models.DescribeAggrSoftDetailResponse()
181
+ model._deserialize(response["Response"])
182
+ return model
183
+ except Exception as e:
184
+ if isinstance(e, TencentCloudSDKException):
185
+ raise
186
+ else:
187
+ raise TencentCloudSDKException(type(e).__name__, str(e))
188
+
189
+
190
+ def DescribeAggrSoftDeviceList(self, request):
191
+ """聚合软件的已安装终端列表
192
+
193
+ :param request: Request instance for DescribeAggrSoftDeviceList.
194
+ :type request: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftDeviceListRequest`
195
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftDeviceListResponse`
196
+
197
+ """
198
+ try:
199
+ params = request._serialize()
200
+ headers = request.headers
201
+ body = self.call("DescribeAggrSoftDeviceList", params, headers=headers)
202
+ response = json.loads(body)
203
+ model = models.DescribeAggrSoftDeviceListResponse()
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 DescribeDLPFileDetectResult(self, request):
168
214
  """webservice查询文件检测结果
169
215
 
@@ -210,6 +256,29 @@ class IoaClient(AbstractClient):
210
256
  raise TencentCloudSDKException(type(e).__name__, str(e))
211
257
 
212
258
 
259
+ def DescribeDeviceDetailList(self, request):
260
+ """基于软件查看终端详情列表,私有化调用path为:capi/Software/DescribeDeviceDetailList
261
+
262
+ :param request: Request instance for DescribeDeviceDetailList.
263
+ :type request: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceDetailListRequest`
264
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceDetailListResponse`
265
+
266
+ """
267
+ try:
268
+ params = request._serialize()
269
+ headers = request.headers
270
+ body = self.call("DescribeDeviceDetailList", params, headers=headers)
271
+ response = json.loads(body)
272
+ model = models.DescribeDeviceDetailListResponse()
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
+
213
282
  def DescribeDeviceHardwareInfoList(self, request):
214
283
  """查询满足条件的查询终端硬件信息列表,私有化调用path为:/capi/Assets/Device/DescribeDeviceHardwareInfoList
215
284
 
@@ -417,6 +486,29 @@ class IoaClient(AbstractClient):
417
486
  raise TencentCloudSDKException(type(e).__name__, str(e))
418
487
 
419
488
 
489
+ def ExportSoftwareInformationList(self, request):
490
+ """导出基于指定终端查看软件信息详情列表查询,私有化调用path为:capi/Software/ExportSoftwareInformationList
491
+
492
+ :param request: Request instance for ExportSoftwareInformationList.
493
+ :type request: :class:`tencentcloud.ioa.v20220601.models.ExportSoftwareInformationListRequest`
494
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.ExportSoftwareInformationListResponse`
495
+
496
+ """
497
+ try:
498
+ params = request._serialize()
499
+ headers = request.headers
500
+ body = self.call("ExportSoftwareInformationList", params, headers=headers)
501
+ response = json.loads(body)
502
+ model = models.ExportSoftwareInformationListResponse()
503
+ model._deserialize(response["Response"])
504
+ return model
505
+ except Exception as e:
506
+ if isinstance(e, TencentCloudSDKException):
507
+ raise
508
+ else:
509
+ raise TencentCloudSDKException(type(e).__name__, str(e))
510
+
511
+
420
512
  def ModifyVirtualDeviceGroups(self, request):
421
513
  """终端自定义分组增减终端,私有化调用path为:/capi/Assets/Device/ModifyVirtualDeviceGroups
422
514