tencentcloud-sdk-python-ioa 3.0.1487__tar.gz → 3.1.19__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.1487 → tencentcloud_sdk_python_ioa-3.1.19}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/setup.py +2 -1
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud/__init__.py +1 -1
- tencentcloud_sdk_python_ioa-3.1.19/tencentcloud/ioa/v20220601/ioa_client_async.py +512 -0
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud/ioa/v20220601/models.py +60 -0
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud_sdk_python_ioa.egg-info/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud_sdk_python_ioa.egg-info/SOURCES.txt +1 -0
- tencentcloud_sdk_python_ioa-3.1.19/tencentcloud_sdk_python_ioa.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ioa-3.0.1487/tencentcloud_sdk_python_ioa.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/README.rst +0 -0
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud/ioa/__init__.py +0 -0
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud/ioa/v20220601/__init__.py +0 -0
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud/ioa/v20220601/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud/ioa/v20220601/ioa_client.py +0 -0
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud_sdk_python_ioa.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ioa-3.0.1487 → tencentcloud_sdk_python_ioa-3.1.19}/tencentcloud_sdk_python_ioa.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ioa
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1.19
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.19
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,8 @@ 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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.19,<4.0.0"],
|
|
12
|
+
|
|
12
13
|
version=tencentcloud.__version__,
|
|
13
14
|
description='Tencent Cloud Ioa SDK for Python',
|
|
14
15
|
long_description=open('README.rst').read(),
|
|
@@ -0,0 +1,512 @@
|
|
|
1
|
+
# -*- coding: utf8 -*-
|
|
2
|
+
# Copyright (c) 2017-2025 Tencent. All Rights Reserved.
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
from tencentcloud.common.abstract_client_async import AbstractClient
|
|
19
|
+
from tencentcloud.ioa.v20220601 import models
|
|
20
|
+
from typing import Dict
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class IoaClient(AbstractClient):
|
|
24
|
+
_apiVersion = '2022-06-01'
|
|
25
|
+
_endpoint = 'ioa.tencentcloudapi.com'
|
|
26
|
+
_service = 'ioa'
|
|
27
|
+
|
|
28
|
+
async def CreateDLPFileDetectTask(
|
|
29
|
+
self,
|
|
30
|
+
request: models.CreateDLPFileDetectTaskRequest,
|
|
31
|
+
opts: Dict = None,
|
|
32
|
+
) -> models.CreateDLPFileDetectTaskResponse:
|
|
33
|
+
"""
|
|
34
|
+
创建文件鉴定任务,私有化调用path为:capi/DlpOpenApi/CreateDLPFileDetectTask
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
kwargs = {}
|
|
38
|
+
kwargs["action"] = "CreateDLPFileDetectTask"
|
|
39
|
+
kwargs["params"] = request._serialize()
|
|
40
|
+
kwargs["resp_cls"] = models.CreateDLPFileDetectTaskResponse
|
|
41
|
+
kwargs["headers"] = request.headers
|
|
42
|
+
kwargs["opts"] = opts or {}
|
|
43
|
+
|
|
44
|
+
return await self.call_and_deserialize(**kwargs)
|
|
45
|
+
|
|
46
|
+
async def CreateDLPFileDetectionTask(
|
|
47
|
+
self,
|
|
48
|
+
request: models.CreateDLPFileDetectionTaskRequest,
|
|
49
|
+
opts: Dict = None,
|
|
50
|
+
) -> models.CreateDLPFileDetectionTaskResponse:
|
|
51
|
+
"""
|
|
52
|
+
提交送检任务
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
kwargs = {}
|
|
56
|
+
kwargs["action"] = "CreateDLPFileDetectionTask"
|
|
57
|
+
kwargs["params"] = request._serialize()
|
|
58
|
+
kwargs["resp_cls"] = models.CreateDLPFileDetectionTaskResponse
|
|
59
|
+
kwargs["headers"] = request.headers
|
|
60
|
+
kwargs["opts"] = opts or {}
|
|
61
|
+
|
|
62
|
+
return await self.call_and_deserialize(**kwargs)
|
|
63
|
+
|
|
64
|
+
async def CreateDeviceTask(
|
|
65
|
+
self,
|
|
66
|
+
request: models.CreateDeviceTaskRequest,
|
|
67
|
+
opts: Dict = None,
|
|
68
|
+
) -> models.CreateDeviceTaskResponse:
|
|
69
|
+
"""
|
|
70
|
+
创建获取终端进程网络服务信息任务,私有化调用path为:capi/Assets/Device/DescribeDeviceInfo
|
|
71
|
+
"""
|
|
72
|
+
|
|
73
|
+
kwargs = {}
|
|
74
|
+
kwargs["action"] = "CreateDeviceTask"
|
|
75
|
+
kwargs["params"] = request._serialize()
|
|
76
|
+
kwargs["resp_cls"] = models.CreateDeviceTaskResponse
|
|
77
|
+
kwargs["headers"] = request.headers
|
|
78
|
+
kwargs["opts"] = opts or {}
|
|
79
|
+
|
|
80
|
+
return await self.call_and_deserialize(**kwargs)
|
|
81
|
+
|
|
82
|
+
async def CreateDeviceVirtualGroup(
|
|
83
|
+
self,
|
|
84
|
+
request: models.CreateDeviceVirtualGroupRequest,
|
|
85
|
+
opts: Dict = None,
|
|
86
|
+
) -> models.CreateDeviceVirtualGroupResponse:
|
|
87
|
+
"""
|
|
88
|
+
创建终端自定义分组,私有化调用path为:/capi/Assets/Device/CreateDeviceVirtualGroup
|
|
89
|
+
"""
|
|
90
|
+
|
|
91
|
+
kwargs = {}
|
|
92
|
+
kwargs["action"] = "CreateDeviceVirtualGroup"
|
|
93
|
+
kwargs["params"] = request._serialize()
|
|
94
|
+
kwargs["resp_cls"] = models.CreateDeviceVirtualGroupResponse
|
|
95
|
+
kwargs["headers"] = request.headers
|
|
96
|
+
kwargs["opts"] = opts or {}
|
|
97
|
+
|
|
98
|
+
return await self.call_and_deserialize(**kwargs)
|
|
99
|
+
|
|
100
|
+
async def CreatePrivilegeCode(
|
|
101
|
+
self,
|
|
102
|
+
request: models.CreatePrivilegeCodeRequest,
|
|
103
|
+
opts: Dict = None,
|
|
104
|
+
) -> models.CreatePrivilegeCodeResponse:
|
|
105
|
+
"""
|
|
106
|
+
生成特权码,私有化调用path为:capi/Assets/Device/CreatePrivilegeCode,生成的特权码、卸载码,仅对该设备当天有效
|
|
107
|
+
"""
|
|
108
|
+
|
|
109
|
+
kwargs = {}
|
|
110
|
+
kwargs["action"] = "CreatePrivilegeCode"
|
|
111
|
+
kwargs["params"] = request._serialize()
|
|
112
|
+
kwargs["resp_cls"] = models.CreatePrivilegeCodeResponse
|
|
113
|
+
kwargs["headers"] = request.headers
|
|
114
|
+
kwargs["opts"] = opts or {}
|
|
115
|
+
|
|
116
|
+
return await self.call_and_deserialize(**kwargs)
|
|
117
|
+
|
|
118
|
+
async def DescribeAccountGroups(
|
|
119
|
+
self,
|
|
120
|
+
request: models.DescribeAccountGroupsRequest,
|
|
121
|
+
opts: Dict = None,
|
|
122
|
+
) -> models.DescribeAccountGroupsResponse:
|
|
123
|
+
"""
|
|
124
|
+
以分页的方式查询账号分组列表,私有化调用path为:/capi/Assets/DescribeAccountGroups
|
|
125
|
+
"""
|
|
126
|
+
|
|
127
|
+
kwargs = {}
|
|
128
|
+
kwargs["action"] = "DescribeAccountGroups"
|
|
129
|
+
kwargs["params"] = request._serialize()
|
|
130
|
+
kwargs["resp_cls"] = models.DescribeAccountGroupsResponse
|
|
131
|
+
kwargs["headers"] = request.headers
|
|
132
|
+
kwargs["opts"] = opts or {}
|
|
133
|
+
|
|
134
|
+
return await self.call_and_deserialize(**kwargs)
|
|
135
|
+
|
|
136
|
+
async def DescribeAggrSoftCategorySoftList(
|
|
137
|
+
self,
|
|
138
|
+
request: models.DescribeAggrSoftCategorySoftListRequest,
|
|
139
|
+
opts: Dict = None,
|
|
140
|
+
) -> models.DescribeAggrSoftCategorySoftListResponse:
|
|
141
|
+
"""
|
|
142
|
+
聚合的分类软件列表
|
|
143
|
+
"""
|
|
144
|
+
|
|
145
|
+
kwargs = {}
|
|
146
|
+
kwargs["action"] = "DescribeAggrSoftCategorySoftList"
|
|
147
|
+
kwargs["params"] = request._serialize()
|
|
148
|
+
kwargs["resp_cls"] = models.DescribeAggrSoftCategorySoftListResponse
|
|
149
|
+
kwargs["headers"] = request.headers
|
|
150
|
+
kwargs["opts"] = opts or {}
|
|
151
|
+
|
|
152
|
+
return await self.call_and_deserialize(**kwargs)
|
|
153
|
+
|
|
154
|
+
async def DescribeAggrSoftDetail(
|
|
155
|
+
self,
|
|
156
|
+
request: models.DescribeAggrSoftDetailRequest,
|
|
157
|
+
opts: Dict = None,
|
|
158
|
+
) -> models.DescribeAggrSoftDetailResponse:
|
|
159
|
+
"""
|
|
160
|
+
聚合的软件详情
|
|
161
|
+
"""
|
|
162
|
+
|
|
163
|
+
kwargs = {}
|
|
164
|
+
kwargs["action"] = "DescribeAggrSoftDetail"
|
|
165
|
+
kwargs["params"] = request._serialize()
|
|
166
|
+
kwargs["resp_cls"] = models.DescribeAggrSoftDetailResponse
|
|
167
|
+
kwargs["headers"] = request.headers
|
|
168
|
+
kwargs["opts"] = opts or {}
|
|
169
|
+
|
|
170
|
+
return await self.call_and_deserialize(**kwargs)
|
|
171
|
+
|
|
172
|
+
async def DescribeAggrSoftDeviceList(
|
|
173
|
+
self,
|
|
174
|
+
request: models.DescribeAggrSoftDeviceListRequest,
|
|
175
|
+
opts: Dict = None,
|
|
176
|
+
) -> models.DescribeAggrSoftDeviceListResponse:
|
|
177
|
+
"""
|
|
178
|
+
聚合软件的已安装终端列表
|
|
179
|
+
"""
|
|
180
|
+
|
|
181
|
+
kwargs = {}
|
|
182
|
+
kwargs["action"] = "DescribeAggrSoftDeviceList"
|
|
183
|
+
kwargs["params"] = request._serialize()
|
|
184
|
+
kwargs["resp_cls"] = models.DescribeAggrSoftDeviceListResponse
|
|
185
|
+
kwargs["headers"] = request.headers
|
|
186
|
+
kwargs["opts"] = opts or {}
|
|
187
|
+
|
|
188
|
+
return await self.call_and_deserialize(**kwargs)
|
|
189
|
+
|
|
190
|
+
async def DescribeDLPEdgeNodeGroups(
|
|
191
|
+
self,
|
|
192
|
+
request: models.DescribeDLPEdgeNodeGroupsRequest,
|
|
193
|
+
opts: Dict = None,
|
|
194
|
+
) -> models.DescribeDLPEdgeNodeGroupsResponse:
|
|
195
|
+
"""
|
|
196
|
+
查询边缘节点分组,私有化调用path为:capi/Connectors/DescribeDLPEdgeNodeGroups
|
|
197
|
+
"""
|
|
198
|
+
|
|
199
|
+
kwargs = {}
|
|
200
|
+
kwargs["action"] = "DescribeDLPEdgeNodeGroups"
|
|
201
|
+
kwargs["params"] = request._serialize()
|
|
202
|
+
kwargs["resp_cls"] = models.DescribeDLPEdgeNodeGroupsResponse
|
|
203
|
+
kwargs["headers"] = request.headers
|
|
204
|
+
kwargs["opts"] = opts or {}
|
|
205
|
+
|
|
206
|
+
return await self.call_and_deserialize(**kwargs)
|
|
207
|
+
|
|
208
|
+
async def DescribeDLPEdgeNodes(
|
|
209
|
+
self,
|
|
210
|
+
request: models.DescribeDLPEdgeNodesRequest,
|
|
211
|
+
opts: Dict = None,
|
|
212
|
+
) -> models.DescribeDLPEdgeNodesResponse:
|
|
213
|
+
"""
|
|
214
|
+
查询边缘节点列表,私有化调用path为:capi/DlpOpenApi/DescribeDLPEdgeNodes
|
|
215
|
+
"""
|
|
216
|
+
|
|
217
|
+
kwargs = {}
|
|
218
|
+
kwargs["action"] = "DescribeDLPEdgeNodes"
|
|
219
|
+
kwargs["params"] = request._serialize()
|
|
220
|
+
kwargs["resp_cls"] = models.DescribeDLPEdgeNodesResponse
|
|
221
|
+
kwargs["headers"] = request.headers
|
|
222
|
+
kwargs["opts"] = opts or {}
|
|
223
|
+
|
|
224
|
+
return await self.call_and_deserialize(**kwargs)
|
|
225
|
+
|
|
226
|
+
async def DescribeDLPFileDetectResult(
|
|
227
|
+
self,
|
|
228
|
+
request: models.DescribeDLPFileDetectResultRequest,
|
|
229
|
+
opts: Dict = None,
|
|
230
|
+
) -> models.DescribeDLPFileDetectResultResponse:
|
|
231
|
+
"""
|
|
232
|
+
webservice查询文件检测结果
|
|
233
|
+
"""
|
|
234
|
+
|
|
235
|
+
kwargs = {}
|
|
236
|
+
kwargs["action"] = "DescribeDLPFileDetectResult"
|
|
237
|
+
kwargs["params"] = request._serialize()
|
|
238
|
+
kwargs["resp_cls"] = models.DescribeDLPFileDetectResultResponse
|
|
239
|
+
kwargs["headers"] = request.headers
|
|
240
|
+
kwargs["opts"] = opts or {}
|
|
241
|
+
|
|
242
|
+
return await self.call_and_deserialize(**kwargs)
|
|
243
|
+
|
|
244
|
+
async def DescribeDLPFileDetectTaskResult(
|
|
245
|
+
self,
|
|
246
|
+
request: models.DescribeDLPFileDetectTaskResultRequest,
|
|
247
|
+
opts: Dict = None,
|
|
248
|
+
) -> models.DescribeDLPFileDetectTaskResultResponse:
|
|
249
|
+
"""
|
|
250
|
+
查询文件鉴定任务结果
|
|
251
|
+
"""
|
|
252
|
+
|
|
253
|
+
kwargs = {}
|
|
254
|
+
kwargs["action"] = "DescribeDLPFileDetectTaskResult"
|
|
255
|
+
kwargs["params"] = request._serialize()
|
|
256
|
+
kwargs["resp_cls"] = models.DescribeDLPFileDetectTaskResultResponse
|
|
257
|
+
kwargs["headers"] = request.headers
|
|
258
|
+
kwargs["opts"] = opts or {}
|
|
259
|
+
|
|
260
|
+
return await self.call_and_deserialize(**kwargs)
|
|
261
|
+
|
|
262
|
+
async def DescribeDeviceChildGroups(
|
|
263
|
+
self,
|
|
264
|
+
request: models.DescribeDeviceChildGroupsRequest,
|
|
265
|
+
opts: Dict = None,
|
|
266
|
+
) -> models.DescribeDeviceChildGroupsResponse:
|
|
267
|
+
"""
|
|
268
|
+
查询设备组子分组详情,私有化调用path为:capi/Assets/Device/DescribeDeviceChildGroups
|
|
269
|
+
"""
|
|
270
|
+
|
|
271
|
+
kwargs = {}
|
|
272
|
+
kwargs["action"] = "DescribeDeviceChildGroups"
|
|
273
|
+
kwargs["params"] = request._serialize()
|
|
274
|
+
kwargs["resp_cls"] = models.DescribeDeviceChildGroupsResponse
|
|
275
|
+
kwargs["headers"] = request.headers
|
|
276
|
+
kwargs["opts"] = opts or {}
|
|
277
|
+
|
|
278
|
+
return await self.call_and_deserialize(**kwargs)
|
|
279
|
+
|
|
280
|
+
async def DescribeDeviceDetailList(
|
|
281
|
+
self,
|
|
282
|
+
request: models.DescribeDeviceDetailListRequest,
|
|
283
|
+
opts: Dict = None,
|
|
284
|
+
) -> models.DescribeDeviceDetailListResponse:
|
|
285
|
+
"""
|
|
286
|
+
基于软件查看终端详情列表,私有化调用path为:capi/Software/DescribeDeviceDetailList
|
|
287
|
+
"""
|
|
288
|
+
|
|
289
|
+
kwargs = {}
|
|
290
|
+
kwargs["action"] = "DescribeDeviceDetailList"
|
|
291
|
+
kwargs["params"] = request._serialize()
|
|
292
|
+
kwargs["resp_cls"] = models.DescribeDeviceDetailListResponse
|
|
293
|
+
kwargs["headers"] = request.headers
|
|
294
|
+
kwargs["opts"] = opts or {}
|
|
295
|
+
|
|
296
|
+
return await self.call_and_deserialize(**kwargs)
|
|
297
|
+
|
|
298
|
+
async def DescribeDeviceHardwareInfoList(
|
|
299
|
+
self,
|
|
300
|
+
request: models.DescribeDeviceHardwareInfoListRequest,
|
|
301
|
+
opts: Dict = None,
|
|
302
|
+
) -> models.DescribeDeviceHardwareInfoListResponse:
|
|
303
|
+
"""
|
|
304
|
+
查询满足条件的查询终端硬件信息列表,私有化调用path为:/capi/Assets/Device/DescribeDeviceHardwareInfoList
|
|
305
|
+
"""
|
|
306
|
+
|
|
307
|
+
kwargs = {}
|
|
308
|
+
kwargs["action"] = "DescribeDeviceHardwareInfoList"
|
|
309
|
+
kwargs["params"] = request._serialize()
|
|
310
|
+
kwargs["resp_cls"] = models.DescribeDeviceHardwareInfoListResponse
|
|
311
|
+
kwargs["headers"] = request.headers
|
|
312
|
+
kwargs["opts"] = opts or {}
|
|
313
|
+
|
|
314
|
+
return await self.call_and_deserialize(**kwargs)
|
|
315
|
+
|
|
316
|
+
async def DescribeDeviceInfo(
|
|
317
|
+
self,
|
|
318
|
+
request: models.DescribeDeviceInfoRequest,
|
|
319
|
+
opts: Dict = None,
|
|
320
|
+
) -> models.DescribeDeviceInfoResponse:
|
|
321
|
+
"""
|
|
322
|
+
获取终端进程网络服务信息,私有化调用path为:capi/Assets/Device/DescribeDeviceInfo
|
|
323
|
+
"""
|
|
324
|
+
|
|
325
|
+
kwargs = {}
|
|
326
|
+
kwargs["action"] = "DescribeDeviceInfo"
|
|
327
|
+
kwargs["params"] = request._serialize()
|
|
328
|
+
kwargs["resp_cls"] = models.DescribeDeviceInfoResponse
|
|
329
|
+
kwargs["headers"] = request.headers
|
|
330
|
+
kwargs["opts"] = opts or {}
|
|
331
|
+
|
|
332
|
+
return await self.call_and_deserialize(**kwargs)
|
|
333
|
+
|
|
334
|
+
async def DescribeDeviceVirtualGroups(
|
|
335
|
+
self,
|
|
336
|
+
request: models.DescribeDeviceVirtualGroupsRequest,
|
|
337
|
+
opts: Dict = None,
|
|
338
|
+
) -> models.DescribeDeviceVirtualGroupsResponse:
|
|
339
|
+
"""
|
|
340
|
+
查询终端自定义分组列表,私有化调用path为:/capi/Assets/Device/DescribeDeviceVirtualGroups
|
|
341
|
+
"""
|
|
342
|
+
|
|
343
|
+
kwargs = {}
|
|
344
|
+
kwargs["action"] = "DescribeDeviceVirtualGroups"
|
|
345
|
+
kwargs["params"] = request._serialize()
|
|
346
|
+
kwargs["resp_cls"] = models.DescribeDeviceVirtualGroupsResponse
|
|
347
|
+
kwargs["headers"] = request.headers
|
|
348
|
+
kwargs["opts"] = opts or {}
|
|
349
|
+
|
|
350
|
+
return await self.call_and_deserialize(**kwargs)
|
|
351
|
+
|
|
352
|
+
async def DescribeDevices(
|
|
353
|
+
self,
|
|
354
|
+
request: models.DescribeDevicesRequest,
|
|
355
|
+
opts: Dict = None,
|
|
356
|
+
) -> models.DescribeDevicesResponse:
|
|
357
|
+
"""
|
|
358
|
+
查询满足条件的终端数据详情,私有化调用path为:/capi/Assets/Device/DescribeDevices
|
|
359
|
+
"""
|
|
360
|
+
|
|
361
|
+
kwargs = {}
|
|
362
|
+
kwargs["action"] = "DescribeDevices"
|
|
363
|
+
kwargs["params"] = request._serialize()
|
|
364
|
+
kwargs["resp_cls"] = models.DescribeDevicesResponse
|
|
365
|
+
kwargs["headers"] = request.headers
|
|
366
|
+
kwargs["opts"] = opts or {}
|
|
367
|
+
|
|
368
|
+
return await self.call_and_deserialize(**kwargs)
|
|
369
|
+
|
|
370
|
+
async def DescribeLocalAccounts(
|
|
371
|
+
self,
|
|
372
|
+
request: models.DescribeLocalAccountsRequest,
|
|
373
|
+
opts: Dict = None,
|
|
374
|
+
) -> models.DescribeLocalAccountsResponse:
|
|
375
|
+
"""
|
|
376
|
+
获取账号列表,支持分页,模糊搜索,私有化调用path为:/capi/Assets/Account/DescribeLocalAccounts
|
|
377
|
+
"""
|
|
378
|
+
|
|
379
|
+
kwargs = {}
|
|
380
|
+
kwargs["action"] = "DescribeLocalAccounts"
|
|
381
|
+
kwargs["params"] = request._serialize()
|
|
382
|
+
kwargs["resp_cls"] = models.DescribeLocalAccountsResponse
|
|
383
|
+
kwargs["headers"] = request.headers
|
|
384
|
+
kwargs["opts"] = opts or {}
|
|
385
|
+
|
|
386
|
+
return await self.call_and_deserialize(**kwargs)
|
|
387
|
+
|
|
388
|
+
async def DescribeRootAccountGroup(
|
|
389
|
+
self,
|
|
390
|
+
request: models.DescribeRootAccountGroupRequest,
|
|
391
|
+
opts: Dict = None,
|
|
392
|
+
) -> models.DescribeRootAccountGroupResponse:
|
|
393
|
+
"""
|
|
394
|
+
查询账号根分组详情。对应“用户与授权管理”里内置不可见的全网根账号组,所有新建的目录,都挂在该全网根账号组下。
|
|
395
|
+
"""
|
|
396
|
+
|
|
397
|
+
kwargs = {}
|
|
398
|
+
kwargs["action"] = "DescribeRootAccountGroup"
|
|
399
|
+
kwargs["params"] = request._serialize()
|
|
400
|
+
kwargs["resp_cls"] = models.DescribeRootAccountGroupResponse
|
|
401
|
+
kwargs["headers"] = request.headers
|
|
402
|
+
kwargs["opts"] = opts or {}
|
|
403
|
+
|
|
404
|
+
return await self.call_and_deserialize(**kwargs)
|
|
405
|
+
|
|
406
|
+
async def DescribeSoftCensusListByDevice(
|
|
407
|
+
self,
|
|
408
|
+
request: models.DescribeSoftCensusListByDeviceRequest,
|
|
409
|
+
opts: Dict = None,
|
|
410
|
+
) -> models.DescribeSoftCensusListByDeviceResponse:
|
|
411
|
+
"""
|
|
412
|
+
查看终端树下的软件列表,私有化调用path为:capi/Software/DescribeSoftCensusListByDevice
|
|
413
|
+
"""
|
|
414
|
+
|
|
415
|
+
kwargs = {}
|
|
416
|
+
kwargs["action"] = "DescribeSoftCensusListByDevice"
|
|
417
|
+
kwargs["params"] = request._serialize()
|
|
418
|
+
kwargs["resp_cls"] = models.DescribeSoftCensusListByDeviceResponse
|
|
419
|
+
kwargs["headers"] = request.headers
|
|
420
|
+
kwargs["opts"] = opts or {}
|
|
421
|
+
|
|
422
|
+
return await self.call_and_deserialize(**kwargs)
|
|
423
|
+
|
|
424
|
+
async def DescribeSoftwareInformation(
|
|
425
|
+
self,
|
|
426
|
+
request: models.DescribeSoftwareInformationRequest,
|
|
427
|
+
opts: Dict = None,
|
|
428
|
+
) -> models.DescribeSoftwareInformationResponse:
|
|
429
|
+
"""
|
|
430
|
+
查看指定终端的软件详情列表,私有化调用path为:capi/Software/DescribeSoftwareInformation
|
|
431
|
+
"""
|
|
432
|
+
|
|
433
|
+
kwargs = {}
|
|
434
|
+
kwargs["action"] = "DescribeSoftwareInformation"
|
|
435
|
+
kwargs["params"] = request._serialize()
|
|
436
|
+
kwargs["resp_cls"] = models.DescribeSoftwareInformationResponse
|
|
437
|
+
kwargs["headers"] = request.headers
|
|
438
|
+
kwargs["opts"] = opts or {}
|
|
439
|
+
|
|
440
|
+
return await self.call_and_deserialize(**kwargs)
|
|
441
|
+
|
|
442
|
+
async def DescribeVirtualDevices(
|
|
443
|
+
self,
|
|
444
|
+
request: models.DescribeVirtualDevicesRequest,
|
|
445
|
+
opts: Dict = None,
|
|
446
|
+
) -> models.DescribeVirtualDevicesResponse:
|
|
447
|
+
"""
|
|
448
|
+
展示自定义分组终端列表,私有化调用path为:/capi/Assets/DescribeVirtualDevices
|
|
449
|
+
"""
|
|
450
|
+
|
|
451
|
+
kwargs = {}
|
|
452
|
+
kwargs["action"] = "DescribeVirtualDevices"
|
|
453
|
+
kwargs["params"] = request._serialize()
|
|
454
|
+
kwargs["resp_cls"] = models.DescribeVirtualDevicesResponse
|
|
455
|
+
kwargs["headers"] = request.headers
|
|
456
|
+
kwargs["opts"] = opts or {}
|
|
457
|
+
|
|
458
|
+
return await self.call_and_deserialize(**kwargs)
|
|
459
|
+
|
|
460
|
+
async def ExportDeviceDownloadTask(
|
|
461
|
+
self,
|
|
462
|
+
request: models.ExportDeviceDownloadTaskRequest,
|
|
463
|
+
opts: Dict = None,
|
|
464
|
+
) -> models.ExportDeviceDownloadTaskResponse:
|
|
465
|
+
"""
|
|
466
|
+
创建终端导出任务,私有化调用path为:capi/Assets/Device/ExportDeviceDownloadTask
|
|
467
|
+
"""
|
|
468
|
+
|
|
469
|
+
kwargs = {}
|
|
470
|
+
kwargs["action"] = "ExportDeviceDownloadTask"
|
|
471
|
+
kwargs["params"] = request._serialize()
|
|
472
|
+
kwargs["resp_cls"] = models.ExportDeviceDownloadTaskResponse
|
|
473
|
+
kwargs["headers"] = request.headers
|
|
474
|
+
kwargs["opts"] = opts or {}
|
|
475
|
+
|
|
476
|
+
return await self.call_and_deserialize(**kwargs)
|
|
477
|
+
|
|
478
|
+
async def ExportSoftwareInformationList(
|
|
479
|
+
self,
|
|
480
|
+
request: models.ExportSoftwareInformationListRequest,
|
|
481
|
+
opts: Dict = None,
|
|
482
|
+
) -> models.ExportSoftwareInformationListResponse:
|
|
483
|
+
"""
|
|
484
|
+
导出基于指定终端查看软件信息详情列表查询,私有化调用path为:capi/Software/ExportSoftwareInformationList
|
|
485
|
+
"""
|
|
486
|
+
|
|
487
|
+
kwargs = {}
|
|
488
|
+
kwargs["action"] = "ExportSoftwareInformationList"
|
|
489
|
+
kwargs["params"] = request._serialize()
|
|
490
|
+
kwargs["resp_cls"] = models.ExportSoftwareInformationListResponse
|
|
491
|
+
kwargs["headers"] = request.headers
|
|
492
|
+
kwargs["opts"] = opts or {}
|
|
493
|
+
|
|
494
|
+
return await self.call_and_deserialize(**kwargs)
|
|
495
|
+
|
|
496
|
+
async def ModifyVirtualDeviceGroups(
|
|
497
|
+
self,
|
|
498
|
+
request: models.ModifyVirtualDeviceGroupsRequest,
|
|
499
|
+
opts: Dict = None,
|
|
500
|
+
) -> models.ModifyVirtualDeviceGroupsResponse:
|
|
501
|
+
"""
|
|
502
|
+
终端自定义分组增减终端,私有化调用path为:/capi/Assets/Device/ModifyVirtualDeviceGroups
|
|
503
|
+
"""
|
|
504
|
+
|
|
505
|
+
kwargs = {}
|
|
506
|
+
kwargs["action"] = "ModifyVirtualDeviceGroups"
|
|
507
|
+
kwargs["params"] = request._serialize()
|
|
508
|
+
kwargs["resp_cls"] = models.ModifyVirtualDeviceGroupsResponse
|
|
509
|
+
kwargs["headers"] = request.headers
|
|
510
|
+
kwargs["opts"] = opts or {}
|
|
511
|
+
|
|
512
|
+
return await self.call_and_deserialize(**kwargs)
|
|
@@ -299,6 +299,10 @@ class AggrSoftDeviceRow(AbstractModel):
|
|
|
299
299
|
:type UpgradeSoftId: int
|
|
300
300
|
:param _RemarkName: 终端备注名
|
|
301
301
|
:type RemarkName: str
|
|
302
|
+
:param _SoftwareId: 软件id
|
|
303
|
+
:type SoftwareId: int
|
|
304
|
+
:param _OsType: 0:win 2:mac
|
|
305
|
+
:type OsType: int
|
|
302
306
|
"""
|
|
303
307
|
self._DeviceName = None
|
|
304
308
|
self._LastLoginAccount = None
|
|
@@ -318,6 +322,8 @@ class AggrSoftDeviceRow(AbstractModel):
|
|
|
318
322
|
self._NewVersion = None
|
|
319
323
|
self._UpgradeSoftId = None
|
|
320
324
|
self._RemarkName = None
|
|
325
|
+
self._SoftwareId = None
|
|
326
|
+
self._OsType = None
|
|
321
327
|
|
|
322
328
|
@property
|
|
323
329
|
def DeviceName(self):
|
|
@@ -532,6 +538,28 @@ class AggrSoftDeviceRow(AbstractModel):
|
|
|
532
538
|
def RemarkName(self, RemarkName):
|
|
533
539
|
self._RemarkName = RemarkName
|
|
534
540
|
|
|
541
|
+
@property
|
|
542
|
+
def SoftwareId(self):
|
|
543
|
+
r"""软件id
|
|
544
|
+
:rtype: int
|
|
545
|
+
"""
|
|
546
|
+
return self._SoftwareId
|
|
547
|
+
|
|
548
|
+
@SoftwareId.setter
|
|
549
|
+
def SoftwareId(self, SoftwareId):
|
|
550
|
+
self._SoftwareId = SoftwareId
|
|
551
|
+
|
|
552
|
+
@property
|
|
553
|
+
def OsType(self):
|
|
554
|
+
r"""0:win 2:mac
|
|
555
|
+
:rtype: int
|
|
556
|
+
"""
|
|
557
|
+
return self._OsType
|
|
558
|
+
|
|
559
|
+
@OsType.setter
|
|
560
|
+
def OsType(self, OsType):
|
|
561
|
+
self._OsType = OsType
|
|
562
|
+
|
|
535
563
|
|
|
536
564
|
def _deserialize(self, params):
|
|
537
565
|
self._DeviceName = params.get("DeviceName")
|
|
@@ -552,6 +580,8 @@ class AggrSoftDeviceRow(AbstractModel):
|
|
|
552
580
|
self._NewVersion = params.get("NewVersion")
|
|
553
581
|
self._UpgradeSoftId = params.get("UpgradeSoftId")
|
|
554
582
|
self._RemarkName = params.get("RemarkName")
|
|
583
|
+
self._SoftwareId = params.get("SoftwareId")
|
|
584
|
+
self._OsType = params.get("OsType")
|
|
555
585
|
memeber_set = set(params.keys())
|
|
556
586
|
for name, value in vars(self).items():
|
|
557
587
|
property_name = name[1:]
|
|
@@ -10098,6 +10128,10 @@ class SoftwareInformationData(AbstractModel):
|
|
|
10098
10128
|
:type Id: int
|
|
10099
10129
|
:param _PiracyRisk: 盗版风险(0:未支持,1:风险,2:未发现,3:未开启)
|
|
10100
10130
|
:type PiracyRisk: int
|
|
10131
|
+
:param _DeviceId: 设备id
|
|
10132
|
+
:type DeviceId: int
|
|
10133
|
+
:param _OsType: 平台类型
|
|
10134
|
+
:type OsType: int
|
|
10101
10135
|
"""
|
|
10102
10136
|
self._Name = None
|
|
10103
10137
|
self._InstallDate = None
|
|
@@ -10107,6 +10141,8 @@ class SoftwareInformationData(AbstractModel):
|
|
|
10107
10141
|
self._CorpName = None
|
|
10108
10142
|
self._Id = None
|
|
10109
10143
|
self._PiracyRisk = None
|
|
10144
|
+
self._DeviceId = None
|
|
10145
|
+
self._OsType = None
|
|
10110
10146
|
|
|
10111
10147
|
@property
|
|
10112
10148
|
def Name(self):
|
|
@@ -10196,6 +10232,28 @@ class SoftwareInformationData(AbstractModel):
|
|
|
10196
10232
|
def PiracyRisk(self, PiracyRisk):
|
|
10197
10233
|
self._PiracyRisk = PiracyRisk
|
|
10198
10234
|
|
|
10235
|
+
@property
|
|
10236
|
+
def DeviceId(self):
|
|
10237
|
+
r"""设备id
|
|
10238
|
+
:rtype: int
|
|
10239
|
+
"""
|
|
10240
|
+
return self._DeviceId
|
|
10241
|
+
|
|
10242
|
+
@DeviceId.setter
|
|
10243
|
+
def DeviceId(self, DeviceId):
|
|
10244
|
+
self._DeviceId = DeviceId
|
|
10245
|
+
|
|
10246
|
+
@property
|
|
10247
|
+
def OsType(self):
|
|
10248
|
+
r"""平台类型
|
|
10249
|
+
:rtype: int
|
|
10250
|
+
"""
|
|
10251
|
+
return self._OsType
|
|
10252
|
+
|
|
10253
|
+
@OsType.setter
|
|
10254
|
+
def OsType(self, OsType):
|
|
10255
|
+
self._OsType = OsType
|
|
10256
|
+
|
|
10199
10257
|
|
|
10200
10258
|
def _deserialize(self, params):
|
|
10201
10259
|
self._Name = params.get("Name")
|
|
@@ -10206,6 +10264,8 @@ class SoftwareInformationData(AbstractModel):
|
|
|
10206
10264
|
self._CorpName = params.get("CorpName")
|
|
10207
10265
|
self._Id = params.get("Id")
|
|
10208
10266
|
self._PiracyRisk = params.get("PiracyRisk")
|
|
10267
|
+
self._DeviceId = params.get("DeviceId")
|
|
10268
|
+
self._OsType = params.get("OsType")
|
|
10209
10269
|
memeber_set = set(params.keys())
|
|
10210
10270
|
for name, value in vars(self).items():
|
|
10211
10271
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ioa
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1.19
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.19
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -6,6 +6,7 @@ tencentcloud/ioa/__init__.py
|
|
|
6
6
|
tencentcloud/ioa/v20220601/__init__.py
|
|
7
7
|
tencentcloud/ioa/v20220601/errorcodes.py
|
|
8
8
|
tencentcloud/ioa/v20220601/ioa_client.py
|
|
9
|
+
tencentcloud/ioa/v20220601/ioa_client_async.py
|
|
9
10
|
tencentcloud/ioa/v20220601/models.py
|
|
10
11
|
tencentcloud_sdk_python_ioa.egg-info/PKG-INFO
|
|
11
12
|
tencentcloud_sdk_python_ioa.egg-info/SOURCES.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.19
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1487
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|