tencentcloud-sdk-bma 3.0.371 → 3.0.379
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/v20210624/client.rb +240 -0
- data/lib/v20210624/models.rb +737 -0
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e19c54b41cc06b22d510874e1d58510c7a6a39c
|
4
|
+
data.tar.gz: 6a29e8a6e1f2600b3ebbd70921ff54ab369ac8f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 195372a767847731b94cbf8e05fa6a7f97ad777b2fdc649ffd9b0058306d4d1e27e58a4360c3177a50254fbadee4067fe1cbe1d2688ccdddd6c4271bc3018608
|
7
|
+
data.tar.gz: 08137fdaa33461afc98845790fa2a3477a133720875587d2b88d0391e9ea1d4fe068bc685e8f27a5e393829ee88ef2194da57bfc199f3fab1c295264ded74454
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.379
|
data/lib/v20210624/client.rb
CHANGED
@@ -29,6 +29,126 @@ module TencentCloud
|
|
29
29
|
end
|
30
30
|
|
31
31
|
|
32
|
+
# 添加仿冒链接(举报)
|
33
|
+
|
34
|
+
# @param request: Request instance for CreateBPFakeURL.
|
35
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::CreateBPFakeURLRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::CreateBPFakeURLResponse`
|
37
|
+
def CreateBPFakeURL(request)
|
38
|
+
body = send_request('CreateBPFakeURL', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = CreateBPFakeURLResponse.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
|
+
|
56
|
+
# 添加误报工单
|
57
|
+
|
58
|
+
# @param request: Request instance for CreateBPFalseTicket.
|
59
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::CreateBPFalseTicketRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::CreateBPFalseTicketResponse`
|
61
|
+
def CreateBPFalseTicket(request)
|
62
|
+
body = send_request('CreateBPFalseTicket', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CreateBPFalseTicketResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
80
|
+
# 添加下线材料
|
81
|
+
|
82
|
+
# @param request: Request instance for CreateBPOfflineAttachment.
|
83
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::CreateBPOfflineAttachmentRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::CreateBPOfflineAttachmentResponse`
|
85
|
+
def CreateBPOfflineAttachment(request)
|
86
|
+
body = send_request('CreateBPOfflineAttachment', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = CreateBPOfflineAttachmentResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
104
|
+
# 添加下线工单
|
105
|
+
|
106
|
+
# @param request: Request instance for CreateBPOfflineTicket.
|
107
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::CreateBPOfflineTicketRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::CreateBPOfflineTicketResponse`
|
109
|
+
def CreateBPOfflineTicket(request)
|
110
|
+
body = send_request('CreateBPOfflineTicket', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CreateBPOfflineTicketResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
128
|
+
# 添加保护网站
|
129
|
+
|
130
|
+
# @param request: Request instance for CreateBPProtectURLs.
|
131
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::CreateBPProtectURLsRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::CreateBPProtectURLsResponse`
|
133
|
+
def CreateBPProtectURLs(request)
|
134
|
+
body = send_request('CreateBPProtectURLs', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = CreateBPProtectURLsResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
32
152
|
# 版权保护-新建拦截接口
|
33
153
|
|
34
154
|
# @param request: Request instance for CreateCRBlock.
|
@@ -125,6 +245,102 @@ module TencentCloud
|
|
125
245
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
246
|
end
|
127
247
|
|
248
|
+
# 查询企业信息
|
249
|
+
|
250
|
+
# @param request: Request instance for DescribeBPCompanyInfo.
|
251
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::DescribeBPCompanyInfoRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::DescribeBPCompanyInfoResponse`
|
253
|
+
def DescribeBPCompanyInfo(request)
|
254
|
+
body = send_request('DescribeBPCompanyInfo', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribeBPCompanyInfoResponse.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
|
+
# 查询仿冒链接
|
273
|
+
|
274
|
+
# @param request: Request instance for DescribeBPFakeURLs.
|
275
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::DescribeBPFakeURLsRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::DescribeBPFakeURLsResponse`
|
277
|
+
def DescribeBPFakeURLs(request)
|
278
|
+
body = send_request('DescribeBPFakeURLs', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribeBPFakeURLsResponse.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
|
+
|
296
|
+
# 查询保护网站
|
297
|
+
|
298
|
+
# @param request: Request instance for DescribeBPProtectURLs.
|
299
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::DescribeBPProtectURLsRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::DescribeBPProtectURLsResponse`
|
301
|
+
def DescribeBPProtectURLs(request)
|
302
|
+
body = send_request('DescribeBPProtectURLs', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DescribeBPProtectURLsResponse.new
|
306
|
+
model.deserialize(response['Response'])
|
307
|
+
model
|
308
|
+
else
|
309
|
+
code = response['Response']['Error']['Code']
|
310
|
+
message = response['Response']['Error']['Message']
|
311
|
+
reqid = response['Response']['RequestId']
|
312
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
313
|
+
end
|
314
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
315
|
+
raise e
|
316
|
+
rescue StandardError => e
|
317
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
|
+
end
|
319
|
+
|
320
|
+
# 查询举报列表
|
321
|
+
|
322
|
+
# @param request: Request instance for DescribeBPReportFakeURLs.
|
323
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::DescribeBPReportFakeURLsRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::DescribeBPReportFakeURLsResponse`
|
325
|
+
def DescribeBPReportFakeURLs(request)
|
326
|
+
body = send_request('DescribeBPReportFakeURLs', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DescribeBPReportFakeURLsResponse.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
|
+
|
128
344
|
# 版权保护-查询作品监测详情接口
|
129
345
|
|
130
346
|
# @param request: Request instance for DescribeCRMonitorDetail.
|
@@ -197,6 +413,30 @@ module TencentCloud
|
|
197
413
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
414
|
end
|
199
415
|
|
416
|
+
# 修改下线材料
|
417
|
+
|
418
|
+
# @param request: Request instance for ModifyBPOfflineAttachment.
|
419
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::ModifyBPOfflineAttachmentRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::ModifyBPOfflineAttachmentResponse`
|
421
|
+
def ModifyBPOfflineAttachment(request)
|
422
|
+
body = send_request('ModifyBPOfflineAttachment', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = ModifyBPOfflineAttachmentResponse.new
|
426
|
+
model.deserialize(response['Response'])
|
427
|
+
model
|
428
|
+
else
|
429
|
+
code = response['Response']['Error']['Code']
|
430
|
+
message = response['Response']['Error']['Message']
|
431
|
+
reqid = response['Response']['RequestId']
|
432
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
433
|
+
end
|
434
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
435
|
+
raise e
|
436
|
+
rescue StandardError => e
|
437
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
438
|
+
end
|
439
|
+
|
200
440
|
# 版权保护-拦截申请接口
|
201
441
|
|
202
442
|
# @param request: Request instance for ModifyCRBlockStatus.
|
data/lib/v20210624/models.rb
CHANGED
@@ -17,6 +17,246 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Bma
|
19
19
|
module V20210624
|
20
|
+
# 商标信息
|
21
|
+
class BrandData < TencentCloud::Common::AbstractModel
|
22
|
+
# @param BrandName: xxx
|
23
|
+
# @type BrandName: String
|
24
|
+
# @param BrandCertificateName: xxx
|
25
|
+
# @type BrandCertificateName: String
|
26
|
+
# @param BrandStatus: xxx
|
27
|
+
# @type BrandStatus: Integer
|
28
|
+
# @param BrandNote: xxx
|
29
|
+
# @type BrandNote: String
|
30
|
+
# @param TransferName: xxx
|
31
|
+
# @type TransferName: String
|
32
|
+
# @param TransferStatus: xxx
|
33
|
+
# @type TransferStatus: Integer
|
34
|
+
# @param TransferNote: xxx
|
35
|
+
# @type TransferNote: String
|
36
|
+
|
37
|
+
attr_accessor :BrandName, :BrandCertificateName, :BrandStatus, :BrandNote, :TransferName, :TransferStatus, :TransferNote
|
38
|
+
|
39
|
+
def initialize(brandname=nil, brandcertificatename=nil, brandstatus=nil, brandnote=nil, transfername=nil, transferstatus=nil, transfernote=nil)
|
40
|
+
@BrandName = brandname
|
41
|
+
@BrandCertificateName = brandcertificatename
|
42
|
+
@BrandStatus = brandstatus
|
43
|
+
@BrandNote = brandnote
|
44
|
+
@TransferName = transfername
|
45
|
+
@TransferStatus = transferstatus
|
46
|
+
@TransferNote = transfernote
|
47
|
+
end
|
48
|
+
|
49
|
+
def deserialize(params)
|
50
|
+
@BrandName = params['BrandName']
|
51
|
+
@BrandCertificateName = params['BrandCertificateName']
|
52
|
+
@BrandStatus = params['BrandStatus']
|
53
|
+
@BrandNote = params['BrandNote']
|
54
|
+
@TransferName = params['TransferName']
|
55
|
+
@TransferStatus = params['TransferStatus']
|
56
|
+
@TransferNote = params['TransferNote']
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# CreateBPFakeURL请求参数结构体
|
61
|
+
class CreateBPFakeURLRequest < TencentCloud::Common::AbstractModel
|
62
|
+
# @param ProtectURLId: xxx
|
63
|
+
# @type ProtectURLId: Integer
|
64
|
+
# @param FakeURL: xxx
|
65
|
+
# @type FakeURL: String
|
66
|
+
# @param SnapshotNames: xxx
|
67
|
+
# @type SnapshotNames: Array
|
68
|
+
# @param Note: xxx
|
69
|
+
# @type Note: String
|
70
|
+
|
71
|
+
attr_accessor :ProtectURLId, :FakeURL, :SnapshotNames, :Note
|
72
|
+
|
73
|
+
def initialize(protecturlid=nil, fakeurl=nil, snapshotnames=nil, note=nil)
|
74
|
+
@ProtectURLId = protecturlid
|
75
|
+
@FakeURL = fakeurl
|
76
|
+
@SnapshotNames = snapshotnames
|
77
|
+
@Note = note
|
78
|
+
end
|
79
|
+
|
80
|
+
def deserialize(params)
|
81
|
+
@ProtectURLId = params['ProtectURLId']
|
82
|
+
@FakeURL = params['FakeURL']
|
83
|
+
@SnapshotNames = params['SnapshotNames']
|
84
|
+
@Note = params['Note']
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
# CreateBPFakeURL返回参数结构体
|
89
|
+
class CreateBPFakeURLResponse < TencentCloud::Common::AbstractModel
|
90
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
91
|
+
# @type RequestId: String
|
92
|
+
|
93
|
+
attr_accessor :RequestId
|
94
|
+
|
95
|
+
def initialize(requestid=nil)
|
96
|
+
@RequestId = requestid
|
97
|
+
end
|
98
|
+
|
99
|
+
def deserialize(params)
|
100
|
+
@RequestId = params['RequestId']
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
# CreateBPFalseTicket请求参数结构体
|
105
|
+
class CreateBPFalseTicketRequest < TencentCloud::Common::AbstractModel
|
106
|
+
# @param FakeURL: xxx
|
107
|
+
# @type FakeURL: String
|
108
|
+
|
109
|
+
attr_accessor :FakeURL
|
110
|
+
|
111
|
+
def initialize(fakeurl=nil)
|
112
|
+
@FakeURL = fakeurl
|
113
|
+
end
|
114
|
+
|
115
|
+
def deserialize(params)
|
116
|
+
@FakeURL = params['FakeURL']
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
# CreateBPFalseTicket返回参数结构体
|
121
|
+
class CreateBPFalseTicketResponse < TencentCloud::Common::AbstractModel
|
122
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
123
|
+
# @type RequestId: String
|
124
|
+
|
125
|
+
attr_accessor :RequestId
|
126
|
+
|
127
|
+
def initialize(requestid=nil)
|
128
|
+
@RequestId = requestid
|
129
|
+
end
|
130
|
+
|
131
|
+
def deserialize(params)
|
132
|
+
@RequestId = params['RequestId']
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
# CreateBPOfflineAttachment请求参数结构体
|
137
|
+
class CreateBPOfflineAttachmentRequest < TencentCloud::Common::AbstractModel
|
138
|
+
# @param BrandName: xxx
|
139
|
+
# @type BrandName: String
|
140
|
+
# @param BrandCertificateName: xx
|
141
|
+
# @type BrandCertificateName: String
|
142
|
+
# @param TransferName: xx
|
143
|
+
# @type TransferName: String
|
144
|
+
# @param AuthorizationName: xx
|
145
|
+
# @type AuthorizationName: String
|
146
|
+
|
147
|
+
attr_accessor :BrandName, :BrandCertificateName, :TransferName, :AuthorizationName
|
148
|
+
|
149
|
+
def initialize(brandname=nil, brandcertificatename=nil, transfername=nil, authorizationname=nil)
|
150
|
+
@BrandName = brandname
|
151
|
+
@BrandCertificateName = brandcertificatename
|
152
|
+
@TransferName = transfername
|
153
|
+
@AuthorizationName = authorizationname
|
154
|
+
end
|
155
|
+
|
156
|
+
def deserialize(params)
|
157
|
+
@BrandName = params['BrandName']
|
158
|
+
@BrandCertificateName = params['BrandCertificateName']
|
159
|
+
@TransferName = params['TransferName']
|
160
|
+
@AuthorizationName = params['AuthorizationName']
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
# CreateBPOfflineAttachment返回参数结构体
|
165
|
+
class CreateBPOfflineAttachmentResponse < TencentCloud::Common::AbstractModel
|
166
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
167
|
+
# @type RequestId: String
|
168
|
+
|
169
|
+
attr_accessor :RequestId
|
170
|
+
|
171
|
+
def initialize(requestid=nil)
|
172
|
+
@RequestId = requestid
|
173
|
+
end
|
174
|
+
|
175
|
+
def deserialize(params)
|
176
|
+
@RequestId = params['RequestId']
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
# CreateBPOfflineTicket请求参数结构体
|
181
|
+
class CreateBPOfflineTicketRequest < TencentCloud::Common::AbstractModel
|
182
|
+
# @param FakeURLId: xxx
|
183
|
+
# @type FakeURLId: Integer
|
184
|
+
|
185
|
+
attr_accessor :FakeURLId
|
186
|
+
|
187
|
+
def initialize(fakeurlid=nil)
|
188
|
+
@FakeURLId = fakeurlid
|
189
|
+
end
|
190
|
+
|
191
|
+
def deserialize(params)
|
192
|
+
@FakeURLId = params['FakeURLId']
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
# CreateBPOfflineTicket返回参数结构体
|
197
|
+
class CreateBPOfflineTicketResponse < TencentCloud::Common::AbstractModel
|
198
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
199
|
+
# @type RequestId: String
|
200
|
+
|
201
|
+
attr_accessor :RequestId
|
202
|
+
|
203
|
+
def initialize(requestid=nil)
|
204
|
+
@RequestId = requestid
|
205
|
+
end
|
206
|
+
|
207
|
+
def deserialize(params)
|
208
|
+
@RequestId = params['RequestId']
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
212
|
+
# CreateBPProtectURLs请求参数结构体
|
213
|
+
class CreateBPProtectURLsRequest < TencentCloud::Common::AbstractModel
|
214
|
+
# @param CompanyName: xxx
|
215
|
+
# @type CompanyName: String
|
216
|
+
# @param Phone: xxx
|
217
|
+
# @type Phone: String
|
218
|
+
# @param LicenseName: xxx
|
219
|
+
# @type LicenseName: String
|
220
|
+
# @param ProtectURLs: xxx
|
221
|
+
# @type ProtectURLs: Array
|
222
|
+
# @param ProtectWebs: xxx
|
223
|
+
# @type ProtectWebs: Array
|
224
|
+
|
225
|
+
attr_accessor :CompanyName, :Phone, :LicenseName, :ProtectURLs, :ProtectWebs
|
226
|
+
|
227
|
+
def initialize(companyname=nil, phone=nil, licensename=nil, protecturls=nil, protectwebs=nil)
|
228
|
+
@CompanyName = companyname
|
229
|
+
@Phone = phone
|
230
|
+
@LicenseName = licensename
|
231
|
+
@ProtectURLs = protecturls
|
232
|
+
@ProtectWebs = protectwebs
|
233
|
+
end
|
234
|
+
|
235
|
+
def deserialize(params)
|
236
|
+
@CompanyName = params['CompanyName']
|
237
|
+
@Phone = params['Phone']
|
238
|
+
@LicenseName = params['LicenseName']
|
239
|
+
@ProtectURLs = params['ProtectURLs']
|
240
|
+
@ProtectWebs = params['ProtectWebs']
|
241
|
+
end
|
242
|
+
end
|
243
|
+
|
244
|
+
# CreateBPProtectURLs返回参数结构体
|
245
|
+
class CreateBPProtectURLsResponse < TencentCloud::Common::AbstractModel
|
246
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
247
|
+
# @type RequestId: String
|
248
|
+
|
249
|
+
attr_accessor :RequestId
|
250
|
+
|
251
|
+
def initialize(requestid=nil)
|
252
|
+
@RequestId = requestid
|
253
|
+
end
|
254
|
+
|
255
|
+
def deserialize(params)
|
256
|
+
@RequestId = params['RequestId']
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
20
260
|
# CreateCRBlock请求参数结构体
|
21
261
|
class CreateCRBlockRequest < TencentCloud::Common::AbstractModel
|
22
262
|
# @param WorkId: 已存证的作品ID
|
@@ -417,6 +657,259 @@ module TencentCloud
|
|
417
657
|
end
|
418
658
|
end
|
419
659
|
|
660
|
+
# DescribeBPCompanyInfo请求参数结构体
|
661
|
+
class DescribeBPCompanyInfoRequest < TencentCloud::Common::AbstractModel
|
662
|
+
|
663
|
+
|
664
|
+
def initialize()
|
665
|
+
end
|
666
|
+
|
667
|
+
def deserialize(params)
|
668
|
+
end
|
669
|
+
end
|
670
|
+
|
671
|
+
# DescribeBPCompanyInfo返回参数结构体
|
672
|
+
class DescribeBPCompanyInfoResponse < TencentCloud::Common::AbstractModel
|
673
|
+
# @param CompanyName: xx
|
674
|
+
# @type CompanyName: String
|
675
|
+
# @param Phone: xx
|
676
|
+
# @type Phone: String
|
677
|
+
# @param LicenseName: xx
|
678
|
+
# @type LicenseName: String
|
679
|
+
# @param LicenseStatus: xx
|
680
|
+
# @type LicenseStatus: Integer
|
681
|
+
# @param LicenseNote: xx
|
682
|
+
# @type LicenseNote: String
|
683
|
+
# @param AuthorizationName: xx
|
684
|
+
# @type AuthorizationName: String
|
685
|
+
# @param AuthorizationStatus: xx
|
686
|
+
# @type AuthorizationStatus: Integer
|
687
|
+
# @param AuthorizationNote: xx
|
688
|
+
# @type AuthorizationNote: String
|
689
|
+
# @param BrandDatas: xx
|
690
|
+
# @type BrandDatas: Array
|
691
|
+
# @param CompanyId: xx
|
692
|
+
# @type CompanyId: Integer
|
693
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
694
|
+
# @type RequestId: String
|
695
|
+
|
696
|
+
attr_accessor :CompanyName, :Phone, :LicenseName, :LicenseStatus, :LicenseNote, :AuthorizationName, :AuthorizationStatus, :AuthorizationNote, :BrandDatas, :CompanyId, :RequestId
|
697
|
+
|
698
|
+
def initialize(companyname=nil, phone=nil, licensename=nil, licensestatus=nil, licensenote=nil, authorizationname=nil, authorizationstatus=nil, authorizationnote=nil, branddatas=nil, companyid=nil, requestid=nil)
|
699
|
+
@CompanyName = companyname
|
700
|
+
@Phone = phone
|
701
|
+
@LicenseName = licensename
|
702
|
+
@LicenseStatus = licensestatus
|
703
|
+
@LicenseNote = licensenote
|
704
|
+
@AuthorizationName = authorizationname
|
705
|
+
@AuthorizationStatus = authorizationstatus
|
706
|
+
@AuthorizationNote = authorizationnote
|
707
|
+
@BrandDatas = branddatas
|
708
|
+
@CompanyId = companyid
|
709
|
+
@RequestId = requestid
|
710
|
+
end
|
711
|
+
|
712
|
+
def deserialize(params)
|
713
|
+
@CompanyName = params['CompanyName']
|
714
|
+
@Phone = params['Phone']
|
715
|
+
@LicenseName = params['LicenseName']
|
716
|
+
@LicenseStatus = params['LicenseStatus']
|
717
|
+
@LicenseNote = params['LicenseNote']
|
718
|
+
@AuthorizationName = params['AuthorizationName']
|
719
|
+
@AuthorizationStatus = params['AuthorizationStatus']
|
720
|
+
@AuthorizationNote = params['AuthorizationNote']
|
721
|
+
unless params['BrandDatas'].nil?
|
722
|
+
@BrandDatas = []
|
723
|
+
params['BrandDatas'].each do |i|
|
724
|
+
branddata_tmp = BrandData.new
|
725
|
+
branddata_tmp.deserialize(i)
|
726
|
+
@BrandDatas << branddata_tmp
|
727
|
+
end
|
728
|
+
end
|
729
|
+
@CompanyId = params['CompanyId']
|
730
|
+
@RequestId = params['RequestId']
|
731
|
+
end
|
732
|
+
end
|
733
|
+
|
734
|
+
# DescribeBPFakeURLs请求参数结构体
|
735
|
+
class DescribeBPFakeURLsRequest < TencentCloud::Common::AbstractModel
|
736
|
+
# @param Filters: xxx
|
737
|
+
# @type Filters: Array
|
738
|
+
# @param PageSize: xxx
|
739
|
+
# @type PageSize: Integer
|
740
|
+
# @param PageNumber: xxx
|
741
|
+
# @type PageNumber: Integer
|
742
|
+
|
743
|
+
attr_accessor :Filters, :PageSize, :PageNumber
|
744
|
+
|
745
|
+
def initialize(filters=nil, pagesize=nil, pagenumber=nil)
|
746
|
+
@Filters = filters
|
747
|
+
@PageSize = pagesize
|
748
|
+
@PageNumber = pagenumber
|
749
|
+
end
|
750
|
+
|
751
|
+
def deserialize(params)
|
752
|
+
unless params['Filters'].nil?
|
753
|
+
@Filters = []
|
754
|
+
params['Filters'].each do |i|
|
755
|
+
filter_tmp = Filter.new
|
756
|
+
filter_tmp.deserialize(i)
|
757
|
+
@Filters << filter_tmp
|
758
|
+
end
|
759
|
+
end
|
760
|
+
@PageSize = params['PageSize']
|
761
|
+
@PageNumber = params['PageNumber']
|
762
|
+
end
|
763
|
+
end
|
764
|
+
|
765
|
+
# DescribeBPFakeURLs返回参数结构体
|
766
|
+
class DescribeBPFakeURLsResponse < TencentCloud::Common::AbstractModel
|
767
|
+
# @param FakeURLInfos: xxx
|
768
|
+
# @type FakeURLInfos: Array
|
769
|
+
# @param TotalCount: xxx
|
770
|
+
# @type TotalCount: Integer
|
771
|
+
# @param ExportURL: xxx
|
772
|
+
# @type ExportURL: String
|
773
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
774
|
+
# @type RequestId: String
|
775
|
+
|
776
|
+
attr_accessor :FakeURLInfos, :TotalCount, :ExportURL, :RequestId
|
777
|
+
|
778
|
+
def initialize(fakeurlinfos=nil, totalcount=nil, exporturl=nil, requestid=nil)
|
779
|
+
@FakeURLInfos = fakeurlinfos
|
780
|
+
@TotalCount = totalcount
|
781
|
+
@ExportURL = exporturl
|
782
|
+
@RequestId = requestid
|
783
|
+
end
|
784
|
+
|
785
|
+
def deserialize(params)
|
786
|
+
unless params['FakeURLInfos'].nil?
|
787
|
+
@FakeURLInfos = []
|
788
|
+
params['FakeURLInfos'].each do |i|
|
789
|
+
fakeurlinfo_tmp = FakeURLInfo.new
|
790
|
+
fakeurlinfo_tmp.deserialize(i)
|
791
|
+
@FakeURLInfos << fakeurlinfo_tmp
|
792
|
+
end
|
793
|
+
end
|
794
|
+
@TotalCount = params['TotalCount']
|
795
|
+
@ExportURL = params['ExportURL']
|
796
|
+
@RequestId = params['RequestId']
|
797
|
+
end
|
798
|
+
end
|
799
|
+
|
800
|
+
# DescribeBPProtectURLs请求参数结构体
|
801
|
+
class DescribeBPProtectURLsRequest < TencentCloud::Common::AbstractModel
|
802
|
+
# @param PageSize: xxx
|
803
|
+
# @type PageSize: Integer
|
804
|
+
# @param PageNumber: xxx
|
805
|
+
# @type PageNumber: Integer
|
806
|
+
|
807
|
+
attr_accessor :PageSize, :PageNumber
|
808
|
+
|
809
|
+
def initialize(pagesize=nil, pagenumber=nil)
|
810
|
+
@PageSize = pagesize
|
811
|
+
@PageNumber = pagenumber
|
812
|
+
end
|
813
|
+
|
814
|
+
def deserialize(params)
|
815
|
+
@PageSize = params['PageSize']
|
816
|
+
@PageNumber = params['PageNumber']
|
817
|
+
end
|
818
|
+
end
|
819
|
+
|
820
|
+
# DescribeBPProtectURLs返回参数结构体
|
821
|
+
class DescribeBPProtectURLsResponse < TencentCloud::Common::AbstractModel
|
822
|
+
# @param ProtectURLInfos: xxx
|
823
|
+
# @type ProtectURLInfos: Array
|
824
|
+
# @param TotalCount: xxx
|
825
|
+
# @type TotalCount: Integer
|
826
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
827
|
+
# @type RequestId: String
|
828
|
+
|
829
|
+
attr_accessor :ProtectURLInfos, :TotalCount, :RequestId
|
830
|
+
|
831
|
+
def initialize(protecturlinfos=nil, totalcount=nil, requestid=nil)
|
832
|
+
@ProtectURLInfos = protecturlinfos
|
833
|
+
@TotalCount = totalcount
|
834
|
+
@RequestId = requestid
|
835
|
+
end
|
836
|
+
|
837
|
+
def deserialize(params)
|
838
|
+
unless params['ProtectURLInfos'].nil?
|
839
|
+
@ProtectURLInfos = []
|
840
|
+
params['ProtectURLInfos'].each do |i|
|
841
|
+
protecturlinfo_tmp = ProtectURLInfo.new
|
842
|
+
protecturlinfo_tmp.deserialize(i)
|
843
|
+
@ProtectURLInfos << protecturlinfo_tmp
|
844
|
+
end
|
845
|
+
end
|
846
|
+
@TotalCount = params['TotalCount']
|
847
|
+
@RequestId = params['RequestId']
|
848
|
+
end
|
849
|
+
end
|
850
|
+
|
851
|
+
# DescribeBPReportFakeURLs请求参数结构体
|
852
|
+
class DescribeBPReportFakeURLsRequest < TencentCloud::Common::AbstractModel
|
853
|
+
# @param Filters: xxx
|
854
|
+
# @type Filters: Array
|
855
|
+
# @param PageSize: xxx
|
856
|
+
# @type PageSize: Integer
|
857
|
+
# @param PageNumber: xxx
|
858
|
+
# @type PageNumber: Integer
|
859
|
+
|
860
|
+
attr_accessor :Filters, :PageSize, :PageNumber
|
861
|
+
|
862
|
+
def initialize(filters=nil, pagesize=nil, pagenumber=nil)
|
863
|
+
@Filters = filters
|
864
|
+
@PageSize = pagesize
|
865
|
+
@PageNumber = pagenumber
|
866
|
+
end
|
867
|
+
|
868
|
+
def deserialize(params)
|
869
|
+
unless params['Filters'].nil?
|
870
|
+
@Filters = []
|
871
|
+
params['Filters'].each do |i|
|
872
|
+
filter_tmp = Filter.new
|
873
|
+
filter_tmp.deserialize(i)
|
874
|
+
@Filters << filter_tmp
|
875
|
+
end
|
876
|
+
end
|
877
|
+
@PageSize = params['PageSize']
|
878
|
+
@PageNumber = params['PageNumber']
|
879
|
+
end
|
880
|
+
end
|
881
|
+
|
882
|
+
# DescribeBPReportFakeURLs返回参数结构体
|
883
|
+
class DescribeBPReportFakeURLsResponse < TencentCloud::Common::AbstractModel
|
884
|
+
# @param ReportFakeURLInfos: xxx
|
885
|
+
# @type ReportFakeURLInfos: Array
|
886
|
+
# @param TotalCount: xxx
|
887
|
+
# @type TotalCount: Integer
|
888
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
889
|
+
# @type RequestId: String
|
890
|
+
|
891
|
+
attr_accessor :ReportFakeURLInfos, :TotalCount, :RequestId
|
892
|
+
|
893
|
+
def initialize(reportfakeurlinfos=nil, totalcount=nil, requestid=nil)
|
894
|
+
@ReportFakeURLInfos = reportfakeurlinfos
|
895
|
+
@TotalCount = totalcount
|
896
|
+
@RequestId = requestid
|
897
|
+
end
|
898
|
+
|
899
|
+
def deserialize(params)
|
900
|
+
unless params['ReportFakeURLInfos'].nil?
|
901
|
+
@ReportFakeURLInfos = []
|
902
|
+
params['ReportFakeURLInfos'].each do |i|
|
903
|
+
reportfakeurlinfo_tmp = ReportFakeURLInfo.new
|
904
|
+
reportfakeurlinfo_tmp.deserialize(i)
|
905
|
+
@ReportFakeURLInfos << reportfakeurlinfo_tmp
|
906
|
+
end
|
907
|
+
end
|
908
|
+
@TotalCount = params['TotalCount']
|
909
|
+
@RequestId = params['RequestId']
|
910
|
+
end
|
911
|
+
end
|
912
|
+
|
420
913
|
# DescribeCRMonitorDetail请求参数结构体
|
421
914
|
class DescribeCRMonitorDetailRequest < TencentCloud::Common::AbstractModel
|
422
915
|
# @param WorkId: 作品ID
|
@@ -601,6 +1094,82 @@ module TencentCloud
|
|
601
1094
|
end
|
602
1095
|
end
|
603
1096
|
|
1097
|
+
# 仿冒网站信息
|
1098
|
+
class FakeURLInfo < TencentCloud::Common::AbstractModel
|
1099
|
+
# @param FakeURLId: xxx
|
1100
|
+
# @type FakeURLId: Integer
|
1101
|
+
# @param ProtectWeb: xxx
|
1102
|
+
# @type ProtectWeb: String
|
1103
|
+
# @param DetectTime: xxx
|
1104
|
+
# @type DetectTime: String
|
1105
|
+
# @param FakeURL: xxx
|
1106
|
+
# @type FakeURL: String
|
1107
|
+
# @param Snapshot: xxx
|
1108
|
+
# @type Snapshot: String
|
1109
|
+
# @param IP: xxx
|
1110
|
+
# @type IP: String
|
1111
|
+
# @param IPLoc: xxx
|
1112
|
+
# @type IPLoc: String
|
1113
|
+
# @param Heat: xxx
|
1114
|
+
# @type Heat: Integer
|
1115
|
+
# @param Status: xxx
|
1116
|
+
# @type Status: Integer
|
1117
|
+
# @param Note: xxx
|
1118
|
+
# @type Note: String
|
1119
|
+
# @param FakeURLCompany: xxx
|
1120
|
+
# @type FakeURLCompany: String
|
1121
|
+
# @param FakeURLAttr: xxx
|
1122
|
+
# @type FakeURLAttr: String
|
1123
|
+
# @param FakeURLName: xxx
|
1124
|
+
# @type FakeURLName: String
|
1125
|
+
# @param FakeURLICP: xxx
|
1126
|
+
# @type FakeURLICP: String
|
1127
|
+
# @param FakeURLCreateTime: xxx
|
1128
|
+
# @type FakeURLCreateTime: String
|
1129
|
+
# @param FakeURLExpireTime: xxx
|
1130
|
+
# @type FakeURLExpireTime: String
|
1131
|
+
|
1132
|
+
attr_accessor :FakeURLId, :ProtectWeb, :DetectTime, :FakeURL, :Snapshot, :IP, :IPLoc, :Heat, :Status, :Note, :FakeURLCompany, :FakeURLAttr, :FakeURLName, :FakeURLICP, :FakeURLCreateTime, :FakeURLExpireTime
|
1133
|
+
|
1134
|
+
def initialize(fakeurlid=nil, protectweb=nil, detecttime=nil, fakeurl=nil, snapshot=nil, ip=nil, iploc=nil, heat=nil, status=nil, note=nil, fakeurlcompany=nil, fakeurlattr=nil, fakeurlname=nil, fakeurlicp=nil, fakeurlcreatetime=nil, fakeurlexpiretime=nil)
|
1135
|
+
@FakeURLId = fakeurlid
|
1136
|
+
@ProtectWeb = protectweb
|
1137
|
+
@DetectTime = detecttime
|
1138
|
+
@FakeURL = fakeurl
|
1139
|
+
@Snapshot = snapshot
|
1140
|
+
@IP = ip
|
1141
|
+
@IPLoc = iploc
|
1142
|
+
@Heat = heat
|
1143
|
+
@Status = status
|
1144
|
+
@Note = note
|
1145
|
+
@FakeURLCompany = fakeurlcompany
|
1146
|
+
@FakeURLAttr = fakeurlattr
|
1147
|
+
@FakeURLName = fakeurlname
|
1148
|
+
@FakeURLICP = fakeurlicp
|
1149
|
+
@FakeURLCreateTime = fakeurlcreatetime
|
1150
|
+
@FakeURLExpireTime = fakeurlexpiretime
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
def deserialize(params)
|
1154
|
+
@FakeURLId = params['FakeURLId']
|
1155
|
+
@ProtectWeb = params['ProtectWeb']
|
1156
|
+
@DetectTime = params['DetectTime']
|
1157
|
+
@FakeURL = params['FakeURL']
|
1158
|
+
@Snapshot = params['Snapshot']
|
1159
|
+
@IP = params['IP']
|
1160
|
+
@IPLoc = params['IPLoc']
|
1161
|
+
@Heat = params['Heat']
|
1162
|
+
@Status = params['Status']
|
1163
|
+
@Note = params['Note']
|
1164
|
+
@FakeURLCompany = params['FakeURLCompany']
|
1165
|
+
@FakeURLAttr = params['FakeURLAttr']
|
1166
|
+
@FakeURLName = params['FakeURLName']
|
1167
|
+
@FakeURLICP = params['FakeURLICP']
|
1168
|
+
@FakeURLCreateTime = params['FakeURLCreateTime']
|
1169
|
+
@FakeURLExpireTime = params['FakeURLExpireTime']
|
1170
|
+
end
|
1171
|
+
end
|
1172
|
+
|
604
1173
|
# 过滤参数
|
605
1174
|
class Filter < TencentCloud::Common::AbstractModel
|
606
1175
|
|
@@ -612,6 +1181,54 @@ module TencentCloud
|
|
612
1181
|
end
|
613
1182
|
end
|
614
1183
|
|
1184
|
+
# ModifyBPOfflineAttachment请求参数结构体
|
1185
|
+
class ModifyBPOfflineAttachmentRequest < TencentCloud::Common::AbstractModel
|
1186
|
+
# @param LicenseName: xx
|
1187
|
+
# @type LicenseName: String
|
1188
|
+
# @param AuthorizationName: xx
|
1189
|
+
# @type AuthorizationName: String
|
1190
|
+
# @param BrandName: xx
|
1191
|
+
# @type BrandName: String
|
1192
|
+
# @param BrandCertificateName: xx
|
1193
|
+
# @type BrandCertificateName: String
|
1194
|
+
# @param TransferName: xx
|
1195
|
+
# @type TransferName: String
|
1196
|
+
|
1197
|
+
attr_accessor :LicenseName, :AuthorizationName, :BrandName, :BrandCertificateName, :TransferName
|
1198
|
+
|
1199
|
+
def initialize(licensename=nil, authorizationname=nil, brandname=nil, brandcertificatename=nil, transfername=nil)
|
1200
|
+
@LicenseName = licensename
|
1201
|
+
@AuthorizationName = authorizationname
|
1202
|
+
@BrandName = brandname
|
1203
|
+
@BrandCertificateName = brandcertificatename
|
1204
|
+
@TransferName = transfername
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
def deserialize(params)
|
1208
|
+
@LicenseName = params['LicenseName']
|
1209
|
+
@AuthorizationName = params['AuthorizationName']
|
1210
|
+
@BrandName = params['BrandName']
|
1211
|
+
@BrandCertificateName = params['BrandCertificateName']
|
1212
|
+
@TransferName = params['TransferName']
|
1213
|
+
end
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
# ModifyBPOfflineAttachment返回参数结构体
|
1217
|
+
class ModifyBPOfflineAttachmentResponse < TencentCloud::Common::AbstractModel
|
1218
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1219
|
+
# @type RequestId: String
|
1220
|
+
|
1221
|
+
attr_accessor :RequestId
|
1222
|
+
|
1223
|
+
def initialize(requestid=nil)
|
1224
|
+
@RequestId = requestid
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
def deserialize(params)
|
1228
|
+
@RequestId = params['RequestId']
|
1229
|
+
end
|
1230
|
+
end
|
1231
|
+
|
615
1232
|
# ModifyCRBlockStatus请求参数结构体
|
616
1233
|
class ModifyCRBlockStatusRequest < TencentCloud::Common::AbstractModel
|
617
1234
|
# @param TortId: 侵权ID
|
@@ -880,6 +1497,126 @@ module TencentCloud
|
|
880
1497
|
end
|
881
1498
|
end
|
882
1499
|
|
1500
|
+
# 保护网站信息
|
1501
|
+
class ProtectURLInfo < TencentCloud::Common::AbstractModel
|
1502
|
+
# @param ProtectURLId: xxx
|
1503
|
+
# @type ProtectURLId: Integer
|
1504
|
+
# @param ProtectURL: xxx
|
1505
|
+
# @type ProtectURL: String
|
1506
|
+
# @param ProtectWeb: xxx
|
1507
|
+
# @type ProtectWeb: String
|
1508
|
+
# @param ProtectURLStatus: xxx
|
1509
|
+
# @type ProtectURLStatus: Integer
|
1510
|
+
# @param ProtectURLNote: xxx
|
1511
|
+
# @type ProtectURLNote: String
|
1512
|
+
# @param CreateTime: xxx
|
1513
|
+
# @type CreateTime: String
|
1514
|
+
|
1515
|
+
attr_accessor :ProtectURLId, :ProtectURL, :ProtectWeb, :ProtectURLStatus, :ProtectURLNote, :CreateTime
|
1516
|
+
|
1517
|
+
def initialize(protecturlid=nil, protecturl=nil, protectweb=nil, protecturlstatus=nil, protecturlnote=nil, createtime=nil)
|
1518
|
+
@ProtectURLId = protecturlid
|
1519
|
+
@ProtectURL = protecturl
|
1520
|
+
@ProtectWeb = protectweb
|
1521
|
+
@ProtectURLStatus = protecturlstatus
|
1522
|
+
@ProtectURLNote = protecturlnote
|
1523
|
+
@CreateTime = createtime
|
1524
|
+
end
|
1525
|
+
|
1526
|
+
def deserialize(params)
|
1527
|
+
@ProtectURLId = params['ProtectURLId']
|
1528
|
+
@ProtectURL = params['ProtectURL']
|
1529
|
+
@ProtectWeb = params['ProtectWeb']
|
1530
|
+
@ProtectURLStatus = params['ProtectURLStatus']
|
1531
|
+
@ProtectURLNote = params['ProtectURLNote']
|
1532
|
+
@CreateTime = params['CreateTime']
|
1533
|
+
end
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
# 举报网址信息
|
1537
|
+
class ReportFakeURLInfo < TencentCloud::Common::AbstractModel
|
1538
|
+
# @param FakeURLId: xxx
|
1539
|
+
# @type FakeURLId: Integer
|
1540
|
+
# @param DetectTime: xxx
|
1541
|
+
# @type DetectTime: String
|
1542
|
+
# @param ProtectURL: xxx
|
1543
|
+
# @type ProtectURL: String
|
1544
|
+
# @param ProtectWeb: xxx
|
1545
|
+
# @type ProtectWeb: String
|
1546
|
+
# @param FakeURL: xxx
|
1547
|
+
# @type FakeURL: String
|
1548
|
+
# @param Snapshot: xxx
|
1549
|
+
# @type Snapshot: String
|
1550
|
+
# @param IP: xxx
|
1551
|
+
# @type IP: String
|
1552
|
+
# @param IPLoc: xxx
|
1553
|
+
# @type IPLoc: String
|
1554
|
+
# @param Heat: xxx
|
1555
|
+
# @type Heat: Integer
|
1556
|
+
# @param Status: xxx
|
1557
|
+
# @type Status: Integer
|
1558
|
+
# @param Note: xxx
|
1559
|
+
# @type Note: String
|
1560
|
+
# @param FakeURLCompany: xxx
|
1561
|
+
# @type FakeURLCompany: String
|
1562
|
+
# @param FakeURLAttr: xxx
|
1563
|
+
# @type FakeURLAttr: String
|
1564
|
+
# @param FakeURLName: xxx
|
1565
|
+
# @type FakeURLName: String
|
1566
|
+
# @param FakeURLICP: xxx
|
1567
|
+
# @type FakeURLICP: String
|
1568
|
+
# @param FakeURLCreateTime: xxx
|
1569
|
+
# @type FakeURLCreateTime: String
|
1570
|
+
# @param FakeURLExpireTime: xxx
|
1571
|
+
# @type FakeURLExpireTime: String
|
1572
|
+
# @param BlockTime: xxx
|
1573
|
+
# @type BlockTime: String
|
1574
|
+
|
1575
|
+
attr_accessor :FakeURLId, :DetectTime, :ProtectURL, :ProtectWeb, :FakeURL, :Snapshot, :IP, :IPLoc, :Heat, :Status, :Note, :FakeURLCompany, :FakeURLAttr, :FakeURLName, :FakeURLICP, :FakeURLCreateTime, :FakeURLExpireTime, :BlockTime
|
1576
|
+
|
1577
|
+
def initialize(fakeurlid=nil, detecttime=nil, protecturl=nil, protectweb=nil, fakeurl=nil, snapshot=nil, ip=nil, iploc=nil, heat=nil, status=nil, note=nil, fakeurlcompany=nil, fakeurlattr=nil, fakeurlname=nil, fakeurlicp=nil, fakeurlcreatetime=nil, fakeurlexpiretime=nil, blocktime=nil)
|
1578
|
+
@FakeURLId = fakeurlid
|
1579
|
+
@DetectTime = detecttime
|
1580
|
+
@ProtectURL = protecturl
|
1581
|
+
@ProtectWeb = protectweb
|
1582
|
+
@FakeURL = fakeurl
|
1583
|
+
@Snapshot = snapshot
|
1584
|
+
@IP = ip
|
1585
|
+
@IPLoc = iploc
|
1586
|
+
@Heat = heat
|
1587
|
+
@Status = status
|
1588
|
+
@Note = note
|
1589
|
+
@FakeURLCompany = fakeurlcompany
|
1590
|
+
@FakeURLAttr = fakeurlattr
|
1591
|
+
@FakeURLName = fakeurlname
|
1592
|
+
@FakeURLICP = fakeurlicp
|
1593
|
+
@FakeURLCreateTime = fakeurlcreatetime
|
1594
|
+
@FakeURLExpireTime = fakeurlexpiretime
|
1595
|
+
@BlockTime = blocktime
|
1596
|
+
end
|
1597
|
+
|
1598
|
+
def deserialize(params)
|
1599
|
+
@FakeURLId = params['FakeURLId']
|
1600
|
+
@DetectTime = params['DetectTime']
|
1601
|
+
@ProtectURL = params['ProtectURL']
|
1602
|
+
@ProtectWeb = params['ProtectWeb']
|
1603
|
+
@FakeURL = params['FakeURL']
|
1604
|
+
@Snapshot = params['Snapshot']
|
1605
|
+
@IP = params['IP']
|
1606
|
+
@IPLoc = params['IPLoc']
|
1607
|
+
@Heat = params['Heat']
|
1608
|
+
@Status = params['Status']
|
1609
|
+
@Note = params['Note']
|
1610
|
+
@FakeURLCompany = params['FakeURLCompany']
|
1611
|
+
@FakeURLAttr = params['FakeURLAttr']
|
1612
|
+
@FakeURLName = params['FakeURLName']
|
1613
|
+
@FakeURLICP = params['FakeURLICP']
|
1614
|
+
@FakeURLCreateTime = params['FakeURLCreateTime']
|
1615
|
+
@FakeURLExpireTime = params['FakeURLExpireTime']
|
1616
|
+
@BlockTime = params['BlockTime']
|
1617
|
+
end
|
1618
|
+
end
|
1619
|
+
|
883
1620
|
# UpdateCRWork请求参数结构体
|
884
1621
|
class UpdateCRWorkRequest < TencentCloud::Common::AbstractModel
|
885
1622
|
# @param WorkId: xx
|
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-bma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.379
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.0'
|
27
27
|
description: Tencent Cloud Ruby SDK is the official software development kit, which
|
@@ -33,10 +33,10 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/VERSION
|
37
36
|
- lib/tencentcloud-sdk-bma.rb
|
38
|
-
- lib/v20210624/client.rb
|
39
37
|
- lib/v20210624/models.rb
|
38
|
+
- lib/v20210624/client.rb
|
39
|
+
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|
42
42
|
- Apache-2.0
|
@@ -49,17 +49,17 @@ require_paths:
|
|
49
49
|
- lib
|
50
50
|
required_ruby_version: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- -
|
57
|
+
- - '>='
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: '0'
|
60
60
|
requirements: []
|
61
61
|
rubyforge_project:
|
62
|
-
rubygems_version: 2.
|
62
|
+
rubygems_version: 2.0.14
|
63
63
|
signing_key:
|
64
64
|
specification_version: 4
|
65
65
|
summary: Tencent Cloud SDK for Ruby - BMA
|