tencentcloud-sdk-vcube 3.0.1170 → 3.0.1189

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: c01b0d01ab82bd3e85444c5284441bea87d7bcef
4
- data.tar.gz: b4aeb73720ca60e56277e2fd1b4377d64b9eff59
3
+ metadata.gz: b2289516f8f1f062c57f492b52e4a0fa0da1de32
4
+ data.tar.gz: 6663311109de21598880e7b73683f8f588e3c7ed
5
5
  SHA512:
6
- metadata.gz: 6aab25b83fe5f4918a9f8c5f2f4e10b112e0f70f1413f5296c7f7544fe84153fa5eb75580d065c48ae05a982f21368c724c289ec104106882230e1278c6d4098
7
- data.tar.gz: 1f17ff68d43304d5324d1105b068176144ab754023c0b326119568b4abd89ee92f0c98858813bb1ef8280053b6709429c98c124cd917dbea171ed77fc2e7815a
6
+ metadata.gz: b134ec4213b763b6181021162873bb3d6136166108ea8a0051714a189f3ca05d3d030d142a6f84a2c191c602813c778e50957d44356a98dcbaf183960eb615fc
7
+ data.tar.gz: 1a9b31d95687647519e8ae6af780c2ad17af64011beffadab6abce189edb57ed80375c03a1ae26b2645ad2c86b6cf56de052f3149bfac1420969cfbeb403d3e1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1170
1
+ 3.0.1189
@@ -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.
@@ -667,6 +667,70 @@ module TencentCloud
667
667
  end
668
668
  end
669
669
 
670
+ # DeleteApplicationAndVideoLicense请求参数结构体
671
+ class DeleteApplicationAndVideoLicenseRequest < TencentCloud::Common::AbstractModel
672
+ # @param LicenseId: license唯一标识
673
+ # @type LicenseId: Integer
674
+
675
+ attr_accessor :LicenseId
676
+
677
+ def initialize(licenseid=nil)
678
+ @LicenseId = licenseid
679
+ end
680
+
681
+ def deserialize(params)
682
+ @LicenseId = params['LicenseId']
683
+ end
684
+ end
685
+
686
+ # DeleteApplicationAndVideoLicense返回参数结构体
687
+ class DeleteApplicationAndVideoLicenseResponse < TencentCloud::Common::AbstractModel
688
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
689
+ # @type RequestId: String
690
+
691
+ attr_accessor :RequestId
692
+
693
+ def initialize(requestid=nil)
694
+ @RequestId = requestid
695
+ end
696
+
697
+ def deserialize(params)
698
+ @RequestId = params['RequestId']
699
+ end
700
+ end
701
+
702
+ # DeleteApplicationAndWebPlayerLicense请求参数结构体
703
+ class DeleteApplicationAndWebPlayerLicenseRequest < TencentCloud::Common::AbstractModel
704
+ # @param LicenseId: license唯一标识
705
+ # @type LicenseId: Integer
706
+
707
+ attr_accessor :LicenseId
708
+
709
+ def initialize(licenseid=nil)
710
+ @LicenseId = licenseid
711
+ end
712
+
713
+ def deserialize(params)
714
+ @LicenseId = params['LicenseId']
715
+ end
716
+ end
717
+
718
+ # DeleteApplicationAndWebPlayerLicense返回参数结构体
719
+ class DeleteApplicationAndWebPlayerLicenseResponse < TencentCloud::Common::AbstractModel
720
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
721
+ # @type RequestId: String
722
+
723
+ attr_accessor :RequestId
724
+
725
+ def initialize(requestid=nil)
726
+ @RequestId = requestid
727
+ end
728
+
729
+ def deserialize(params)
730
+ @RequestId = params['RequestId']
731
+ end
732
+ end
733
+
670
734
  # DescribeFeatureList请求参数结构体
671
735
  class DescribeFeatureListRequest < TencentCloud::Common::AbstractModel
672
736
 
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.1170
4
+ version: 3.0.1189
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-11-19 00:00:00.000000000 Z
11
+ date: 2025-12-24 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: