tencentcloud-sdk-vcube 3.0.1094 → 3.0.1172

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: ea606e774beac64565b7d4a21d4a804fdc52f091
4
- data.tar.gz: d5e816da90de85673be1b8f62bd67c1fed242f1b
3
+ metadata.gz: 61bee3a53fc40db46bef19bcfc6990945fed8a49
4
+ data.tar.gz: a1535819cdd6728bd5de3424c7bea9b44d74eea3
5
5
  SHA512:
6
- metadata.gz: 0978a084d878386d8e07cd7cb3ee1a5871051a8a6e19fd5d7159aa9f5df7bbf66fde17d4ddd395d2c334673c416f8e900467bed3302c25539cfaf0496b4b4859
7
- data.tar.gz: f15e58a222f90376a33cb7d0659abb921f3207e736e66e86542dd45690d68930e6ffa8c4fce5929dd11426203d9df4a64cd84230b9820b20362135f0d551ee5b
6
+ metadata.gz: 397139cceaa9b38566b93b7487d9a1e57218a945dc43d523e3289d501e7b02d15c5d78f43930b87a04b720f70ad6ee6d18a7bb6096807ffcb1648b451ae4345d
7
+ data.tar.gz: e1c8291bcb8add3835bb44f7013bb51900e387f52cad5e44c65d7fd14addd6c0398aad8ae8be8763e3e80f3ce7e7784210047d2efde5f2676b03ef43286d7c0f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1094
1
+ 3.0.1172
@@ -245,6 +245,54 @@ module TencentCloud
245
245
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
246
246
  end
247
247
 
248
+ # 删除视频播放器 License 和相关应用
249
+
250
+ # @param request: Request instance for DeleteApplicationAndVideoLicense.
251
+ # @type request: :class:`Tencentcloud::vcube::V20220410::DeleteApplicationAndVideoLicenseRequest`
252
+ # @rtype: :class:`Tencentcloud::vcube::V20220410::DeleteApplicationAndVideoLicenseResponse`
253
+ def DeleteApplicationAndVideoLicense(request)
254
+ body = send_request('DeleteApplicationAndVideoLicense', request.serialize)
255
+ response = JSON.parse(body)
256
+ if response['Response'].key?('Error') == false
257
+ model = DeleteApplicationAndVideoLicenseResponse.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
+ # 删除web播放器license和应用
273
+
274
+ # @param request: Request instance for DeleteApplicationAndWebPlayerLicense.
275
+ # @type request: :class:`Tencentcloud::vcube::V20220410::DeleteApplicationAndWebPlayerLicenseRequest`
276
+ # @rtype: :class:`Tencentcloud::vcube::V20220410::DeleteApplicationAndWebPlayerLicenseResponse`
277
+ def DeleteApplicationAndWebPlayerLicense(request)
278
+ body = send_request('DeleteApplicationAndWebPlayerLicense', request.serialize)
279
+ response = JSON.parse(body)
280
+ if response['Response'].key?('Error') == false
281
+ model = DeleteApplicationAndWebPlayerLicenseResponse.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
+
248
296
  # 查询功能列表
249
297
 
250
298
  # @param request: Request instance for DescribeFeatureList.
@@ -353,16 +353,20 @@ module TencentCloud
353
353
 
354
354
  # CreateApplicationAndVideo返回参数结构体
355
355
  class CreateApplicationAndVideoResponse < TencentCloud::Common::AbstractModel
356
+ # @param LicenseId: license唯一标识
357
+ # @type LicenseId: Integer
356
358
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
357
359
  # @type RequestId: String
358
360
 
359
- attr_accessor :RequestId
361
+ attr_accessor :LicenseId, :RequestId
360
362
 
361
- def initialize(requestid=nil)
363
+ def initialize(licenseid=nil, requestid=nil)
364
+ @LicenseId = licenseid
362
365
  @RequestId = requestid
363
366
  end
364
367
 
365
368
  def deserialize(params)
369
+ @LicenseId = params['LicenseId']
366
370
  @RequestId = params['RequestId']
367
371
  end
368
372
  end
@@ -389,16 +393,20 @@ module TencentCloud
389
393
 
390
394
  # CreateApplicationAndWebPlayerLicense返回参数结构体
391
395
  class CreateApplicationAndWebPlayerLicenseResponse < TencentCloud::Common::AbstractModel
396
+ # @param LicenseId: license的唯一标识
397
+ # @type LicenseId: Integer
392
398
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
393
399
  # @type RequestId: String
394
400
 
395
- attr_accessor :RequestId
401
+ attr_accessor :LicenseId, :RequestId
396
402
 
397
- def initialize(requestid=nil)
403
+ def initialize(licenseid=nil, requestid=nil)
404
+ @LicenseId = licenseid
398
405
  @RequestId = requestid
