tencentcloud-sdk-cloudstudio 3.0.810 → 3.0.811
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/v20230508/models.rb +24 -20
- 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: 9f546d9730e02a1aa5d82de299d3210eece9dcb3
|
|
4
|
+
data.tar.gz: 036ce523577b39697be148024410f9e9c721af68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 04d27b76c3cde0bf6cb6704eab1f9f1c3db014aab9d7d22a4f5089e2c0c62309a94822002fd80e56a9341dfc2bdf87934b79b361fd12fafecbe0a76198c8934a
|
|
7
|
+
data.tar.gz: 5a2dc6ca2188e76c37916b04787f4a25203bd07b0a838f545e8e686c5a30ead28a486bfa2ddd19723dbacd3754744930e8fa9a5cdc4917d9dd79eeed7c9296c1
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.811
|
data/lib/v20230508/models.rb
CHANGED
|
@@ -35,18 +35,20 @@ module TencentCloud
|
|
|
35
35
|
# @type Extensions: Array
|
|
36
36
|
# @param Lifecycle: 工作空间生命周期钩子. 分为三个阶段 init, start, destroy. 分别表示工作空间数据初始化阶段, 工作空间启动阶段, 工作空间关闭阶段. 用户可以自定义 shell 命令.
|
|
37
37
|
# @type Lifecycle: :class:`Tencentcloud::Cloudstudio.v20230508.models.LifeCycle`
|
|
38
|
-
# @param
|
|
39
|
-
# @type
|
|
40
|
-
# @param
|
|
41
|
-
# @type
|
|
42
|
-
# @param
|
|
43
|
-
# @type
|
|
44
|
-
# @param
|
|
45
|
-
# @type
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
38
|
+
# @param TenantAppId: 应用名称
|
|
39
|
+
# @type TenantAppId: Integer
|
|
40
|
+
# @param TenantUin: 用户UIN
|
|
41
|
+
# @type TenantUin: String
|
|
42
|
+
# @param TenantUniqVpcId: VPCID
|
|
43
|
+
# @type TenantUniqVpcId: String
|
|
44
|
+
# @param TenantSubnetId: 子网ID
|
|
45
|
+
# @type TenantSubnetId: String
|
|
46
|
+
# @param Region: 地域
|
|
47
|
+
# @type Region: String
|
|
48
|
+
|
|
49
|
+
attr_accessor :Name, :Description, :Specs, :Image, :Repository, :Envs, :Extensions, :Lifecycle, :TenantAppId, :TenantUin, :TenantUniqVpcId, :TenantSubnetId, :Region
|
|
50
|
+
|
|
51
|
+
def initialize(name=nil, description=nil, specs=nil, image=nil, repository=nil, envs=nil, extensions=nil, lifecycle=nil, tenantappid=nil, tenantuin=nil, tenantuniqvpcid=nil, tenantsubnetid=nil, region=nil)
|
|
50
52
|
@Name = name
|
|
51
53
|
@Description = description
|
|
52
54
|
@Specs = specs
|
|
@@ -55,10 +57,11 @@ module TencentCloud
|
|
|
55
57
|
@Envs = envs
|
|
56
58
|
@Extensions = extensions
|
|
57
59
|
@Lifecycle = lifecycle
|
|
58
|
-
@
|
|
59
|
-
@
|
|
60
|
-
@
|
|
61
|
-
@
|
|
60
|
+
@TenantAppId = tenantappid
|
|
61
|
+
@TenantUin = tenantuin
|
|
62
|
+
@TenantUniqVpcId = tenantuniqvpcid
|
|
63
|
+
@TenantSubnetId = tenantsubnetid
|
|
64
|
+
@Region = region
|
|
62
65
|
end
|
|
63
66
|
|
|
64
67
|
def deserialize(params)
|
|
@@ -83,10 +86,11 @@ module TencentCloud
|
|
|
83
86
|
@Lifecycle = LifeCycle.new
|
|
84
87
|
@Lifecycle.deserialize(params['Lifecycle'])
|
|
85
88
|
end
|
|
86
|
-
@
|
|
87
|
-
@
|
|
88
|
-
@
|
|
89
|
-
@
|
|
89
|
+
@TenantAppId = params['TenantAppId']
|
|
90
|
+
@TenantUin = params['TenantUin']
|
|
91
|
+
@TenantUniqVpcId = params['TenantUniqVpcId']
|
|
92
|
+
@TenantSubnetId = params['TenantSubnetId']
|
|
93
|
+
@Region = params['Region']
|
|
90
94
|
end
|
|
91
95
|
end
|
|
92
96
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-cloudstudio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.811
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-04-
|
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|