tencentcloud-sdk-bma 3.0.509 → 3.0.511
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/v20221115/client.rb +168 -0
- data/lib/v20221115/models.rb +815 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81e5074a1b7290dc96047f4188479d2617fc6598
|
4
|
+
data.tar.gz: f42da9f317721c80a7bdb919dcb94ae61631c08a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27f9ae7f135c5a256705a773b02a483ff0881380a5f168c5795c8f949788609ead97214afc65dd4450e2836a91c36071af7075d3bfd1078bf15a8a691dcd22b1
|
7
|
+
data.tar.gz: c4b61b6780a638714305dcf68f4b09fd1b8d0121d2aea6345ddcf1b8174e246a6b4b40a2c3769e07bee120469fdaf0a93e873ad32a6edfd9f564759b6a8cd023
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.511
|
data/lib/v20221115/client.rb
CHANGED
@@ -29,6 +29,30 @@ module TencentCloud
|
|
29
29
|
end
|
30
30
|
|
31
31
|
|
32
|
+
# 添加品牌
|
33
|
+
|
34
|
+
# @param request: Request instance for CreateBPBrand.
|
35
|
+
# @type request: :class:`Tencentcloud::bma::V20221115::CreateBPBrandRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::bma::V20221115::CreateBPBrandResponse`
|
37
|
+
def CreateBPBrand(request)
|
38
|
+
body = send_request('CreateBPBrand', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = CreateBPBrandResponse.new
|
42
|
+
model.deserialize(response['Response'])
|
43
|
+
model
|
44
|
+
else
|
45
|
+
code = response['Response']['Error']['Code']
|
46
|
+
message = response['Response']['Error']['Message']
|
47
|
+
reqid = response['Response']['RequestId']
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
49
|
+
end
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
51
|
+
raise e
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
|
+
end
|
55
|
+
|
32
56
|
# 仿冒应用举报
|
33
57
|
|
34
58
|
# @param request: Request instance for CreateBPFakeAPP.
|
@@ -125,6 +149,150 @@ module TencentCloud
|
|
125
149
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
150
|
end
|
127
151
|
|
152
|
+
# 添加白名单
|
153
|
+
|
154
|
+
# @param request: Request instance for CreateBPWhiteList.
|
155
|
+
# @type request: :class:`Tencentcloud::bma::V20221115::CreateBPWhiteListRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::bma::V20221115::CreateBPWhiteListResponse`
|
157
|
+
def CreateBPWhiteList(request)
|
158
|
+
body = send_request('CreateBPWhiteList', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = CreateBPWhiteListResponse.new
|
162
|
+
model.deserialize(response['Response'])
|
163
|
+
model
|
164
|
+
else
|
165
|
+
code = response['Response']['Error']['Code']
|
166
|
+
message = response['Response']['Error']['Message']
|
167
|
+
reqid = response['Response']['RequestId']
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
169
|
+
end
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
171
|
+
raise e
|
172
|
+
rescue StandardError => e
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
174
|
+
end
|
175
|
+
|
176
|
+
# 删除白名单
|
177
|
+
|
178
|
+
# @param request: Request instance for DeleteBPWhiteList.
|
179
|
+
# @type request: :class:`Tencentcloud::bma::V20221115::DeleteBPWhiteListRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::bma::V20221115::DeleteBPWhiteListResponse`
|
181
|
+
def DeleteBPWhiteList(request)
|
182
|
+
body = send_request('DeleteBPWhiteList', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = DeleteBPWhiteListResponse.new
|
186
|
+
model.deserialize(response['Response'])
|
187
|
+
model
|
188
|
+
else
|
189
|
+
code = response['Response']['Error']['Code']
|
190
|
+
message = response['Response']['Error']['Message']
|
191
|
+
reqid = response['Response']['RequestId']
|
192
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
193
|
+
end
|
194
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
195
|
+
raise e
|
196
|
+
rescue StandardError => e
|
197
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
|
+
end
|
199
|
+
|
200
|
+
# 查询品牌列表
|
201
|
+
|
202
|
+
# @param request: Request instance for DescribeBPBrands.
|
203
|
+
# @type request: :class:`Tencentcloud::bma::V20221115::DescribeBPBrandsRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::bma::V20221115::DescribeBPBrandsResponse`
|
205
|
+
def DescribeBPBrands(request)
|
206
|
+
body = send_request('DescribeBPBrands', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DescribeBPBrandsResponse.new
|
210
|
+
model.deserialize(response['Response'])
|
211
|
+
model
|
212
|
+
else
|
213
|
+
code = response['Response']['Error']['Code']
|
214
|
+
message = response['Response']['Error']['Message']
|
215
|
+
reqid = response['Response']['RequestId']
|
216
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
217
|
+
end
|
218
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
219
|
+
raise e
|
220
|
+
rescue StandardError => e
|
221
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
222
|
+
end
|
223
|
+
|
224
|
+
# 查询仿冒应用列表
|
225
|
+
|
226
|
+
# @param request: Request instance for DescribeBPFakeAPPList.
|
227
|
+
# @type request: :class:`Tencentcloud::bma::V20221115::DescribeBPFakeAPPListRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::bma::V20221115::DescribeBPFakeAPPListResponse`
|
229
|
+
def DescribeBPFakeAPPList(request)
|
230
|
+
body = send_request('DescribeBPFakeAPPList', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DescribeBPFakeAPPListResponse.new
|
234
|
+
model.deserialize(response['Response'])
|
235
|
+
model
|
236
|
+
else
|
237
|
+
code = response['Response']['Error']['Code']
|
238
|
+
message = response['Response']['Error']['Message']
|
239
|
+
reqid = response['Response']['RequestId']
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
241
|
+
end
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
243
|
+
raise e
|
244
|
+
rescue StandardError => e
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
|
+
end
|
247
|
+
|
248
|
+
# 查询仿冒网址列表
|
249
|
+
|
250
|
+
# @param request: Request instance for DescribeBPFakeURLs.
|
251
|
+
# @type request: :class:`Tencentcloud::bma::V20221115::DescribeBPFakeURLsRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::bma::V20221115::DescribeBPFakeURLsResponse`
|
253
|
+
def DescribeBPFakeURLs(request)
|
254
|
+
body = send_request('DescribeBPFakeURLs', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribeBPFakeURLsResponse.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 DescribeBPWhiteLists.
|
275
|
+
# @type request: :class:`Tencentcloud::bma::V20221115::DescribeBPWhiteListsRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::bma::V20221115::DescribeBPWhiteListsResponse`
|
277
|
+
def DescribeBPWhiteLists(request)
|
278
|
+
body = send_request('DescribeBPWhiteLists', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribeBPWhiteListsResponse.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
|
+
|
128
296
|
|
129
297
|
end
|
130
298
|
end
|
data/lib/v20221115/models.rb
CHANGED
@@ -17,9 +17,167 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Bma
|
19
19
|
module V20221115
|
20
|
+
# 品牌响应数据
|
21
|
+
class BrandData < TencentCloud::Common::AbstractModel
|
22
|
+
# @param CompanyId: 品牌Id
|
23
|
+
# @type CompanyId: Integer
|
24
|
+
# @param CompanyName: 企业名称
|
25
|
+
# @type CompanyName: String
|
26
|
+
# @param BrandName: 品牌名称
|
27
|
+
# @type BrandName: String
|
28
|
+
# @param Phone: 联系电话
|
29
|
+
# @type Phone: String
|
30
|
+
# @param License: 营业执照
|
31
|
+
# @type License: String
|
32
|
+
# @param LicenseStatus: 营业执照审核状态
|
33
|
+
# @type LicenseStatus: Integer
|
34
|
+
# @param LicenseNote: 营业执照审核状态说明
|
35
|
+
# @type LicenseNote: String
|
36
|
+
# @param Authorization: 授权书
|
37
|
+
# @type Authorization: String
|
38
|
+
# @param AuthorizationStatus: 授权书审核状态
|
39
|
+
# @type AuthorizationStatus: Integer
|
40
|
+
# @param AuthorizationNote: 授权书审核状态说明
|
41
|
+
# @type AuthorizationNote: String
|
42
|
+
# @param Trademarks: 商标信息
|
43
|
+
# @type Trademarks: Array
|
44
|
+
# @param InsertTime: 新增时间
|
45
|
+
# @type InsertTime: String
|
46
|
+
# @param Services: 服务信息
|
47
|
+
# @type Services: :class:`Tencentcloud::Bma.v20221115.models.ServiceData`
|
48
|
+
|
49
|
+
attr_accessor :CompanyId, :CompanyName, :BrandName, :Phone, :License, :LicenseStatus, :LicenseNote, :Authorization, :AuthorizationStatus, :AuthorizationNote, :Trademarks, :InsertTime, :Services
|
50
|
+
|
51
|
+
def initialize(companyid=nil, companyname=nil, brandname=nil, phone=nil, license=nil, licensestatus=nil, licensenote=nil, authorization=nil, authorizationstatus=nil, authorizationnote=nil, trademarks=nil, inserttime=nil, services=nil)
|
52
|
+
@CompanyId = companyid
|
53
|
+
@CompanyName = companyname
|
54
|
+
@BrandName = brandname
|
55
|
+
@Phone = phone
|
56
|
+
@License = license
|
57
|
+
@LicenseStatus = licensestatus
|
58
|
+
@LicenseNote = licensenote
|
59
|
+
@Authorization = authorization
|
60
|
+
@AuthorizationStatus = authorizationstatus
|
61
|
+
@AuthorizationNote = authorizationnote
|
62
|
+
@Trademarks = trademarks
|
63
|
+
@InsertTime = inserttime
|
64
|
+
@Services = services
|
65
|
+
end
|
66
|
+
|
67
|
+
def deserialize(params)
|
68
|
+
@CompanyId = params['CompanyId']
|
69
|
+
@CompanyName = params['CompanyName']
|
70
|
+
@BrandName = params['BrandName']
|
71
|
+
@Phone = params['Phone']
|
72
|
+
@License = params['License']
|
73
|
+
@LicenseStatus = params['LicenseStatus']
|
74
|
+
@LicenseNote = params['LicenseNote']
|
75
|
+
@Authorization = params['Authorization']
|
76
|
+
@AuthorizationStatus = params['AuthorizationStatus']
|
77
|
+
@AuthorizationNote = params['AuthorizationNote']
|
78
|
+
unless params['Trademarks'].nil?
|
79
|
+
@Trademarks = []
|
80
|
+
params['Trademarks'].each do |i|
|
81
|
+
trademarkdata_tmp = TrademarkData.new
|
82
|
+
trademarkdata_tmp.deserialize(i)
|
83
|
+
@Trademarks << trademarkdata_tmp
|
84
|
+
end
|
85
|
+
end
|
86
|
+
@InsertTime = params['InsertTime']
|
87
|
+
unless params['Services'].nil?
|
88
|
+
@Services = ServiceData.new
|
89
|
+
@Services.deserialize(params['Services'])
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
# CreateBPBrand请求参数结构体
|
95
|
+
class CreateBPBrandRequest < TencentCloud::Common::AbstractModel
|
96
|
+
# @param BrandName: 品牌名称
|
97
|
+
# @type BrandName: String
|
98
|
+
# @param CompanyName: 企业名称
|
99
|
+
# @type CompanyName: String
|
100
|
+
# @param Phone: 联系电话
|
101
|
+
# @type Phone: String
|
102
|
+
# @param License: 营业执照
|
103
|
+
# @type License: String
|
104
|
+
# @param Authorization: 授权书
|
105
|
+
# @type Authorization: String
|
106
|
+
# @param TrademarkNames: 商标名称
|
107
|
+
# @type TrademarkNames: Array
|
108
|
+
# @param Trademarks: 商标证明
|
109
|
+
# @type Trademarks: Array
|
110
|
+
# @param IsTransfers: 是否涉及转让: 0-不转让 1-转让
|
111
|
+
# @type IsTransfers: Array
|
112
|
+
# @param Transfers: 转让证明
|
113
|
+
# @type Transfers: Array
|
114
|
+
# @param ProtectURLs: 保护网址
|
115
|
+
# @type ProtectURLs: Array
|
116
|
+
# @param ProtectAPPs: 保护应用
|
117
|
+
# @type ProtectAPPs: Array
|
118
|
+
# @param ProtectOfficialAccounts: 保护公众号
|
119
|
+
# @type ProtectOfficialAccounts: Array
|
120
|
+
# @param ProtectMiniPrograms: 保护小程序
|
121
|
+
# @type ProtectMiniPrograms: Array
|
122
|
+
|
123
|
+
attr_accessor :BrandName, :CompanyName, :Phone, :License, :Authorization, :TrademarkNames, :Trademarks, :IsTransfers, :Transfers, :ProtectURLs, :ProtectAPPs, :ProtectOfficialAccounts, :ProtectMiniPrograms
|
124
|
+
|
125
|
+
def initialize(brandname=nil, companyname=nil, phone=nil, license=nil, authorization=nil, trademarknames=nil, trademarks=nil, istransfers=nil, transfers=nil, protecturls=nil, protectapps=nil, protectofficialaccounts=nil, protectminiprograms=nil)
|
126
|
+
@BrandName = brandname
|
127
|
+
@CompanyName = companyname
|
128
|
+
@Phone = phone
|
129
|
+
@License = license
|
130
|
+
@Authorization = authorization
|
131
|
+
@TrademarkNames = trademarknames
|
132
|
+
@Trademarks = trademarks
|
133
|
+
@IsTransfers = istransfers
|
134
|
+
@Transfers = transfers
|
135
|
+
@ProtectURLs = protecturls
|
136
|
+
@ProtectAPPs = protectapps
|
137
|
+
@ProtectOfficialAccounts = protectofficialaccounts
|
138
|
+
@ProtectMiniPrograms = protectminiprograms
|
139
|
+
end
|
140
|
+
|
141
|
+
def deserialize(params)
|
142
|
+
@BrandName = params['BrandName']
|
143
|
+
@CompanyName = params['CompanyName']
|
144
|
+
@Phone = params['Phone']
|
145
|
+
@License = params['License']
|
146
|
+
@Authorization = params['Authorization']
|
147
|
+
@TrademarkNames = params['TrademarkNames']
|
148
|
+
@Trademarks = params['Trademarks']
|
149
|
+
@IsTransfers = params['IsTransfers']
|
150
|
+
@Transfers = params['Transfers']
|
151
|
+
@ProtectURLs = params['ProtectURLs']
|
152
|
+
@ProtectAPPs = params['ProtectAPPs']
|
153
|
+
@ProtectOfficialAccounts = params['ProtectOfficialAccounts']
|
154
|
+
@ProtectMiniPrograms = params['ProtectMiniPrograms']
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
# CreateBPBrand返回参数结构体
|
159
|
+
class CreateBPBrandResponse < TencentCloud::Common::AbstractModel
|
160
|
+
# @param CompanyId: 企业id
|
161
|
+
# @type CompanyId: Integer
|
162
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
163
|
+
# @type RequestId: String
|
164
|
+
|
165
|
+
attr_accessor :CompanyId, :RequestId
|
166
|
+
|
167
|
+
def initialize(companyid=nil, requestid=nil)
|
168
|
+
@CompanyId = companyid
|
169
|
+
@RequestId = requestid
|
170
|
+
end
|
171
|
+
|
172
|
+
def deserialize(params)
|
173
|
+
@CompanyId = params['CompanyId']
|
174
|
+
@RequestId = params['RequestId']
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
20
178
|
# CreateBPFakeAPPList请求参数结构体
|
21
179
|
class CreateBPFakeAPPListRequest < TencentCloud::Common::AbstractModel
|
22
|
-
# @param FakeAPPs:
|
180
|
+
# @param FakeAPPs: 批量模版
|
23
181
|
# @type FakeAPPs: String
|
24
182
|
|
25
183
|
attr_accessor :FakeAPPs
|
@@ -155,7 +313,7 @@ module TencentCloud
|
|
155
313
|
|
156
314
|
# CreateBPFakeURLs请求参数结构体
|
157
315
|
class CreateBPFakeURLsRequest < TencentCloud::Common::AbstractModel
|
158
|
-
# @param FakeURLs:
|
316
|
+
# @param FakeURLs: 批量模版
|
159
317
|
# @type FakeURLs: String
|
160
318
|
|
161
319
|
attr_accessor :FakeURLs
|
@@ -185,6 +343,661 @@ module TencentCloud
|
|
185
343
|
end
|
186
344
|
end
|
187
345
|
|
346
|
+
# CreateBPWhiteList请求参数结构体
|
347
|
+
class CreateBPWhiteListRequest < TencentCloud::Common::AbstractModel
|
348
|
+
# @param CompanyId: 企业Id
|
349
|
+
# @type CompanyId: Integer
|
350
|
+
# @param WhiteListType: 白名单类型:0-网站 1-应用 2-公众号 3-小程
|
351
|
+
# @type WhiteListType: Integer
|
352
|
+
# @param WhiteLists: 白名单名称
|
353
|
+
# @type WhiteLists: Array
|
354
|
+
|
355
|
+
attr_accessor :CompanyId, :WhiteListType, :WhiteLists
|
356
|
+
|
357
|
+
def initialize(companyid=nil, whitelisttype=nil, whitelists=nil)
|
358
|
+
@CompanyId = companyid
|
359
|
+
@WhiteListType = whitelisttype
|
360
|
+
@WhiteLists = whitelists
|
361
|
+
end
|
362
|
+
|
363
|
+
def deserialize(params)
|
364
|
+
@CompanyId = params['CompanyId']
|
365
|
+
@WhiteListType = params['WhiteListType']
|
366
|
+
@WhiteLists = params['WhiteLists']
|
367
|
+
end
|
368
|
+
end
|
369
|
+
|
370
|
+
# CreateBPWhiteList返回参数结构体
|
371
|
+
class CreateBPWhiteListResponse < TencentCloud::Common::AbstractModel
|
372
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
373
|
+
# @type RequestId: String
|
374
|
+
|
375
|
+
attr_accessor :RequestId
|
376
|
+
|
377
|
+
def initialize(requestid=nil)
|
378
|
+
@RequestId = requestid
|
379
|
+
end
|
380
|
+
|
381
|
+
def deserialize(params)
|
382
|
+
@RequestId = params['RequestId']
|
383
|
+
end
|
384
|
+
end
|
385
|
+
|
386
|
+
# DeleteBPWhiteList请求参数结构体
|
387
|
+
class DeleteBPWhiteListRequest < TencentCloud::Common::AbstractModel
|
388
|
+
# @param WhiteListId: 白名单id
|
389
|
+
# @type WhiteListId: Integer
|
390
|
+
|
391
|
+
attr_accessor :WhiteListId
|
392
|
+
|
393
|
+
def initialize(whitelistid=nil)
|
394
|
+
@WhiteListId = whitelistid
|
395
|
+
end
|
396
|
+
|
397
|
+
def deserialize(params)
|
398
|
+
@WhiteListId = params['WhiteListId']
|
399
|
+
end
|
400
|
+
end
|
401
|
+
|
402
|
+
# DeleteBPWhiteList返回参数结构体
|
403
|
+
class DeleteBPWhiteListResponse < TencentCloud::Common::AbstractModel
|
404
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
405
|
+
# @type RequestId: String
|
406
|
+
|
407
|
+
attr_accessor :RequestId
|
408
|
+
|
409
|
+
def initialize(requestid=nil)
|
410
|
+
@RequestId = requestid
|
411
|
+
end
|
412
|
+
|
413
|
+
def deserialize(params)
|
414
|
+
@RequestId = params['RequestId']
|
415
|
+
end
|
416
|
+
end
|
417
|
+
|
418
|
+
# DescribeBPBrands请求参数结构体
|
419
|
+
class DescribeBPBrandsRequest < TencentCloud::Common::AbstractModel
|
420
|
+
|
421
|
+
|
422
|
+
def initialize()
|
423
|
+
end
|
424
|
+
|
425
|
+
def deserialize(params)
|
426
|
+
end
|
427
|
+
end
|
428
|
+
|
429
|
+
# DescribeBPBrands返回参数结构体
|
430
|
+
class DescribeBPBrandsResponse < TencentCloud::Common::AbstractModel
|
431
|
+
# @param Brands: 品牌信息
|
432
|
+
# @type Brands: Array
|
433
|
+
# @param NoticeStatus: 品牌审核通知栏状态:0 不显示 1 显示
|
434
|
+
# @type NoticeStatus: Integer
|
435
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
436
|
+
# @type RequestId: String
|
437
|
+
|
438
|
+
attr_accessor :Brands, :NoticeStatus, :RequestId
|
439
|
+
|
440
|
+
def initialize(brands=nil, noticestatus=nil, requestid=nil)
|
441
|
+
@Brands = brands
|
442
|
+
@NoticeStatus = noticestatus
|
443
|
+
@RequestId = requestid
|
444
|
+
end
|
445
|
+
|
446
|
+
def deserialize(params)
|
447
|
+
unless params['Brands'].nil?
|
448
|
+
@Brands = []
|
449
|
+
params['Brands'].each do |i|
|
450
|
+
branddata_tmp = BrandData.new
|
451
|
+
branddata_tmp.deserialize(i)
|
452
|
+
@Brands << branddata_tmp
|
453
|
+
end
|
454
|
+
end
|
455
|
+
@NoticeStatus = params['NoticeStatus']
|
456
|
+
@RequestId = params['RequestId']
|
457
|
+
end
|
458
|
+
end
|
459
|
+
|
460
|
+
# DescribeBPFakeAPPList请求参数结构体
|
461
|
+
class DescribeBPFakeAPPListRequest < TencentCloud::Common::AbstractModel
|
462
|
+
# @param Filters: 过滤参数
|
463
|
+
# @type Filters: Array
|
464
|
+
# @param PageSize: 页数
|
465
|
+
# @type PageSize: Integer
|
466
|
+
# @param PageNumber: 页码
|
467
|
+
# @type PageNumber: Integer
|
468
|
+
|
469
|
+
attr_accessor :Filters, :PageSize, :PageNumber
|
470
|
+
|
471
|
+
def initialize(filters=nil, pagesize=nil, pagenumber=nil)
|
472
|
+
@Filters = filters
|
473
|
+
@PageSize = pagesize
|
474
|
+
@PageNumber = pagenumber
|
475
|
+
end
|
476
|
+
|
477
|
+
def deserialize(params)
|
478
|
+
unless params['Filters'].nil?
|
479
|
+
@Filters = []
|
480
|
+
params['Filters'].each do |i|
|
481
|
+
filter_tmp = Filter.new
|
482
|
+
filter_tmp.deserialize(i)
|
483
|
+
@Filters << filter_tmp
|
484
|
+
end
|
485
|
+
end
|
486
|
+
@PageSize = params['PageSize']
|
487
|
+
@PageNumber = params['PageNumber']
|
488
|
+
end
|
489
|
+
end
|
490
|
+
|
491
|
+
# DescribeBPFakeAPPList返回参数结构体
|
492
|
+
class DescribeBPFakeAPPListResponse < TencentCloud::Common::AbstractModel
|
493
|
+
# @param FakeAPPList: 仿冒应用列表
|
494
|
+
# @type FakeAPPList: Array
|
495
|
+
# @param TotalCount: 仿冒应用总数
|
496
|
+
# @type TotalCount: Integer
|
497
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
498
|
+
# @type RequestId: String
|
499
|
+
|
500
|
+
attr_accessor :FakeAPPList, :TotalCount, :RequestId
|
501
|
+
|
502
|
+
def initialize(fakeapplist=nil, totalcount=nil, requestid=nil)
|
503
|
+
@FakeAPPList = fakeapplist
|
504
|
+
@TotalCount = totalcount
|
505
|
+
@RequestId = requestid
|
506
|
+
end
|
507
|
+
|
508
|
+
def deserialize(params)
|
509
|
+
unless params['FakeAPPList'].nil?
|
510
|
+
@FakeAPPList = []
|
511
|
+
params['FakeAPPList'].each do |i|
|
512
|
+
fakeappdata_tmp = FakeAPPData.new
|
513
|
+
fakeappdata_tmp.deserialize(i)
|
514
|
+
@FakeAPPList << fakeappdata_tmp
|
515
|
+
end
|
516
|
+
end
|
517
|
+
@TotalCount = params['TotalCount']
|
518
|
+
@RequestId = params['RequestId']
|
519
|
+
end
|
520
|
+
end
|
521
|
+
|
522
|
+
# DescribeBPFakeURLs请求参数结构体
|
523
|
+
class DescribeBPFakeURLsRequest < TencentCloud::Common::AbstractModel
|
524
|
+
# @param Filters: 过滤参数
|
525
|
+
# @type Filters: Array
|
526
|
+
# @param PageSize: 页数
|
527
|
+
# @type PageSize: Integer
|
528
|
+
# @param PageNumber: 页码
|
529
|
+
# @type PageNumber: Integer
|
530
|
+
|
531
|
+
attr_accessor :Filters, :PageSize, :PageNumber
|
532
|
+
|
533
|
+
def initialize(filters=nil, pagesize=nil, pagenumber=nil)
|
534
|
+
@Filters = filters
|
535
|
+
@PageSize = pagesize
|
536
|
+
@PageNumber = pagenumber
|
537
|
+
end
|
538
|
+
|
539
|
+
def deserialize(params)
|
540
|
+
unless params['Filters'].nil?
|
541
|
+
@Filters = []
|
542
|
+
params['Filters'].each do |i|
|
543
|
+
filter_tmp = Filter.new
|
544
|
+
filter_tmp.deserialize(i)
|
545
|
+
@Filters << filter_tmp
|
546
|
+
end
|
547
|
+
end
|
548
|
+
@PageSize = params['PageSize']
|
549
|
+
@PageNumber = params['PageNumber']
|
550
|
+
end
|
551
|
+
end
|
552
|
+
|
553
|
+
# DescribeBPFakeURLs返回参数结构体
|
554
|
+
class DescribeBPFakeURLsResponse < TencentCloud::Common::AbstractModel
|
555
|
+
# @param FakeURLs: 仿冒网址列表
|
556
|
+
# @type FakeURLs: Array
|
557
|
+
# @param TotalCount: 仿冒网址总数
|
558
|
+
# @type TotalCount: Integer
|
559
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
560
|
+
# @type RequestId: String
|
561
|
+
|
562
|
+
attr_accessor :FakeURLs, :TotalCount, :RequestId
|
563
|
+
|
564
|
+
def initialize(fakeurls=nil, totalcount=nil, requestid=nil)
|
565
|
+
@FakeURLs = fakeurls
|
566
|
+
@TotalCount = totalcount
|
567
|
+
@RequestId = requestid
|
568
|
+
end
|
569
|
+
|
570
|
+
def deserialize(params)
|
571
|
+
unless params['FakeURLs'].nil?
|
572
|
+
@FakeURLs = []
|
573
|
+
params['FakeURLs'].each do |i|
|
574
|
+
fakeurldata_tmp = FakeURLData.new
|
575
|
+
fakeurldata_tmp.deserialize(i)
|
576
|
+
@FakeURLs << fakeurldata_tmp
|
577
|
+
end
|
578
|
+
end
|
579
|
+
@TotalCount = params['TotalCount']
|
580
|
+
@RequestId = params['RequestId']
|
581
|
+
end
|
582
|
+
end
|
583
|
+
|
584
|
+
# DescribeBPWhiteLists请求参数结构体
|
585
|
+
class DescribeBPWhiteListsRequest < TencentCloud::Common::AbstractModel
|
586
|
+
# @param Filters: 过滤参数
|
587
|
+
# @type Filters: Array
|
588
|
+
# @param PageSize: 页数
|
589
|
+
# @type PageSize: Integer
|
590
|
+
# @param PageNumber: 页码
|
591
|
+
# @type PageNumber: Integer
|
592
|
+
|
593
|
+
attr_accessor :Filters, :PageSize, :PageNumber
|
594
|
+
|
595
|
+
def initialize(filters=nil, pagesize=nil, pagenumber=nil)
|
596
|
+
@Filters = filters
|
597
|
+
@PageSize = pagesize
|
598
|
+
@PageNumber = pagenumber
|
599
|
+
end
|
600
|
+
|
601
|
+
def deserialize(params)
|
602
|
+
unless params['Filters'].nil?
|
603
|
+
@Filters = []
|
604
|
+
params['Filters'].each do |i|
|
605
|
+
filter_tmp = Filter.new
|
606
|
+
filter_tmp.deserialize(i)
|
607
|
+
@Filters << filter_tmp
|
608
|
+
end
|
609
|
+
end
|
610
|
+
@PageSize = params['PageSize']
|
611
|
+
@PageNumber = params['PageNumber']
|
612
|
+
end
|
613
|
+
end
|
614
|
+
|
615
|
+
# DescribeBPWhiteLists返回参数结构体
|
616
|
+
class DescribeBPWhiteListsResponse < TencentCloud::Common::AbstractModel
|
617
|
+
# @param WhiteLists: 白名单列表
|
618
|
+
# @type WhiteLists: Array
|
619
|
+
# @param TotalCount: 白名单总数
|
620
|
+
# @type TotalCount: Integer
|
621
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
622
|
+
# @type RequestId: String
|
623
|
+
|
624
|
+
attr_accessor :WhiteLists, :TotalCount, :RequestId
|
625
|
+
|
626
|
+
def initialize(whitelists=nil, totalcount=nil, requestid=nil)
|
627
|
+
@WhiteLists = whitelists
|
628
|
+
@TotalCount = totalcount
|
629
|
+
@RequestId = requestid
|
630
|
+
end
|
631
|
+
|
632
|
+
def deserialize(params)
|
633
|
+
unless params['WhiteLists'].nil?
|
634
|
+
@WhiteLists = []
|
635
|
+
params['WhiteLists'].each do |i|
|
636
|
+
whitelistdata_tmp = WhiteListData.new
|
637
|
+
whitelistdata_tmp.deserialize(i)
|
638
|
+
@WhiteLists << whitelistdata_tmp
|
639
|
+
end
|
640
|
+
end
|
641
|
+
@TotalCount = params['TotalCount']
|
642
|
+
@RequestId = params['RequestId']
|
643
|
+
end
|
644
|
+
end
|
645
|
+
|
646
|
+
# 仿冒应用数据
|
647
|
+
class FakeAPPData < TencentCloud::Common::AbstractModel
|
648
|
+
# @param FakeAPPId: 仿冒应用id
|
649
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
650
|
+
# @type FakeAPPId: Integer
|
651
|
+
# @param BrandName: 品牌名称
|
652
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
653
|
+
# @type BrandName: String
|
654
|
+
# @param Origin: 仿冒来源:0-系统检测 1-人工举报
|
655
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
656
|
+
# @type Origin: Integer
|
657
|
+
# @param FakeAPPName: 仿冒应用名称
|
658
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
659
|
+
# @type FakeAPPName: String
|
660
|
+
# @param FakeAPPPackageName: 仿冒应用包名
|
661
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
662
|
+
# @type FakeAPPPackageName: String
|
663
|
+
# @param FakeAPPCert: 仿冒应用证书
|
664
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
665
|
+
# @type FakeAPPCert: String
|
666
|
+
# @param FakeAPPSize: 仿冒应用大小
|
667
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
668
|
+
# @type FakeAPPSize: String
|
669
|
+
# @param Heat: 热度
|
670
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
671
|
+
# @type Heat: Integer
|
672
|
+
# @param BlockStatus: 协助处置状态:0-未处置 1-处置中 2-处置成功 3-处置失败
|
673
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
674
|
+
# @type BlockStatus: Integer
|
675
|
+
# @param BlockNote: 协助处置状态说明
|
676
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
677
|
+
# @type BlockNote: String
|
678
|
+
# @param OfflineStatus: 关停状态:0-未关停 1-关停中 2-关停成功 3-关停失败 4-重复上架
|
679
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
680
|
+
# @type OfflineStatus: Integer
|
681
|
+
# @param OfflineNote: 关停状态说明
|
682
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
683
|
+
# @type OfflineNote: String
|
684
|
+
# @param DownloadWay: app来源
|
685
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
686
|
+
# @type DownloadWay: String
|
687
|
+
# @param InsertTime: 新增时间
|
688
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
689
|
+
# @type InsertTime: String
|
690
|
+
# @param DownloadCosURL: App下载链接
|
691
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
692
|
+
# @type DownloadCosURL: String
|
693
|
+
# @param CertificationStatus: 资质证明状态:0-不可用 1-可用
|
694
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
695
|
+
# @type CertificationStatus: Integer
|
696
|
+
|
697
|
+
attr_accessor :FakeAPPId, :BrandName, :Origin, :FakeAPPName, :FakeAPPPackageName, :FakeAPPCert, :FakeAPPSize, :Heat, :BlockStatus, :BlockNote, :OfflineStatus, :OfflineNote, :DownloadWay, :InsertTime, :DownloadCosURL, :CertificationStatus
|
698
|
+
|
699
|
+
def initialize(fakeappid=nil, brandname=nil, origin=nil, fakeappname=nil, fakeapppackagename=nil, fakeappcert=nil, fakeappsize=nil, heat=nil, blockstatus=nil, blocknote=nil, offlinestatus=nil, offlinenote=nil, downloadway=nil, inserttime=nil, downloadcosurl=nil, certificationstatus=nil)
|
700
|
+
@FakeAPPId = fakeappid
|
701
|
+
@BrandName = brandname
|
702
|
+
@Origin = origin
|
703
|
+
@FakeAPPName = fakeappname
|
704
|
+
@FakeAPPPackageName = fakeapppackagename
|
705
|
+
@FakeAPPCert = fakeappcert
|
706
|
+
@FakeAPPSize = fakeappsize
|
707
|
+
@Heat = heat
|
708
|
+
@BlockStatus = blockstatus
|
709
|
+
@BlockNote = blocknote
|
710
|
+
@OfflineStatus = offlinestatus
|
711
|
+
@OfflineNote = offlinenote
|
712
|
+
@DownloadWay = downloadway
|
713
|
+
@InsertTime = inserttime
|
714
|
+
@DownloadCosURL = downloadcosurl
|
715
|
+
@CertificationStatus = certificationstatus
|
716
|
+
end
|
717
|
+
|
718
|
+
def deserialize(params)
|
719
|
+
@FakeAPPId = params['FakeAPPId']
|
720
|
+
@BrandName = params['BrandName']
|
721
|
+
@Origin = params['Origin']
|
722
|
+
@FakeAPPName = params['FakeAPPName']
|
723
|
+
@FakeAPPPackageName = params['FakeAPPPackageName']
|
724
|
+
@FakeAPPCert = params['FakeAPPCert']
|
725
|
+
@FakeAPPSize = params['FakeAPPSize']
|
726
|
+
@Heat = params['Heat']
|
727
|
+
@BlockStatus = params['BlockStatus']
|
728
|
+
@BlockNote = params['BlockNote']
|
729
|
+
@OfflineStatus = params['OfflineStatus']
|
730
|
+
@OfflineNote = params['OfflineNote']
|
731
|
+
@DownloadWay = params['DownloadWay']
|
732
|
+
@InsertTime = params['InsertTime']
|
733
|
+
@DownloadCosURL = params['DownloadCosURL']
|
734
|
+
@CertificationStatus = params['CertificationStatus']
|
735
|
+
end
|
736
|
+
end
|
737
|
+
|
738
|
+
# 仿冒网址数据
|
739
|
+
class FakeURLData < TencentCloud::Common::AbstractModel
|
740
|
+
# @param FakeURLId: 仿冒网址id
|
741
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
742
|
+
# @type FakeURLId: Integer
|
743
|
+
# @param BrandName: 品牌名称
|
744
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
745
|
+
# @type BrandName: String
|
746
|
+
# @param Origin: 仿冒来源:0-系统检测 1-人工举报
|
747
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
748
|
+
# @type Origin: Integer
|
749
|
+
# @param FakeURL: 仿冒网址
|
750
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
751
|
+
# @type FakeURL: String
|
752
|
+
# @param Heat: 热度
|
753
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
754
|
+
# @type Heat: Integer
|
755
|
+
# @param BlockStatus: 协助处置状态:0-未处置 1-处置中 2-处置成功 3-处置失败
|
756
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
757
|
+
# @type BlockStatus: Integer
|
758
|
+
# @param BlockNote: 协助处置状态说明
|
759
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
760
|
+
# @type BlockNote: String
|
761
|
+
# @param OfflineStatus: 关停状态:0-未关停 1-关停中 2-关停成功 3-关停失败 4-重复上架
|
762
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
763
|
+
# @type OfflineStatus: Integer
|
764
|
+
# @param OfflineNote: 关停状态说明
|
765
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
766
|
+
# @type OfflineNote: String
|
767
|
+
# @param IP: ip地址
|
768
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
769
|
+
# @type IP: String
|
770
|
+
# @param IPLocation: ip地理位置
|
771
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
772
|
+
# @type IPLocation: String
|
773
|
+
# @param WebCompany: 网站所属单位
|
774
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
775
|
+
# @type WebCompany: String
|
776
|
+
# @param WebAttribute: 网站性质
|
777
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
778
|
+
# @type WebAttribute: String
|
779
|
+
# @param WebName: 网站名称
|
780
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
781
|
+
# @type WebName: String
|
782
|
+
# @param WebICP: 备案号
|
783
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
784
|
+
# @type WebICP: String
|
785
|
+
# @param WebCreateTime: 网站创建时间
|
786
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
787
|
+
# @type WebCreateTime: String
|
788
|
+
# @param WebExpireTime: 网站过期时间
|
789
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
790
|
+
# @type WebExpireTime: String
|
791
|
+
# @param InsertTime: 新增时间
|
792
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
793
|
+
# @type InsertTime: String
|
794
|
+
# @param CertificationStatus: 资质证明状态:0-不可用 1-可用
|
795
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
796
|
+
# @type CertificationStatus: Integer
|
797
|
+
|
798
|
+
attr_accessor :FakeURLId, :BrandName, :Origin, :FakeURL, :Heat, :BlockStatus, :BlockNote, :OfflineStatus, :OfflineNote, :IP, :IPLocation, :WebCompany, :WebAttribute, :WebName, :WebICP, :WebCreateTime, :WebExpireTime, :InsertTime, :CertificationStatus
|
799
|
+
|
800
|
+
def initialize(fakeurlid=nil, brandname=nil, origin=nil, fakeurl=nil, heat=nil, blockstatus=nil, blocknote=nil, offlinestatus=nil, offlinenote=nil, ip=nil, iplocation=nil, webcompany=nil, webattribute=nil, webname=nil, webicp=nil, webcreatetime=nil, webexpiretime=nil, inserttime=nil, certificationstatus=nil)
|
801
|
+
@FakeURLId = fakeurlid
|
802
|
+
@BrandName = brandname
|
803
|
+
@Origin = origin
|
804
|
+
@FakeURL = fakeurl
|
805
|
+
@Heat = heat
|
806
|
+
@BlockStatus = blockstatus
|
807
|
+
@BlockNote = blocknote
|
808
|
+
@OfflineStatus = offlinestatus
|
809
|
+
@OfflineNote = offlinenote
|
810
|
+
@IP = ip
|
811
|
+
@IPLocation = iplocation
|
812
|
+
@WebCompany = webcompany
|
813
|
+
@WebAttribute = webattribute
|
814
|
+
@WebName = webname
|
815
|
+
@WebICP = webicp
|
816
|
+
@WebCreateTime = webcreatetime
|
817
|
+
@WebExpireTime = webexpiretime
|
818
|
+
@InsertTime = inserttime
|
819
|
+
@CertificationStatus = certificationstatus
|
820
|
+
end
|
821
|
+
|
822
|
+
def deserialize(params)
|
823
|
+
@FakeURLId = params['FakeURLId']
|
824
|
+
@BrandName = params['BrandName']
|
825
|
+
@Origin = params['Origin']
|
826
|
+
@FakeURL = params['FakeURL']
|
827
|
+
@Heat = params['Heat']
|
828
|
+
@BlockStatus = params['BlockStatus']
|
829
|
+
@BlockNote = params['BlockNote']
|
830
|
+
@OfflineStatus = params['OfflineStatus']
|
831
|
+
@OfflineNote = params['OfflineNote']
|
832
|
+
@IP = params['IP']
|
833
|
+
@IPLocation = params['IPLocation']
|
834
|
+
@WebCompany = params['WebCompany']
|
835
|
+
@WebAttribute = params['WebAttribute']
|
836
|
+
@WebName = params['WebName']
|
837
|
+
@WebICP = params['WebICP']
|
838
|
+
@WebCreateTime = params['WebCreateTime']
|
839
|
+
@WebExpireTime = params['WebExpireTime']
|
840
|
+
@InsertTime = params['InsertTime']
|
841
|
+
@CertificationStatus = params['CertificationStatus']
|
842
|
+
end
|
843
|
+
end
|
844
|
+
|
845
|
+
# 过滤参数
|
846
|
+
class Filter < TencentCloud::Common::AbstractModel
|
847
|
+
# @param Name: 过滤参数键
|
848
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
849
|
+
# @type Name: String
|
850
|
+
# @param Value: 过滤参数值
|
851
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
852
|
+
# @type Value: String
|
853
|
+
|
854
|
+
attr_accessor :Name, :Value
|
855
|
+
|
856
|
+
def initialize(name=nil, value=nil)
|
857
|
+
@Name = name
|
858
|
+
@Value = value
|
859
|
+
end
|
860
|
+
|
861
|
+
def deserialize(params)
|
862
|
+
@Name = params['Name']
|
863
|
+
@Value = params['Value']
|
864
|
+
end
|
865
|
+
end
|
866
|
+
|
867
|
+
# 服务响应数据
|
868
|
+
class ServiceData < TencentCloud::Common::AbstractModel
|
869
|
+
# @param ProtectURLCount: 网站保护关联资产数
|
870
|
+
# @type ProtectURLCount: Integer
|
871
|
+
# @param ProtectURLExpireTime: 网站保护服务到期时间
|
872
|
+
# @type ProtectURLExpireTime: String
|
873
|
+
# @param ProtectAPPCount: 应用保护关联资产数
|
874
|
+
# @type ProtectAPPCount: Integer
|
875
|
+
# @param ProtectAPPExpireTime: 应用保护服务到期时间
|
876
|
+
# @type ProtectAPPExpireTime: String
|
877
|
+
# @param ProtectOfficialAccountCount: 公众号保护关联资产数
|
878
|
+
# @type ProtectOfficialAccountCount: Integer
|
879
|
+
# @param ProtectOfficialAccountExpireTime: 公众号保护服务到期时间
|
880
|
+
# @type ProtectOfficialAccountExpireTime: String
|
881
|
+
# @param ProtectMiniProgramCount: 小程序保护关联资产数
|
882
|
+
# @type ProtectMiniProgramCount: Integer
|
883
|
+
# @param ProtectMiniProgramExpireTime: 小程序保护服务到期时间
|
884
|
+
# @type ProtectMiniProgramExpireTime: String
|
885
|
+
# @param OfflineCount: 关停下架使用次数
|
886
|
+
# @type OfflineCount: Integer
|
887
|
+
|
888
|
+
attr_accessor :ProtectURLCount, :ProtectURLExpireTime, :ProtectAPPCount, :ProtectAPPExpireTime, :ProtectOfficialAccountCount, :ProtectOfficialAccountExpireTime, :ProtectMiniProgramCount, :ProtectMiniProgramExpireTime, :OfflineCount
|
889
|
+
|
890
|
+
def initialize(protecturlcount=nil, protecturlexpiretime=nil, protectappcount=nil, protectappexpiretime=nil, protectofficialaccountcount=nil, protectofficialaccountexpiretime=nil, protectminiprogramcount=nil, protectminiprogramexpiretime=nil, offlinecount=nil)
|
891
|
+
@ProtectURLCount = protecturlcount
|
892
|
+
@ProtectURLExpireTime = protecturlexpiretime
|
893
|
+
@ProtectAPPCount = protectappcount
|
894
|
+
@ProtectAPPExpireTime = protectappexpiretime
|
895
|
+
@ProtectOfficialAccountCount = protectofficialaccountcount
|
896
|
+
@ProtectOfficialAccountExpireTime = protectofficialaccountexpiretime
|
897
|
+
@ProtectMiniProgramCount = protectminiprogramcount
|
898
|
+
@ProtectMiniProgramExpireTime = protectminiprogramexpiretime
|
899
|
+
@OfflineCount = offlinecount
|
900
|
+
end
|
901
|
+
|
902
|
+
def deserialize(params)
|
903
|
+
@ProtectURLCount = params['ProtectURLCount']
|
904
|
+
@ProtectURLExpireTime = params['ProtectURLExpireTime']
|
905
|
+
@ProtectAPPCount = params['ProtectAPPCount']
|
906
|
+
@ProtectAPPExpireTime = params['ProtectAPPExpireTime']
|
907
|
+
@ProtectOfficialAccountCount = params['ProtectOfficialAccountCount']
|
908
|
+
@ProtectOfficialAccountExpireTime = params['ProtectOfficialAccountExpireTime']
|
909
|
+
@ProtectMiniProgramCount = params['ProtectMiniProgramCount']
|
910
|
+
@ProtectMiniProgramExpireTime = params['ProtectMiniProgramExpireTime']
|
911
|
+
@OfflineCount = params['OfflineCount']
|
912
|
+
end
|
913
|
+
end
|
914
|
+
|
915
|
+
# 商标响应数据
|
916
|
+
class TrademarkData < TencentCloud::Common::AbstractModel
|
917
|
+
# @param Trademark: 商标证明
|
918
|
+
# @type Trademark: String
|
919
|
+
# @param TrademarkStatus: 商标审核状态
|
920
|
+
# @type TrademarkStatus: Integer
|
921
|
+
# @param TrademarkNote: 商标审核状态说明
|
922
|
+
# @type TrademarkNote: String
|
923
|
+
# @param TrademarkId: 商标id
|
924
|
+
# @type TrademarkId: Integer
|
925
|
+
# @param Transfer: 商标转让书
|
926
|
+
# @type Transfer: String
|
927
|
+
# @param TransferStatus: 商标转让书审核状态
|
928
|
+
# @type TransferStatus: Integer
|
929
|
+
# @param TransferNote: 商标转让书审核状态说明
|
930
|
+
# @type TransferNote: String
|
931
|
+
# @param TrademarkName: 商标名称
|
932
|
+
# @type TrademarkName: String
|
933
|
+
|
934
|
+
attr_accessor :Trademark, :TrademarkStatus, :TrademarkNote, :TrademarkId, :Transfer, :TransferStatus, :TransferNote, :TrademarkName
|
935
|
+
|
936
|
+
def initialize(trademark=nil, trademarkstatus=nil, trademarknote=nil, trademarkid=nil, transfer=nil, transferstatus=nil, transfernote=nil, trademarkname=nil)
|
937
|
+
@Trademark = trademark
|
938
|
+
@TrademarkStatus = trademarkstatus
|
939
|
+
@TrademarkNote = trademarknote
|
940
|
+
@TrademarkId = trademarkid
|
941
|
+
@Transfer = transfer
|
942
|
+
@TransferStatus = transferstatus
|
943
|
+
@TransferNote = transfernote
|
944
|
+
@TrademarkName = trademarkname
|
945
|
+
end
|
946
|
+
|
947
|
+
def deserialize(params)
|
948
|
+
@Trademark = params['Trademark']
|
949
|
+
@TrademarkStatus = params['TrademarkStatus']
|
950
|
+
@TrademarkNote = params['TrademarkNote']
|
951
|
+
@TrademarkId = params['TrademarkId']
|
952
|
+
@Transfer = params['Transfer']
|
953
|
+
@TransferStatus = params['TransferStatus']
|
954
|
+
@TransferNote = params['TransferNote']
|
955
|
+
@TrademarkName = params['TrademarkName']
|
956
|
+
end
|
957
|
+
end
|
958
|
+
|
959
|
+
# 白名单数据
|
960
|
+
class WhiteListData < TencentCloud::Common::AbstractModel
|
961
|
+
# @param WhiteListId: 白名单id
|
962
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
963
|
+
# @type WhiteListId: Integer
|
964
|
+
# @param CompanyId: 企业id
|
965
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
966
|
+
# @type CompanyId: Integer
|
967
|
+
# @param BrandName: 品牌名称
|
968
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
969
|
+
# @type BrandName: String
|
970
|
+
# @param AssetsType: 资产类型:0-网站 1-app 2-公众号 3-小程序
|
971
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
972
|
+
# @type AssetsType: Integer
|
973
|
+
# @param WhiteList: 白名单
|
974
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
975
|
+
# @type WhiteList: String
|
976
|
+
# @param InsertTime: 新增时间
|
977
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
978
|
+
# @type InsertTime: String
|
979
|
+
|
980
|
+
attr_accessor :WhiteListId, :CompanyId, :BrandName, :AssetsType, :WhiteList, :InsertTime
|
981
|
+
|
982
|
+
def initialize(whitelistid=nil, companyid=nil, brandname=nil, assetstype=nil, whitelist=nil, inserttime=nil)
|
983
|
+
@WhiteListId = whitelistid
|
984
|
+
@CompanyId = companyid
|
985
|
+
@BrandName = brandname
|
986
|
+
@AssetsType = assetstype
|
987
|
+
@WhiteList = whitelist
|
988
|
+
@InsertTime = inserttime
|
989
|
+
end
|
990
|
+
|
991
|
+
def deserialize(params)
|
992
|
+
@WhiteListId = params['WhiteListId']
|
993
|
+
@CompanyId = params['CompanyId']
|
994
|
+
@BrandName = params['BrandName']
|
995
|
+
@AssetsType = params['AssetsType']
|
996
|
+
@WhiteList = params['WhiteList']
|
997
|
+
@InsertTime = params['InsertTime']
|
998
|
+
end
|
999
|
+
end
|
1000
|
+
|
188
1001
|
end
|
189
1002
|
end
|
190
1003
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.511
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|