399
406
  end
400
407
 
401
408
  def deserialize(params)
409
+ @LicenseId = params['LicenseId']
402
410
  @RequestId = params['RequestId']
403
411
  end
404
412
  end
@@ -659,6 +667,65 @@ module TencentCloud
659
667
  end
660
668
  end
661
669
 
670
+ # DeleteApplicationAndVideoLicense请求参数结构体
671
+ class DeleteApplicationAndVideoLicenseRequest < TencentCloud::Common::AbstractModel
672
+
673
+
674
+ def initialize()
675
+ end
676
+
677
+ def deserialize(params)
678
+ end
679
+ end
680
+
681
+ # DeleteApplicationAndVideoLicense返回参数结构体
682
+ class DeleteApplicationAndVideoLicenseResponse < TencentCloud::Common::AbstractModel
683
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
684
+ # @type RequestId: String
685
+
686
+ attr_accessor :RequestId
687
+
688
+ def initialize(requestid=nil)
689
+ @RequestId = requestid
690
+ end
691
+
692
+ def deserialize(params)
693
+ @RequestId = params['RequestId']
694
+ end
695
+ end
696
+
697
+ # DeleteApplicationAndWebPlayerLicense请求参数结构体
698
+ class DeleteApplicationAndWebPlayerLicenseRequest < TencentCloud::Common::AbstractModel
699
+ # @param LicenseId: license唯一标识
700
+ # @type LicenseId: Integer
701
+
702
+ attr_accessor :LicenseId
703
+
704
+ def initialize(licenseid=nil)
705
+ @LicenseId = licenseid
706
+ end
707
+
708
+ def deserialize(params)
709
+ @LicenseId = params['LicenseId']
710
+ end
711
+ end
712
+
713
+ # DeleteApplicationAndWebPlayerLicense返回参数结构体
714
+ class DeleteApplicationAndWebPlayerLicenseResponse < TencentCloud::Common::AbstractModel
715
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
716
+ # @type RequestId: String
717
+
718
+ attr_accessor :RequestId
719
+
720
+ def initialize(requestid=nil)
721
+ @RequestId = requestid
722
+ end
723
+
724
+ def deserialize(params)
725
+ @RequestId = params['RequestId']
726
+ end
727
+ end
728
+
662
729
  # DescribeFeatureList请求参数结构体
663
730
  class DescribeFeatureListRequest < TencentCloud::Common::AbstractModel
664
731
 
@@ -1018,10 +1085,12 @@ module TencentCloud
1018
1085
  # @type MacBundleId: String
1019
1086
  # @param WinProcessName: Windows 进程名
1020
1087
  # @type WinProcessName: String
1088
+ # @param LicenseId: license唯一标识
1089
+ # @type LicenseId: Integer
1021
1090
 
1022
- attr_accessor :BizType, :AppType, :AppName, :BundleId, :PackageName, :Platform, :MacBundleId, :WinProcessName
1091
+ attr_accessor :BizType, :AppType, :AppName, :BundleId, :PackageName, :Platform, :MacBundleId, :WinProcessName, :LicenseId
1023
1092
 
1024
- def initialize(biztype=nil, apptype=nil, appname=nil, bundleid=nil, packagename=nil, platform=nil, macbundleid=nil, winprocessname=nil)
1093
+ def initialize(biztype=nil, apptype=nil, appname=nil, bundleid=nil, packagename=nil, platform=nil, macbundleid=nil, winprocessname=nil, licenseid=nil)
1025
1094
  @BizType = biztype
1026
1095
  @AppType = apptype
1027
1096
  @AppName = appname
@@ -1030,6 +1099,7 @@ module TencentCloud
1030
1099
  @Platform = platform
1031
1100
  @MacBundleId = macbundleid
1032
1101
  @WinProcessName = winprocessname
1102
+ @LicenseId = licenseid
1033
1103
  end
1034
1104
 
1035
1105
  def deserialize(params)
@@ -1041,6 +1111,7 @@ module TencentCloud
1041
1111
  @Platform = params['Platform']
1042
1112
  @MacBundleId = params['MacBundleId']
1043
1113
  @WinProcessName = params['WinProcessName']
1114
+ @LicenseId = params['LicenseId']
1044
1115
  end
1045
1116
  end
1046
1117
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-vcube
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1094
4
+ version: 3.0.1172
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-05 00:00:00.000000000 Z
11
+ date: 2025-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
+ - lib/tencentcloud-sdk-vcube.rb
36
37
  - lib/v20220410/client.rb
37
38
  - lib/v20220410/models.rb
38
- - lib/tencentcloud-sdk-vcube.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: