tencentcloud-sdk-bma 3.0.427 → 3.0.429
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 +24 -0
- data/lib/v20210624/models.rb +171 -99
- 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: d2a19e3f934a8152eb823914ca27cf8620e76607
|
4
|
+
data.tar.gz: 3525251944fc932114e1b1024dc4241fce880489
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1896596ab835bd77199d1dcae7a98f546bf8b7cb2999addd4feb515ccd2b4403734d3fa5eca6f5a42ffd33f237cd0860d08b10b06cd104b82bf2940b15802249
|
7
|
+
data.tar.gz: d8337cab186715bdac60d5f2de7a7ee48136c70f92c8d492cae45b821fd32db1077518ee3d2092a568dc1e5c4168a434c6adb0d0762b945ddc4442e84e17e3c0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.429
|
data/lib/v20210624/client.rb
CHANGED
@@ -197,6 +197,30 @@ module TencentCloud
|
|
197
197
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
198
|
end
|
199
199
|
|
200
|
+
# 版权保护-新建取证接口
|
201
|
+
|
202
|
+
# @param request: Request instance for CreateCRObtain.
|
203
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::CreateCRObtainRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::CreateCRObtainResponse`
|
205
|
+
def CreateCRObtain(request)
|
206
|
+
body = send_request('CreateCRObtain', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = CreateCRObtainResponse.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
|
+
|
200
224
|
# 版权保护-新建发函接口
|
201
225
|
|
202
226
|
# @param request: Request instance for CreateCRRight.
|
data/lib/v20210624/models.rb
CHANGED
@@ -19,19 +19,19 @@ module TencentCloud
|
|
19
19
|
module V20210624
|
20
20
|
# 商标信息
|
21
21
|
class BrandData < TencentCloud::Common::AbstractModel
|
22
|
-
# @param BrandName:
|
22
|
+
# @param BrandName: 商标名称
|
23
23
|
# @type BrandName: String
|
24
|
-
# @param BrandCertificateName:
|
24
|
+
# @param BrandCertificateName: 商标证明
|
25
25
|
# @type BrandCertificateName: String
|
26
|
-
# @param BrandStatus:
|
26
|
+
# @param BrandStatus: 商标审核状态 1-审核中 2-审核未通过 3-审核通过
|
27
27
|
# @type BrandStatus: Integer
|
28
|
-
# @param BrandNote:
|
28
|
+
# @param BrandNote: 审核说明
|
29
29
|
# @type BrandNote: String
|
30
|
-
# @param TransferName:
|
30
|
+
# @param TransferName: 商标转让证明
|
31
31
|
# @type TransferName: String
|
32
|
-
# @param TransferStatus:
|
32
|
+
# @param TransferStatus: 商标转让证明审核状态
|
33
33
|
# @type TransferStatus: Integer
|
34
|
-
# @param TransferNote:
|
34
|
+
# @param TransferNote: 审核说明 1-审核中 2-审核未通过 3-审核通过
|
35
35
|
# @type TransferNote: String
|
36
36
|
|
37
37
|
attr_accessor :BrandName, :BrandCertificateName, :BrandStatus, :BrandNote, :TransferName, :TransferStatus, :TransferNote
|
@@ -59,13 +59,13 @@ module TencentCloud
|
|
59
59
|
|
60
60
|
# CreateBPFakeURL请求参数结构体
|
61
61
|
class CreateBPFakeURLRequest < TencentCloud::Common::AbstractModel
|
62
|
-
# @param ProtectURLId:
|
62
|
+
# @param ProtectURLId: 保护网址ID
|
63
63
|
# @type ProtectURLId: Integer
|
64
|
-
# @param FakeURL:
|
64
|
+
# @param FakeURL: 仿冒网址
|
65
65
|
# @type FakeURL: String
|
66
|
-
# @param SnapshotNames:
|
66
|
+
# @param SnapshotNames: 截图
|
67
67
|
# @type SnapshotNames: Array
|
68
|
-
# @param Note:
|
68
|
+
# @param Note: 举报说明
|
69
69
|
# @type Note: String
|
70
70
|
|
71
71
|
attr_accessor :ProtectURLId, :FakeURL, :SnapshotNames, :Note
|
@@ -103,7 +103,7 @@ module TencentCloud
|
|
103
103
|
|
104
104
|
# CreateBPFalseTicket请求参数结构体
|
105
105
|
class CreateBPFalseTicketRequest < TencentCloud::Common::AbstractModel
|
106
|
-
# @param FakeURL:
|
106
|
+
# @param FakeURL: 仿冒网址
|
107
107
|
# @type FakeURL: String
|
108
108
|
|
109
109
|
attr_accessor :FakeURL
|
@@ -135,13 +135,13 @@ module TencentCloud
|
|
135
135
|
|
136
136
|
# CreateBPOfflineAttachment请求参数结构体
|
137
137
|
class CreateBPOfflineAttachmentRequest < TencentCloud::Common::AbstractModel
|
138
|
-
# @param BrandName:
|
138
|
+
# @param BrandName: 品牌名字
|
139
139
|
# @type BrandName: String
|
140
|
-
# @param BrandCertificateName:
|
140
|
+
# @param BrandCertificateName: 商标证明
|
141
141
|
# @type BrandCertificateName: String
|
142
|
-
# @param TransferName:
|
142
|
+
# @param TransferName: 商标转让证明
|
143
143
|
# @type TransferName: String
|
144
|
-
# @param AuthorizationName:
|
144
|
+
# @param AuthorizationName: 授权书
|
145
145
|
# @type AuthorizationName: String
|
146
146
|
|
147
147
|
attr_accessor :BrandName, :BrandCertificateName, :TransferName, :AuthorizationName
|
@@ -179,7 +179,7 @@ module TencentCloud
|
|
179
179
|
|
180
180
|
# CreateBPOfflineTicket请求参数结构体
|
181
181
|
class CreateBPOfflineTicketRequest < TencentCloud::Common::AbstractModel
|
182
|
-
# @param FakeURLId:
|
182
|
+
# @param FakeURLId: 仿冒网址ID
|
183
183
|
# @type FakeURLId: Integer
|
184
184
|
|
185
185
|
attr_accessor :FakeURLId
|
@@ -211,15 +211,15 @@ module TencentCloud
|
|
211
211
|
|
212
212
|
# CreateBPProtectURLs请求参数结构体
|
213
213
|
class CreateBPProtectURLsRequest < TencentCloud::Common::AbstractModel
|
214
|
-
# @param CompanyName:
|
214
|
+
# @param CompanyName: 企业名称
|
215
215
|
# @type CompanyName: String
|
216
|
-
# @param Phone:
|
216
|
+
# @param Phone: 电话号码
|
217
217
|
# @type Phone: String
|
218
|
-
# @param LicenseName:
|
218
|
+
# @param LicenseName: 营业执照
|
219
219
|
# @type LicenseName: String
|
220
|
-
# @param ProtectURLs:
|
220
|
+
# @param ProtectURLs: 保护网站
|
221
221
|
# @type ProtectURLs: Array
|
222
|
-
# @param ProtectWebs:
|
222
|
+
# @param ProtectWebs: 网站名称
|
223
223
|
# @type ProtectWebs: Array
|
224
224
|
|
225
225
|
attr_accessor :CompanyName, :Phone, :LicenseName, :ProtectURLs, :ProtectWebs
|
@@ -425,6 +425,78 @@ module TencentCloud
|
|
425
425
|
end
|
426
426
|
end
|
427
427
|
|
428
|
+
# CreateCRObtain请求参数结构体
|
429
|
+
class CreateCRObtainRequest < TencentCloud::Common::AbstractModel
|
430
|
+
# @param WorkId: 已存证的作品ID
|
431
|
+
# @type WorkId: Integer
|
432
|
+
# @param TortUrl: 侵权链接
|
433
|
+
# @type TortUrl: String
|
434
|
+
# @param ObtainType: 取证类型 1-网页取证 2-过程取证
|
435
|
+
# @type ObtainType: Integer
|
436
|
+
# @param WorkTitle: 侵权标题
|
437
|
+
# @type WorkTitle: String
|
438
|
+
# @param TortPlat: 侵权平台
|
439
|
+
# @type TortPlat: String
|
440
|
+
# @param ObtainDuration: 过程取证的取证时长 6-300分钟
|
441
|
+
# @type ObtainDuration: Integer
|
442
|
+
# @param ObtainUrl: 取证回调地址
|
443
|
+
# @type ObtainUrl: String
|
444
|
+
# @param WorkCategory: xxx
|
445
|
+
# @type WorkCategory: String
|
446
|
+
# @param WorkType: xxx
|
447
|
+
# @type WorkType: String
|
448
|
+
|
449
|
+
attr_accessor :WorkId, :TortUrl, :ObtainType, :WorkTitle, :TortPlat, :ObtainDuration, :ObtainUrl, :WorkCategory, :WorkType
|
450
|
+
|
451
|
+
def initialize(workid=nil, torturl=nil, obtaintype=nil, worktitle=nil, tortplat=nil, obtainduration=nil, obtainurl=nil, workcategory=nil, worktype=nil)
|
452
|
+
@WorkId = workid
|
453
|
+
@TortUrl = torturl
|
454
|
+
@ObtainType = obtaintype
|
455
|
+
@WorkTitle = worktitle
|
456
|
+
@TortPlat = tortplat
|
457
|
+
@ObtainDuration = obtainduration
|
458
|
+
@ObtainUrl = obtainurl
|
459
|
+
@WorkCategory = workcategory
|
460
|
+
@WorkType = worktype
|
461
|
+
end
|
462
|
+
|
463
|
+
def deserialize(params)
|
464
|
+
@WorkId = params['WorkId']
|
465
|
+
@TortUrl = params['TortUrl']
|
466
|
+
@ObtainType = params['ObtainType']
|
467
|
+
@WorkTitle = params['WorkTitle']
|
468
|
+
@TortPlat = params['TortPlat']
|
469
|
+
@ObtainDuration = params['ObtainDuration']
|
470
|
+
@ObtainUrl = params['ObtainUrl']
|
471
|
+
@WorkCategory = params['WorkCategory']
|
472
|
+
@WorkType = params['WorkType']
|
473
|
+
end
|
474
|
+
end
|
475
|
+
|
476
|
+
# CreateCRObtain返回参数结构体
|
477
|
+
class CreateCRObtainResponse < TencentCloud::Common::AbstractModel
|
478
|
+
# @param TortId: 侵权ID
|
479
|
+
# @type TortId: Integer
|
480
|
+
# @param TortNum: xxx
|
481
|
+
# @type TortNum: String
|
482
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
483
|
+
# @type RequestId: String
|
484
|
+
|
485
|
+
attr_accessor :TortId, :TortNum, :RequestId
|
486
|
+
|
487
|
+
def initialize(tortid=nil, tortnum=nil, requestid=nil)
|
488
|
+
@TortId = tortid
|
489
|
+
@TortNum = tortnum
|
490
|
+
@RequestId = requestid
|
491
|
+
end
|
492
|
+
|
493
|
+
def deserialize(params)
|
494
|
+
@TortId = params['TortId']
|
495
|
+
@TortNum = params['TortNum']
|
496
|
+
@RequestId = params['RequestId']
|
497
|
+
end
|
498
|
+
end
|
499
|
+
|
428
500
|
# CreateCRRightFile请求参数结构体
|
429
501
|
class CreateCRRightFileRequest < TencentCloud::Common::AbstractModel
|
430
502
|
# @param WorkId: 作品ID
|
@@ -881,25 +953,25 @@ module TencentCloud
|
|
881
953
|
|
882
954
|
# DescribeBPCompanyInfo返回参数结构体
|
883
955
|
class DescribeBPCompanyInfoResponse < TencentCloud::Common::AbstractModel
|
884
|
-
# @param CompanyName:
|
956
|
+
# @param CompanyName: 企业名称
|
885
957
|
# @type CompanyName: String
|
886
|
-
# @param Phone:
|
958
|
+
# @param Phone: 电话号码
|
887
959
|
# @type Phone: String
|
888
|
-
# @param LicenseName:
|
960
|
+
# @param LicenseName: 营业执照
|
889
961
|
# @type LicenseName: String
|
890
|
-
# @param LicenseStatus:
|
962
|
+
# @param LicenseStatus: 营业执照审核状态 1-审核中 2-审核未通过,3、审核通过
|
891
963
|
# @type LicenseStatus: Integer
|
892
|
-
# @param LicenseNote:
|
964
|
+
# @param LicenseNote: 营业执照备注
|
893
965
|
# @type LicenseNote: String
|
894
|
-
# @param AuthorizationName:
|
966
|
+
# @param AuthorizationName: 授权书
|
895
967
|
# @type AuthorizationName: String
|
896
|
-
# @param AuthorizationStatus:
|
968
|
+
# @param AuthorizationStatus: 授权书审核状态
|
897
969
|
# @type AuthorizationStatus: Integer
|
898
|
-
# @param AuthorizationNote:
|
970
|
+
# @param AuthorizationNote: 授权书备注
|
899
971
|
# @type AuthorizationNote: String
|
900
|
-
# @param BrandDatas:
|
972
|
+
# @param BrandDatas: 品牌信息
|
901
973
|
# @type BrandDatas: Array
|
902
|
-
# @param CompanyId:
|
974
|
+
# @param CompanyId: 企业ID
|
903
975
|
# @type CompanyId: Integer
|
904
976
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
905
977
|
# @type RequestId: String
|
@@ -944,11 +1016,11 @@ module TencentCloud
|
|
944
1016
|
|
945
1017
|
# DescribeBPFakeURLs请求参数结构体
|
946
1018
|
class DescribeBPFakeURLsRequest < TencentCloud::Common::AbstractModel
|
947
|
-
# @param Filters:
|
1019
|
+
# @param Filters: 过滤条件
|
948
1020
|
# @type Filters: Array
|
949
|
-
# @param PageSize:
|
1021
|
+
# @param PageSize: 页数
|
950
1022
|
# @type PageSize: Integer
|
951
|
-
# @param PageNumber:
|
1023
|
+
# @param PageNumber: 页码
|
952
1024
|
# @type PageNumber: Integer
|
953
1025
|
|
954
1026
|
attr_accessor :Filters, :PageSize, :PageNumber
|
@@ -975,11 +1047,11 @@ module TencentCloud
|
|
975
1047
|
|
976
1048
|
# DescribeBPFakeURLs返回参数结构体
|
977
1049
|
class DescribeBPFakeURLsResponse < TencentCloud::Common::AbstractModel
|
978
|
-
# @param FakeURLInfos:
|
1050
|
+
# @param FakeURLInfos: 仿冒网址列表
|
979
1051
|
# @type FakeURLInfos: Array
|
980
|
-
# @param TotalCount:
|
1052
|
+
# @param TotalCount: 总量
|
981
1053
|
# @type TotalCount: Integer
|
982
|
-
# @param ExportURL:
|
1054
|
+
# @param ExportURL: 导出量
|
983
1055
|
# @type ExportURL: String
|
984
1056
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
985
1057
|
# @type RequestId: String
|
@@ -1010,9 +1082,9 @@ module TencentCloud
|
|
1010
1082
|
|
1011
1083
|
# DescribeBPProtectURLs请求参数结构体
|
1012
1084
|
class DescribeBPProtectURLsRequest < TencentCloud::Common::AbstractModel
|
1013
|
-
# @param PageSize:
|
1085
|
+
# @param PageSize: 页数
|
1014
1086
|
# @type PageSize: Integer
|
1015
|
-
# @param PageNumber:
|
1087
|
+
# @param PageNumber: 页码
|
1016
1088
|
# @type PageNumber: Integer
|
1017
1089
|
|
1018
1090
|
attr_accessor :PageSize, :PageNumber
|
@@ -1030,9 +1102,9 @@ module TencentCloud
|
|
1030
1102
|
|
1031
1103
|
# DescribeBPProtectURLs返回参数结构体
|
1032
1104
|
class DescribeBPProtectURLsResponse < TencentCloud::Common::AbstractModel
|
1033
|
-
# @param ProtectURLInfos:
|
1105
|
+
# @param ProtectURLInfos: 保护网址列表
|
1034
1106
|
# @type ProtectURLInfos: Array
|
1035
|
-
# @param TotalCount:
|
1107
|
+
# @param TotalCount: 总量
|
1036
1108
|
# @type TotalCount: Integer
|
1037
1109
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1038
1110
|
# @type RequestId: String
|
@@ -1061,11 +1133,11 @@ module TencentCloud
|
|
1061
1133
|
|
1062
1134
|
# DescribeBPReportFakeURLs请求参数结构体
|
1063
1135
|
class DescribeBPReportFakeURLsRequest < TencentCloud::Common::AbstractModel
|
1064
|
-
# @param Filters:
|
1136
|
+
# @param Filters: 过滤条件
|
1065
1137
|
# @type Filters: Array
|
1066
|
-
# @param PageSize:
|
1138
|
+
# @param PageSize: 页数
|
1067
1139
|
# @type PageSize: Integer
|
1068
|
-
# @param PageNumber:
|
1140
|
+
# @param PageNumber: 页码
|
1069
1141
|
# @type PageNumber: Integer
|
1070
1142
|
|
1071
1143
|
attr_accessor :Filters, :PageSize, :PageNumber
|
@@ -1092,9 +1164,9 @@ module TencentCloud
|
|
1092
1164
|
|
1093
1165
|
# DescribeBPReportFakeURLs返回参数结构体
|
1094
1166
|
class DescribeBPReportFakeURLsResponse < TencentCloud::Common::AbstractModel
|
1095
|
-
# @param ReportFakeURLInfos:
|
1167
|
+
# @param ReportFakeURLInfos: 举报网站列表
|
1096
1168
|
# @type ReportFakeURLInfos: Array
|
1097
|
-
# @param TotalCount:
|
1169
|
+
# @param TotalCount: 总量
|
1098
1170
|
# @type TotalCount: Integer
|
1099
1171
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1100
1172
|
# @type RequestId: String
|
@@ -1375,37 +1447,37 @@ module TencentCloud
|
|
1375
1447
|
|
1376
1448
|
# 仿冒网站信息
|
1377
1449
|
class FakeURLInfo < TencentCloud::Common::AbstractModel
|
1378
|
-
# @param FakeURLId:
|
1450
|
+
# @param FakeURLId: 仿冒网址ID
|
1379
1451
|
# @type FakeURLId: Integer
|
1380
|
-
# @param ProtectWeb:
|
1452
|
+
# @param ProtectWeb: 保护网站
|
1381
1453
|
# @type ProtectWeb: String
|
1382
|
-
# @param DetectTime:
|
1454
|
+
# @param DetectTime: 检测时间
|
1383
1455
|
# @type DetectTime: String
|
1384
|
-
# @param FakeURL:
|
1456
|
+
# @param FakeURL: 仿冒网址
|
1385
1457
|
# @type FakeURL: String
|
1386
|
-
# @param Snapshot:
|
1458
|
+
# @param Snapshot: 截图
|
1387
1459
|
# @type Snapshot: String
|
1388
|
-
# @param IP:
|
1460
|
+
# @param IP: IP地址
|
1389
1461
|
# @type IP: String
|
1390
|
-
# @param IPLoc:
|
1462
|
+
# @param IPLoc: IP地理位置
|
1391
1463
|
# @type IPLoc: String
|
1392
|
-
# @param Heat:
|
1464
|
+
# @param Heat: 热度
|
1393
1465
|
# @type Heat: Integer
|
1394
|
-
# @param Status:
|
1466
|
+
# @param Status: 网址状态
|
1395
1467
|
# @type Status: Integer
|
1396
|
-
# @param Note:
|
1468
|
+
# @param Note: 备注
|
1397
1469
|
# @type Note: String
|
1398
|
-
# @param FakeURLCompany:
|
1470
|
+
# @param FakeURLCompany: 仿冒网站所属单位
|
1399
1471
|
# @type FakeURLCompany: String
|
1400
|
-
# @param FakeURLAttr:
|
1472
|
+
# @param FakeURLAttr: 仿冒网站性质
|
1401
1473
|
# @type FakeURLAttr: String
|
1402
|
-
# @param FakeURLName:
|
1474
|
+
# @param FakeURLName: 仿冒网站名称
|
1403
1475
|
# @type FakeURLName: String
|
1404
|
-
# @param FakeURLICP:
|
1476
|
+
# @param FakeURLICP: 仿冒网站备案号
|
1405
1477
|
# @type FakeURLICP: String
|
1406
|
-
# @param FakeURLCreateTime:
|
1478
|
+
# @param FakeURLCreateTime: 仿冒网站创建时间
|
1407
1479
|
# @type FakeURLCreateTime: String
|
1408
|
-
# @param FakeURLExpireTime:
|
1480
|
+
# @param FakeURLExpireTime: 仿冒网站过期时间
|
1409
1481
|
# @type FakeURLExpireTime: String
|
1410
1482
|
|
1411
1483
|
attr_accessor :FakeURLId, :ProtectWeb, :DetectTime, :FakeURL, :Snapshot, :IP, :IPLoc, :Heat, :Status, :Note, :FakeURLCompany, :FakeURLAttr, :FakeURLName, :FakeURLICP, :FakeURLCreateTime, :FakeURLExpireTime
|
@@ -1451,13 +1523,13 @@ module TencentCloud
|
|
1451
1523
|
|
1452
1524
|
# 权属文件列表
|
1453
1525
|
class File < TencentCloud::Common::AbstractModel
|
1454
|
-
# @param FileUrl:
|
1526
|
+
# @param FileUrl: 文件下载地址
|
1455
1527
|
# @type FileUrl: String
|
1456
|
-
# @param FileType:
|
1528
|
+
# @param FileType: 文件类型 1-委托书 2-授权书 5-存证证书 11-营业执照
|
1457
1529
|
# @type FileType: Integer
|
1458
|
-
# @param ValidStartDate:
|
1530
|
+
# @param ValidStartDate: 文件有效开始日期
|
1459
1531
|
# @type ValidStartDate: String
|
1460
|
-
# @param ValidEndDate:
|
1532
|
+
# @param ValidEndDate: 文件有效截止日期
|
1461
1533
|
# @type ValidEndDate: String
|
1462
1534
|
|
1463
1535
|
attr_accessor :FileUrl, :FileType, :ValidStartDate, :ValidEndDate
|
@@ -1490,15 +1562,15 @@ module TencentCloud
|
|
1490
1562
|
|
1491
1563
|
# ModifyBPOfflineAttachment请求参数结构体
|
1492
1564
|
class ModifyBPOfflineAttachmentRequest < TencentCloud::Common::AbstractModel
|
1493
|
-
# @param LicenseName:
|
1565
|
+
# @param LicenseName: 营业执照
|
1494
1566
|
# @type LicenseName: String
|
1495
|
-
# @param AuthorizationName:
|
1567
|
+
# @param AuthorizationName: 授权书
|
1496
1568
|
# @type AuthorizationName: String
|
1497
|
-
# @param BrandName:
|
1569
|
+
# @param BrandName: 商标名称
|
1498
1570
|
# @type BrandName: String
|
1499
|
-
# @param BrandCertificateName:
|
1571
|
+
# @param BrandCertificateName: 商标证明
|
1500
1572
|
# @type BrandCertificateName: String
|
1501
|
-
# @param TransferName:
|
1573
|
+
# @param TransferName: 商标转让证明
|
1502
1574
|
# @type TransferName: String
|
1503
1575
|
|
1504
1576
|
attr_accessor :LicenseName, :AuthorizationName, :BrandName, :BrandCertificateName, :TransferName
|
@@ -1620,7 +1692,7 @@ module TencentCloud
|
|
1620
1692
|
# @type ObtainType: Integer
|
1621
1693
|
# @param ObtainDuration: 过程取证的取证时长,单位分钟,范围0-120
|
1622
1694
|
# @type ObtainDuration: Integer
|
1623
|
-
# @param ObtainUrl:
|
1695
|
+
# @param ObtainUrl: 取证结果回调地址
|
1624
1696
|
# @type ObtainUrl: String
|
1625
1697
|
|
1626
1698
|
attr_accessor :TortId, :ObtainType, :ObtainDuration, :ObtainUrl
|
@@ -1850,7 +1922,7 @@ module TencentCloud
|
|
1850
1922
|
# @type EvidenceStatus: Integer
|
1851
1923
|
# @param IsProducer: 是否著作权人
|
1852
1924
|
# @type IsProducer: Integer
|
1853
|
-
# @param IsOverseas:
|
1925
|
+
# @param IsOverseas: 是否境外网址
|
1854
1926
|
# @type IsOverseas: Integer
|
1855
1927
|
|
1856
1928
|
attr_accessor :TortId, :TortTitle, :TortPlat, :TortURL, :PubTime, :Author, :DetectTime, :ObtainStatus, :RightStatus, :BlockStatus, :TortNum, :ObtainNote, :WorkTitle, :TortSite, :ICP, :RightNote, :ObtainType, :BlockNote, :WorkId, :WorkName, :AuthStatus, :CommStatus, :EvidenceStatus, :IsProducer, :IsOverseas
|
@@ -1914,17 +1986,17 @@ module TencentCloud
|
|
1914
1986
|
|
1915
1987
|
# 保护网站信息
|
1916
1988
|
class ProtectURLInfo < TencentCloud::Common::AbstractModel
|
1917
|
-
# @param ProtectURLId:
|
1989
|
+
# @param ProtectURLId: 保护网站ID
|
1918
1990
|
# @type ProtectURLId: Integer
|
1919
|
-
# @param ProtectURL:
|
1991
|
+
# @param ProtectURL: 保护网站
|
1920
1992
|
# @type ProtectURL: String
|
1921
|
-
# @param ProtectWeb:
|
1993
|
+
# @param ProtectWeb: 保护网站名称
|
1922
1994
|
# @type ProtectWeb: String
|
1923
|
-
# @param ProtectURLStatus:
|
1995
|
+
# @param ProtectURLStatus: 保护网站审核状态 1-审核中 2-审核不通过 3-审核通过
|
1924
1996
|
# @type ProtectURLStatus: Integer
|
1925
|
-
# @param ProtectURLNote:
|
1997
|
+
# @param ProtectURLNote: 网站审核不通过原因
|
1926
1998
|
# @type ProtectURLNote: String
|
1927
|
-
# @param CreateTime:
|
1999
|
+
# @param CreateTime: 创建时间
|
1928
2000
|
# @type CreateTime: String
|
1929
2001
|
|
1930
2002
|
attr_accessor :ProtectURLId, :ProtectURL, :ProtectWeb, :ProtectURLStatus, :ProtectURLNote, :CreateTime
|
@@ -1950,41 +2022,41 @@ module TencentCloud
|
|
1950
2022
|
|
1951
2023
|
# 举报网址信息
|
1952
2024
|
class ReportFakeURLInfo < TencentCloud::Common::AbstractModel
|
1953
|
-
# @param FakeURLId:
|
2025
|
+
# @param FakeURLId: 仿冒网址ID
|
1954
2026
|
# @type FakeURLId: Integer
|
1955
|
-
# @param DetectTime:
|
2027
|
+
# @param DetectTime: 检测时间
|
1956
2028
|
# @type DetectTime: String
|
1957
|
-
# @param ProtectURL:
|
2029
|
+
# @param ProtectURL: 保护网站
|
1958
2030
|
# @type ProtectURL: String
|
1959
|
-
# @param ProtectWeb:
|
2031
|
+
# @param ProtectWeb: 保护网站名称
|
1960
2032
|
# @type ProtectWeb: String
|
1961
|
-
# @param FakeURL:
|
2033
|
+
# @param FakeURL: 仿冒网址
|
1962
2034
|
# @type FakeURL: String
|
1963
|
-
# @param Snapshot:
|
2035
|
+
# @param Snapshot: 截图
|
1964
2036
|
# @type Snapshot: String
|
1965
|
-
# @param IP:
|
2037
|
+
# @param IP: IP地址
|
1966
2038
|
# @type IP: String
|
1967
|
-
# @param IPLoc:
|
2039
|
+
# @param IPLoc: IP地理位置
|
1968
2040
|
# @type IPLoc: String
|
1969
|
-
# @param Heat:
|
2041
|
+
# @param Heat: 热度
|
1970
2042
|
# @type Heat: Integer
|
1971
|
-
# @param Status:
|
2043
|
+
# @param Status: 网站状态
|
1972
2044
|
# @type Status: Integer
|
1973
|
-
# @param Note:
|
2045
|
+
# @param Note: 网站不处理原因
|
1974
2046
|
# @type Note: String
|
1975
|
-
# @param FakeURLCompany:
|
2047
|
+
# @param FakeURLCompany: 仿冒网站的企业名称
|
1976
2048
|
# @type FakeURLCompany: String
|
1977
|
-
# @param FakeURLAttr:
|
2049
|
+
# @param FakeURLAttr: 仿冒网站的网站性质
|
1978
2050
|
# @type FakeURLAttr: String
|
1979
|
-
# @param FakeURLName:
|
2051
|
+
# @param FakeURLName: 仿冒网站的网站名称
|
1980
2052
|
# @type FakeURLName: String
|
1981
|
-
# @param FakeURLICP:
|
2053
|
+
# @param FakeURLICP: 仿冒网站的备案
|
1982
2054
|
# @type FakeURLICP: String
|
1983
|
-
# @param FakeURLCreateTime:
|
2055
|
+
# @param FakeURLCreateTime: 仿冒网站创建时间
|
1984
2056
|
# @type FakeURLCreateTime: String
|
1985
|
-
# @param FakeURLExpireTime:
|
2057
|
+
# @param FakeURLExpireTime: 仿冒网站过期时间
|
1986
2058
|
# @type FakeURLExpireTime: String
|
1987
|
-
# @param BlockTime:
|
2059
|
+
# @param BlockTime: 协查处置时间
|
1988
2060
|
# @type BlockTime: String
|
1989
2061
|
|
1990
2062
|
attr_accessor :FakeURLId, :DetectTime, :ProtectURL, :ProtectWeb, :FakeURL, :Snapshot, :IP, :IPLoc, :Heat, :Status, :Note, :FakeURLCompany, :FakeURLAttr, :FakeURLName, :FakeURLICP, :FakeURLCreateTime, :FakeURLExpireTime, :BlockTime
|
@@ -2036,7 +2108,7 @@ module TencentCloud
|
|
2036
2108
|
class UpdateCRWorkRequest < TencentCloud::Common::AbstractModel
|
2037
2109
|
# @param WorkId: 作品ID
|
2038
2110
|
# @type WorkId: Integer
|
2039
|
-
# @param ContentType:
|
2111
|
+
# @param ContentType: 文件的扩展名,例如txt,docx
|
2040
2112
|
# @type ContentType: String
|
2041
2113
|
# @param Content: 内容的base64编码
|
2042
2114
|
# @type Content: String
|
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.429
|
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-10-
|
11
|
+
date: 2022-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|