tencentcloud-sdk-bma 3.0.547 → 3.0.549

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0eb971ccbb34ff709e98357b4d21e114ec40c462
4
- data.tar.gz: 4f6b34f6357a854803af79abab9e718536502e16
3
+ metadata.gz: d21b67e2753350e919d7bd34fa7011b149496e0e
4
+ data.tar.gz: e8201ceab792a900c49a47ff5f81e4b8d7bc80cb
5
5
  SHA512:
6
- metadata.gz: 86c720d7f4e2ffcf7f6fcf6d6ed4a92747c0934f1b80537911f2b487625f35de492abc06effe1da31a59f8950d3bb31bbb9967f0f82588ef9064d1f8b99ae3ea
7
- data.tar.gz: 75eb0b22967fba7261db65321dec5ff7ba525e1972ee2a792ac6f5e91b9aca5ebd735f5135c78a70c2d25b4942958046a539e553be6017faad3be9a7fe82e4f5
6
+ metadata.gz: 3ad22b122dd7a9e8e83a1db0a92c2bc36caf969e5f72fedaa70845b5e533d0691fe6a0d9164852cf43855b96d152b269b5794775014986a1da8623104bcacbc3
7
+ data.tar.gz: e2ea95c06223ea0799295b32dc461f413adf0da0179af1e2f5e297e634568288c99dba62a6a35c88b4b3e373ad6a72c6c4117c61a346b26902ed9efbe927db8a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.547
1
+ 3.0.549
@@ -221,30 +221,6 @@ module TencentCloud
221
221
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
222
  end
223
223
 
224
- # 版权保护-新建取证接口
225
-
226
- # @param request: Request instance for CreateCRObtain.
227
- # @type request: :class:`Tencentcloud::bma::V20210624::CreateCRObtainRequest`
228
- # @rtype: :class:`Tencentcloud::bma::V20210624::CreateCRObtainResponse`
229
- def CreateCRObtain(request)
230
- body = send_request('CreateCRObtain', request.serialize)
231
- response = JSON.parse(body)
232
- if response['Response'].key?('Error') == false
233
- model = CreateCRObtainResponse.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
224
  # 版权保护-新建发函接口
249
225
 
250
226
  # @param request: Request instance for CreateCRRight.
@@ -461,78 +461,6 @@ module TencentCloud
461
461
  end
462
462
  end
463
463
 
464
- # CreateCRObtain请求参数结构体
465
- class CreateCRObtainRequest < TencentCloud::Common::AbstractModel
466
- # @param WorkId: 已存证的作品ID
467
- # @type WorkId: Integer
468
- # @param TortUrl: 侵权链接
469
- # @type TortUrl: String
470
- # @param ObtainType: 取证类型 1-网页取证 2-过程取证
471
- # @type ObtainType: Integer
472
- # @param WorkTitle: 侵权标题
473
- # @type WorkTitle: String
474
- # @param TortPlat: 侵权平台
475
- # @type TortPlat: String
476
- # @param ObtainDuration: 过程取证的取证时长 6-300分钟
477
- # @type ObtainDuration: Integer
478
- # @param ObtainUrl: 取证回调地址
479
- # @type ObtainUrl: String
480
- # @param WorkCategory: xxx
481
- # @type WorkCategory: String
482
- # @param WorkType: xxx
483
- # @type WorkType: String
484
-
485
- attr_accessor :WorkId, :TortUrl, :ObtainType, :WorkTitle, :TortPlat, :ObtainDuration, :ObtainUrl, :WorkCategory, :WorkType
486
-
487
- def initialize(workid=nil, torturl=nil, obtaintype=nil, worktitle=nil, tortplat=nil, obtainduration=nil, obtainurl=nil, workcategory=nil, worktype=nil)
488
- @WorkId = workid
489
- @TortUrl = torturl
490
- @ObtainType = obtaintype
491
- @WorkTitle = worktitle
492
- @TortPlat = tortplat
493
- @ObtainDuration = obtainduration
494
- @ObtainUrl = obtainurl
495
- @WorkCategory = workcategory
496
- @WorkType = worktype
497
- end
498
-
499
- def deserialize(params)
500
- @WorkId = params['WorkId']
501
- @TortUrl = params['TortUrl']
502
- @ObtainType = params['ObtainType']
503
- @WorkTitle = params['WorkTitle']
504
- @TortPlat = params['TortPlat']
505
- @ObtainDuration = params['ObtainDuration']
506
- @ObtainUrl = params['ObtainUrl']
507
- @WorkCategory = params['WorkCategory']
508
- @WorkType = params['WorkType']
509
- end
510
- end
511
-
512
- # CreateCRObtain返回参数结构体
513
- class CreateCRObtainResponse < TencentCloud::Common::AbstractModel
514
- # @param TortId: 侵权ID
515
- # @type TortId: Integer
516
- # @param TortNum: xxx
517
- # @type TortNum: String
518
- # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
519
- # @type RequestId: String
520
-
521
- attr_accessor :TortId, :TortNum, :RequestId
522
-
523
- def initialize(tortid=nil, tortnum=nil, requestid=nil)
524
- @TortId = tortid
525
- @TortNum = tortnum
526
- @RequestId = requestid
527
- end
528
-
529
- def deserialize(params)
530
- @TortId = params['TortId']
531
- @TortNum = params['TortNum']
532
- @RequestId = params['RequestId']
533
- end
534
- end
535
-
536
464
  # CreateCRRightFile请求参数结构体
537
465
  class CreateCRRightFileRequest < TencentCloud::Common::AbstractModel
538
466
  # @param WorkId: 作品ID
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.547
4
+ version: 3.0.549
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-04-10 00:00:00.000000000 Z
11
+ date: 2023-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common