tencentcloud-sdk-ioa 3.0.1149 → 3.0.1154
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220601/client.rb +96 -0
- data/lib/v20220601/models.rb +419 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc3761020f048ceaaa488101c3c85677ed865c49
|
4
|
+
data.tar.gz: 561ae38fe15d47d7c46697c4d384b86e1f2aa557
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 336561c8d0b6ebea545881bbdd27f8f35b329303b4dba3ad5d841c45ffa392b1dc8dbd6026f44578a78dcf24bccead73b972688763399259a33d887e4b8cf784
|
7
|
+
data.tar.gz: 6478b359ac85d48f68a88fe24555294e855fec7b67c900d9e7008cdad075648781cc211637f8532a2cd59cadb368a3ada3afe76f8c0fd3137a788a25501d9b48
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1154
|
data/lib/v20220601/client.rb
CHANGED
@@ -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.
|
data/lib/v20220601/models.rb
CHANGED
@@ -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的影响范围限制于相应接口的入参。
|
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.
|
4
|
+
version: 3.0.1154
|
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-
|
11
|
+
date: 2025-10-17 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:
|