tencentcloud-sdk-python-ioa 3.0.1446__tar.gz → 3.0.1451__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.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/tencentcloud/ioa/v20220601/errorcodes.py +6 -0
  5. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/tencentcloud/ioa/v20220601/ioa_client.py +46 -0
  6. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/tencentcloud/ioa/v20220601/models.py +957 -25
  7. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/tencentcloud_sdk_python_ioa.egg-info/PKG-INFO +1 -1
  8. tencentcloud-sdk-python-ioa-3.0.1451/tencentcloud_sdk_python_ioa.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-ioa-3.0.1446/tencentcloud_sdk_python_ioa.egg-info/requires.txt +0 -1
  10. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/README.rst +0 -0
  11. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/setup.cfg +0 -0
  12. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/tencentcloud/ioa/__init__.py +0 -0
  13. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/tencentcloud/ioa/v20220601/__init__.py +0 -0
  14. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/tencentcloud_sdk_python_ioa.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/tencentcloud_sdk_python_ioa.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ioa-3.0.1446 → tencentcloud-sdk-python-ioa-3.0.1451}/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.1446
3
+ Version: 3.0.1451
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.1446,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1451,<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.1446'
17
+ __version__ = '3.0.1451'
@@ -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
 
@@ -18,6 +18,229 @@ import warnings
18
18
  from tencentcloud.common.abstract_model import AbstractModel
19
19
 
20
20
 
21
+ class AggrCategorySoftDetailRow(AbstractModel):
22
+ """按版本聚合后的软件列表
23
+
24
+ """
25
+
26
+ def __init__(self):
27
+ r"""
28
+ :param _ID: ID
29
+ 注意:此字段可能返回 null,表示取不到有效值。
30
+ :type ID: int
31
+ :param _Name: 软件名称
32
+ 注意:此字段可能返回 null,表示取不到有效值。
33
+ :type Name: str
34
+ :param _PiracyRisk: 盗版风险
35
+ 注意:此字段可能返回 null,表示取不到有效值。
36
+ :type PiracyRisk: int
37
+ :param _OsType: 系统平台
38
+ 注意:此字段可能返回 null,表示取不到有效值。
39
+ :type OsType: int
40
+ :param _CorpName: 企业名
41
+ 注意:此字段可能返回 null,表示取不到有效值。
42
+ :type CorpName: str
43
+ :param _InstalledDeviceNum: 安装设备数量(只支持32位)
44
+ 注意:此字段可能返回 null,表示取不到有效值。
45
+ :type InstalledDeviceNum: int
46
+ :param _PiracyInstalledDeviceNum: 盗版安装设备数
47
+ 注意:此字段可能返回 null,表示取不到有效值。
48
+ :type PiracyInstalledDeviceNum: int
49
+ :param _InstalledUserNum: 已安装用户数
50
+ 注意:此字段可能返回 null,表示取不到有效值。
51
+ :type InstalledUserNum: int
52
+ :param _PiracyInstalledUserNum: 盗版软件用户数
53
+ 注意:此字段可能返回 null,表示取不到有效值。
54
+ :type PiracyInstalledUserNum: int
55
+ :param _AuthNum: 授权总数
56
+ 注意:此字段可能返回 null,表示取不到有效值。
57
+ :type AuthNum: int
58
+ :param _GenuineRate: 正版率
59
+ 注意:此字段可能返回 null,表示取不到有效值。
60
+ :type GenuineRate: float
61
+ :param _UpgradableDeviceNum: 有新版本可升级的设备数量
62
+ :type UpgradableDeviceNum: int
63
+ """
64
+ self._ID = None
65
+ self._Name = None
66
+ self._PiracyRisk = None
67
+ self._OsType = None
68
+ self._CorpName = None
69
+ self._InstalledDeviceNum = None
70
+ self._PiracyInstalledDeviceNum = None
71
+ self._InstalledUserNum = None
72
+ self._PiracyInstalledUserNum = None
73
+ self._AuthNum = None
74
+ self._GenuineRate = None
75
+ self._UpgradableDeviceNum = None
76
+
77
+ @property
78
+ def ID(self):
79
+ """ID
80
+ 注意:此字段可能返回 null,表示取不到有效值。
81
+ :rtype: int
82
+ """
83
+ return self._ID
84
+
85
+ @ID.setter
86
+ def ID(self, ID):
87
+ self._ID = ID
88
+
89
+ @property
90
+ def Name(self):
91
+ """软件名称
92
+ 注意:此字段可能返回 null,表示取不到有效值。
93
+ :rtype: str
94
+ """
95
+ return self._Name
96
+
97
+ @Name.setter
98
+ def Name(self, Name):
99
+ self._Name = Name
100
+
101
+ @property
102
+ def PiracyRisk(self):
103
+ """盗版风险
104
+ 注意:此字段可能返回 null,表示取不到有效值。
105
+ :rtype: int
106
+ """
107
+ return self._PiracyRisk
108
+
109
+ @PiracyRisk.setter
110
+ def PiracyRisk(self, PiracyRisk):
111
+ self._PiracyRisk = PiracyRisk
112
+
113
+ @property
114
+ def OsType(self):
115
+ """系统平台
116
+ 注意:此字段可能返回 null,表示取不到有效值。
117
+ :rtype: int
118
+ """
119
+ return self._OsType
120
+
121
+ @OsType.setter
122
+ def OsType(self, OsType):
123
+ self._OsType = OsType
124
+
125
+ @property
126
+ def CorpName(self):
127
+ """企业名
128
+ 注意:此字段可能返回 null,表示取不到有效值。
129
+ :rtype: str
130
+ """
131
+ return self._CorpName
132
+
133
+ @CorpName.setter
134
+ def CorpName(self, CorpName):
135
+ self._CorpName = CorpName
136
+
137
+ @property
138
+ def InstalledDeviceNum(self):
139
+ """安装设备数量(只支持32位)
140
+ 注意:此字段可能返回 null,表示取不到有效值。
141
+ :rtype: int
142
+ """
143
+ return self._InstalledDeviceNum
144
+
145
+ @InstalledDeviceNum.setter
146
+ def InstalledDeviceNum(self, InstalledDeviceNum):
147
+ self._InstalledDeviceNum = InstalledDeviceNum
148
+
149
+ @property
150
+ def PiracyInstalledDeviceNum(self):
151
+ """盗版安装设备数
152
+ 注意:此字段可能返回 null,表示取不到有效值。
153
+ :rtype: int
154
+ """
155
+ return self._PiracyInstalledDeviceNum
156
+
157
+ @PiracyInstalledDeviceNum.setter
158
+ def PiracyInstalledDeviceNum(self, PiracyInstalledDeviceNum):
159
+ self._PiracyInstalledDeviceNum = PiracyInstalledDeviceNum
160
+
161
+ @property
162
+ def InstalledUserNum(self):
163
+ """已安装用户数
164
+ 注意:此字段可能返回 null,表示取不到有效值。
165
+ :rtype: int
166
+ """
167
+ return self._InstalledUserNum
168
+
169
+ @InstalledUserNum.setter
170
+ def InstalledUserNum(self, InstalledUserNum):
171
+ self._InstalledUserNum = InstalledUserNum
172
+
173
+ @property
174
+ def PiracyInstalledUserNum(self):
175
+ """盗版软件用户数
176
+ 注意:此字段可能返回 null,表示取不到有效值。
177
+ :rtype: int
178
+ """
179
+ return self._PiracyInstalledUserNum
180
+
181
+ @PiracyInstalledUserNum.setter
182
+ def PiracyInstalledUserNum(self, PiracyInstalledUserNum):
183
+ self._PiracyInstalledUserNum = PiracyInstalledUserNum
184
+
185
+ @property
186
+ def AuthNum(self):
187
+ """授权总数
188
+ 注意:此字段可能返回 null,表示取不到有效值。
189
+ :rtype: int
190
+ """
191
+ return self._AuthNum
192
+
193
+ @AuthNum.setter
194
+ def AuthNum(self, AuthNum):
195
+ self._AuthNum = AuthNum
196
+
197
+ @property
198
+ def GenuineRate(self):
199
+ """正版率
200
+ 注意:此字段可能返回 null,表示取不到有效值。
201
+ :rtype: float
202
+ """
203
+ return self._GenuineRate
204
+
205
+ @GenuineRate.setter
206
+ def GenuineRate(self, GenuineRate):
207
+ self._GenuineRate = GenuineRate
208
+
209
+ @property
210
+ def UpgradableDeviceNum(self):
211
+ """有新版本可升级的设备数量
212
+ :rtype: int
213
+ """
214
+ return self._UpgradableDeviceNum
215
+
216
+ @UpgradableDeviceNum.setter
217
+ def UpgradableDeviceNum(self, UpgradableDeviceNum):
218
+ self._UpgradableDeviceNum = UpgradableDeviceNum
219
+
220
+
221
+ def _deserialize(self, params):
222
+ self._ID = params.get("ID")
223
+ self._Name = params.get("Name")
224
+ self._PiracyRisk = params.get("PiracyRisk")
225
+ self._OsType = params.get("OsType")
226
+ self._CorpName = params.get("CorpName")
227
+ self._InstalledDeviceNum = params.get("InstalledDeviceNum")
228
+ self._PiracyInstalledDeviceNum = params.get("PiracyInstalledDeviceNum")
229
+ self._InstalledUserNum = params.get("InstalledUserNum")
230
+ self._PiracyInstalledUserNum = params.get("PiracyInstalledUserNum")
231
+ self._AuthNum = params.get("AuthNum")
232
+ self._GenuineRate = params.get("GenuineRate")
233
+ self._UpgradableDeviceNum = params.get("UpgradableDeviceNum")
234
+ memeber_set = set(params.keys())
235
+ for name, value in vars(self).items():
236
+ property_name = name[1:]
237
+ if property_name in memeber_set:
238
+ memeber_set.remove(property_name)
239
+ if len(memeber_set) > 0:
240
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
241
+
242
+
243
+
21
244
  class ComplexRule(AbstractModel):
22
245
  """自动划分规则数据
23
246
 
@@ -370,11 +593,25 @@ class CreateDeviceTaskRequest(AbstractModel):
370
593
 
371
594
  def __init__(self):
372
595
  r"""
596
+ :param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
597
+ :type DomainInstanceId: str
373
598
  :param _Mid: 终端id
374
599
  :type Mid: str
375
600
  """
601
+ self._DomainInstanceId = None
376
602
  self._Mid = None
377
603
 
604
+ @property
605
+ def DomainInstanceId(self):
606
+ """管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
607
+ :rtype: str
608
+ """
609
+ return self._DomainInstanceId
610
+
611
+ @DomainInstanceId.setter
612
+ def DomainInstanceId(self, DomainInstanceId):
613
+ self._DomainInstanceId = DomainInstanceId
614
+
378
615
  @property
379
616
  def Mid(self):
380
617
  """终端id
@@ -388,6 +625,7 @@ class CreateDeviceTaskRequest(AbstractModel):
388
625
 
389
626
 
390
627
  def _deserialize(self, params):
628
+ self._DomainInstanceId = params.get("DomainInstanceId")
391
629
  self._Mid = params.get("Mid")
392
630
  memeber_set = set(params.keys())
393
631
  for name, value in vars(self).items():
@@ -1299,6 +1537,166 @@ class DescribeAccountGroupsResponse(AbstractModel):
1299
1537
  self._RequestId = params.get("RequestId")
1300
1538
 
1301
1539
 
1540
+ class DescribeAggrSoftCategorySoftListData(AbstractModel):
1541
+ """业务响应数据
1542
+
1543
+ """
1544
+
1545
+ def __init__(self):
1546
+ r"""
1547
+ :param _Page: 分页公共对象
1548
+ 注意:此字段可能返回 null,表示取不到有效值。
1549
+ :type Page: :class:`tencentcloud.ioa.v20220601.models.Paging`
1550
+ :param _Total: 总数(只支持32位)
1551
+ 注意:此字段可能返回 null,表示取不到有效值。
1552
+ :type Total: int
1553
+ :param _AggrSoftCategorySoftList: 行数据
1554
+ 注意:此字段可能返回 null,表示取不到有效值。
1555
+ :type AggrSoftCategorySoftList: list of AggrCategorySoftDetailRow
1556
+ """
1557
+ self._Page = None
1558
+ self._Total = None
1559
+ self._AggrSoftCategorySoftList = None
1560
+
1561
+ @property
1562
+ def Page(self):
1563
+ """分页公共对象
1564
+ 注意:此字段可能返回 null,表示取不到有效值。
1565
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.Paging`
1566
+ """
1567
+ return self._Page
1568
+
1569
+ @Page.setter
1570
+ def Page(self, Page):
1571
+ self._Page = Page
1572
+
1573
+ @property
1574
+ def Total(self):
1575
+ """总数(只支持32位)
1576
+ 注意:此字段可能返回 null,表示取不到有效值。
1577
+ :rtype: int
1578
+ """
1579
+ return self._Total
1580
+
1581
+ @Total.setter
1582
+ def Total(self, Total):
1583
+ self._Total = Total
1584
+
1585
+ @property
1586
+ def AggrSoftCategorySoftList(self):
1587
+ """行数据
1588
+ 注意:此字段可能返回 null,表示取不到有效值。
1589
+ :rtype: list of AggrCategorySoftDetailRow
1590
+ """
1591
+ return self._AggrSoftCategorySoftList
1592
+
1593
+ @AggrSoftCategorySoftList.setter
1594
+ def AggrSoftCategorySoftList(self, AggrSoftCategorySoftList):
1595
+ self._AggrSoftCategorySoftList = AggrSoftCategorySoftList
1596
+
1597
+
1598
+ def _deserialize(self, params):
1599
+ if params.get("Page") is not None:
1600
+ self._Page = Paging()
1601
+ self._Page._deserialize(params.get("Page"))
1602
+ self._Total = params.get("Total")
1603
+ if params.get("AggrSoftCategorySoftList") is not None:
1604
+ self._AggrSoftCategorySoftList = []
1605
+ for item in params.get("AggrSoftCategorySoftList"):
1606
+ obj = AggrCategorySoftDetailRow()
1607
+ obj._deserialize(item)
1608
+ self._AggrSoftCategorySoftList.append(obj)
1609
+ memeber_set = set(params.keys())
1610
+ for name, value in vars(self).items():
1611
+ property_name = name[1:]
1612
+ if property_name in memeber_set:
1613
+ memeber_set.remove(property_name)
1614
+ if len(memeber_set) > 0:
1615
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1616
+
1617
+
1618
+
1619
+ class DescribeAggrSoftCategorySoftListRequest(AbstractModel):
1620
+ """DescribeAggrSoftCategorySoftList请求参数结构体
1621
+
1622
+ """
1623
+
1624
+ def __init__(self):
1625
+ r"""
1626
+ :param _OsType: os类别(只支持32位)
1627
+ :type OsType: int
1628
+ """
1629
+ self._OsType = None
1630
+
1631
+ @property
1632
+ def OsType(self):
1633
+ """os类别(只支持32位)
1634
+ :rtype: int
1635
+ """
1636
+ return self._OsType
1637
+
1638
+ @OsType.setter
1639
+ def OsType(self, OsType):
1640
+ self._OsType = OsType
1641
+
1642
+
1643
+ def _deserialize(self, params):
1644
+ self._OsType = params.get("OsType")
1645
+ memeber_set = set(params.keys())
1646
+ for name, value in vars(self).items():
1647
+ property_name = name[1:]
1648
+ if property_name in memeber_set:
1649
+ memeber_set.remove(property_name)
1650
+ if len(memeber_set) > 0:
1651
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1652
+
1653
+
1654
+
1655
+ class DescribeAggrSoftCategorySoftListResponse(AbstractModel):
1656
+ """DescribeAggrSoftCategorySoftList返回参数结构体
1657
+
1658
+ """
1659
+
1660
+ def __init__(self):
1661
+ r"""
1662
+ :param _Data: 数据
1663
+ :type Data: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftCategorySoftListData`
1664
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1665
+ :type RequestId: str
1666
+ """
1667
+ self._Data = None
1668
+ self._RequestId = None
1669
+
1670
+ @property
1671
+ def Data(self):
1672
+ """数据
1673
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftCategorySoftListData`
1674
+ """
1675
+ return self._Data
1676
+
1677
+ @Data.setter
1678
+ def Data(self, Data):
1679
+ self._Data = Data
1680
+
1681
+ @property
1682
+ def RequestId(self):
1683
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1684
+ :rtype: str
1685
+ """
1686
+ return self._RequestId
1687
+
1688
+ @RequestId.setter
1689
+ def RequestId(self, RequestId):
1690
+ self._RequestId = RequestId
1691
+
1692
+
1693
+ def _deserialize(self, params):
1694
+ if params.get("Data") is not None:
1695
+ self._Data = DescribeAggrSoftCategorySoftListData()
1696
+ self._Data._deserialize(params.get("Data"))
1697
+ self._RequestId = params.get("RequestId")
1698
+
1699
+
1302
1700
  class DescribeDLPFileDetectResultData(AbstractModel):
1303
1701
  """查询文件检测结果响应数据
1304
1702
 
@@ -1476,6 +1874,191 @@ class DescribeDLPFileDetectResultResponse(AbstractModel):
1476
1874
  self._RequestId = params.get("RequestId")
1477
1875
 
1478
1876
 
