tencentcloud-sdk-nodejs-cloudstudio 4.1.193 → 4.1.310
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-cloudstudio",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.310",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
"@types/json-bigint": "^1.0.1",
|
|
50
50
|
"@types/node": "^18.0.0",
|
|
51
51
|
"@types/node-fetch": "^2.5.7",
|
|
52
|
-
"@types/uuid": "^9.0.8",
|
|
53
52
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
54
53
|
"@typescript-eslint/parser": "^2.34.0",
|
|
55
54
|
"babel-eslint": "^10.0.2",
|
|
@@ -90,57 +90,53 @@ export interface CreateWorkspaceTokenRequest {
|
|
|
90
90
|
*/
|
|
91
91
|
export interface CreateWorkspaceRequest {
|
|
92
92
|
/**
|
|
93
|
-
*
|
|
93
|
+
* <p>工作空间名称, 长度限制 2~64</p>
|
|
94
94
|
*/
|
|
95
95
|
Name: string;
|
|
96
96
|
/**
|
|
97
|
-
*
|
|
97
|
+
* <p>工作空间描述, 长度限制 0~255</p>
|
|
98
98
|
*/
|
|
99
99
|
Description?: string;
|
|
100
100
|
/**
|
|
101
|
-
*
|
|
101
|
+
* <p>工作空间规格。Standard: 2C4G, Calculation: 4C8G, Profession: 8C16G. 默认是 Standard。</p>
|
|
102
102
|
*/
|
|
103
103
|
Specs?: string;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* <p>工作空间基础镜像名称, 默认会使用 All In One 镜像, 长度限制 1~255</p>
|
|
106
106
|
*/
|
|
107
107
|
Image?: string;
|
|
108
108
|
/**
|
|
109
|
-
* Git 仓库.
|
|
109
|
+
* <p>Git 仓库. 工作空间启动时会自动克隆该仓库</p>
|
|
110
110
|
*/
|
|
111
111
|
Repository?: GitRepository;
|
|
112
112
|
/**
|
|
113
|
-
*
|
|
113
|
+
* <p>环境变量. 会被注入到工作空间中</p>
|
|
114
114
|
*/
|
|
115
115
|
Envs?: Array<Env>;
|
|
116
116
|
/**
|
|
117
|
-
*
|
|
117
|
+
* <p>预装插件. 工作空间启动时, 会自动安装这些插件。长度限制: 0~10</p>
|
|
118
118
|
*/
|
|
119
119
|
Extensions?: Array<string>;
|
|
120
120
|
/**
|
|
121
|
-
*
|
|
121
|
+
* <p>工作空间生命周期钩子. 分为三个阶段 init, start, destroy. 分别表示工作空间数据初始化阶段, 工作空间启动阶段, 工作空间关闭阶段. 用户可以自定义 shell 命令.</p>
|
|
122
122
|
*/
|
|
123
123
|
Lifecycle?: LifeCycle;
|
|
124
124
|
/**
|
|
125
|
-
*
|
|
125
|
+
* <p>应用名称</p>
|
|
126
126
|
*/
|
|
127
127
|
TenantAppId?: number;
|
|
128
128
|
/**
|
|
129
|
-
*
|
|
129
|
+
* <p>用户UIN</p>
|
|
130
130
|
*/
|
|
131
131
|
TenantUin?: string;
|
|
132
132
|
/**
|
|
133
|
-
* VPCID
|
|
133
|
+
* <p>VPCID</p>
|
|
134
134
|
*/
|
|
135
135
|
TenantUniqVpcId?: string;
|
|
136
136
|
/**
|
|
137
|
-
*
|
|
137
|
+
* <p>子网ID</p>
|
|
138
138
|
*/
|
|
139
139
|
TenantSubnetId?: string;
|
|
140
|
-
/**
|
|
141
|
-
* 地域
|
|
142
|
-
*/
|
|
143
|
-
Region?: string;
|
|
144
140
|
}
|
|
145
141
|
/**
|
|
146
142
|
* RunWorkspace返回参数结构体
|
|
@@ -292,11 +288,11 @@ export interface ModifyWorkspaceResponse {
|
|
|
292
288
|
*/
|
|
293
289
|
export interface CreateWorkspaceResponse {
|
|
294
290
|
/**
|
|
295
|
-
*
|
|
291
|
+
* <p>工作空间 SpaceKey</p>
|
|
296
292
|
*/
|
|
297
293
|
SpaceKey?: string;
|
|
298
294
|
/**
|
|
299
|
-
*
|
|
295
|
+
* <p>工作空间名称</p>
|
|
300
296
|
*/
|
|
301
297
|
Name?: string;
|
|
302
298
|
/**
|