tencentcloud-sdk-bma 3.0.430 → 3.0.431
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 +26 -2
- data/lib/v20210624/models.rb +93 -1
- 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: 0dc81fab288ad32a4f9b02d1eb2b674c290bb7d4
|
4
|
+
data.tar.gz: bc059fd7c868166b0741327399f202385f8a48c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 374ef661586f5f2933bbb8b48f412ad23b8ee6f2e0682f69d2a760c5fddece124dfc6150b0659fcbcc64c0d958dd749ef6ba765f373a4e456b03f84e65f2bc6f
|
7
|
+
data.tar.gz: 77e9d9e4a83d24d75aad4ac212e22bfb9d368619210f625ed3162863d5901d661f06fdf44df57626e7098bff2bd78839ec956ac096bb4176cf77143672d7fc81
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.431
|
data/lib/v20210624/client.rb
CHANGED
@@ -149,7 +149,7 @@ module TencentCloud
|
|
149
149
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
150
|
end
|
151
151
|
|
152
|
-
#
|
152
|
+
# 新建协查处置
|
153
153
|
|
154
154
|
# @param request: Request instance for CreateCRBlock.
|
155
155
|
# @type request: :class:`Tencentcloud::bma::V20210624::CreateCRBlockRequest`
|
@@ -485,6 +485,30 @@ module TencentCloud
|
|
485
485
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
486
486
|
end
|
487
487
|
|
488
|
+
# 查询取证详情
|
489
|
+
|
490
|
+
# @param request: Request instance for DescribeCRObtainDetail.
|
491
|
+
# @type request: :class:`Tencentcloud::bma::V20210624::DescribeCRObtainDetailRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::bma::V20210624::DescribeCRObtainDetailResponse`
|
493
|
+
def DescribeCRObtainDetail(request)
|
494
|
+
body = send_request('DescribeCRObtainDetail', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = DescribeCRObtainDetailResponse.new
|
498
|
+
model.deserialize(response['Response'])
|
499
|
+
model
|
500
|
+
else
|
501
|
+
code = response['Response']['Error']['Code']
|
502
|
+
message = response['Response']['Error']['Message']
|
503
|
+
reqid = response['Response']['RequestId']
|
504
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
505
|
+
end
|
506
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
507
|
+
raise e
|
508
|
+
rescue StandardError => e
|
509
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
510
|
+
end
|
511
|
+
|
488
512
|
# 查询作品基本信息
|
489
513
|
|
490
514
|
# @param request: Request instance for DescribeCRWorkInfo.
|
@@ -533,7 +557,7 @@ module TencentCloud
|
|
533
557
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
534
558
|
end
|
535
559
|
|
536
|
-
#
|
560
|
+
# 协查处置申请
|
537
561
|
|
538
562
|
# @param request: Request instance for ModifyCRBlockStatus.
|
539
563
|
# @type request: :class:`Tencentcloud::bma::V20210624::ModifyCRBlockStatusRequest`
|
data/lib/v20210624/models.rb
CHANGED
@@ -1325,6 +1325,98 @@ module TencentCloud
|
|
1325
1325
|
end
|
1326
1326
|
end
|
1327
1327
|
|
1328
|
+
# DescribeCRObtainDetail请求参数结构体
|
1329
|
+
class DescribeCRObtainDetailRequest < TencentCloud::Common::AbstractModel
|
1330
|
+
# @param TortId: 侵权ID
|
1331
|
+
# @type TortId: Integer
|
1332
|
+
|
1333
|
+
attr_accessor :TortId
|
1334
|
+
|
1335
|
+
def initialize(tortid=nil)
|
1336
|
+
@TortId = tortid
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
def deserialize(params)
|
1340
|
+
@TortId = params['TortId']
|
1341
|
+
end
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
# DescribeCRObtainDetail返回参数结构体
|
1345
|
+
class DescribeCRObtainDetailResponse < TencentCloud::Common::AbstractModel
|
1346
|
+
# @param WorkName: 作品名称
|
1347
|
+
# @type WorkName: String
|
1348
|
+
# @param TortURL: 侵权链接
|
1349
|
+
# @type TortURL: String
|
1350
|
+
# @param ObtainTime: 取证时间
|
1351
|
+
# @type ObtainTime: String
|
1352
|
+
# @param ObtainType: 取证类型
|
1353
|
+
# @type ObtainType: String
|
1354
|
+
# @param ObtainNum: 取证号
|
1355
|
+
# @type ObtainNum: String
|
1356
|
+
# @param DepositFile: 证据地址
|
1357
|
+
# @type DepositFile: String
|
1358
|
+
# @param DepositCert: 公证信息地址
|
1359
|
+
# @type DepositCert: String
|
1360
|
+
# @param WorkType: 内容类型
|
1361
|
+
# @type WorkType: String
|
1362
|
+
# @param WorkCategory: 作品类型
|
1363
|
+
# @type WorkCategory: String
|
1364
|
+
# @param TortId: 侵权ID
|
1365
|
+
# @type TortId: Integer
|
1366
|
+
# @param TortNum: 侵权编号
|
1367
|
+
# @type TortNum: String
|
1368
|
+
# @param ObtainStatus: 取证状态
|
1369
|
+
# @type ObtainStatus: Integer
|
1370
|
+
# @param ObtainNote: 取证状态说明
|
1371
|
+
# @type ObtainNote: String
|
1372
|
+
# @param ObtainDuration: 取证时长
|
1373
|
+
# @type ObtainDuration: String
|
1374
|
+
# @param ObtainName: 取证名称
|
1375
|
+
# @type ObtainName: String
|
1376
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1377
|
+
# @type RequestId: String
|
1378
|
+
|
1379
|
+
attr_accessor :WorkName, :TortURL, :ObtainTime, :ObtainType, :ObtainNum, :DepositFile, :DepositCert, :WorkType, :WorkCategory, :TortId, :TortNum, :ObtainStatus, :ObtainNote, :ObtainDuration, :ObtainName, :RequestId
|
1380
|
+
|
1381
|
+
def initialize(workname=nil, torturl=nil, obtaintime=nil, obtaintype=nil, obtainnum=nil, depositfile=nil, depositcert=nil, worktype=nil, workcategory=nil, tortid=nil, tortnum=nil, obtainstatus=nil, obtainnote=nil, obtainduration=nil, obtainname=nil, requestid=nil)
|
1382
|
+
@WorkName = workname
|
1383
|
+
@TortURL = torturl
|
1384
|
+
@ObtainTime = obtaintime
|
1385
|
+
@ObtainType = obtaintype
|
1386
|
+
@ObtainNum = obtainnum
|
1387
|
+
@DepositFile = depositfile
|
1388
|
+
@DepositCert = depositcert
|
1389
|
+
@WorkType = worktype
|
1390
|
+
@WorkCategory = workcategory
|
1391
|
+
@TortId = tortid
|
1392
|
+
@TortNum = tortnum
|
1393
|
+
@ObtainStatus = obtainstatus
|
1394
|
+
@ObtainNote = obtainnote
|
1395
|
+
@ObtainDuration = obtainduration
|
1396
|
+
@ObtainName = obtainname
|
1397
|
+
@RequestId = requestid
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
def deserialize(params)
|
1401
|
+
@WorkName = params['WorkName']
|
1402
|
+
@TortURL = params['TortURL']
|
1403
|
+
@ObtainTime = params['ObtainTime']
|
1404
|
+
@ObtainType = params['ObtainType']
|
1405
|
+
@ObtainNum = params['ObtainNum']
|
1406
|
+
@DepositFile = params['DepositFile']
|
1407
|
+
@DepositCert = params['DepositCert']
|
1408
|
+
@WorkType = params['WorkType']
|
1409
|
+
@WorkCategory = params['WorkCategory']
|
1410
|
+
@TortId = params['TortId']
|
1411
|
+
@TortNum = params['TortNum']
|
1412
|
+
@ObtainStatus = params['ObtainStatus']
|
1413
|
+
@ObtainNote = params['ObtainNote']
|
1414
|
+
@ObtainDuration = params['ObtainDuration']
|
1415
|
+
@ObtainName = params['ObtainName']
|
1416
|
+
@RequestId = params['RequestId']
|
1417
|
+
end
|
1418
|
+
end
|
1419
|
+
|
1328
1420
|
# DescribeCRWorkInfo请求参数结构体
|
1329
1421
|
class DescribeCRWorkInfoRequest < TencentCloud::Common::AbstractModel
|
1330
1422
|
# @param WorkId: 作品ID
|
@@ -1688,7 +1780,7 @@ module TencentCloud
|
|
1688
1780
|
class ModifyCRObtainStatusRequest < TencentCloud::Common::AbstractModel
|
1689
1781
|
# @param TortId: 侵权ID
|
1690
1782
|
# @type TortId: Integer
|
1691
|
-
# @param ObtainType: 取证类型:1-网页取证 2-过程取证
|
1783
|
+
# @param ObtainType: 取证类型:1-网页取证 2-过程取证(暂不提供)
|
1692
1784
|
# @type ObtainType: Integer
|
1693
1785
|
# @param ObtainDuration: 过程取证的取证时长,单位分钟,范围0-120
|
1694
1786
|
# @type ObtainDuration: Integer
|
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.431
|
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-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|