1877
+ class DescribeDeviceChildGroupsRequest(AbstractModel):
1878
+ """DescribeDeviceChildGroups请求参数结构体
1879
+
1880
+ """
1881
+
1882
+ def __init__(self):
1883
+ r"""
1884
+ :param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
1885
+ :type DomainInstanceId: str
1886
+ :param _Condition: 过滤条件参数(字段含义请参考接口返回值)
1887
+ - Name, 类型String,支持操作:【like,ilike】,支持排序
1888
+
1889
+
1890
+
1891
+
1892
+ 分页参数
1893
+ - PageNum 从1开始,小于等于0时使用默认参数
1894
+ - PageSize 最大值5000,最好不超过100
1895
+ :type Condition: :class:`tencentcloud.ioa.v20220601.models.Condition`
1896
+ :param _ParentId: 父分组id,默认0:表示获取全网终端分组
1897
+ :type ParentId: int
1898
+ :param _OsType: 操作系统类型(0:win,1:linux,2:mac,4:android,5:ios;默认0:系统win)
1899
+ :type OsType: int
1900
+ """
1901
+ self._DomainInstanceId = None
1902
+ self._Condition = None
1903
+ self._ParentId = None
1904
+ self._OsType = None
1905
+
1906
+ @property
1907
+ def DomainInstanceId(self):
1908
+ """管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
1909
+ :rtype: str
1910
+ """
1911
+ return self._DomainInstanceId
1912
+
1913
+ @DomainInstanceId.setter
1914
+ def DomainInstanceId(self, DomainInstanceId):
1915
+ self._DomainInstanceId = DomainInstanceId
1916
+
1917
+ @property
1918
+ def Condition(self):
1919
+ """过滤条件参数(字段含义请参考接口返回值)
1920
+ - Name, 类型String,支持操作:【like,ilike】,支持排序
1921
+
1922
+
1923
+
1924
+
1925
+ 分页参数
1926
+ - PageNum 从1开始,小于等于0时使用默认参数
1927
+ - PageSize 最大值5000,最好不超过100
1928
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.Condition`
1929
+ """
1930
+ return self._Condition
1931
+
1932
+ @Condition.setter
1933
+ def Condition(self, Condition):
1934
+ self._Condition = Condition
1935
+
1936
+ @property
1937
+ def ParentId(self):
1938
+ """父分组id,默认0:表示获取全网终端分组
1939
+ :rtype: int
1940
+ """
1941
+ return self._ParentId
1942
+
1943
+ @ParentId.setter
1944
+ def ParentId(self, ParentId):
1945
+ self._ParentId = ParentId
1946
+
1947
+ @property
1948
+ def OsType(self):
1949
+ """操作系统类型(0:win,1:linux,2:mac,4:android,5:ios;默认0:系统win)
1950
+ :rtype: int
1951
+ """
1952
+ return self._OsType
1953
+
1954
+ @OsType.setter
1955
+ def OsType(self, OsType):
1956
+ self._OsType = OsType
1957
+
1958
+
1959
+ def _deserialize(self, params):
1960
+ self._DomainInstanceId = params.get("DomainInstanceId")
1961
+ if params.get("Condition") is not None:
1962
+ self._Condition = Condition()
1963
+ self._Condition._deserialize(params.get("Condition"))
1964
+ self._ParentId = params.get("ParentId")
1965
+ self._OsType = params.get("OsType")
1966
+ memeber_set = set(params.keys())
1967
+ for name, value in vars(self).items():
1968
+ property_name = name[1:]
1969
+ if property_name in memeber_set:
1970
+ memeber_set.remove(property_name)
1971
+ if len(memeber_set) > 0:
1972
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1973
+
1974
+
1975
+
1976
+ class DescribeDeviceChildGroupsResponse(AbstractModel):
1977
+ """DescribeDeviceChildGroups返回参数结构体
1978
+
1979
+ """
1980
+
1981
+ def __init__(self):
1982
+ r"""
1983
+ :param _Data: 查询设备组子分组详情响应结构
1984
+ :type Data: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceChildGroupsRspData`
1985
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1986
+ :type RequestId: str
1987
+ """
1988
+ self._Data = None
1989
+ self._RequestId = None
1990
+
1991
+ @property
1992
+ def Data(self):
1993
+ """查询设备组子分组详情响应结构
1994
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceChildGroupsRspData`
1995
+ """
1996
+ return self._Data
1997
+
1998
+ @Data.setter
1999
+ def Data(self, Data):
2000
+ self._Data = Data
2001
+
2002
+ @property
2003
+ def RequestId(self):
2004
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2005
+ :rtype: str
2006
+ """
2007
+ return self._RequestId
2008
+
2009
+ @RequestId.setter
2010
+ def RequestId(self, RequestId):
2011
+ self._RequestId = RequestId
2012
+
2013
+
2014
+ def _deserialize(self, params):
2015
+ if params.get("Data") is not None:
2016
+ self._Data = DescribeDeviceChildGroupsRspData()
2017
+ self._Data._deserialize(params.get("Data"))
2018
+ self._RequestId = params.get("RequestId")
2019
+
2020
+
2021
+ class DescribeDeviceChildGroupsRspData(AbstractModel):
2022
+ """查询设备组子分组详情响应结构
2023
+
2024
+ """
2025
+
2026
+ def __init__(self):
2027
+ r"""
2028
+ :param _Items: 返回的数组列表
2029
+ :type Items: list of DeviceGroupDetail
2030
+ """
2031
+ self._Items = None
2032
+
2033
+ @property
2034
+ def Items(self):
2035
+ """返回的数组列表
2036
+ :rtype: list of DeviceGroupDetail
2037
+ """
2038
+ return self._Items
2039
+
2040
+ @Items.setter
2041
+ def Items(self, Items):
2042
+ self._Items = Items
2043
+
2044
+
2045
+ def _deserialize(self, params):
2046
+ if params.get("Items") is not None:
2047
+ self._Items = []
2048
+ for item in params.get("Items"):
2049
+ obj = DeviceGroupDetail()
2050
+ obj._deserialize(item)
2051
+ self._Items.append(obj)
2052
+ memeber_set = set(params.keys())
2053
+ for name, value in vars(self).items():
2054
+ property_name = name[1:]
2055
+ if property_name in memeber_set:
2056
+ memeber_set.remove(property_name)
2057
+ if len(memeber_set) > 0:
2058
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2059
+
2060
+
2061
+
1479
2062
  class DescribeDeviceHardwareInfoItem(AbstractModel):
1480
2063
  """终端硬件信息列表Item数据
1481
2064
 
@@ -1945,14 +2528,28 @@ class DescribeDeviceInfoRequest(AbstractModel):
1945
2528
 
1946
2529
  def __init__(self):
1947
2530
  r"""
2531
+ :param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
2532
+ :type DomainInstanceId: str
1948
2533
  :param _Mid: 终端id
1949
2534
  :type Mid: str
1950
2535
  :param _Type: 查询类型 process_list network_list service_list
1951
2536
  :type Type: str
1952
2537
  """
2538
+ self._DomainInstanceId = None
1953
2539
  self._Mid = None
1954
2540
  self._Type = None
1955
2541
 
2542
+ @property
2543
+ def DomainInstanceId(self):
2544
+ """管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
2545
+ :rtype: str
2546
+ """
2547
+ return self._DomainInstanceId
2548
+
2549
+ @DomainInstanceId.setter
2550
+ def DomainInstanceId(self, DomainInstanceId):
2551
+ self._DomainInstanceId = DomainInstanceId
2552
+
1956
2553
  @property
1957
2554
  def Mid(self):
