tencentcloud-sdk-cloudstudio 3.0.791 → 3.0.793
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 -8
- 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: bc0daf2a8f2356b39c0aa0b077ef79fc02f8ba29
|
4
|
+
data.tar.gz: f15343143a16e07d18871898c0cb9f569e8fef39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad2103a4a660ed4cd494b2372ee668b13a2db7fa1b77e4dc803fdd1dd21bfb7f7cc142da0afdf4b55e2035266fe8ca4e3d70c1f0003602f0628b1d57b4ef4c75
|
7
|
+
data.tar.gz: 8d1f72144675f09840ed723817c5f611545fd5640aff3ca6499b4d2dc28135a7925213e0460bb7ae765c25d00d56f4e75a1a3b89daf4900b647b7d3dfc570010
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.793
|
data/lib/v20230508/models.rb
CHANGED
@@ -19,26 +19,34 @@ module TencentCloud
|
|
19
19
|
module V20230508
|
20
20
|
# CreateWorkspace请求参数结构体
|
21
21
|
class CreateWorkspaceRequest < TencentCloud::Common::AbstractModel
|
22
|
-
# @param Name:
|
22
|
+
# @param Name: 工作空间名称, 长度限制 2~64
|
23
23
|
# @type Name: String
|
24
|
-
# @param Description:
|
24
|
+
# @param Description: 工作空间描述, 长度限制 0~255
|
25
25
|
# @type Description: String
|
26
26
|
# @param Specs: 工作空间规格。Standard: 2C4G, Calculation: 4C8G, Profession: 8C16G. 默认是 Standard。
|
27
27
|
# @type Specs: String
|
28
|
-
# @param Image: 工作空间基础镜像名称, 默认会使用 All In One
|
28
|
+
# @param Image: 工作空间基础镜像名称, 默认会使用 All In One 镜像, 长度限制 1~255
|
29
29
|
# @type Image: String
|
30
30
|
# @param Repository: Git 仓库. 工作空间启动时会自动克隆该仓库
|
31
31
|
# @type Repository: :class:`Tencentcloud::Cloudstudio.v20230508.models.GitRepository`
|
32
32
|
# @param Envs: 环境变量. 会被注入到工作空间中
|
33
33
|
# @type Envs: Array
|
34
|
-
# @param Extensions: 预装插件. 工作空间启动时,
|
34
|
+
# @param Extensions: 预装插件. 工作空间启动时, 会自动安装这些插件。长度限制: 0~10
|
35
35
|
# @type Extensions: Array
|
36
36
|
# @param Lifecycle: 工作空间生命周期钩子. 分为三个阶段 init, start, destroy. 分别表示工作空间数据初始化阶段, 工作空间启动阶段, 工作空间关闭阶段. 用户可以自定义 shell 命令.
|
37
37
|
# @type Lifecycle: :class:`Tencentcloud::Cloudstudio.v20230508.models.LifeCycle`
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
38
|
+
# @param AppId: 应用名称
|
39
|
+
# @type AppId: Integer
|
40
|
+
# @param Uin: 用户UIN
|
41
|
+
# @type Uin: String
|
42
|
+
# @param UniqVpcId: VPCID
|
43
|
+
# @type UniqVpcId: String
|
44
|
+
# @param SubnetId: 子网ID
|
45
|
+
# @type SubnetId: String
|
46
|
+
|
47
|
+
attr_accessor :Name, :Description, :Specs, :Image, :Repository, :Envs, :Extensions, :Lifecycle, :AppId, :Uin, :UniqVpcId, :SubnetId
|
48
|
+
|
49
|
+
def initialize(name=nil, description=nil, specs=nil, image=nil, repository=nil, envs=nil, extensions=nil, lifecycle=nil, appid=nil, uin=nil, uniqvpcid=nil, subnetid=nil)
|
42
50
|
@Name = name
|
43
51
|
@Description = description
|
44
52
|
@Specs = specs
|
@@ -47,6 +55,10 @@ module TencentCloud
|
|
47
55
|
@Envs = envs
|
48
56
|
@Extensions = extensions
|
49
57
|
@Lifecycle = lifecycle
|
58
|
+
@AppId = appid
|
59
|
+
@Uin = uin
|
60
|
+
@UniqVpcId = uniqvpcid
|
61
|
+
@SubnetId = subnetid
|
50
62
|
end
|
51
63
|
|
52
64
|
def deserialize(params)
|
@@ -71,6 +83,10 @@ module TencentCloud
|
|
71
83
|
@Lifecycle = LifeCycle.new
|
72
84
|
@Lifecycle.deserialize(params['Lifecycle'])
|
73
85
|
end
|
86
|
+
@AppId = params['AppId']
|
87
|
+
@Uin = params['Uin']
|
88
|
+
@UniqVpcId = params['UniqVpcId']
|
89
|
+
@SubnetId = params['SubnetId']
|
74
90
|
end
|
75
91
|
end
|
76
92
|
|
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.793
|
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-03-
|
11
|
+
date: 2024-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|