tencentcloud-sdk-vcube 3.0.1094 → 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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220410/models.rb +18 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c01b0d01ab82bd3e85444c5284441bea87d7bcef
|
|
4
|
+
data.tar.gz: b4aeb73720ca60e56277e2fd1b4377d64b9eff59
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6aab25b83fe5f4918a9f8c5f2f4e10b112e0f70f1413f5296c7f7544fe84153fa5eb75580d065c48ae05a982f21368c724c289ec104106882230e1278c6d4098
|
|
7
|
+
data.tar.gz: 1f17ff68d43304d5324d1105b068176144ab754023c0b326119568b4abd89ee92f0c98858813bb1ef8280053b6709429c98c124cd917dbea171ed77fc2e7815a
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1170
|
data/lib/v20220410/models.rb
CHANGED
|
@@ -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.
|
|
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-
|
|
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
|