1958
2555
  """终端id
@@ -1977,6 +2574,7 @@ class DescribeDeviceInfoRequest(AbstractModel):
1977
2574
 
1978
2575
 
1979
2576
  def _deserialize(self, params):
2577
+ self._DomainInstanceId = params.get("DomainInstanceId")
1980
2578
  self._Mid = params.get("Mid")
1981
2579
  self._Type = params.get("Type")
1982
2580
  memeber_set = set(params.keys())
@@ -2192,7 +2790,7 @@ class DescribeDeviceVirtualGroupsRequest(AbstractModel):
2192
2790
  :type DomainInstanceId: str
2193
2791
  :param _Condition: 滤条件、分页参数 <li>Name - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li> <li>DeviceVirtualGroupName - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li>
2194
2792
  :type Condition: :class:`tencentcloud.ioa.v20220601.models.Condition`
2195
- :param _OsType: 必填,系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
2793
+ :param _OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
2196
2794
  :type OsType: int
2197
2795
  :param _VirtualGroupIds: 非必填,自定义分组ids
2198
2796
  :type VirtualGroupIds: list of int
@@ -2226,7 +2824,7 @@ class DescribeDeviceVirtualGroupsRequest(AbstractModel):
2226
2824
 
2227
2825
  @property
2228
2826
  def OsType(self):
2229
- """必填,系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
2827
+ """系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
2230
2828
  :rtype: int
2231
2829
  """
2232
2830
  return self._OsType
@@ -2374,6 +2972,8 @@ class DescribeDevicesRequest(AbstractModel):
2374
2972
 
2375
2973
  def __init__(self):
2376
2974
  r"""
2975
+ :param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
2976
+ :type DomainInstanceId: str
2377
2977
  :param _Condition: 过滤条件参数(字段含义请参考接口返回值)
2378
2978
 
2379
2979
  - Mid, 类型String,支持操作:【eq,like,ilike】,支持排序
@@ -2441,7 +3041,7 @@ id-名称-操作系统
2441
3041
 
2442
3042
  SaaS需要调用分组接口DescribeDeviceChildGroups获取对应分组id
2443
3043
  :type GroupId: int
2444
- :param _OsType: 【必填】操作系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0),需要和GroupId或者GroupIds匹配
3044
+ :param _OsType: 操作系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0),需要和GroupId或者GroupIds匹配
2445
3045
  :type OsType: int
2446
3046
  :param _OnlineStatus: 在线状态 (2表示在线,0或者1表示离线)
2447
3047
  :type OnlineStatus: int
@@ -2459,6 +3059,7 @@ SaaS需要调用分组接口DescribeDeviceChildGroups获取对应分组id
2459
3059
 
2460
3060
  :type GroupIds: list of int
2461
3061
  """
3062
+ self._DomainInstanceId = None
2462
3063
  self._Condition = None
2463
3064
  self._GroupId = None
2464
3065
  self._OsType = None
@@ -2470,6 +3071,17 @@ SaaS需要调用分组接口DescribeDeviceChildGroups获取对应分组id
2470
3071
  self._Status = None
2471
3072
  self._GroupIds = None
2472
3073
 
3074
+ @property
3075
+ def DomainInstanceId(self):
3076
+ """管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
3077
+ :rtype: str
3078
+ """
3079
+ return self._DomainInstanceId
3080
+
3081
+ @DomainInstanceId.setter
3082
+ def DomainInstanceId(self, DomainInstanceId):
3083
+ self._DomainInstanceId = DomainInstanceId
3084
+
2473
3085
  @property
2474
3086
  def Condition(self):
2475
3087
  """过滤条件参数(字段含义请参考接口返回值)
@@ -2557,7 +3169,7 @@ SaaS需要调用分组接口DescribeDeviceChildGroups获取对应分组id
2557
3169
 
2558
3170
  @property
2559
3171
  def OsType(self):
2560
- """【必填】操作系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0),需要和GroupId或者GroupIds匹配
3172
+ """操作系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0),需要和GroupId或者GroupIds匹配
2561
3173
  :rtype: int
2562
3174
  """
2563
3175
  return self._OsType
@@ -2646,6 +3258,7 @@ SaaS需要调用分组接口DescribeDeviceChildGroups获取对应分组id
2646
3258
 
2647
3259
 
2648
3260
  def _deserialize(self, params):
3261
+ self._DomainInstanceId = params.get("DomainInstanceId")
2649
3262
  if params.get("Condition") is not None:
2650
3263
  self._Condition = Condition()
2651
3264
  self._Condition._deserialize(params.get("Condition"))
@@ -3371,6 +3984,8 @@ class DescribeSoftCensusListByDeviceData(AbstractModel):
3371
3984
  :param _PiracyRisk: 盗版风险(1=风险;2=未知)
3372
3985
  注意:此字段可能返回 null,表示取不到有效值。
3373
3986
  :type PiracyRisk: int
3987
+ :param _RemarkName: 终端备注名
3988
+ :type RemarkName: str
3374
3989
  """
3375
3990
  self._UserName = None
3376
3991
  self._MacAddr = None
@@ -3384,6 +3999,7 @@ class DescribeSoftCensusListByDeviceData(AbstractModel):
3384
3999
  self._Id = None
3385
4000
  self._SoftNum = None
3386
4001
  self._PiracyRisk = None
4002
+ self._RemarkName = None
3387
4003
 
3388
4004
  @property
3389
4005
  def UserName(self):
@@ -3529,6 +4145,17 @@ class DescribeSoftCensusListByDeviceData(AbstractModel):
3529
4145
  def PiracyRisk(self, PiracyRisk):
3530
4146
  self._PiracyRisk = PiracyRisk
3531
4147
 
4148
+ @property
4149
+ def RemarkName(self):
4150
+ """终端备注名
4151
+ :rtype: str
4152
+ """
4153
+ return self._RemarkName
4154
+
4155
+ @RemarkName.setter
4156
+ def RemarkName(self, RemarkName):
4157
+ self._RemarkName = RemarkName
4158
+
3532
4159
 
3533
4160
  def _deserialize(self, params):
3534
4161
  self._UserName = params.get("UserName")
@@ -3543,6 +4170,7 @@ class DescribeSoftCensusListByDeviceData(AbstractModel):
3543
4170
  self._Id = params.get("Id")
3544
4171
  self._SoftNum = params.get("SoftNum")
3545
4172
  self._PiracyRisk = params.get("PiracyRisk")
4173
+ self._RemarkName = params.get("RemarkName")
3546
4174
  memeber_set = set(params.keys())
3547
4175
  for name, value in vars(self).items():
3548
4176
  property_name = name[1:]
@@ -3622,28 +4250,20 @@ class DescribeSoftCensusListByDeviceRequest(AbstractModel):
3622
4250
 
3623
4251
  def __init__(self):
3624
4252
  r"""
