tencentcloud-sdk-vcube 3.0.1170 → 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: c01b0d01ab82bd3e85444c5284441bea87d7bcef
4
- data.tar.gz: b4aeb73720ca60e56277e2fd1b4377d64b9eff59
3
+ metadata.gz: 61bee3a53fc40db46bef19bcfc6990945fed8a49
4
+ data.tar.gz: a1535819cdd6728bd5de3424c7bea9b44d74eea3
5
5
  SHA512:
6
- metadata.gz: 6aab25b83fe5f4918a9f8c5f2f4e10b112e0f70f1413f5296c7f7544fe84153fa5eb75580d065c48ae05a982f21368c724c289ec104106882230e1278c6d4098
7
- data.tar.gz: 1f17ff68d43304d5324d1105b068176144ab754023c0b326119568b4abd89ee92f0c98858813bb1ef8280053b6709429c98c124cd917dbea171ed77fc2e7815a
6
+ metadata.gz: 397139cceaa9b38566b93b7487d9a1e57218a945dc43d523e3289d501e7b02d15c5d78f43930b87a04b720f70ad6ee6d18a7bb6096807ffcb1648b451ae4345d
7
+ data.tar.gz: e1c8291bcb8add3835bb44f7013bb51900e387f52cad5e44c65d7fd14addd6c0398aad8ae8be8763e3e80f3ce7e7784210047d2efde5f2676b03ef43286d7c0f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1170
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.
@@ -667,6 +667,65 @@ module TencentCloud
667
667
  end
668
668
  end
669
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
+
670
729
  # DescribeFeatureList请求参数结构体
671
730
  class DescribeFeatureListRequest < TencentCloud::Common::AbstractModel
672
731
 
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.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-11-19 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: