tencentcloud-sdk-ctem 3.0.1171 → 3.0.1172
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/v20231128/client.rb +625 -1
- data/lib/v20231128/models.rb +1428 -65
- metadata +3 -3
data/lib/v20231128/models.rb
CHANGED
|
@@ -17,6 +17,146 @@
|
|
|
17
17
|
module TencentCloud
|
|
18
18
|
module Ctem
|
|
19
19
|
module V20231128
|
|
20
|
+
# CreateApp请求参数结构体
|
|
21
|
+
class CreateAppRequest < TencentCloud::Common::AbstractModel
|
|
22
|
+
# @param CustomerId: 企业ID
|
|
23
|
+
# @type CustomerId: Integer
|
|
24
|
+
# @param Name: 移动端名称
|
|
25
|
+
# @type Name: String
|
|
26
|
+
# @param Logo: 图片地址
|
|
27
|
+
# @type Logo: String
|
|
28
|
+
# @param Platform: 平台,ios或android
|
|
29
|
+
# @type Platform: String
|
|
30
|
+
# @param AppVersion: 版本
|
|
31
|
+
# @type AppVersion: String
|
|
32
|
+
# @param DownloadUrl: 下载地址
|
|
33
|
+
# @type DownloadUrl: String
|
|
34
|
+
# @param PackageName: 安装包名
|
|
35
|
+
# @type PackageName: String
|
|
36
|
+
# @param Developer: 开发者
|
|
37
|
+
# @type Developer: String
|
|
38
|
+
# @param ServerUrl: 移动端地址
|
|
39
|
+
# @type ServerUrl: String
|
|
40
|
+
# @param Description: 描述
|
|
41
|
+
# @type Description: String
|
|
42
|
+
# @param EnterpriseUid: 子公司ID
|
|
43
|
+
# @type EnterpriseUid: String
|
|
44
|
+
|
|
45
|
+
attr_accessor :CustomerId, :Name, :Logo, :Platform, :AppVersion, :DownloadUrl, :PackageName, :Developer, :ServerUrl, :Description, :EnterpriseUid
|
|
46
|
+
|
|
47
|
+
def initialize(customerid=nil, name=nil, logo=nil, platform=nil, appversion=nil, downloadurl=nil, packagename=nil, developer=nil, serverurl=nil, description=nil, enterpriseuid=nil)
|
|
48
|
+
@CustomerId = customerid
|
|
49
|
+
@Name = name
|
|
50
|
+
@Logo = logo
|
|
51
|
+
@Platform = platform
|
|
52
|
+
@AppVersion = appversion
|
|
53
|
+
@DownloadUrl = downloadurl
|
|
54
|
+
@PackageName = packagename
|
|
55
|
+
@Developer = developer
|
|
56
|
+
@ServerUrl = serverurl
|
|
57
|
+
@Description = description
|
|
58
|
+
@EnterpriseUid = enterpriseuid
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
def deserialize(params)
|
|
62
|
+
@CustomerId = params['CustomerId']
|
|
63
|
+
@Name = params['Name']
|
|
64
|
+
@Logo = params['Logo']
|
|
65
|
+
@Platform = params['Platform']
|
|
66
|
+
@AppVersion = params['AppVersion']
|
|
67
|
+
@DownloadUrl = params['DownloadUrl']
|
|
68
|
+
@PackageName = params['PackageName']
|
|
69
|
+
@Developer = params['Developer']
|
|
70
|
+
@ServerUrl = params['ServerUrl']
|
|
71
|
+
@Description = params['Description']
|
|
72
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# CreateApp返回参数结构体
|
|
77
|
+
class CreateAppResponse < TencentCloud::Common::AbstractModel
|
|
78
|
+
# @param Id: Id
|
|
79
|
+
# @type Id: Integer
|
|
80
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
81
|
+
# @type RequestId: String
|
|
82
|
+
|
|
83
|
+
attr_accessor :Id, :RequestId
|
|
84
|
+
|
|
85
|
+
def initialize(id=nil, requestid=nil)
|
|
86
|
+
@Id = id
|
|
87
|
+
@RequestId = requestid
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
def deserialize(params)
|
|
91
|
+
@Id = params['Id']
|
|
92
|
+
@RequestId = params['RequestId']
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
# CreateAsset请求参数结构体
|
|
97
|
+
class CreateAssetRequest < TencentCloud::Common::AbstractModel
|
|
98
|
+
# @param Ip: IP地址
|
|
99
|
+
# @type Ip: String
|
|
100
|
+
# @param CustomerId: 企业Id
|
|
101
|
+
# @type CustomerId: Integer
|
|
102
|
+
# @param Os: 类型
|
|
103
|
+
# @type Os: String
|
|
104
|
+
# @param Country: 国家
|
|
105
|
+
# @type Country: String
|
|
106
|
+
# @param Province: 省份
|
|
107
|
+
# @type Province: String
|
|
108
|
+
# @param City: 城市
|
|
109
|
+
# @type City: String
|
|
110
|
+
# @param Isp: 运营商
|
|
111
|
+
# @type Isp: String
|
|
112
|
+
# @param EnterpriseUid: 子公司Id
|
|
113
|
+
# @type EnterpriseUid: String
|
|
114
|
+
|
|
115
|
+
attr_accessor :Ip, :CustomerId, :Os, :Country, :Province, :City, :Isp, :EnterpriseUid
|
|
116
|
+
|
|
117
|
+
def initialize(ip=nil, customerid=nil, os=nil, country=nil, province=nil, city=nil, isp=nil, enterpriseuid=nil)
|
|
118
|
+
@Ip = ip
|
|
119
|
+
@CustomerId = customerid
|
|
120
|
+
@Os = os
|
|
121
|
+
@Country = country
|
|
122
|
+
@Province = province
|
|
123
|
+
@City = city
|
|
124
|
+
@Isp = isp
|
|
125
|
+
@EnterpriseUid = enterpriseuid
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
def deserialize(params)
|
|
129
|
+
@Ip = params['Ip']
|
|
130
|
+
@CustomerId = params['CustomerId']
|
|
131
|
+
@Os = params['Os']
|
|
132
|
+
@Country = params['Country']
|
|
133
|
+
@Province = params['Province']
|
|
134
|
+
@City = params['City']
|
|
135
|
+
@Isp = params['Isp']
|
|
136
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
# CreateAsset返回参数结构体
|
|
141
|
+
class CreateAssetResponse < TencentCloud::Common::AbstractModel
|
|
142
|
+
# @param Id: Id
|
|
143
|
+
# @type Id: Integer
|
|
144
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
145
|
+
# @type RequestId: String
|
|
146
|
+
|
|
147
|
+
attr_accessor :Id, :RequestId
|
|
148
|
+
|
|
149
|
+
def initialize(id=nil, requestid=nil)
|
|
150
|
+
@Id = id
|
|
151
|
+
@RequestId = requestid
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
def deserialize(params)
|
|
155
|
+
@Id = params['Id']
|
|
156
|
+
@RequestId = params['RequestId']
|
|
157
|
+
end
|
|
158
|
+
end
|
|
159
|
+
|
|
20
160
|
# CreateCustomer请求参数结构体
|
|
21
161
|
class CreateCustomerRequest < TencentCloud::Common::AbstractModel
|
|
22
162
|
# @param Name: 企业名称
|
|
@@ -113,6 +253,66 @@ module TencentCloud
|
|
|
113
253
|
end
|
|
114
254
|
end
|
|
115
255
|
|
|
256
|
+
# CreateDomain请求参数结构体
|
|
257
|
+
class CreateDomainRequest < TencentCloud::Common::AbstractModel
|
|
258
|
+
# @param CustomerId: 企业Id
|
|
259
|
+
# @type CustomerId: Integer
|
|
260
|
+
# @param Domain: 主域名
|
|
261
|
+
# @type Domain: String
|
|
262
|
+
# @param ICP: ICP
|
|
263
|
+
# @type ICP: String
|
|
264
|
+
# @param RegisteredTime: 注册时间
|
|
265
|
+
# @type RegisteredTime: String
|
|
266
|
+
# @param ExpiredTime: 过期时间
|
|
267
|
+
# @type ExpiredTime: String
|
|
268
|
+
# @param Company: 公司
|
|
269
|
+
# @type Company: String
|
|
270
|
+
# @param EnterpriseUid: 子公司
|
|
271
|
+
# @type EnterpriseUid: String
|
|
272
|
+
|
|
273
|
+
attr_accessor :CustomerId, :Domain, :ICP, :RegisteredTime, :ExpiredTime, :Company, :EnterpriseUid
|
|
274
|
+
|
|
275
|
+
def initialize(customerid=nil, domain=nil, icp=nil, registeredtime=nil, expiredtime=nil, company=nil, enterpriseuid=nil)
|
|
276
|
+
@CustomerId = customerid
|
|
277
|
+
@Domain = domain
|
|
278
|
+
@ICP = icp
|
|
279
|
+
@RegisteredTime = registeredtime
|
|
280
|
+
@ExpiredTime = expiredtime
|
|
281
|
+
@Company = company
|
|
282
|
+
@EnterpriseUid = enterpriseuid
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
def deserialize(params)
|
|
286
|
+
@CustomerId = params['CustomerId']
|
|
287
|
+
@Domain = params['Domain']
|
|
288
|
+
@ICP = params['ICP']
|
|
289
|
+
@RegisteredTime = params['RegisteredTime']
|
|
290
|
+
@ExpiredTime = params['ExpiredTime']
|
|
291
|
+
@Company = params['Company']
|
|
292
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
293
|
+
end
|
|
294
|
+
end
|
|
295
|
+
|
|
296
|
+
# CreateDomain返回参数结构体
|
|
297
|
+
class CreateDomainResponse < TencentCloud::Common::AbstractModel
|
|
298
|
+
# @param Id: Id
|
|
299
|
+
# @type Id: Integer
|
|
300
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
301
|
+
# @type RequestId: String
|
|
302
|
+
|
|
303
|
+
attr_accessor :Id, :RequestId
|
|
304
|
+
|
|
305
|
+
def initialize(id=nil, requestid=nil)
|
|
306
|
+
@Id = id
|
|
307
|
+
@RequestId = requestid
|
|
308
|
+
end
|
|
309
|
+
|
|
310
|
+
def deserialize(params)
|
|
311
|
+
@Id = params['Id']
|
|
312
|
+
@RequestId = params['RequestId']
|
|
313
|
+
end
|
|
314
|
+
end
|
|
315
|
+
|
|
116
316
|
# CreateEnterprise请求参数结构体
|
|
117
317
|
class CreateEnterpriseRequest < TencentCloud::Common::AbstractModel
|
|
118
318
|
# @param CustomerId: 企业ID
|
|
@@ -171,16 +371,100 @@ module TencentCloud
|
|
|
171
371
|
|
|
172
372
|
# CreateEnterprise返回参数结构体
|
|
173
373
|
class CreateEnterpriseResponse < TencentCloud::Common::AbstractModel
|
|
374
|
+
# @param Id: Id
|
|
375
|
+
# @type Id: Integer
|
|
174
376
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
175
377
|
# @type RequestId: String
|
|
176
378
|
|
|
177
|
-
attr_accessor :RequestId
|
|
379
|
+
attr_accessor :Id, :RequestId
|
|
178
380
|
|
|
179
|
-
def initialize(requestid=nil)
|
|
381
|
+
def initialize(id=nil, requestid=nil)
|
|
382
|
+
@Id = id
|
|
383
|
+
@RequestId = requestid
|
|
384
|
+
end
|
|
385
|
+
|
|
386
|
+
def deserialize(params)
|
|
387
|
+
@Id = params['Id']
|
|
388
|
+
@RequestId = params['RequestId']
|
|
389
|
+
end
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
# CreateHttp请求参数结构体
|
|
393
|
+
class CreateHttpRequest < TencentCloud::Common::AbstractModel
|
|
394
|
+
# @param CustomerId: 企业Id
|
|
395
|
+
# @type CustomerId: Integer
|
|
396
|
+
# @param Url: Url
|
|
397
|
+
# @type Url: String
|
|
398
|
+
# @param EnterpriseUid: 子公司
|
|
399
|
+
# @type EnterpriseUid: String
|
|
400
|
+
# @param Title: 标题
|
|
401
|
+
# @type Title: String
|
|
402
|
+
# @param ContentLength: 报文长度
|
|
403
|
+
# @type ContentLength: Integer
|
|
404
|
+
# @param Content: 报文内容
|
|
405
|
+
# @type Content: String
|
|
406
|
+
# @param ScreenshotUrl: 缩略图Url
|
|
407
|
+
# @type ScreenshotUrl: String
|
|
408
|
+
# @param Tags: 标签
|
|
409
|
+
# @type Tags: String
|
|
410
|
+
# @param Code: 状态码
|
|
411
|
+
# @type Code: Integer
|
|
412
|
+
# @param Ip: 解析的IP
|
|
413
|
+
# @type Ip: String
|
|
414
|
+
# @param Ssl: 证书信息
|
|
415
|
+
# @type Ssl: String
|
|
416
|
+
# @param SslExpiredTime: ssl证书过期时间
|
|
417
|
+
# @type SslExpiredTime: String
|
|
418
|
+
|
|
419
|
+
attr_accessor :CustomerId, :Url, :EnterpriseUid, :Title, :ContentLength, :Content, :ScreenshotUrl, :Tags, :Code, :Ip, :Ssl, :SslExpiredTime
|
|
420
|
+
|
|
421
|
+
def initialize(customerid=nil, url=nil, enterpriseuid=nil, title=nil, contentlength=nil, content=nil, screenshoturl=nil, tags=nil, code=nil, ip=nil, ssl=nil, sslexpiredtime=nil)
|
|
422
|
+
@CustomerId = customerid
|
|
423
|
+
@Url = url
|
|
424
|
+
@EnterpriseUid = enterpriseuid
|
|
425
|
+
@Title = title
|
|
426
|
+
@ContentLength = contentlength
|
|
427
|
+
@Content = content
|
|
428
|
+
@ScreenshotUrl = screenshoturl
|
|
429
|
+
@Tags = tags
|
|
430
|
+
@Code = code
|
|
431
|
+
@Ip = ip
|
|
432
|
+
@Ssl = ssl
|
|
433
|
+
@SslExpiredTime = sslexpiredtime
|
|
434
|
+
end
|
|
435
|
+
|
|
436
|
+
def deserialize(params)
|
|
437
|
+
@CustomerId = params['CustomerId']
|
|
438
|
+
@Url = params['Url']
|
|
439
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
440
|
+
@Title = params['Title']
|
|
441
|
+
@ContentLength = params['ContentLength']
|
|
442
|
+
@Content = params['Content']
|
|
443
|
+
@ScreenshotUrl = params['ScreenshotUrl']
|
|
444
|
+
@Tags = params['Tags']
|
|
445
|
+
@Code = params['Code']
|
|
446
|
+
@Ip = params['Ip']
|
|
447
|
+
@Ssl = params['Ssl']
|
|
448
|
+
@SslExpiredTime = params['SslExpiredTime']
|
|
449
|
+
end
|
|
450
|
+
end
|
|
451
|
+
|
|
452
|
+
# CreateHttp返回参数结构体
|
|
453
|
+
class CreateHttpResponse < TencentCloud::Common::AbstractModel
|
|
454
|
+
# @param Id: Id
|
|
455
|
+
# @type Id: Integer
|
|
456
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
457
|
+
# @type RequestId: String
|
|
458
|
+
|
|
459
|
+
attr_accessor :Id, :RequestId
|
|
460
|
+
|
|
461
|
+
def initialize(id=nil, requestid=nil)
|
|
462
|
+
@Id = id
|
|
180
463
|
@RequestId = requestid
|
|
181
464
|
end
|
|
182
465
|
|
|
183
466
|
def deserialize(params)
|
|
467
|
+
@Id = params['Id']
|
|
184
468
|
@RequestId = params['RequestId']
|
|
185
469
|
end
|
|
186
470
|
end
|
|
@@ -237,21 +521,469 @@ module TencentCloud
|
|
|
237
521
|
end
|
|
238
522
|
end
|
|
239
523
|
|
|
240
|
-
#
|
|
241
|
-
class
|
|
242
|
-
# @param
|
|
243
|
-
# @type
|
|
244
|
-
# @param
|
|
245
|
-
# @type
|
|
246
|
-
# @param
|
|
247
|
-
# @type
|
|
248
|
-
# @param
|
|
249
|
-
# @type
|
|
250
|
-
# @param
|
|
251
|
-
# @type
|
|
252
|
-
# @param
|
|
253
|
-
# @type
|
|
254
|
-
|
|
524
|
+
# CreateManage请求参数结构体
|
|
525
|
+
class CreateManageRequest < TencentCloud::Common::AbstractModel
|
|
526
|
+
# @param CustomerId: 企业Id
|
|
527
|
+
# @type CustomerId: Integer
|
|
528
|
+
# @param Url: Url
|
|
529
|
+
# @type Url: String
|
|
530
|
+
# @param Title: 标题
|
|
531
|
+
# @type Title: String
|
|
532
|
+
# @param Screenshot: Screenshot
|
|
533
|
+
# @type Screenshot: String
|
|
534
|
+
# @param Code: 状态码
|
|
535
|
+
# @type Code: Integer
|
|
536
|
+
# @param EnterpriseUid: 子公司
|
|
537
|
+
# @type EnterpriseUid: String
|
|
538
|
+
|
|
539
|
+
attr_accessor :CustomerId, :Url, :Title, :Screenshot, :Code, :EnterpriseUid
|
|
540
|
+
|
|
541
|
+
def initialize(customerid=nil, url=nil, title=nil, screenshot=nil, code=nil, enterpriseuid=nil)
|
|
542
|
+
@CustomerId = customerid
|
|
543
|
+
@Url = url
|
|
544
|
+
@Title = title
|
|
545
|
+
@Screenshot = screenshot
|
|
546
|
+
@Code = code
|
|
547
|
+
@EnterpriseUid = enterpriseuid
|
|
548
|
+
end
|
|
549
|
+
|
|
550
|
+
def deserialize(params)
|
|
551
|
+
@CustomerId = params['CustomerId']
|
|
552
|
+
@Url = params['Url']
|
|
553
|
+
@Title = params['Title']
|
|
554
|
+
@Screenshot = params['Screenshot']
|
|
555
|
+
@Code = params['Code']
|
|
556
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
557
|
+
end
|
|
558
|
+
end
|
|
559
|
+
|
|
560
|
+
# CreateManage返回参数结构体
|
|
561
|
+
class CreateManageResponse < TencentCloud::Common::AbstractModel
|
|
562
|
+
# @param Id: Id
|
|
563
|
+
# @type Id: Integer
|
|
564
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
565
|
+
# @type RequestId: String
|
|
566
|
+
|
|
567
|
+
attr_accessor :Id, :RequestId
|
|
568
|
+
|
|
569
|
+
def initialize(id=nil, requestid=nil)
|
|
570
|
+
@Id = id
|
|
571
|
+
@RequestId = requestid
|
|
572
|
+
end
|
|
573
|
+
|
|
574
|
+
def deserialize(params)
|
|
575
|
+
@Id = params['Id']
|
|
576
|
+
@RequestId = params['RequestId']
|
|
577
|
+
end
|
|
578
|
+
end
|
|
579
|
+
|
|
580
|
+
# CreatePort请求参数结构体
|
|
581
|
+
class CreatePortRequest < TencentCloud::Common::AbstractModel
|
|
582
|
+
# @param CustomerId: 企业Id
|
|
583
|
+
# @type CustomerId: Integer
|
|
584
|
+
# @param Port: 端口
|
|
585
|
+
# @type Port: Integer
|
|
586
|
+
# @param Asset: IP或域名地址
|
|
587
|
+
# @type Asset: String
|
|
588
|
+
# @param IsHighRisk: 是否高危
|
|
589
|
+
# @type IsHighRisk: Boolean
|
|
590
|
+
# @param EnterpriseUid: 子公司
|
|
591
|
+
# @type EnterpriseUid: String
|
|
592
|
+
# @param Banner: base64编码后的指纹
|
|
593
|
+
# @type Banner: String
|
|
594
|
+
# @param Ip: 解析的IP
|
|
595
|
+
# @type Ip: String
|
|
596
|
+
# @param App: 组件名称
|
|
597
|
+
# @type App: String
|
|
598
|
+
# @param Service: 服务名称
|
|
599
|
+
# @type Service: String
|
|
600
|
+
|
|
601
|
+
attr_accessor :CustomerId, :Port, :Asset, :IsHighRisk, :EnterpriseUid, :Banner, :Ip, :App, :Service
|
|
602
|
+
|
|
603
|
+
def initialize(customerid=nil, port=nil, asset=nil, ishighrisk=nil, enterpriseuid=nil, banner=nil, ip=nil, app=nil, service=nil)
|
|
604
|
+
@CustomerId = customerid
|
|
605
|
+
@Port = port
|
|
606
|
+
@Asset = asset
|
|
607
|
+
@IsHighRisk = ishighrisk
|
|
608
|
+
@EnterpriseUid = enterpriseuid
|
|
609
|
+
@Banner = banner
|
|
610
|
+
@Ip = ip
|
|
611
|
+
@App = app
|
|
612
|
+
@Service = service
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
def deserialize(params)
|
|
616
|
+
@CustomerId = params['CustomerId']
|
|
617
|
+
@Port = params['Port']
|
|
618
|
+
@Asset = params['Asset']
|
|
619
|
+
@IsHighRisk = params['IsHighRisk']
|
|
620
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
621
|
+
@Banner = params['Banner']
|
|
622
|
+
@Ip = params['Ip']
|
|
623
|
+
@App = params['App']
|
|
624
|
+
@Service = params['Service']
|
|
625
|
+
end
|
|
626
|
+
end
|
|
627
|
+
|
|
628
|
+
# CreatePort返回参数结构体
|
|
629
|
+
class CreatePortResponse < TencentCloud::Common::AbstractModel
|
|
630
|
+
# @param Id: Id
|
|
631
|
+
# @type Id: Integer
|
|
632
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
633
|
+
# @type RequestId: String
|
|
634
|
+
|
|
635
|
+
attr_accessor :Id, :RequestId
|
|
636
|
+
|
|
637
|
+
def initialize(id=nil, requestid=nil)
|
|
638
|
+
@Id = id
|
|
639
|
+
@RequestId = requestid
|
|
640
|
+
end
|
|
641
|
+
|
|
642
|
+
def deserialize(params)
|
|
643
|
+
@Id = params['Id']
|
|
644
|
+
@RequestId = params['RequestId']
|
|
645
|
+
end
|
|
646
|
+
end
|
|
647
|
+
|
|
648
|
+
# CreateSeeds请求参数结构体
|
|
649
|
+
class CreateSeedsRequest < TencentCloud::Common::AbstractModel
|
|
650
|
+
# @param CustomerId: 企业ID
|
|
651
|
+
# @type CustomerId: Integer
|
|
652
|
+
# @param Ips: ip种子数组
|
|
653
|
+
# @type Ips: Array
|
|
654
|
+
# @param Icons: icon种子数组
|
|
655
|
+
# @type Icons: Array
|
|
656
|
+
# @param Domains: 主域名种子数组
|
|
657
|
+
# @type Domains: Array
|
|
658
|
+
# @param Titles: title种子数组
|
|
659
|
+
# @type Titles: Array
|
|
660
|
+
# @param SubDomains: 子域名种子数组
|
|
661
|
+
# @type SubDomains: Array
|
|
662
|
+
# @param Keywords: 关键词种子数组
|
|
663
|
+
# @type Keywords: Array
|
|
664
|
+
# @param ParentCompanies: 母公司种子数组
|
|
665
|
+
# @type ParentCompanies: Array
|
|
666
|
+
|
|
667
|
+
attr_accessor :CustomerId, :Ips, :Icons, :Domains, :Titles, :SubDomains, :Keywords, :ParentCompanies
|
|
668
|
+
|
|
669
|
+
def initialize(customerid=nil, ips=nil, icons=nil, domains=nil, titles=nil, subdomains=nil, keywords=nil, parentcompanies=nil)
|
|
670
|
+
@CustomerId = customerid
|
|
671
|
+
@Ips = ips
|
|
672
|
+
@Icons = icons
|
|
673
|
+
@Domains = domains
|
|
674
|
+
@Titles = titles
|
|
675
|
+
@SubDomains = subdomains
|
|
676
|
+
@Keywords = keywords
|
|
677
|
+
@ParentCompanies = parentcompanies
|
|
678
|
+
end
|
|
679
|
+
|
|
680
|
+
def deserialize(params)
|
|
681
|
+
@CustomerId = params['CustomerId']
|
|
682
|
+
@Ips = params['Ips']
|
|
683
|
+
@Icons = params['Icons']
|
|
684
|
+
@Domains = params['Domains']
|
|
685
|
+
@Titles = params['Titles']
|
|
686
|
+
@SubDomains = params['SubDomains']
|
|
687
|
+
@Keywords = params['Keywords']
|
|
688
|
+
@ParentCompanies = params['ParentCompanies']
|
|
689
|
+
end
|
|
690
|
+
end
|
|
691
|
+
|
|
692
|
+
# CreateSeeds返回参数结构体
|
|
693
|
+
class CreateSeedsResponse < TencentCloud::Common::AbstractModel
|
|
694
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
695
|
+
# @type RequestId: String
|
|
696
|
+
|
|
697
|
+
attr_accessor :RequestId
|
|
698
|
+
|
|
699
|
+
def initialize(requestid=nil)
|
|
700
|
+
@RequestId = requestid
|
|
701
|
+
end
|
|
702
|
+
|
|
703
|
+
def deserialize(params)
|
|
704
|
+
@RequestId = params['RequestId']
|
|
705
|
+
end
|
|
706
|
+
end
|
|
707
|
+
|
|
708
|
+
# CreateSubDomain请求参数结构体
|
|
709
|
+
class CreateSubDomainRequest < TencentCloud::Common::AbstractModel
|
|
710
|
+
# @param CustomerId: 企业Id
|
|
711
|
+
# @type CustomerId: Integer
|
|
712
|
+
# @param SubDomain: 子域名
|
|
713
|
+
# @type SubDomain: String
|
|
714
|
+
# @param Ip: Ip
|
|
715
|
+
# @type Ip: String
|
|
716
|
+
# @param Country: 国家
|
|
717
|
+
# @type Country: String
|
|
718
|
+
# @param Province: 省
|
|
719
|
+
# @type Province: String
|
|
720
|
+
# @param City: 城市
|
|
721
|
+
# @type City: String
|
|
722
|
+
# @param Isp: Isp
|
|
723
|
+
# @type Isp: String
|
|
724
|
+
# @param EnterpriseUid: 子公司
|
|
725
|
+
# @type EnterpriseUid: String
|
|
726
|
+
|
|
727
|
+
attr_accessor :CustomerId, :SubDomain, :Ip, :Country, :Province, :City, :Isp, :EnterpriseUid
|
|
728
|
+
|
|
729
|
+
def initialize(customerid=nil, subdomain=nil, ip=nil, country=nil, province=nil, city=nil, isp=nil, enterpriseuid=nil)
|
|
730
|
+
@CustomerId = customerid
|
|
731
|
+
@SubDomain = subdomain
|
|
732
|
+
@Ip = ip
|
|
733
|
+
@Country = country
|
|
734
|
+
@Province = province
|
|
735
|
+
@City = city
|
|
736
|
+
@Isp = isp
|
|
737
|
+
@EnterpriseUid = enterpriseuid
|
|
738
|
+
end
|
|
739
|
+
|
|
740
|
+
def deserialize(params)
|
|
741
|
+
@CustomerId = params['CustomerId']
|
|
742
|
+
@SubDomain = params['SubDomain']
|
|
743
|
+
@Ip = params['Ip']
|
|
744
|
+
@Country = params['Country']
|
|
745
|
+
@Province = params['Province']
|
|
746
|
+
@City = params['City']
|
|
747
|
+
@Isp = params['Isp']
|
|
748
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
749
|
+
end
|
|
750
|
+
end
|
|
751
|
+
|
|
752
|
+
# CreateSubDomain返回参数结构体
|
|
753
|
+
class CreateSubDomainResponse < TencentCloud::Common::AbstractModel
|
|
754
|
+
# @param Id: Id
|
|
755
|
+
# @type Id: Integer
|
|
756
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
757
|
+
# @type RequestId: String
|
|
758
|
+
|
|
759
|
+
attr_accessor :Id, :RequestId
|
|
760
|
+
|
|
761
|
+
def initialize(id=nil, requestid=nil)
|
|
762
|
+
@Id = id
|
|
763
|
+
@RequestId = requestid
|
|
764
|
+
end
|
|
765
|
+
|
|
766
|
+
def deserialize(params)
|
|
767
|
+
@Id = params['Id']
|
|
768
|
+
@RequestId = params['RequestId']
|
|
769
|
+
end
|
|
770
|
+
end
|
|
771
|
+
|
|
772
|
+
# CreateSuspiciousAsset请求参数结构体
|
|
773
|
+
class CreateSuspiciousAssetRequest < TencentCloud::Common::AbstractModel
|
|
774
|
+
# @param CustomerId: 企业Id
|
|
775
|
+
# @type CustomerId: Integer
|
|
776
|
+
# @param Url: Url
|
|
777
|
+
# @type Url: String
|
|
778
|
+
# @param EnterpriseUid: 子公司
|
|
779
|
+
# @type EnterpriseUid: String
|
|
780
|
+
# @param Title: 标题
|
|
781
|
+
# @type Title: String
|
|
782
|
+
# @param Tags: 标签
|
|
783
|
+
# @type Tags: String
|
|
784
|
+
# @param Owner: 所属者
|
|
785
|
+
# @type Owner: String
|
|
786
|
+
# @param SourceType: 来源类型
|
|
787
|
+
# @type SourceType: String
|
|
788
|
+
# @param SourceValue: 来源值
|
|
789
|
+
# @type SourceValue: String
|
|
790
|
+
# @param Trusted: 是否信任
|
|
791
|
+
# @type Trusted: Boolean
|
|
792
|
+
|
|
793
|
+
attr_accessor :CustomerId, :Url, :EnterpriseUid, :Title, :Tags, :Owner, :SourceType, :SourceValue, :Trusted
|
|
794
|
+
|
|
795
|
+
def initialize(customerid=nil, url=nil, enterpriseuid=nil, title=nil, tags=nil, owner=nil, sourcetype=nil, sourcevalue=nil, trusted=nil)
|
|
796
|
+
@CustomerId = customerid
|
|
797
|
+
@Url = url
|
|
798
|
+
@EnterpriseUid = enterpriseuid
|
|
799
|
+
@Title = title
|
|
800
|
+
@Tags = tags
|
|
801
|
+
@Owner = owner
|
|
802
|
+
@SourceType = sourcetype
|
|
803
|
+
@SourceValue = sourcevalue
|
|
804
|
+
@Trusted = trusted
|
|
805
|
+
end
|
|
806
|
+
|
|
807
|
+
def deserialize(params)
|
|
808
|
+
@CustomerId = params['CustomerId']
|
|
809
|
+
@Url = params['Url']
|
|
810
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
811
|
+
@Title = params['Title']
|
|
812
|
+
@Tags = params['Tags']
|
|
813
|
+
@Owner = params['Owner']
|
|
814
|
+
@SourceType = params['SourceType']
|
|
815
|
+
@SourceValue = params['SourceValue']
|
|
816
|
+
@Trusted = params['Trusted']
|
|
817
|
+
end
|
|
818
|
+
end
|
|
819
|
+
|
|
820
|
+
# CreateSuspiciousAsset返回参数结构体
|
|
821
|
+
class CreateSuspiciousAssetResponse < TencentCloud::Common::AbstractModel
|
|
822
|
+
# @param Id: Id
|
|
823
|
+
# @type Id: Integer
|
|
824
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
825
|
+
# @type RequestId: String
|
|
826
|
+
|
|
827
|
+
attr_accessor :Id, :RequestId
|
|
828
|
+
|
|
829
|
+
def initialize(id=nil, requestid=nil)
|
|
830
|
+
@Id = id
|
|
831
|
+
@RequestId = requestid
|
|
832
|
+
end
|
|
833
|
+
|
|
834
|
+
def deserialize(params)
|
|
835
|
+
@Id = params['Id']
|
|
836
|
+
@RequestId = params['RequestId']
|
|
837
|
+
end
|
|
838
|
+
end
|
|
839
|
+
|
|
840
|
+
# CreateWechatApplet请求参数结构体
|
|
841
|
+
class CreateWechatAppletRequest < TencentCloud::Common::AbstractModel
|
|
842
|
+
# @param CustomerId: 企业Id
|
|
843
|
+
# @type CustomerId: Integer
|
|
844
|
+
# @param Name: 名称
|
|
845
|
+
# @type Name: String
|
|
846
|
+
# @param Logo: 图片地址
|
|
847
|
+
# @type Logo: String
|
|
848
|
+
# @param AccountId: 账号
|
|
849
|
+
# @type AccountId: String
|
|
850
|
+
# @param QrCode: 二维码
|
|
851
|
+
# @type QrCode: String
|
|
852
|
+
# @param Description: 描述
|
|
853
|
+
# @type Description: String
|
|
854
|
+
# @param EnterpriseUid: 子公司
|
|
855
|
+
# @type EnterpriseUid: String
|
|
856
|
+
# @param AccountAppid: 账号Appid
|
|
857
|
+
# @type AccountAppid: String
|
|
858
|
+
# @param RecordSubject: 认证主体
|
|
859
|
+
# @type RecordSubject: String
|
|
860
|
+
|
|
861
|
+
attr_accessor :CustomerId, :Name, :Logo, :AccountId, :QrCode, :Description, :EnterpriseUid, :AccountAppid, :RecordSubject
|
|
862
|
+
|
|
863
|
+
def initialize(customerid=nil, name=nil, logo=nil, accountid=nil, qrcode=nil, description=nil, enterpriseuid=nil, accountappid=nil, recordsubject=nil)
|
|
864
|
+
@CustomerId = customerid
|
|
865
|
+
@Name = name
|
|
866
|
+
@Logo = logo
|
|
867
|
+
@AccountId = accountid
|
|
868
|
+
@QrCode = qrcode
|
|
869
|
+
@Description = description
|
|
870
|
+
@EnterpriseUid = enterpriseuid
|
|
871
|
+
@AccountAppid = accountappid
|
|
872
|
+
@RecordSubject = recordsubject
|
|
873
|
+
end
|
|
874
|
+
|
|
875
|
+
def deserialize(params)
|
|
876
|
+
@CustomerId = params['CustomerId']
|
|
877
|
+
@Name = params['Name']
|
|
878
|
+
@Logo = params['Logo']
|
|
879
|
+
@AccountId = params['AccountId']
|
|
880
|
+
@QrCode = params['QrCode']
|
|
881
|
+
@Description = params['Description']
|
|
882
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
883
|
+
@AccountAppid = params['AccountAppid']
|
|
884
|
+
@RecordSubject = params['RecordSubject']
|
|
885
|
+
end
|
|
886
|
+
end
|
|
887
|
+
|
|
888
|
+
# CreateWechatApplet返回参数结构体
|
|
889
|
+
class CreateWechatAppletResponse < TencentCloud::Common::AbstractModel
|
|
890
|
+
# @param Id: Id
|
|
891
|
+
# @type Id: Integer
|
|
892
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
893
|
+
# @type RequestId: String
|
|
894
|
+
|
|
895
|
+
attr_accessor :Id, :RequestId
|
|
896
|
+
|
|
897
|
+
def initialize(id=nil, requestid=nil)
|
|
898
|
+
@Id = id
|
|
899
|
+
@RequestId = requestid
|
|
900
|
+
end
|
|
901
|
+
|
|
902
|
+
def deserialize(params)
|
|
903
|
+
@Id = params['Id']
|
|
904
|
+
@RequestId = params['RequestId']
|
|
905
|
+
end
|
|
906
|
+
end
|
|
907
|
+
|
|
908
|
+
# CreateWechatOfficialAccount请求参数结构体
|
|
909
|
+
class CreateWechatOfficialAccountRequest < TencentCloud::Common::AbstractModel
|
|
910
|
+
# @param CustomerId: 企业Id
|
|
911
|
+
# @type CustomerId: Integer
|
|
912
|
+
# @param Name: 名称
|
|
913
|
+
# @type Name: String
|
|
914
|
+
# @param Logo: 图片地址
|
|
915
|
+
# @type Logo: String
|
|
916
|
+
# @param AccountId: 账号
|
|
917
|
+
# @type AccountId: String
|
|
918
|
+
# @param QrCode: 二维码
|
|
919
|
+
# @type QrCode: String
|
|
920
|
+
# @param Description: 描述
|
|
921
|
+
# @type Description: String
|
|
922
|
+
# @param EnterpriseUid: 子公司
|
|
923
|
+
# @type EnterpriseUid: String
|
|
924
|
+
# @param RecordSubject: 认证主体
|
|
925
|
+
# @type RecordSubject: String
|
|
926
|
+
|
|
927
|
+
attr_accessor :CustomerId, :Name, :Logo, :AccountId, :QrCode, :Description, :EnterpriseUid, :RecordSubject
|
|
928
|
+
|
|
929
|
+
def initialize(customerid=nil, name=nil, logo=nil, accountid=nil, qrcode=nil, description=nil, enterpriseuid=nil, recordsubject=nil)
|
|
930
|
+
@CustomerId = customerid
|
|
931
|
+
@Name = name
|
|
932
|
+
@Logo = logo
|
|
933
|
+
@AccountId = accountid
|
|
934
|
+
@QrCode = qrcode
|
|
935
|
+
@Description = description
|
|
936
|
+
@EnterpriseUid = enterpriseuid
|
|
937
|
+
@RecordSubject = recordsubject
|
|
938
|
+
end
|
|
939
|
+
|
|
940
|
+
def deserialize(params)
|
|
941
|
+
@CustomerId = params['CustomerId']
|
|
942
|
+
@Name = params['Name']
|
|
943
|
+
@Logo = params['Logo']
|
|
944
|
+
@AccountId = params['AccountId']
|
|
945
|
+
@QrCode = params['QrCode']
|
|
946
|
+
@Description = params['Description']
|
|
947
|
+
@EnterpriseUid = params['EnterpriseUid']
|
|
948
|
+
@RecordSubject = params['RecordSubject']
|
|
949
|
+
end
|
|
950
|
+
end
|
|
951
|
+
|
|
952
|
+
# CreateWechatOfficialAccount返回参数结构体
|
|
953
|
+
class CreateWechatOfficialAccountResponse < TencentCloud::Common::AbstractModel
|
|
954
|
+
# @param Id: Id
|
|
955
|
+
# @type Id: Integer
|
|
956
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
957
|
+
# @type RequestId: String
|
|
958
|
+
|
|
959
|
+
attr_accessor :Id, :RequestId
|
|
960
|
+
|
|
961
|
+
def initialize(id=nil, requestid=nil)
|
|
962
|
+
@Id = id
|
|
963
|
+
@RequestId = requestid
|
|
964
|
+
end
|
|
965
|
+
|
|
966
|
+
def deserialize(params)
|
|
967
|
+
@Id = params['Id']
|
|
968
|
+
@RequestId = params['RequestId']
|
|
969
|
+
end
|
|
970
|
+
end
|
|
971
|
+
|
|
972
|
+
# 企业详情
|
|
973
|
+
class Customer < TencentCloud::Common::AbstractModel
|
|
974
|
+
# @param Id: 企业ID
|
|
975
|
+
# @type Id: Integer
|
|
976
|
+
# @param Name: 企业名称
|
|
977
|
+
# @type Name: String
|
|
978
|
+
# @param Percent: 股权占比
|
|
979
|
+
# @type Percent: Integer
|
|
980
|
+
# @param ScanType: 资产收集、漏洞信息、弱口令、目录爆破、暗网泄露、Github泄露、文库网盘泄露、敏感信息泄露,其中资产收集必包含,多个用英文逗号隔离,例如:资产收集,漏洞信息
|
|
981
|
+
# @type ScanType: String
|
|
982
|
+
# @param Creator: 创建账号
|
|
983
|
+
# @type Creator: String
|
|
984
|
+
# @param AppId: 腾讯云客户AppId
|
|
985
|
+
# @type AppId: Integer
|
|
986
|
+
# @param Uin: 腾讯云客户Uin
|
|
255
987
|
# @type Uin: String
|
|
256
988
|
# @param CreateAt: 创建时间
|
|
257
989
|
# @type CreateAt: String
|
|
@@ -287,58 +1019,482 @@ module TencentCloud
|
|
|
287
1019
|
# @param EnableGroupMemberDiscovered: 是否识别集团成员
|
|
288
1020
|
# @type EnableGroupMemberDiscovered: Boolean
|
|
289
1021
|
|
|
290
|
-
attr_accessor :Id, :Name, :Percent, :ScanType, :Creator, :AppId, :Uin, :CreateAt, :UpdateAt, :ScanCron, :EnableCron, :EnableScanSubEnterprise, :EnableAuth, :AuthStartAt, :AuthEndAt, :AuthFile, :ScanTime, :Icon, :Keywords, :Qps, :SubCompanyLevel, :IsIncludeFullScan, :EnableGroupMemberDiscovered
|
|
1022
|
+
attr_accessor :Id, :Name, :Percent, :ScanType, :Creator, :AppId, :Uin, :CreateAt, :UpdateAt, :ScanCron, :EnableCron, :EnableScanSubEnterprise, :EnableAuth, :AuthStartAt, :AuthEndAt, :AuthFile, :ScanTime, :Icon, :Keywords, :Qps, :SubCompanyLevel, :IsIncludeFullScan, :EnableGroupMemberDiscovered
|
|
1023
|
+
|
|
1024
|
+
def initialize(id=nil, name=nil, percent=nil, scantype=nil, creator=nil, appid=nil, uin=nil, createat=nil, updateat=nil, scancron=nil, enablecron=nil, enablescansubenterprise=nil, enableauth=nil, authstartat=nil, authendat=nil, authfile=nil, scantime=nil, icon=nil, keywords=nil, qps=nil, subcompanylevel=nil, isincludefullscan=nil, enablegroupmemberdiscovered=nil)
|
|
1025
|
+
@Id = id
|
|
1026
|
+
@Name = name
|
|
1027
|
+
@Percent = percent
|
|
1028
|
+
@ScanType = scantype
|
|
1029
|
+
@Creator = creator
|
|
1030
|
+
@AppId = appid
|
|
1031
|
+
@Uin = uin
|
|
1032
|
+
@CreateAt = createat
|
|
1033
|
+
@UpdateAt = updateat
|
|
1034
|
+
@ScanCron = scancron
|
|
1035
|
+
@EnableCron = enablecron
|
|
1036
|
+
@EnableScanSubEnterprise = enablescansubenterprise
|
|
1037
|
+
@EnableAuth = enableauth
|
|
1038
|
+
@AuthStartAt = authstartat
|
|
1039
|
+
@AuthEndAt = authendat
|
|
1040
|
+
@AuthFile = authfile
|
|
1041
|
+
@ScanTime = scantime
|
|
1042
|
+
@Icon = icon
|
|
1043
|
+
@Keywords = keywords
|
|
1044
|
+
@Qps = qps
|
|
1045
|
+
@SubCompanyLevel = subcompanylevel
|
|
1046
|
+
@IsIncludeFullScan = isincludefullscan
|
|
1047
|
+
@EnableGroupMemberDiscovered = enablegroupmemberdiscovered
|
|
1048
|
+
end
|
|
1049
|
+
|
|
1050
|
+
def deserialize(params)
|
|
1051
|
+
@Id = params['Id']
|
|
1052
|
+
@Name = params['Name']
|
|
1053
|
+
@Percent = params['Percent']
|
|
1054
|
+
@ScanType = params['ScanType']
|
|
1055
|
+
@Creator = params['Creator']
|
|
1056
|
+
@AppId = params['AppId']
|
|
1057
|
+
@Uin = params['Uin']
|
|
1058
|
+
@CreateAt = params['CreateAt']
|
|
1059
|
+
@UpdateAt = params['UpdateAt']
|
|
1060
|
+
@ScanCron = params['ScanCron']
|
|
1061
|
+
@EnableCron = params['EnableCron']
|
|
1062
|
+
@EnableScanSubEnterprise = params['EnableScanSubEnterprise']
|
|
1063
|
+
@EnableAuth = params['EnableAuth']
|
|
1064
|
+
@AuthStartAt = params['AuthStartAt']
|
|
1065
|
+
@AuthEndAt = params['AuthEndAt']
|
|
1066
|
+
@AuthFile = params['AuthFile']
|
|
1067
|
+
@ScanTime = params['ScanTime']
|
|
1068
|
+
@Icon = params['Icon']
|
|
1069
|
+
@Keywords = params['Keywords']
|
|
1070
|
+
@Qps = params['Qps']
|
|
1071
|
+
@SubCompanyLevel = params['SubCompanyLevel']
|
|
1072
|
+
@IsIncludeFullScan = params['IsIncludeFullScan']
|
|
1073
|
+
@EnableGroupMemberDiscovered = params['EnableGroupMemberDiscovered']
|
|
1074
|
+
end
|
|
1075
|
+
end
|
|
1076
|
+
|
|
1077
|
+
# DeleteApps请求参数结构体
|
|
1078
|
+
class DeleteAppsRequest < TencentCloud::Common::AbstractModel
|
|
1079
|
+
# @param Ids: ID列表
|
|
1080
|
+
# @type Ids: Array
|
|
1081
|
+
|
|
1082
|
+
attr_accessor :Ids
|
|
1083
|
+
|
|
1084
|
+
def initialize(ids=nil)
|
|
1085
|
+
@Ids = ids
|
|
1086
|
+
end
|
|
1087
|
+
|
|
1088
|
+
def deserialize(params)
|
|
1089
|
+
@Ids = params['Ids']
|
|
1090
|
+
end
|
|
1091
|
+
end
|
|
1092
|
+
|
|
1093
|
+
# DeleteApps返回参数结构体
|
|
1094
|
+
class DeleteAppsResponse < TencentCloud::Common::AbstractModel
|
|
1095
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1096
|
+
# @type RequestId: String
|
|
1097
|
+
|
|
1098
|
+
attr_accessor :RequestId
|
|
1099
|
+
|
|
1100
|
+
def initialize(requestid=nil)
|
|
1101
|
+
@RequestId = requestid
|
|
1102
|
+
end
|
|
1103
|
+
|
|
1104
|
+
def deserialize(params)
|
|
1105
|
+
@RequestId = params['RequestId']
|
|
1106
|
+
end
|
|
1107
|
+
end
|
|
1108
|
+
|
|
1109
|
+
# DeleteAssets请求参数结构体
|
|
1110
|
+
class DeleteAssetsRequest < TencentCloud::Common::AbstractModel
|
|
1111
|
+
# @param Ids: ID列表
|
|
1112
|
+
# @type Ids: Array
|
|
1113
|
+
|
|
1114
|
+
attr_accessor :Ids
|
|
1115
|
+
|
|
1116
|
+
def initialize(ids=nil)
|
|
1117
|
+
@Ids = ids
|
|
1118
|
+
end
|
|
1119
|
+
|
|
1120
|
+
def deserialize(params)
|
|
1121
|
+
@Ids = params['Ids']
|
|
1122
|
+
end
|
|
1123
|
+
end
|
|
1124
|
+
|
|
1125
|
+
# DeleteAssets返回参数结构体
|
|
1126
|
+
class DeleteAssetsResponse < TencentCloud::Common::AbstractModel
|
|
1127
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1128
|
+
# @type RequestId: String
|
|
1129
|
+
|
|
1130
|
+
attr_accessor :RequestId
|
|
1131
|
+
|
|
1132
|
+
def initialize(requestid=nil)
|
|
1133
|
+
@RequestId = requestid
|
|
1134
|
+
end
|
|
1135
|
+
|
|
1136
|
+
def deserialize(params)
|
|
1137
|
+
@RequestId = params['RequestId']
|
|
1138
|
+
end
|
|
1139
|
+
end
|
|
1140
|
+
|
|
1141
|
+
# DeleteDomains请求参数结构体
|
|
1142
|
+
class DeleteDomainsRequest < TencentCloud::Common::AbstractModel
|
|
1143
|
+
# @param Ids: ID列表
|
|
1144
|
+
# @type Ids: Array
|
|
1145
|
+
|
|
1146
|
+
attr_accessor :Ids
|
|
1147
|
+
|
|
1148
|
+
def initialize(ids=nil)
|
|
1149
|
+
@Ids = ids
|
|
1150
|
+
end
|
|
1151
|
+
|
|
1152
|
+
def deserialize(params)
|
|
1153
|
+
@Ids = params['Ids']
|
|
1154
|
+
end
|
|
1155
|
+
end
|
|
1156
|
+
|
|
1157
|
+
# DeleteDomains返回参数结构体
|
|
1158
|
+
class DeleteDomainsResponse < TencentCloud::Common::AbstractModel
|
|
1159
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1160
|
+
# @type RequestId: String
|
|
1161
|
+
|
|
1162
|
+
attr_accessor :RequestId
|
|
1163
|
+
|
|
1164
|
+
def initialize(requestid=nil)
|
|
1165
|
+
@RequestId = requestid
|
|
1166
|
+
end
|
|
1167
|
+
|
|
1168
|
+
def deserialize(params)
|
|
1169
|
+
@RequestId = params['RequestId']
|
|
1170
|
+
end
|
|
1171
|
+
end
|
|
1172
|
+
|
|
1173
|
+
# DeleteEnterprises请求参数结构体
|
|
1174
|
+
class DeleteEnterprisesRequest < TencentCloud::Common::AbstractModel
|
|
1175
|
+
# @param Ids: ID列表
|
|
1176
|
+
# @type Ids: Array
|
|
1177
|
+
|
|
1178
|
+
attr_accessor :Ids
|
|
1179
|
+
|
|
1180
|
+
def initialize(ids=nil)
|
|
1181
|
+
@Ids = ids
|
|
1182
|
+
end
|
|
1183
|
+
|
|
1184
|
+
def deserialize(params)
|
|
1185
|
+
@Ids = params['Ids']
|
|
1186
|
+
end
|
|
1187
|
+
end
|
|
1188
|
+
|
|
1189
|
+
# DeleteEnterprises返回参数结构体
|
|
1190
|
+
class DeleteEnterprisesResponse < TencentCloud::Common::AbstractModel
|
|
1191
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1192
|
+
# @type RequestId: String
|
|
1193
|
+
|
|
1194
|
+
attr_accessor :RequestId
|
|
1195
|
+
|
|
1196
|
+
def initialize(requestid=nil)
|
|
1197
|
+
@RequestId = requestid
|
|
1198
|
+
end
|
|
1199
|
+
|
|
1200
|
+
def deserialize(params)
|
|
1201
|
+
@RequestId = params['RequestId']
|
|
1202
|
+
end
|
|
1203
|
+
end
|
|
1204
|
+
|
|
1205
|
+
# DeleteHttps请求参数结构体
|
|
1206
|
+
class DeleteHttpsRequest < TencentCloud::Common::AbstractModel
|
|
1207
|
+
# @param Ids: ID列表
|
|
1208
|
+
# @type Ids: Array
|
|
1209
|
+
# @param CustomerIdList: 企业ID列表,可多选
|
|
1210
|
+
# @type CustomerIdList: Array
|
|
1211
|
+
# @param IsAggregation: 是否聚合数据
|
|
1212
|
+
# @type IsAggregation: Boolean
|
|
1213
|
+
|
|
1214
|
+
attr_accessor :Ids, :CustomerIdList, :IsAggregation
|
|
1215
|
+
|
|
1216
|
+
def initialize(ids=nil, customeridlist=nil, isaggregation=nil)
|
|
1217
|
+
@Ids = ids
|
|
1218
|
+
@CustomerIdList = customeridlist
|
|
1219
|
+
@IsAggregation = isaggregation
|
|
1220
|
+
end
|
|
1221
|
+
|
|
1222
|
+
def deserialize(params)
|
|
1223
|
+
@Ids = params['Ids']
|
|
1224
|
+
@CustomerIdList = params['CustomerIdList']
|
|
1225
|
+
@IsAggregation = params['IsAggregation']
|
|
1226
|
+
end
|
|
1227
|
+
end
|
|
1228
|
+
|
|
1229
|
+
# DeleteHttps返回参数结构体
|
|
1230
|
+
class DeleteHttpsResponse < TencentCloud::Common::AbstractModel
|
|
1231
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1232
|
+
# @type RequestId: String
|
|
1233
|
+
|
|
1234
|
+
attr_accessor :RequestId
|
|
1235
|
+
|
|
1236
|
+
def initialize(requestid=nil)
|
|
1237
|
+
@RequestId = requestid
|
|
1238
|
+
end
|
|
1239
|
+
|
|
1240
|
+
def deserialize(params)
|
|
1241
|
+
@RequestId = params['RequestId']
|
|
1242
|
+
end
|
|
1243
|
+
end
|
|
1244
|
+
|
|
1245
|
+
# DeleteManages请求参数结构体
|
|
1246
|
+
class DeleteManagesRequest < TencentCloud::Common::AbstractModel
|
|
1247
|
+
# @param Ids: ID列表
|
|
1248
|
+
# @type Ids: Array
|
|
1249
|
+
# @param CustomerIdList: 企业ID列表,可多选
|
|
1250
|
+
# @type CustomerIdList: Array
|
|
1251
|
+
# @param IsAggregation: 是否聚合数据
|
|
1252
|
+
# @type IsAggregation: Boolean
|
|
1253
|
+
|
|
1254
|
+
attr_accessor :Ids, :CustomerIdList, :IsAggregation
|
|
1255
|
+
|
|
1256
|
+
def initialize(ids=nil, customeridlist=nil, isaggregation=nil)
|
|
1257
|
+
@Ids = ids
|
|
1258
|
+
@CustomerIdList = customeridlist
|
|
1259
|
+
@IsAggregation = isaggregation
|
|
1260
|
+
end
|
|
1261
|
+
|
|
1262
|
+
def deserialize(params)
|
|
1263
|
+
@Ids = params['Ids']
|
|
1264
|
+
@CustomerIdList = params['CustomerIdList']
|
|
1265
|
+
@IsAggregation = params['IsAggregation']
|
|
1266
|
+
end
|
|
1267
|
+
end
|
|
1268
|
+
|
|
1269
|
+
# DeleteManages返回参数结构体
|
|
1270
|
+
class DeleteManagesResponse < TencentCloud::Common::AbstractModel
|
|
1271
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1272
|
+
# @type RequestId: String
|
|
1273
|
+
|
|
1274
|
+
attr_accessor :RequestId
|
|
1275
|
+
|
|
1276
|
+
def initialize(requestid=nil)
|
|
1277
|
+
@RequestId = requestid
|
|
1278
|
+
end
|
|
1279
|
+
|
|
1280
|
+
def deserialize(params)
|
|
1281
|
+
@RequestId = params['RequestId']
|
|
1282
|
+
end
|
|
1283
|
+
end
|
|
1284
|
+
|
|
1285
|
+
# DeletePorts请求参数结构体
|
|
1286
|
+
class DeletePortsRequest < TencentCloud::Common::AbstractModel
|
|
1287
|
+
# @param Ids: ID列表
|
|
1288
|
+
# @type Ids: Array
|
|
1289
|
+
# @param CustomerIdList: 企业ID列表,可多选
|
|
1290
|
+
# @type CustomerIdList: Array
|
|
1291
|
+
# @param IsAggregation: 是否聚合数据
|
|
1292
|
+
# @type IsAggregation: Boolean
|
|
1293
|
+
|
|
1294
|
+
attr_accessor :Ids, :CustomerIdList, :IsAggregation
|
|
1295
|
+
|
|
1296
|
+
def initialize(ids=nil, customeridlist=nil, isaggregation=nil)
|
|
1297
|
+
@Ids = ids
|
|
1298
|
+
@CustomerIdList = customeridlist
|
|
1299
|
+
@IsAggregation = isaggregation
|
|
1300
|
+
end
|
|
1301
|
+
|
|
1302
|
+
def deserialize(params)
|
|
1303
|
+
@Ids = params['Ids']
|
|
1304
|
+
@CustomerIdList = params['CustomerIdList']
|
|
1305
|
+
@IsAggregation = params['IsAggregation']
|
|
1306
|
+
end
|
|
1307
|
+
end
|
|
1308
|
+
|
|
1309
|
+
# DeletePorts返回参数结构体
|
|
1310
|
+
class DeletePortsResponse < TencentCloud::Common::AbstractModel
|
|
1311
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1312
|
+
# @type RequestId: String
|
|
1313
|
+
|
|
1314
|
+
attr_accessor :RequestId
|
|
1315
|
+
|
|
1316
|
+
def initialize(requestid=nil)
|
|
1317
|
+
@RequestId = requestid
|
|
1318
|
+
end
|
|
1319
|
+
|
|
1320
|
+
def deserialize(params)
|
|
1321
|
+
@RequestId = params['RequestId']
|
|
1322
|
+
end
|
|
1323
|
+
end
|
|
1324
|
+
|
|
1325
|
+
# DeleteSeeds请求参数结构体
|
|
1326
|
+
class DeleteSeedsRequest < TencentCloud::Common::AbstractModel
|
|
1327
|
+
# @param Ids: ID列表
|
|
1328
|
+
# @type Ids: Array
|
|
1329
|
+
|
|
1330
|
+
attr_accessor :Ids
|
|
1331
|
+
|
|
1332
|
+
def initialize(ids=nil)
|
|
1333
|
+
@Ids = ids
|
|
1334
|
+
end
|
|
1335
|
+
|
|
1336
|
+
def deserialize(params)
|
|
1337
|
+
@Ids = params['Ids']
|
|
1338
|
+
end
|
|
1339
|
+
end
|
|
1340
|
+
|
|
1341
|
+
# DeleteSeeds返回参数结构体
|
|
1342
|
+
class DeleteSeedsResponse < TencentCloud::Common::AbstractModel
|
|
1343
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1344
|
+
# @type RequestId: String
|
|
1345
|
+
|
|
1346
|
+
attr_accessor :RequestId
|
|
1347
|
+
|
|
1348
|
+
def initialize(requestid=nil)
|
|
1349
|
+
@RequestId = requestid
|
|
1350
|
+
end
|
|
1351
|
+
|
|
1352
|
+
def deserialize(params)
|
|
1353
|
+
@RequestId = params['RequestId']
|
|
1354
|
+
end
|
|
1355
|
+
end
|
|
1356
|
+
|
|
1357
|
+
# DeleteSubDomains请求参数结构体
|
|
1358
|
+
class DeleteSubDomainsRequest < TencentCloud::Common::AbstractModel
|
|
1359
|
+
# @param Ids: ID列表
|
|
1360
|
+
# @type Ids: Array
|
|
1361
|
+
# @param CustomerIdList: 企业ID列表,可多选
|
|
1362
|
+
# @type CustomerIdList: Array
|
|
1363
|
+
# @param IsAggregation: 是否聚合数据
|
|
1364
|
+
# @type IsAggregation: Boolean
|
|
1365
|
+
|
|
1366
|
+
attr_accessor :Ids, :CustomerIdList, :IsAggregation
|
|
1367
|
+
|
|
1368
|
+
def initialize(ids=nil, customeridlist=nil, isaggregation=nil)
|
|
1369
|
+
@Ids = ids
|
|
1370
|
+
@CustomerIdList = customeridlist
|
|
1371
|
+
@IsAggregation = isaggregation
|
|
1372
|
+
end
|
|
1373
|
+
|
|
1374
|
+
def deserialize(params)
|
|
1375
|
+
@Ids = params['Ids']
|
|
1376
|
+
@CustomerIdList = params['CustomerIdList']
|
|
1377
|
+
@IsAggregation = params['IsAggregation']
|
|
1378
|
+
end
|
|
1379
|
+
end
|
|
1380
|
+
|
|
1381
|
+
# DeleteSubDomains返回参数结构体
|
|
1382
|
+
class DeleteSubDomainsResponse < TencentCloud::Common::AbstractModel
|
|
1383
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1384
|
+
# @type RequestId: String
|
|
1385
|
+
|
|
1386
|
+
attr_accessor :RequestId
|
|
1387
|
+
|
|
1388
|
+
def initialize(requestid=nil)
|
|
1389
|
+
@RequestId = requestid
|
|
1390
|
+
end
|
|
1391
|
+
|
|
1392
|
+
def deserialize(params)
|
|
1393
|
+
@RequestId = params['RequestId']
|
|
1394
|
+
end
|
|
1395
|
+
end
|
|
1396
|
+
|
|
1397
|
+
# DeleteSuspiciousAssets请求参数结构体
|
|
1398
|
+
class DeleteSuspiciousAssetsRequest < TencentCloud::Common::AbstractModel
|
|
1399
|
+
# @param Ids: ID列表
|
|
1400
|
+
# @type Ids: Array
|
|
1401
|
+
# @param CustomerIdList: 企业ID列表,可多选
|
|
1402
|
+
# @type CustomerIdList: Array
|
|
1403
|
+
# @param IsAggregation: 是否聚合数据
|
|
1404
|
+
# @type IsAggregation: Boolean
|
|
1405
|
+
|
|
1406
|
+
attr_accessor :Ids, :CustomerIdList, :IsAggregation
|
|
1407
|
+
|
|
1408
|
+
def initialize(ids=nil, customeridlist=nil, isaggregation=nil)
|
|
1409
|
+
@Ids = ids
|
|
1410
|
+
@CustomerIdList = customeridlist
|
|
1411
|
+
@IsAggregation = isaggregation
|
|
1412
|
+
end
|
|
1413
|
+
|
|
1414
|
+
def deserialize(params)
|
|
1415
|
+
@Ids = params['Ids']
|
|
1416
|
+
@CustomerIdList = params['CustomerIdList']
|
|
1417
|
+
@IsAggregation = params['IsAggregation']
|
|
1418
|
+
end
|
|
1419
|
+
end
|
|
1420
|
+
|
|
1421
|
+
# DeleteSuspiciousAssets返回参数结构体
|
|
1422
|
+
class DeleteSuspiciousAssetsResponse < TencentCloud::Common::AbstractModel
|
|
1423
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1424
|
+
# @type RequestId: String
|
|
1425
|
+
|
|
1426
|
+
attr_accessor :RequestId
|
|
1427
|
+
|
|
1428
|
+
def initialize(requestid=nil)
|
|
1429
|
+
@RequestId = requestid
|
|
1430
|
+
end
|
|
1431
|
+
|
|
1432
|
+
def deserialize(params)
|
|
1433
|
+
@RequestId = params['RequestId']
|
|
1434
|
+
end
|
|
1435
|
+
end
|
|
1436
|
+
|
|
1437
|
+
# DeleteWechatApplets请求参数结构体
|
|
1438
|
+
class DeleteWechatAppletsRequest < TencentCloud::Common::AbstractModel
|
|
1439
|
+
# @param Ids: ID列表
|
|
1440
|
+
# @type Ids: Array
|
|
291
1441
|
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
@
|
|
296
|
-
@ScanType = scantype
|
|
297
|
-
@Creator = creator
|
|
298
|
-
@AppId = appid
|
|
299
|
-
@Uin = uin
|
|
300
|
-
@CreateAt = createat
|
|
301
|
-
@UpdateAt = updateat
|
|
302
|
-
@ScanCron = scancron
|
|
303
|
-
@EnableCron = enablecron
|
|
304
|
-
@EnableScanSubEnterprise = enablescansubenterprise
|
|
305
|
-
@EnableAuth = enableauth
|
|
306
|
-
@AuthStartAt = authstartat
|
|
307
|
-
@AuthEndAt = authendat
|
|
308
|
-
@AuthFile = authfile
|
|
309
|
-
@ScanTime = scantime
|
|
310
|
-
@Icon = icon
|
|
311
|
-
@Keywords = keywords
|
|
312
|
-
@Qps = qps
|
|
313
|
-
@SubCompanyLevel = subcompanylevel
|
|
314
|
-
@IsIncludeFullScan = isincludefullscan
|
|
315
|
-
@EnableGroupMemberDiscovered = enablegroupmemberdiscovered
|
|
1442
|
+
attr_accessor :Ids
|
|
1443
|
+
|
|
1444
|
+
def initialize(ids=nil)
|
|
1445
|
+
@Ids = ids
|
|
316
1446
|
end
|
|
317
1447
|
|
|
318
1448
|
def deserialize(params)
|
|
319
|
-
@
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
@
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
@
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
1449
|
+
@Ids = params['Ids']
|
|
1450
|
+
end
|
|
1451
|
+
end
|
|
1452
|
+
|
|
1453
|
+
# DeleteWechatApplets返回参数结构体
|
|
1454
|
+
class DeleteWechatAppletsResponse < TencentCloud::Common::AbstractModel
|
|
1455
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1456
|
+
# @type RequestId: String
|
|
1457
|
+
|
|
1458
|
+
attr_accessor :RequestId
|
|
1459
|
+
|
|
1460
|
+
def initialize(requestid=nil)
|
|
1461
|
+
@RequestId = requestid
|
|
1462
|
+
end
|
|
1463
|
+
|
|
1464
|
+
def deserialize(params)
|
|
1465
|
+
@RequestId = params['RequestId']
|
|
1466
|
+
end
|
|
1467
|
+
end
|
|
1468
|
+
|
|
1469
|
+
# DeleteWechatOfficialAccounts请求参数结构体
|
|
1470
|
+
class DeleteWechatOfficialAccountsRequest < TencentCloud::Common::AbstractModel
|
|
1471
|
+
# @param Ids: ID列表
|
|
1472
|
+
# @type Ids: Array
|
|
1473
|
+
|
|
1474
|
+
attr_accessor :Ids
|
|
1475
|
+
|
|
1476
|
+
def initialize(ids=nil)
|
|
1477
|
+
@Ids = ids
|
|
1478
|
+
end
|
|
1479
|
+
|
|
1480
|
+
def deserialize(params)
|
|
1481
|
+
@Ids = params['Ids']
|
|
1482
|
+
end
|
|
1483
|
+
end
|
|
1484
|
+
|
|
1485
|
+
# DeleteWechatOfficialAccounts返回参数结构体
|
|
1486
|
+
class DeleteWechatOfficialAccountsResponse < TencentCloud::Common::AbstractModel
|
|
1487
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1488
|
+
# @type RequestId: String
|
|
1489
|
+
|
|
1490
|
+
attr_accessor :RequestId
|
|
1491
|
+
|
|
1492
|
+
def initialize(requestid=nil)
|
|
1493
|
+
@RequestId = requestid
|
|
1494
|
+
end
|
|
1495
|
+
|
|
1496
|
+
def deserialize(params)
|
|
1497
|
+
@RequestId = params['RequestId']
|
|
342
1498
|
end
|
|
343
1499
|
end
|
|
344
1500
|
|
|
@@ -2526,6 +3682,80 @@ module TencentCloud
|
|
|
2526
3682
|
end
|
|
2527
3683
|
end
|
|
2528
3684
|
|
|
3685
|
+
# DescribeSeeds请求参数结构体
|
|
3686
|
+
class DescribeSeedsRequest < TencentCloud::Common::AbstractModel
|
|
3687
|
+
# @param CustomerId: 企业ID
|
|
3688
|
+
# @type CustomerId: Integer
|
|
3689
|
+
# @param CreateAtStart: 创建时间-开始
|
|
3690
|
+
# @type CreateAtStart: String
|
|
3691
|
+
# @param CreateAtEnd: 创建时间-结束
|
|
3692
|
+
# @type CreateAtEnd: String
|
|
3693
|
+
# @param Offset: 分页偏移
|
|
3694
|
+
# @type Offset: Integer
|
|
3695
|
+
# @param Limit: 分页大小
|
|
3696
|
+
# @type Limit: Integer
|
|
3697
|
+
# @param Filters: 查询数组
|
|
3698
|
+
# @type Filters: Array
|
|
3699
|
+
|
|
3700
|
+
attr_accessor :CustomerId, :CreateAtStart, :CreateAtEnd, :Offset, :Limit, :Filters
|
|
3701
|
+
|
|
3702
|
+
def initialize(customerid=nil, createatstart=nil, createatend=nil, offset=nil, limit=nil, filters=nil)
|
|
3703
|
+
@CustomerId = customerid
|
|
3704
|
+
@CreateAtStart = createatstart
|
|
3705
|
+
@CreateAtEnd = createatend
|
|
3706
|
+
@Offset = offset
|
|
3707
|
+
@Limit = limit
|
|
3708
|
+
@Filters = filters
|
|
3709
|
+
end
|
|
3710
|
+
|
|
3711
|
+
def deserialize(params)
|
|
3712
|
+
@CustomerId = params['CustomerId']
|
|
3713
|
+
@CreateAtStart = params['CreateAtStart']
|
|
3714
|
+
@CreateAtEnd = params['CreateAtEnd']
|
|
3715
|
+
@Offset = params['Offset']
|
|
3716
|
+
@Limit = params['Limit']
|
|
3717
|
+
unless params['Filters'].nil?
|
|
3718
|
+
@Filters = []
|
|
3719
|
+
params['Filters'].each do |i|
|
|
3720
|
+
filter_tmp = Filter.new
|
|
3721
|
+
filter_tmp.deserialize(i)
|
|
3722
|
+
@Filters << filter_tmp
|
|
3723
|
+
end
|
|
3724
|
+
end
|
|
3725
|
+
end
|
|
3726
|
+
end
|
|
3727
|
+
|
|
3728
|
+
# DescribeSeeds返回参数结构体
|
|
3729
|
+
class DescribeSeedsResponse < TencentCloud::Common::AbstractModel
|
|
3730
|
+
# @param Total: 总数
|
|
3731
|
+
# @type Total: Integer
|
|
3732
|
+
# @param List: 种子列表
|
|
3733
|
+
# @type List: Array
|
|
3734
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3735
|
+
# @type RequestId: String
|
|
3736
|
+
|
|
3737
|
+
attr_accessor :Total, :List, :RequestId
|
|
3738
|
+
|
|
3739
|
+
def initialize(total=nil, list=nil, requestid=nil)
|
|
3740
|
+
@Total = total
|
|
3741
|
+
@List = list
|
|
3742
|
+
@RequestId = requestid
|
|
3743
|
+
end
|
|
3744
|
+
|
|
3745
|
+
def deserialize(params)
|
|
3746
|
+
@Total = params['Total']
|
|
3747
|
+
unless params['List'].nil?
|
|
3748
|
+
@List = []
|
|
3749
|
+
params['List'].each do |i|
|
|
3750
|
+
displayseed_tmp = DisplaySeed.new
|
|
3751
|
+
displayseed_tmp.deserialize(i)
|
|
3752
|
+
@List << displayseed_tmp
|
|
3753
|
+
end
|
|
3754
|
+
end
|
|
3755
|
+
@RequestId = params['RequestId']
|
|
3756
|
+
end
|
|
3757
|
+
end
|
|
3758
|
+
|
|
2529
3759
|
# DescribeSensitiveInfos请求参数结构体
|
|
2530
3760
|
class DescribeSensitiveInfosRequest < TencentCloud::Common::AbstractModel
|
|
2531
3761
|
# @param CustomerIdList: 企业ID列表,可多选
|
|
@@ -4489,6 +5719,51 @@ module TencentCloud
|
|
|
4489
5719
|
end
|
|
4490
5720
|
end
|
|
4491
5721
|
|
|
5722
|
+
# 种子详情
|
|
5723
|
+
class DisplaySeed < TencentCloud::Common::AbstractModel
|
|
5724
|
+
# @param Id: 主键ID
|
|
5725
|
+
# @type Id: Integer
|
|
5726
|
+
# @param CustomerId: 企业ID
|
|
5727
|
+
# @type CustomerId: Integer
|
|
5728
|
+
# @param Category: 分类,包括:domain(主域名)、icon(图标)、ip(IP)、
|
|
5729
|
+
# keyword(关键词)、parent_company(母公司)、sub_domain(子域名)、title(标题)
|
|
5730
|
+
# @type Category: String
|
|
5731
|
+
# @param Value: 值
|
|
5732
|
+
# @type Value: String
|
|
5733
|
+
# @param Md5: md5值
|
|
5734
|
+
# @type Md5: String
|
|
5735
|
+
# @param Source: 来源
|
|
5736
|
+
# @type Source: String
|
|
5737
|
+
# @param CreateAt: 创建时间
|
|
5738
|
+
# @type CreateAt: String
|
|
5739
|
+
# @param IsValid: 是否可信
|
|
5740
|
+
# @type IsValid: Boolean
|
|
5741
|
+
|
|
5742
|
+
attr_accessor :Id, :CustomerId, :Category, :Value, :Md5, :Source, :CreateAt, :IsValid
|
|
5743
|
+
|
|
5744
|
+
def initialize(id=nil, customerid=nil, category=nil, value=nil, md5=nil, source=nil, createat=nil, isvalid=nil)
|
|
5745
|
+
@Id = id
|
|
5746
|
+
@CustomerId = customerid
|
|
5747
|
+
@Category = category
|
|
5748
|
+
@Value = value
|
|
5749
|
+
@Md5 = md5
|
|
5750
|
+
@Source = source
|
|
5751
|
+
@CreateAt = createat
|
|
5752
|
+
@IsValid = isvalid
|
|
5753
|
+
end
|
|
5754
|
+
|
|
5755
|
+
def deserialize(params)
|
|
5756
|
+
@Id = params['Id']
|
|
5757
|
+
@CustomerId = params['CustomerId']
|
|
5758
|
+
@Category = params['Category']
|
|
5759
|
+
@Value = params['Value']
|
|
5760
|
+
@Md5 = params['Md5']
|
|
5761
|
+
@Source = params['Source']
|
|
5762
|
+
@CreateAt = params['CreateAt']
|
|
5763
|
+
@IsValid = params['IsValid']
|
|
5764
|
+
end
|
|
5765
|
+
end
|
|
5766
|
+
|
|
4492
5767
|
# 敏感信息泄露数据
|
|
4493
5768
|
class DisplaySensitiveInfo < TencentCloud::Common::AbstractModel
|
|
4494
5769
|
# @param Id: 主键Id
|
|
@@ -5048,6 +6323,58 @@ module TencentCloud
|
|
|
5048
6323
|
end
|
|
5049
6324
|
end
|
|
5050
6325
|
|
|
6326
|
+
# IgnoreData请求参数结构体
|
|
6327
|
+
class IgnoreDataRequest < TencentCloud::Common::AbstractModel
|
|
6328
|
+
# @param Ids: ID列表
|
|
6329
|
+
# @type Ids: Array
|
|
6330
|
+
# @param Module: 模块,包括:enterprise:企业架构,domain:主域名,sub_domain:子域名,asset:IP资产,port:端口服务,http:HTTP资产,vul:漏洞信息,app:APP,wechat_applet:微信小程序,wechat_official_account:微信公众号,github:Github信息泄露,manage:管理后台暴露,config:目录爆破,dark_web:暗网泄露,net_disk:文库网盘泄露,supply_chain:供应链,weak_password:弱口令,sensitive_info:敏感信息泄露
|
|
6331
|
+
# @type Module: String
|
|
6332
|
+
# @param CustomerIdList: 企业ID列表,可多选
|
|
6333
|
+
# @type CustomerIdList: Array
|
|
6334
|
+
# @param IsAggregation: 是否聚合数据
|
|
6335
|
+
# @type IsAggregation: Boolean
|
|
6336
|
+
# @param Ignored: 是否显示被忽略的数据
|
|
6337
|
+
# @type Ignored: Boolean
|
|
6338
|
+
# @param IsAffectOther: 是否忽略全部
|
|
6339
|
+
# @type IsAffectOther: Boolean
|
|
6340
|
+
|
|
6341
|
+
attr_accessor :Ids, :Module, :CustomerIdList, :IsAggregation, :Ignored, :IsAffectOther
|
|
6342
|
+
|
|
6343
|
+
def initialize(ids=nil, _module=nil, customeridlist=nil, isaggregation=nil, ignored=nil, isaffectother=nil)
|
|
6344
|
+
@Ids = ids
|
|
6345
|
+
@Module = _module
|
|
6346
|
+
@CustomerIdList = customeridlist
|
|
6347
|
+
@IsAggregation = isaggregation
|
|
6348
|
+
@Ignored = ignored
|
|
6349
|
+
@IsAffectOther = isaffectother
|
|
6350
|
+
end
|
|
6351
|
+
|
|
6352
|
+
def deserialize(params)
|
|
6353
|
+
@Ids = params['Ids']
|
|
6354
|
+
@Module = params['Module']
|
|
6355
|
+
@CustomerIdList = params['CustomerIdList']
|
|
6356
|
+
@IsAggregation = params['IsAggregation']
|
|
6357
|
+
@Ignored = params['Ignored']
|
|
6358
|
+
@IsAffectOther = params['IsAffectOther']
|
|
6359
|
+
end
|
|
6360
|
+
end
|
|
6361
|
+
|
|
6362
|
+
# IgnoreData返回参数结构体
|
|
6363
|
+
class IgnoreDataResponse < TencentCloud::Common::AbstractModel
|
|
6364
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6365
|
+
# @type RequestId: String
|
|
6366
|
+
|
|
6367
|
+
attr_accessor :RequestId
|
|
6368
|
+
|
|
6369
|
+
def initialize(requestid=nil)
|
|
6370
|
+
@RequestId = requestid
|
|
6371
|
+
end
|
|
6372
|
+
|
|
6373
|
+
def deserialize(params)
|
|
6374
|
+
@RequestId = params['RequestId']
|
|
6375
|
+
end
|
|
6376
|
+
end
|
|
6377
|
+
|
|
5051
6378
|
# 子任务进度
|
|
5052
6379
|
class JobRecordProgress < TencentCloud::Common::AbstractModel
|
|
5053
6380
|
# @param Doing: 正在执行的任务数
|
|
@@ -5240,6 +6567,42 @@ module TencentCloud
|
|
|
5240
6567
|
end
|
|
5241
6568
|
end
|
|
5242
6569
|
|
|
6570
|
+
# ModifySeedStatus请求参数结构体
|
|
6571
|
+
class ModifySeedStatusRequest < TencentCloud::Common::AbstractModel
|
|
6572
|
+
# @param Id: ID
|
|
6573
|
+
# @type Id: Integer
|
|
6574
|
+
# @param IsValid: 是否可信
|
|
6575
|
+
# @type IsValid: Boolean
|
|
6576
|
+
|
|
6577
|
+
attr_accessor :Id, :IsValid
|
|
6578
|
+
|
|
6579
|
+
def initialize(id=nil, isvalid=nil)
|
|
6580
|
+
@Id = id
|
|
6581
|
+
@IsValid = isvalid
|
|
6582
|
+
end
|
|
6583
|
+
|
|
6584
|
+
def deserialize(params)
|
|
6585
|
+
@Id = params['Id']
|
|
6586
|
+
@IsValid = params['IsValid']
|
|
6587
|
+
end
|
|
6588
|
+
end
|
|
6589
|
+
|
|
6590
|
+
# ModifySeedStatus返回参数结构体
|
|
6591
|
+
class ModifySeedStatusResponse < TencentCloud::Common::AbstractModel
|
|
6592
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6593
|
+
# @type RequestId: String
|
|
6594
|
+
|
|
6595
|
+
attr_accessor :RequestId
|
|
6596
|
+
|
|
6597
|
+
def initialize(requestid=nil)
|
|
6598
|
+
@RequestId = requestid
|
|
6599
|
+
end
|
|
6600
|
+
|
|
6601
|
+
def deserialize(params)
|
|
6602
|
+
@RequestId = params['RequestId']
|
|
6603
|
+
end
|
|
6604
|
+
end
|
|
6605
|
+
|
|
5243
6606
|
# StopJobRecord请求参数结构体
|
|
5244
6607
|
class StopJobRecordRequest < TencentCloud::Common::AbstractModel
|
|
5245
6608
|
# @param CustomerId: 企业ID
|