3625
- :param _OsType: 必填,系统类型(0: win,1:linux,2: mac,4:android,5:ios )
3626
- :type OsType: int
3627
4253
  :param _GroupId: 必填,终端分组ID
3628
4254
  :type GroupId: int
4255
+ :param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
4256
+ :type DomainInstanceId: str
4257
+ :param _OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios );默认值0
4258
+ :type OsType: int
3629
4259
  :param _Condition: 过滤条件、分页参数 <li>Name - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,终端名。</li> <li>UserName - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,终端用户名。</li> <li>IoaUserName - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,最近登录账号。</li> <li>Ip - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,IP地址。</li> <li>MacAddr - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,MAC地址。</li>
3630
4260
  :type Condition: :class:`tencentcloud.ioa.v20220601.models.Condition`
3631
4261
  """
3632
- self._OsType = None
3633
4262
  self._GroupId = None
4263
+ self._DomainInstanceId = None
4264
+ self._OsType = None
3634
4265
  self._Condition = None
3635
4266
 
3636
- @property
3637
- def OsType(self):
3638
- """必填,系统类型(0: win,1:linux,2: mac,4:android,5:ios )
3639
- :rtype: int
3640
- """
3641
- return self._OsType
3642
-
3643
- @OsType.setter
3644
- def OsType(self, OsType):
3645
- self._OsType = OsType
3646
-
3647
4267
  @property
3648
4268
  def GroupId(self):
3649
4269
  """必填,终端分组ID
@@ -3655,6 +4275,28 @@ class DescribeSoftCensusListByDeviceRequest(AbstractModel):
3655
4275
  def GroupId(self, GroupId):
3656
4276
  self._GroupId = GroupId
3657
4277
 
4278
+ @property
4279
+ def DomainInstanceId(self):
4280
+ """管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
4281
+ :rtype: str
4282
+ """
4283
+ return self._DomainInstanceId
4284
+
4285
+ @DomainInstanceId.setter
4286
+ def DomainInstanceId(self, DomainInstanceId):
4287
+ self._DomainInstanceId = DomainInstanceId
4288
+
4289
+ @property
4290
+ def OsType(self):
4291
+ """系统类型(0: win,1:linux,2: mac,4:android,5:ios );默认值0
4292
+ :rtype: int
4293
+ """
4294
+ return self._OsType
4295
+
4296
+ @OsType.setter
4297
+ def OsType(self, OsType):
4298
+ self._OsType = OsType
4299
+
3658
4300
  @property
3659
4301
  def Condition(self):
3660
4302
  """过滤条件、分页参数 <li>Name - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,终端名。</li> <li>UserName - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,终端用户名。</li> <li>IoaUserName - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,最近登录账号。</li> <li>Ip - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,IP地址。</li> <li>MacAddr - String - 是否必填:否 - 操作符: eq,like,ilike - 排序支持:否 - 备注:字段含义,MAC地址。</li>
@@ -3668,8 +4310,9 @@ class DescribeSoftCensusListByDeviceRequest(AbstractModel):
3668
4310
 
3669
4311
 
3670
4312
  def _deserialize(self, params):
3671
- self._OsType = params.get("OsType")
3672
4313
  self._GroupId = params.get("GroupId")
4314
+ self._DomainInstanceId = params.get("DomainInstanceId")
4315
+ self._OsType = params.get("OsType")
3673
4316
  if params.get("Condition") is not None:
3674
4317
  self._Condition = Condition()
3675
4318
  self._Condition._deserialize(params.get("Condition"))
@@ -3691,7 +4334,6 @@ class DescribeSoftCensusListByDeviceResponse(AbstractModel):
3691
4334
  def __init__(self):
3692
4335
  r"""
3693
4336
  :param _Data: 业务响应数据
3694
- 注意:此字段可能返回 null,表示取不到有效值。
3695
4337
  :type Data: :class:`tencentcloud.ioa.v20220601.models.DescribeSoftCensusListByDevicePageData`
3696
4338
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3697
4339
  :type RequestId: str
@@ -3702,7 +4344,6 @@ class DescribeSoftCensusListByDeviceResponse(AbstractModel):
3702
4344
  @property
3703
4345
  def Data(self):
3704
4346
  """业务响应数据
3705
- 注意:此字段可能返回 null,表示取不到有效值。
3706
4347
  :rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeSoftCensusListByDevicePageData`
3707
4348
  """
3708
4349
  return self._Data
@@ -3957,9 +4598,9 @@ class DescribeVirtualDevicesRequest(AbstractModel):
3957
4598
  :type DomainInstanceId: str
3958
4599
  :param _Condition: 过滤条件参数(字段含义请参考接口返回值)- Mid, 类型String,支持操作:【eq,like,ilike】,支持排序- Name, 类型String,支持操作:【eq,like,ilike】,支持排序- Itime, 类型String,支持操作:【eq,like,ilike】,支持排序- UserName, 类型String,支持操作:【eq,like,ilike】,支持排序- MacAddr, 类型String,支持操作:【eq,like,ilike】,支持排序- UserId, 类型String,支持操作:【eq,like,ilike】,支持排序- Ip, 类型String,支持操作:【eq,like,ilike】,支持排序- Tags,类型String,支持操作:【eq,like,ilike】,支持排序- LocalIpList,类型String,支持操作:【eq,like,ilike】,支持排序- SerialNum,类型String,支持操作:【eq,like,ilike】,支持排序- Version,类型String,支持操作:【eq,like,ilike】,支持排序- StrVersion,类型String,支持操作:【eq,like,ilike】,支持排序- RtpStatus,类型String,支持操作:【eq,like,ilike】,**不支持排序**- HostName,类型String,支持操作:【eq,like,ilike】,支持排序- IoaUserName,类型String,支持操作:【eq,like,ilike】,支持排序- GroupName,类型String,支持操作:【eq,like,ilike】,支持排序- CriticalVulListCount,**类型Int**,支持操作:【eq】,**不支持排序**- RiskCount,**类型Int**,支持操作:【eq】,**不支持排序**- VulVersion,类型String,支持操作:【eq,like,ilike】,**不支持排序**- Virusver,类型String,支持操作:【eq,like,ilike】,**不支持排序**- SysRepver,类型String,支持操作:【eq,like,ilike】,**不支持排序**- BaseBoardSn,类型String,支持操作:【eq,like,ilike】,支持排序- Os,类型String,支持操作:【eq,like,ilike】,支持排序- ConnActiveTime,类型String,支持操作:【eq,like,ilike】,**不支持排序**- FirewallStatus,**类型Int**,支持操作:【eq】,**不支持排序**- ProfileName,类型String,支持操作:【eq,like,ilike】,支持排序- DomainName,类型String,支持操作:【eq,like,ilike】,支持排序- SysRepVersion,类型String,支持操作:【eq,like,ilike】,支持排序- VirusVer,类型String,支持操作:【eq,like,ilike】,支持排序- Cpu,类型String,支持操作:【eq,like,ilike】,支持排序- Memory,类型String,支持操作:【eq,like,ilike】,支持排序- HardDiskSize,类型String,支持操作:【eq,like,ilike】,支持排序- HardwareChangeCount,**类型Int**,支持操作:【eq】,支持排序- AccountName,类型String,支持操作:【like.ilike】,支持排序- AccountGroupName,类型String,支持操作:【like.ilike】,支持排序- ScreenRecordingPermission,**类型Int**,支持操作:【eq】,支持排序- DiskAccessPermission,**类型Int**,支持操作:【eq】,支持排序分页参数- PageNum 从1开始,小于等于0时使用默认参数- PageSize 最大值5000,最好不超过100
3959
4600
  :type Condition: :class:`tencentcloud.ioa.v20220601.models.Condition`
3960
- :param _DeviceVirtualGroupId: 必填,终端自定义分组id
4601
+ :param _DeviceVirtualGroupId: 终端自定义分组ID(0:获取租户全部自定义分组下的终端数据;其他值:获取具体ID分组下的终端数据)
3961
4602
  :type DeviceVirtualGroupId: int
3962
- :param _OsType: 必填,系统类型(0: win,1:linux,2: mac,3: win_srv,4:android,5:ios 默认值0)
4603
+ :param _OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
3963
4604
  :type OsType: int
3964
4605
  :param _OnlineStatus: 选填,在线状态 (2表示在线,0或者1表示离线)
3965
4606
  :type OnlineStatus: int
@@ -3994,7 +4635,7 @@ class DescribeVirtualDevicesRequest(AbstractModel):
3994
4635
 
3995
4636
  @property
3996
4637
  def DeviceVirtualGroupId(self):
3997
- """必填,终端自定义分组id
4638
+ """终端自定义分组ID(0:获取租户全部自定义分组下的终端数据;其他值:获取具体ID分组下的终端数据)
3998
4639
  :rtype: int
3999
4640
  """
4000
4641
  return self._DeviceVirtualGroupId
@@ -4005,7 +4646,7 @@ class DescribeVirtualDevicesRequest(AbstractModel):
4005
4646
 
4006
4647
  @property
4007
4648
  def OsType(self):
4008
- """必填,系统类型(0: win,1:linux,2: mac,3: win_srv,4:android,5:ios 默认值0)
4649
+ """系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
4009
4650
  :rtype: int
4010
4651
  """
4011
4652
  return self._OsType
@@ -4845,6 +5486,297 @@ class DeviceDetail(AbstractModel):
4845
5486
 
4846
5487
 
4847
5488
 
5489
+ class DeviceGroupDetail(AbstractModel):
5490
+ """返回的数组列表
5491
+
5492
+ """
5493
+
5494
+ def __init__(self):
5495
+ r"""
5496
+ :param _Id: 设备组id
5497
+ :type Id: int
5498
+ :param _Name: 设备组名称
5499
+ :type Name: str
5500
+ :param _Description: 设备组描述
5501
+ :type Description: str
5502
+ :param _ParentId: 父节点id
5503
+ :type ParentId: int
5504
+ :param _IdPath: 基于id的节点路径
5505
+ :type IdPath: str
5506
+ :param _NamePath: 基于名称的节点路径
5507
+ :type NamePath: str
5508
+ :param _Locked: 分组锁定状态
5509
+ :type Locked: int
5510
+ :param _OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios )
5511
+ :type OsType: int
5512
+ :param _Sort: 排序
5513
+ :type Sort: int
5514
+ :param _FromAuto: 是否自动调整
5515
+ :type FromAuto: int
5516
+ :param _Count: 子节点数量
5517
+ :type Count: int
5518
+ :param _Icon: 图标
5519
+ :type Icon: str
5520
+ :param _WithIp: 是否有ip
5521
+ :type WithIp: int
5522
+ :param _HasIp: 是否有组ip
5523
+ :type HasIp: bool
5524
+ :param _IsLeaf: 是否是叶子节点
5525
+ :type IsLeaf: bool
5526
+ :param _ReadOnly: 是否只读
5527
+ :type ReadOnly: bool
5528
+ :param _BindAccount: 对应绑定的账号id
5529
+ :type BindAccount: int
5530
+ :param _BindAccountName: 绑定账号的用户名
5531
+ :type BindAccountName: str
5532
+ """
5533
+ self._Id = None
5534
+ self._Name = None
5535
+ self._Description = None
5536
+ self._ParentId = None
5537
+ self._IdPath = None
5538
+ self._NamePath = None
5539
+ self._Locked = None
5540
+ self._OsType = None
5541
+ self._Sort = None
5542
+ self._FromAuto = None
5543
+ self._Count = None
5544
+ self._Icon = None
5545
+ self._WithIp = None
5546
+ self._HasIp = None
5547
+ self._IsLeaf = None
5548
+ self._ReadOnly = None
5549
+ self._BindAccount = None
5550
+ self._BindAccountName = None
5551
+
5552
+ @property
5553
+ def Id(self):
5554
+ """设备组id
5555
+ :rtype: int
5556
+ """
5557
+ return self._Id
5558
+
5559
+ @Id.setter
5560
+ def Id(self, Id):
5561
+ self._Id = Id
5562
+
5563
+ @property
5564
+ def Name(self):
5565
+ """设备组名称
5566
+ :rtype: str
5567
+ """
5568
+ return self._Name
5569
+
5570
+ @Name.setter
5571
+ def Name(self, Name):
5572
+ self._Name = Name
5573
+
5574
+ @property
5575
+ def Description(self):
5576
+ """设备组描述
5577
+ :rtype: str
5578
+ """
5579
+ return self._Description
5580
+
5581
+ @Description.setter
5582
+ def Description(self, Description):
5583
+ self._Description = Description
5584
+
5585
+ @property
5586
+ def ParentId(self):
5587
+ """父节点id
5588
+ :rtype: int
5589
+ """
5590
+ return self._ParentId
5591
+
5592
+ @ParentId.setter
5593
+ def ParentId(self, ParentId):
5594
+ self._ParentId = ParentId
5595
+
5596
+ @property
5597
+ def IdPath(self):
5598
+ """基于id的节点路径
5599
+ :rtype: str
5600
+ """
5601
+ return self._IdPath
5602
+
5603
+ @IdPath.setter
5604
+ def IdPath(self, IdPath):
5605
+ self._IdPath = IdPath
5606
+
5607
+ @property
5608
+ def NamePath(self):
5609
+ """基于名称的节点路径
5610
+ :rtype: str
5611
+ """
5612
+ return self._NamePath
5613
+
5614
+ @NamePath.setter
5615
+ def NamePath(self, NamePath):
5616
+ self._NamePath = NamePath
5617
+
5618
+ @property
5619
+ def Locked(self):
5620
+ """分组锁定状态
5621
+ :rtype: int
5622
+ """
5623
+ return self._Locked
5624
+
5625
+ @Locked.setter
5626
+ def Locked(self, Locked):
5627
+ self._Locked = Locked
5628
+
5629
+ @property
5630
+ def OsType(self):
5631
+ """系统类型(0: win,1:linux,2: mac,4:android,5:ios )
5632
+ :rtype: int
5633
+ """
5634
+ return self._OsType
5635
+
5636
+ @OsType.setter
5637
+ def OsType(self, OsType):
5638
+ self._OsType = OsType
5639
+
5640
+ @property
5641
+ def Sort(self):
5642
+ """排序
5643
+ :rtype: int
5644
+ """
5645
+ return self._Sort
5646
+
5647
+ @Sort.setter
5648
+ def Sort(self, Sort):
5649
+ self._Sort = Sort
5650
+
5651
+ @property
5652
+ def FromAuto(self):
5653
+ """是否自动调整
5654
+ :rtype: int
5655
+ """
5656
+ return self._FromAuto
5657
+
5658
+ @FromAuto.setter
5659
+ def FromAuto(self, FromAuto):
5660
+ self._FromAuto = FromAuto
5661
+
5662
+ @property
5663
+ def Count(self):
5664
+ """子节点数量
5665
+ :rtype: int
5666
+ """
5667
+ return self._Count
5668
+
5669
+ @Count.setter
5670
+ def Count(self, Count):
5671
+ self._Count = Count
5672
+
5673
+ @property
5674
+ def Icon(self):
5675
+ """图标
5676
+ :rtype: str
5677
+ """
5678
+ return self._Icon
5679
+
5680
+ @Icon.setter
5681
+ def Icon(self, Icon):
5682
+ self._Icon = Icon
5683
+
5684
+ @property
5685
+ def WithIp(self):
5686
+ """是否有ip
5687
+ :rtype: int
5688
+ """
5689
+ return self._WithIp
5690
+
5691
+ @WithIp.setter
5692
+ def WithIp(self, WithIp):
5693
+ self._WithIp = WithIp
5694
+
5695
+ @property
5696
+ def HasIp(self):
5697
+ """是否有组ip
5698
+ :rtype: bool
5699
+ """
5700
+ return self._HasIp
5701
+
5702
+ @HasIp.setter
5703
+ def HasIp(self, HasIp):
5704
+ self._HasIp = HasIp
5705
+
5706
+ @property
5707
+ def IsLeaf(self):
5708
+ """是否是叶子节点
5709
+ :rtype: bool
5710
+ """
5711
+ return self._IsLeaf
5712
+
5713
+ @IsLeaf.setter
5714
+ def IsLeaf(self, IsLeaf):
5715
+ self._IsLeaf = IsLeaf
5716
+
5717
+ @property
5718
+ def ReadOnly(self):
5719
+ """是否只读
5720
+ :rtype: bool
5721
+ """
5722
+ return self._ReadOnly
5723
+
5724
+ @ReadOnly.setter
5725
+ def ReadOnly(self, ReadOnly):
5726
+ self._ReadOnly = ReadOnly
5727
+
5728
+ @property
5729
+ def BindAccount(self):
5730
+ """对应绑定的账号id
5731
+ :rtype: int
5732
+ """
5733
+ return self._BindAccount
5734
+
5735
+ @BindAccount.setter
5736
+ def BindAccount(self, BindAccount):
5737
+ self._BindAccount = BindAccount
5738
+
5739
+ @property
5740
+ def BindAccountName(self):
5741
+ """绑定账号的用户名
5742
+ :rtype: str
5743
+ """
5744
+ return self._BindAccountName
5745
+
5746
+ @BindAccountName.setter
5747
+ def BindAccountName(self, BindAccountName):
5748
+ self._BindAccountName = BindAccountName
5749
+
5750
+
5751
+ def _deserialize(self, params):
5752
+ self._Id = params.get("Id")
5753
+ self._Name = params.get("Name")
5754
+ self._Description = params.get("Description")
5755
+ self._ParentId = params.get("ParentId")
5756
+ self._IdPath = params.get("IdPath")
5757
+ self._NamePath = params.get("NamePath")
5758
+ self._Locked = params.get("Locked")
5759
+ self._OsType = params.get("OsType")
5760
+ self._Sort = params.get("Sort")
5761
+ self._FromAuto = params.get("FromAuto")
5762
+ self._Count = params.get("Count")
5763
+ self._Icon = params.get("Icon")
5764
+ self._WithIp = params.get("WithIp")
5765
+ self._HasIp = params.get("HasIp")
5766
+ self._IsLeaf = params.get("IsLeaf")
5767
+ self._ReadOnly = params.get("ReadOnly")
5768
+ self._BindAccount = params.get("BindAccount")
5769
+ self._BindAccountName = params.get("BindAccountName")
5770
+ memeber_set = set(params.keys())
5771
+ for name, value in vars(self).items():
5772
+ property_name = name[1:]
5773
+ if property_name in memeber_set:
5774
+ memeber_set.remove(property_name)
5775
+ if len(memeber_set) > 0:
5776
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
5777
+
5778
+
5779
+
4848
5780
  class DeviceNetworkInfo(AbstractModel):
4849
5781
  """分页的具体数据对象
4850
5782
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ioa
3
- Version: 3.0.1446
3
+ Version: 3.0.1451
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.0.1451
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1446