tencentcloud-sdk-vcube 3.0.1074 → 3.0.1170

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: 9fe24961b649b1d53f9664c48dab54822a549280
4
- data.tar.gz: 0f9885205d4214857871f563b8bd1364b38689d7
3
+ metadata.gz: c01b0d01ab82bd3e85444c5284441bea87d7bcef
4
+ data.tar.gz: b4aeb73720ca60e56277e2fd1b4377d64b9eff59
5
5
  SHA512:
6
- metadata.gz: 9d354d6c77ce4ce514911a3649c8de508ddcbd792b6dbc6d805966e24a9928a1daa8f3b478f7359ec98486b8d677e557adeca19522d442bc873b94f2052de990
7
- data.tar.gz: 30b2f94eb01b04604e54797d1e96f59fbb0b7755932f8a5ea4325427696e9c5e229298288807ac0f3036a94ac94c03eac0ed8a6793c4eda01bfa7b0295b002e7
6
+ metadata.gz: 6aab25b83fe5f4918a9f8c5f2f4e10b112e0f70f1413f5296c7f7544fe84153fa5eb75580d065c48ae05a982f21368c724c289ec104106882230e1278c6d4098
7
+ data.tar.gz: 1f17ff68d43304d5324d1105b068176144ab754023c0b326119568b4abd89ee92f0c98858813bb1ef8280053b6709429c98c124cd917dbea171ed77fc2e7815a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1074
1
+ 3.0.1170
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
6
6
  # you may not use this file except in compliance with the License.
@@ -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
@@ -1018,10 +1026,12 @@ module TencentCloud
1018
1026
  # @type MacBundleId: String
1019
1027
  # @param WinProcessName: Windows 进程名
1020
1028
  # @type WinProcessName: String
1029
+ # @param LicenseId: license唯一标识
1030
+ # @type LicenseId: Integer
1021
1031
 
1022
- attr_accessor :BizType, :AppType, :AppName, :BundleId, :PackageName, :Platform, :MacBundleId, :WinProcessName
1032
+ attr_accessor :BizType, :AppType, :AppName, :BundleId, :PackageName, :Platform, :MacBundleId, :WinProcessName, :LicenseId
1023
1033
 
1024
- def initialize(biztype=nil, apptype=nil, appname=nil, bundleid=nil, packagename=nil, platform=nil, macbundleid=nil, winprocessname=nil)
1034
+ def initialize(biztype=nil, apptype=nil, appname=nil, bundleid=nil, packagename=nil, platform=nil, macbundleid=nil, winprocessname=nil, licenseid=nil)
1025
1035
  @BizType = biztype
1026
1036
  @AppType = apptype
1027
1037
  @AppName = appname
@@ -1030,6 +1040,7 @@ module TencentCloud
1030
1040
  @Platform = platform
1031
1041
  @MacBundleId = macbundleid
1032
1042
  @WinProcessName = winprocessname
1043
+ @LicenseId = licenseid
1033
1044
  end
1034
1045
 
1035
1046
  def deserialize(params)
@@ -1041,6 +1052,7 @@ module TencentCloud
1041
1052
  @Platform = params['Platform']
1042
1053
  @MacBundleId = params['MacBundleId']
1043
1054
  @WinProcessName = params['WinProcessName']
1055
+ @LicenseId = params['LicenseId']
1044
1056
  end
1045
1057
  end
1046
1058
 
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.1074
4
+ version: 3.0.1170
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-06-04 00:00:00.000000000 Z
11
+ date: 2025-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common