tencentcloud-sdk-ioa 3.0.1149 → 3.0.1157

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c403248838e8bb83392b12c8717d3cb6fe42e71d
4
- data.tar.gz: fd848d842b3577ae0c15cd32b3d33f461ed9a111
3
+ metadata.gz: a8cbfd30989a331bb134ce6a801f95a2c8cea77b
4
+ data.tar.gz: 532e8d8bc0176e4648bc22fdc3b5cee193d1e525
5
5
  SHA512:
6
- metadata.gz: fcff066460510d7aac26f96d10e07d9af55cfdda1c06f67903fd0377d92e690949e8620f6edb09e4bc6381318d47377177f15bd20396730077570c37701a977e
7
- data.tar.gz: b3179004c6410538011d63d18034bda1ff16faa70ee760ce570db98cdec59034def440f308e464c24505f5197e1a43e2a5eb87e3d3f518f942c556a2d1d1bbed
6
+ metadata.gz: 77133684be49bc36c6f5f2718f58d1cbdcb44e1948247a992d6d8d3555b3a020f9ff1a3dc0829ed64e731e5e565596b7993426ca060e0e30090153709023a05d
7
+ data.tar.gz: 5993dc0f00631e978825d0e581f233d4d6453fb98cdaa1661db6d97f97ca56bbee88fa0061127e9b0b4cad1cb7cc840b849166fbf15c555418c683c88cd8df4d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1149
1
+ 3.0.1157
@@ -29,6 +29,30 @@ module TencentCloud
29
29
  end
30
30
 
31
31
 
32
+ # 创建文件鉴定任务,私有化调用path为:capi/DlpOpenApi/CreateDLPFileDetectTask
33
+
34
+ # @param request: Request instance for CreateDLPFileDetectTask.
35
+ # @type request: :class:`Tencentcloud::ioa::V20220601::CreateDLPFileDetectTaskRequest`
36
+ # @rtype: :class:`Tencentcloud::ioa::V20220601::CreateDLPFileDetectTaskResponse`
37
+ def CreateDLPFileDetectTask(request)
38
+ body = send_request('CreateDLPFileDetectTask', request.serialize)
39
+ response = JSON.parse(body)
40
+ if response['Response'].key?('Error') == false
41
+ model = CreateDLPFileDetectTaskResponse.new
42
+ model.deserialize(response['Response'])
43
+ model
44
+ else
45
+ code = response['Response']['Error']['Code']
46
+ message = response['Response']['Error']['Message']
47
+ reqid = response['Response']['RequestId']
48
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
49
+ end
50
+ rescue TencentCloud::Common::TencentCloudSDKException => e
51
+ raise e
52
+ rescue StandardError => e
53
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
54
+ end
55
+
32
56
  # 提交送检任务
33
57
 
34
58
  # @param request: Request instance for CreateDLPFileDetectionTask.
@@ -221,6 +245,54 @@ module TencentCloud
221
245
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
246
  end
223
247
 
248
+ # 查询边缘节点分组,私有化调用path为:capi/Connectors/DescribeDLPEdgeNodeGroups
249
+
250
+ # @param request: Request instance for DescribeDLPEdgeNodeGroups.
251
+ # @type request: :class:`Tencentcloud::ioa::V20220601::DescribeDLPEdgeNodeGroupsRequest`
252
+ # @rtype: :class:`Tencentcloud::ioa::V20220601::DescribeDLPEdgeNodeGroupsResponse`
253
+ def DescribeDLPEdgeNodeGroups(request)
254
+ body = send_request('DescribeDLPEdgeNodeGroups', request.serialize)
255
+ response = JSON.parse(body)
256
+ if response['Response'].key?('Error') == false
257
+ model = DescribeDLPEdgeNodeGroupsResponse.new
258
+ model.deserialize(response['Response'])
259
+ model
260
+ else
261
+ code = response['Response']['Error']['Code']
262
+ message = response['Response']['Error']['Message']
263
+ reqid = response['Response']['RequestId']
264
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
265
+ end
266
+ rescue TencentCloud::Common::TencentCloudSDKException => e
267
+ raise e
268
+ rescue StandardError => e
269
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
270
+ end
271
+
272
+ # 查询边缘节点列表,私有化调用path为:capi/DlpOpenApi/DescribeDLPEdgeNodes
273
+
274
+ # @param request: Request instance for DescribeDLPEdgeNodes.
275
+ # @type request: :class:`Tencentcloud::ioa::V20220601::DescribeDLPEdgeNodesRequest`
276
+ # @rtype: :class:`Tencentcloud::ioa::V20220601::DescribeDLPEdgeNodesResponse`
277
+ def DescribeDLPEdgeNodes(request)
278
+ body = send_request('DescribeDLPEdgeNodes', request.serialize)
279
+ response = JSON.parse(body)
280
+ if response['Response'].key?('Error') == false
281
+ model = DescribeDLPEdgeNodesResponse.new
282
+ model.deserialize(response['Response'])
283
+ model
284
+ else
285
+ code = response['Response']['Error']['Code']
286
+ message = response['Response']['Error']['Message']
287
+ reqid = response['Response']['RequestId']
288
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
289
+ end
290
+ rescue TencentCloud::Common::TencentCloudSDKException => e
291
+ raise e
292
+ rescue StandardError => e
293
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
294
+ end
295
+
224
296
  # webservice查询文件检测结果
225
297
 
226
298
  # @param request: Request instance for DescribeDLPFileDetectResult.
@@ -245,6 +317,30 @@ module TencentCloud
245
317
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
246
318
  end
247
319
 
320
+ # 查询文件鉴定任务结果
321
+
322
+ # @param request: Request instance for DescribeDLPFileDetectTaskResult.
323
+ # @type request: :class:`Tencentcloud::ioa::V20220601::DescribeDLPFileDetectTaskResultRequest`
324
+ # @rtype: :class:`Tencentcloud::ioa::V20220601::DescribeDLPFileDetectTaskResultResponse`
325
+ def DescribeDLPFileDetectTaskResult(request)
326
+ body = send_request('DescribeDLPFileDetectTaskResult', request.serialize)
327
+ response = JSON.parse(body)
328
+ if response['Response'].key?('Error') == false
329
+ model = DescribeDLPFileDetectTaskResultResponse.new
330
+ model.deserialize(response['Response'])
331
+ model
332
+ else
333
+ code = response['Response']['Error']['Code']
334
+ message = response['Response']['Error']['Message']
335
+ reqid = response['Response']['RequestId']
336
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
337
+ end
338
+ rescue TencentCloud::Common::TencentCloudSDKException => e
339
+ raise e
340
+ rescue StandardError => e
341
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
342
+ end
343
+
248
344
  # 查询设备组子分组详情,私有化调用path为:capi/Assets/Device/DescribeDeviceChildGroups
249
345
 
250
346
  # @param request: Request instance for DescribeDeviceChildGroups.
@@ -509,6 +605,30 @@ module TencentCloud
509
605
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
510
606
  end
511
607
 
608
+ # 创建终端导出任务,私有化调用path为:capi/Assets/Device/ExportDeviceDownloadTask
609
+
610
+ # @param request: Request instance for ExportDeviceDownloadTask.
611
+ # @type request: :class:`Tencentcloud::ioa::V20220601::ExportDeviceDownloadTaskRequest`
612
+ # @rtype: :class:`Tencentcloud::ioa::V20220601::ExportDeviceDownloadTaskResponse`
613
+ def ExportDeviceDownloadTask(request)
614
+ body = send_request('ExportDeviceDownloadTask', request.serialize)
615
+ response = JSON.parse(body)
616
+ if response['Response'].key?('Error') == false
617
+ model = ExportDeviceDownloadTaskResponse.new
618
+ model.deserialize(response['Response'])
619
+ model
620
+ else
621
+ code = response['Response']['Error']['Code']
622
+ message = response['Response']['Error']['Message']
623
+ reqid = response['Response']['RequestId']
624
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
625
+ end
626
+ rescue TencentCloud::Common::TencentCloudSDKException => e
627
+ raise e
628
+ rescue StandardError => e
629
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
630
+ end
631
+
512
632
  # 导出基于指定终端查看软件信息详情列表查询,私有化调用path为:capi/Software/ExportSoftwareInformationList
513
633
 
514
634
  # @param request: Request instance for ExportSoftwareInformationList.
@@ -263,6 +263,85 @@ module TencentCloud
263
263
  end
264
264
  end
265
265
 
266
+ # 文件鉴定任务分页数据
267
+ class CreateDLPFileDetectTaskData < TencentCloud::Common::AbstractModel
268
+ # @param TaskRequestId: 任务请求唯一Id
269
+ # @type TaskRequestId: Array
270
+
271
+ attr_accessor :TaskRequestId
272
+
273
+ def initialize(taskrequestid=nil)
274
+ @TaskRequestId = taskrequestid
275
+ end
276
+
277
+ def deserialize(params)
278
+ @TaskRequestId = params['TaskRequestId']
279
+ end
280
+ end
281
+
282
+ # CreateDLPFileDetectTask请求参数结构体
283
+ class CreateDLPFileDetectTaskRequest < TencentCloud::Common::AbstractModel
284
+ # @param DownloadUrl: 文件下载Url
285
+ # @type DownloadUrl: String
286
+ # @param FileName: 文件名
287
+ # @type FileName: String
288
+ # @param FileMd5: 文件Md5
289
+ # @type FileMd5: String
290
+ # @param BalanceType: 负载类型 1 从GroupId中选一节点 鉴定 2使用所有SelectNodeIds节点鉴定
291
+ # @type BalanceType: Integer
292
+ # @param DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
293
+ # @type DomainInstanceId: String
294
+ # @param SelectNodeIds: 选中节点唯一Id列表,BalanceType=2时必填
295
+ # @type SelectNodeIds: Array
296
+ # @param GroupId: 节点组唯一Id,BalanceType=1时必填
297
+ # @type GroupId: String
298
+
299
+ attr_accessor :DownloadUrl, :FileName, :FileMd5, :BalanceType, :DomainInstanceId, :SelectNodeIds, :GroupId
300
+
301
+ def initialize(downloadurl=nil, filename=nil, filemd5=nil, balancetype=nil, domaininstanceid=nil, selectnodeids=nil, groupid=nil)
302
+ @DownloadUrl = downloadurl
303
+ @FileName = filename
304
+ @FileMd5 = filemd5
305
+ @BalanceType = balancetype
306
+ @DomainInstanceId = domaininstanceid
307
+ @SelectNodeIds = selectnodeids
308
+ @GroupId = groupid
309
+ end
310
+
311
+ def deserialize(params)
312
+ @DownloadUrl = params['DownloadUrl']
313
+ @FileName = params['FileName']
314
+ @FileMd5 = params['FileMd5']
315
+ @BalanceType = params['BalanceType']
316
+ @DomainInstanceId = params['DomainInstanceId']
317
+ @SelectNodeIds = params['SelectNodeIds']
318
+ @GroupId = params['GroupId']
319
+ end
320
+ end
321
+
322
+ # CreateDLPFileDetectTask返回参数结构体
323
+ class CreateDLPFileDetectTaskResponse < TencentCloud::Common::AbstractModel
324
+ # @param Data: 创建文件鉴定任务数据
325
+ # @type Data: :class:`Tencentcloud::Ioa.v20220601.models.CreateDLPFileDetectTaskData`
326
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
327
+ # @type RequestId: String
328
+
329
+ attr_accessor :Data, :RequestId
330
+
331
+ def initialize(data=nil, requestid=nil)
332
+ @Data = data
333
+ @RequestId = requestid
334
+ end
335
+
336
+ def deserialize(params)
337
+ unless params['Data'].nil?
338
+ @Data = CreateDLPFileDetectTaskData.new
339
+ @Data.deserialize(params['Data'])
340
+ end
341
+ @RequestId = params['RequestId']
342
+ end
343
+ end
344
+
266
345
  # 提交送检任务相应数据
267
346
  class CreateDLPFileDetectionTaskData < TencentCloud::Common::AbstractModel
268
347
  # @param DLPFileDetectionTaskID: 提交任务生成的id,也即requestID。用于后续查询
@@ -1012,6 +1091,246 @@ module TencentCloud
1012
1091
  end
1013
1092
  end
1014
1093
 
1094
+ # DescribeDLPEdgeNodeGroups请求参数结构体
1095
+ class DescribeDLPEdgeNodeGroupsRequest < TencentCloud::Common::AbstractModel
1096
+ # @param DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
1097
+ # @type DomainInstanceId: String
1098
+ # @param Condition: 过滤条件
1099
+ # @type Condition: :class:`Tencentcloud::Ioa.v20220601.models.Condition`
1100
+
1101
+ attr_accessor :DomainInstanceId, :Condition
1102
+
1103
+ def initialize(domaininstanceid=nil, condition=nil)
1104
+ @DomainInstanceId = domaininstanceid
1105
+ @Condition = condition
1106
+ end
1107
+
1108
+ def deserialize(params)
1109
+ @DomainInstanceId = params['DomainInstanceId']
1110
+ unless params['Condition'].nil?
1111
+ @Condition = Condition.new
1112
+ @Condition.deserialize(params['Condition'])
1113
+ end
1114
+ end
1115
+ end
1116
+
1117
+ # DescribeDLPEdgeNodeGroups返回参数结构体
1118
+ class DescribeDLPEdgeNodeGroupsResponse < TencentCloud::Common::AbstractModel
1119
+ # @param Data: 业务响应数据
1120
+ # @type Data: :class:`Tencentcloud::Ioa.v20220601.models.DescribeDLPEdgeNodeGroupsRspData`
1121
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1122
+ # @type RequestId: String
1123
+
1124
+ attr_accessor :Data, :RequestId
1125
+
1126
+ def initialize(data=nil, requestid=nil)
1127
+ @Data = data
1128
+ @RequestId = requestid
1129
+ end
1130
+
1131
+ def deserialize(params)
1132
+ unless params['Data'].nil?
1133
+ @Data = DescribeDLPEdgeNodeGroupsRspData.new
1134
+ @Data.deserialize(params['Data'])
1135
+ end
1136
+ @RequestId = params['RequestId']
1137
+ end
1138
+ end
1139
+
1140
+ # 业务响应数据
1141
+ class DescribeDLPEdgeNodeGroupsRspData < TencentCloud::Common::AbstractModel
1142
+ # @param Items: 分组信息
1143
+ # @type Items: Array
1144
+ # @param Page: 分页信息
1145
+ # @type Page: :class:`Tencentcloud::Ioa.v20220601.models.Paging`
1146
+
1147
+ attr_accessor :Items, :Page
1148
+
1149
+ def initialize(items=nil, page=nil)
1150
+ @Items = items
1151
+ @Page = page
1152
+ end
1153
+
1154
+ def deserialize(params)
1155
+ unless params['Items'].nil?
1156
+ @Items = []
1157
+ params['Items'].each do |i|
1158
+ describedlpedgenodegroupsrspitem_tmp = DescribeDLPEdgeNodeGroupsRspItem.new
1159
+ describedlpedgenodegroupsrspitem_tmp.deserialize(i)
1160
+ @Items << describedlpedgenodegroupsrspitem_tmp
1161
+ end
1162
+ end
1163
+ unless params['Page'].nil?
1164
+ @Page = Paging.new
1165
+ @Page.deserialize(params['Page'])
1166
+ end
1167
+ end
1168
+ end
1169
+
1170
+ # 节点分组信息
1171
+ class DescribeDLPEdgeNodeGroupsRspItem < TencentCloud::Common::AbstractModel
1172
+ # @param Id: 自增id,数据库中唯一
1173
+ # @type Id: Integer
1174
+ # @param GroupName: 节点分组名称
1175
+ # @type GroupName: String
1176
+ # @param GroupId: 节点分组id
1177
+ # @type GroupId: String
1178
+ # @param EdgeCount: 包含边缘节点数量
1179
+ # @type EdgeCount: Integer
1180
+
1181
+ attr_accessor :Id, :GroupName, :GroupId, :EdgeCount
1182
+
1183
+ def initialize(id=nil, groupname=nil, groupid=nil, edgecount=nil)
1184
+ @Id = id
1185
+ @GroupName = groupname
1186
+ @GroupId = groupid
1187
+ @EdgeCount = edgecount
1188
+ end
1189
+
1190
+ def deserialize(params)
1191
+ @Id = params['Id']
1192
+ @GroupName = params['GroupName']
1193
+ @GroupId = params['GroupId']
1194
+ @EdgeCount = params['EdgeCount']
1195
+ end
1196
+ end
1197
+
1198
+ # 业务响应数据
1199
+ class DescribeDLPEdgeNodesPageData < TencentCloud::Common::AbstractModel
1200
+ # @param Page: 分页信息
1201
+ # @type Page: :class:`Tencentcloud::Ioa.v20220601.models.Paging`
1202
+ # @param Items: 节点列表
1203
+ # @type Items: Array
1204
+
1205
+ attr_accessor :Page, :Items
1206
+
1207
+ def initialize(page=nil, items=nil)
1208
+ @Page = page
1209
+ @Items = items
1210
+ end
1211
+
1212
+ def deserialize(params)
1213
+ unless params['Page'].nil?
1214
+ @Page = Paging.new
1215
+ @Page.deserialize(params['Page'])
1216
+ end
1217
+ unless params['Items'].nil?
1218
+ @Items = []
1219
+ params['Items'].each do |i|
1220
+ describedlpedgenodesrspitem_tmp = DescribeDLPEdgeNodesRspItem.new
1221
+ describedlpedgenodesrspitem_tmp.deserialize(i)
1222
+ @Items << describedlpedgenodesrspitem_tmp
1223
+ end
1224
+ end
1225
+ end
1226
+ end
1227
+
1228
+ # DescribeDLPEdgeNodes请求参数结构体
1229
+ class DescribeDLPEdgeNodesRequest < TencentCloud::Common::AbstractModel
1230
+ # @param DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
1231
+ # @type DomainInstanceId: String
1232
+ # @param Condition: 过滤条件、分页参数<li>EdgeNodeName - string - 是否必填:否 - 操作符: ilike - 排序支持:否- 按节点名称过滤。</li>
1233
+ # @type Condition: :class:`Tencentcloud::Ioa.v20220601.models.Condition`
1234
+
1235
+ attr_accessor :DomainInstanceId, :Condition
1236
+
1237
+ def initialize(domaininstanceid=nil, condition=nil)
1238
+ @DomainInstanceId = domaininstanceid
1239
+ @Condition = condition
1240
+ end
1241
+
1242
+ def deserialize(params)
1243
+ @DomainInstanceId = params['DomainInstanceId']
1244
+ unless params['Condition'].nil?
1245
+ @Condition = Condition.new
1246
+ @Condition.deserialize(params['Condition'])
1247
+ end
1248
+ end
1249
+ end
1250
+
1251
+ # DescribeDLPEdgeNodes返回参数结构体
1252
+ class DescribeDLPEdgeNodesResponse < TencentCloud::Common::AbstractModel
1253
+ # @param Data: 业务响应数据
1254
+ # @type Data: :class:`Tencentcloud::Ioa.v20220601.models.DescribeDLPEdgeNodesPageData`
1255
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1256
+ # @type RequestId: String
1257
+
1258
+ attr_accessor :Data, :RequestId
1259
+
1260
+ def initialize(data=nil, requestid=nil)
1261
+ @Data = data
1262
+ @RequestId = requestid
1263
+ end
1264
+
1265
+ def deserialize(params)
1266
+ unless params['Data'].nil?
1267
+ @Data = DescribeDLPEdgeNodesPageData.new
1268
+ @Data.deserialize(params['Data'])
1269
+ end
1270
+ @RequestId = params['RequestId']
1271
+ end
1272
+ end
1273
+
1274
+ # 边缘节点信息
1275
+ class DescribeDLPEdgeNodesRspItem < TencentCloud::Common::AbstractModel
1276
+ # @param Id: 自增id,数据库中唯一
1277
+ # @type Id: Integer
1278
+ # @param GroupId: 节点分组唯一id
1279
+ # @type GroupId: String
1280
+ # @param EdgeNodeId: 节点id
1281
+ # @type EdgeNodeId: String
1282
+ # @param EdgeNodeName: 节点名称
1283
+ # @type EdgeNodeName: String
1284
+ # @param IsActive: 是否活跃/连通
1285
+ # @type IsActive: Boolean
1286
+ # @param GroupName: 节点分组名称
1287
+ # @type GroupName: String
1288
+ # @param Ip: 节点IP
1289
+ # @type Ip: String
1290
+ # @param Version: 节点版本
1291
+ # @type Version: String
1292
+ # @param IsUpgradeEnable: 是否支持升级连接器
1293
+ # @type IsUpgradeEnable: Boolean
1294
+ # @param UpgradeStatus: 升级状态: 0(升级中) , 1(升级失败) 或 2(升级成功)
1295
+ # @type UpgradeStatus: Integer
1296
+ # @param UpgradeDescription: 升级状态描述
1297
+ # @type UpgradeDescription: String
1298
+ # @param RuleVersion: 规则版本
1299
+ # @type RuleVersion: String
1300
+
1301
+ attr_accessor :Id, :GroupId, :EdgeNodeId, :EdgeNodeName, :IsActive, :GroupName, :Ip, :Version, :IsUpgradeEnable, :UpgradeStatus, :UpgradeDescription, :RuleVersion
1302
+
1303
+ def initialize(id=nil, groupid=nil, edgenodeid=nil, edgenodename=nil, isactive=nil, groupname=nil, ip=nil, version=nil, isupgradeenable=nil, upgradestatus=nil, upgradedescription=nil, ruleversion=nil)
1304
+ @Id = id
1305
+ @GroupId = groupid
1306
+ @EdgeNodeId = edgenodeid
1307
+ @EdgeNodeName = edgenodename
1308
+ @IsActive = isactive
1309
+ @GroupName = groupname
1310
+ @Ip = ip
1311
+ @Version = version
1312
+ @IsUpgradeEnable = isupgradeenable
1313
+ @UpgradeStatus = upgradestatus
1314
+ @UpgradeDescription = upgradedescription
1315
+ @RuleVersion = ruleversion
1316
+ end
1317
+
1318
+ def deserialize(params)
1319
+ @Id = params['Id']
1320
+ @GroupId = params['GroupId']
1321
+ @EdgeNodeId = params['EdgeNodeId']
1322
+ @EdgeNodeName = params['EdgeNodeName']
1323
+ @IsActive = params['IsActive']
1324
+ @GroupName = params['GroupName']
1325
+ @Ip = params['Ip']
1326
+ @Version = params['Version']
1327
+ @IsUpgradeEnable = params['IsUpgradeEnable']
1328
+ @UpgradeStatus = params['UpgradeStatus']
1329
+ @UpgradeDescription = params['UpgradeDescription']
1330
+ @RuleVersion = params['RuleVersion']
1331
+ end
1332
+ end
1333
+
1015
1334
  # 查询文件检测结果响应数据
1016
1335
  class DescribeDLPFileDetectResultData < TencentCloud::Common::AbstractModel
1017
1336
  # @param FileMd5: 提交任务时的文件md5
@@ -1083,6 +1402,106 @@ module TencentCloud
1083
1402
  end
1084
1403
  end
1085
1404
 
1405
+ # 查询文件检测结果响应数据
1406
+ class DescribeDLPFileDetectTaskResult < TencentCloud::Common::AbstractModel
1407
+ # @param FileMd5: 提交任务时的文件md5
1408
+ # @type FileMd5: String
1409
+ # @param FileName: 提交任务时的文件名
1410
+ # @type FileName: String
1411
+ # @param Status: 检测执行状态:0未执行 1等待执行 2执行中 3执行失败 4执行完成
1412
+ # @type Status: Integer
1413
+ # @param DetectResult: FileAbstract:文件摘要
1414
+ # FileAttr:文件属性
1415
+ # FileCategory:命中分级分类 array
1416
+ # FileContent:命中信息json(array)
1417
+ # RuleId:规则Id
1418
+ # RuleName:规则名称
1419
+ # RuleLevel:规则等级
1420
+ # Hits:命中词库内容
1421
+ # LibraryId:词库Id
1422
+ # LibraryType:词库类型
1423
+ # LibraryName:词库名称
1424
+ # Attribute: 命中属性 doc.Content文件内容|doc.FileSize文件大小|doc.Name文件名|doc.Type文件类型
1425
+ # String 待匹配内容
1426
+ # Content 命中内容
1427
+ # HitsTotal 规则命中次数
1428
+ # FileMd5 文件ND5
1429
+ # FileName 文件名
1430
+ # FileSize 文件大小
1431
+ # FileType 文件后缀
1432
+ # FileTypeName 文件类型名称
1433
+ # FinalDataLevel 命中最高等级
1434
+ # NodeId 节点唯一Id
1435
+ # NodeIp 节点IP
1436
+ # NodeName 节点名称
1437
+ # OperateTime 文件操作时间
1438
+ # Url 文件下载Url
1439
+ # @type DetectResult: String
1440
+ # @param Message: 检测执行状态描述
1441
+ # @type Message: String
1442
+
1443
+ attr_accessor :FileMd5, :FileName, :Status, :DetectResult, :Message
1444
+
1445
+ def initialize(filemd5=nil, filename=nil, status=nil, detectresult=nil, message=nil)
1446
+ @FileMd5 = filemd5
1447
+ @FileName = filename
1448
+ @Status = status
1449
+ @DetectResult = detectresult
1450
+ @Message = message
1451
+ end
1452
+
1453
+ def deserialize(params)
1454
+ @FileMd5 = params['FileMd5']
1455
+ @FileName = params['FileName']
1456
+ @Status = params['Status']
1457
+ @DetectResult = params['DetectResult']
1458
+ @Message = params['Message']
1459
+ end
1460
+ end
1461
+
1462
+ # DescribeDLPFileDetectTaskResult请求参数结构体
1463
+ class DescribeDLPFileDetectTaskResultRequest < TencentCloud::Common::AbstractModel
1464
+ # @param DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
1465
+ # @type DomainInstanceId: String
1466
+ # @param TaskRequestId: 任务请求Id
1467
+ # @type TaskRequestId: String
1468
+
1469
+ attr_accessor :DomainInstanceId, :TaskRequestId
1470
+
1471
+ def initialize(domaininstanceid=nil, taskrequestid=nil)
1472
+ @DomainInstanceId = domaininstanceid
1473
+ @TaskRequestId = taskrequestid
1474
+ end
1475
+
1476
+ def deserialize(params)
1477
+ @DomainInstanceId = params['DomainInstanceId']
1478
+ @TaskRequestId = params['TaskRequestId']
1479
+ end
1480
+ end
1481
+
1482
+ # DescribeDLPFileDetectTaskResult返回参数结构体
1483
+ class DescribeDLPFileDetectTaskResultResponse < TencentCloud::Common::AbstractModel
1484
+ # @param Data: 文件鉴定任务结果数据。详情查看具体数据结构
1485
+ # @type Data: :class:`Tencentcloud::Ioa.v20220601.models.DescribeDLPFileDetectTaskResult`
1486
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1487
+ # @type RequestId: String
1488
+
1489
+ attr_accessor :Data, :RequestId
1490
+
1491
+ def initialize(data=nil, requestid=nil)
1492
+ @Data = data
1493
+ @RequestId = requestid
1494
+ end
1495
+
1496
+ def deserialize(params)
1497
+ unless params['Data'].nil?
1498
+ @Data = DescribeDLPFileDetectTaskResult.new
1499
+ @Data.deserialize(params['Data'])
1500
+ end
1501
+ @RequestId = params['RequestId']
1502
+ end
1503
+ end
1504
+
1086
1505
  # DescribeDeviceChildGroups请求参数结构体
1087
1506
  class DescribeDeviceChildGroupsRequest < TencentCloud::Common::AbstractModel
1088
1507
  # @param DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
@@ -2658,6 +3077,26 @@ module TencentCloud
2658
3077
  end
2659
3078
  end
2660
3079
 
3080
+ # 业务响应数据
3081
+ class DeviceDownloadTask < TencentCloud::Common::AbstractModel
3082
+ # @param DownloadURL: 同步数据下载的url
3083
+ # @type DownloadURL: String
3084
+ # @param TaskId: 异步任务id,需要根据id去任务中心下载
3085
+ # @type TaskId: Integer
3086
+
3087
+ attr_accessor :DownloadURL, :TaskId
3088
+
3089
+ def initialize(downloadurl=nil, taskid=nil)
3090
+ @DownloadURL = downloadurl
3091
+ @TaskId = taskid
3092
+ end
3093
+
3094
+ def deserialize(params)
3095
+ @DownloadURL = params['DownloadURL']
3096
+ @TaskId = params['TaskId']
3097
+ end
3098
+ end
3099
+
2661
3100
  # 返回的数组列表
2662
3101
  class DeviceGroupDetail < TencentCloud::Common::AbstractModel
2663
3102
  # @param Id: 设备组id
@@ -2919,6 +3358,72 @@ module TencentCloud
2919
3358
  end
2920
3359
  end
2921
3360
 
3361
+ # ExportDeviceDownloadTask请求参数结构体
3362
+ class ExportDeviceDownloadTaskRequest < TencentCloud::Common::AbstractModel
3363
+ # @param OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios;默认值0)
3364
+ # @type OsType: Integer
3365
+ # @param DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
3366
+ # @type DomainInstanceId: String
3367
+ # @param GroupId: 分组id
3368
+ # @type GroupId: Integer
3369
+ # @param OnlineStatus: 在线状态 2 在线 0,1 离线
3370
+ # @type OnlineStatus: Integer
3371
+ # @param ExportOrder: 导出顺序,接口返回的数据字段
3372
+ # @type ExportOrder: String
3373
+ # @param ExportType: 导出类型, 0:终端树;7:硬件信息列表导出;
3374
+ # @type ExportType: Integer
3375
+ # @param Condition: 过滤条件。同DescribeDevices接口
3376
+ # @type Condition: :class:`Tencentcloud::Ioa.v20220601.models.Condition`
3377
+
3378
+ attr_accessor :OsType, :DomainInstanceId, :GroupId, :OnlineStatus, :ExportOrder, :ExportType, :Condition
3379
+
3380
+ def initialize(ostype=nil, domaininstanceid=nil, groupid=nil, onlinestatus=nil, exportorder=nil, exporttype=nil, condition=nil)
3381
+ @OsType = ostype
3382
+ @DomainInstanceId = domaininstanceid
3383
+ @GroupId = groupid
3384
+ @OnlineStatus = onlinestatus
3385
+ @ExportOrder = exportorder
3386
+ @ExportType = exporttype
3387
+ @Condition = condition
3388
+ end
3389
+
3390
+ def deserialize(params)
3391
+ @OsType = params['OsType']
3392
+ @DomainInstanceId = params['DomainInstanceId']
3393
+ @GroupId = params['GroupId']
3394
+ @OnlineStatus = params['OnlineStatus']
3395
+ @ExportOrder = params['ExportOrder']
3396
+ @ExportType = params['ExportType']
3397
+ unless params['Condition'].nil?
3398
+ @Condition = Condition.new
3399
+ @Condition.deserialize(params['Condition'])
3400
+ end
3401
+ end
3402
+ end
3403
+
3404
+ # ExportDeviceDownloadTask返回参数结构体
3405
+ class ExportDeviceDownloadTaskResponse < TencentCloud::Common::AbstractModel
3406
+ # @param Data: 业务响应数据
3407
+ # @type Data: :class:`Tencentcloud::Ioa.v20220601.models.DeviceDownloadTask`
3408
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3409
+ # @type RequestId: String
3410
+
3411
+ attr_accessor :Data, :RequestId
3412
+
3413
+ def initialize(data=nil, requestid=nil)
3414
+ @Data = data
3415
+ @RequestId = requestid
3416
+ end
3417
+
3418
+ def deserialize(params)
3419
+ unless params['Data'].nil?
3420
+ @Data = DeviceDownloadTask.new
3421
+ @Data.deserialize(params['Data'])
3422
+ end
3423
+ @RequestId = params['RequestId']
3424
+ end
3425
+ end
3426
+
2922
3427
  # 业务响应数据
2923
3428
  class ExportSoftwareDownloadUrlRspData < TencentCloud::Common::AbstractModel
2924
3429
  # @param DownloadURL: 下载的url
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ioa
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1149
4
+ version: 3.0.1157
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-28 00:00:00.000000000 Z
11
+ date: 2025-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20220601/client.rb
37
- - lib/v20220601/models.rb
38
36
  - lib/tencentcloud-sdk-ioa.rb
37
+ - lib/v20220601/models.rb
38
+ - lib/v20220601/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: