tencentcloud-sdk-nodejs-tione 4.0.617 → 4.0.620
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/CHANGELOG.md +791 -0
- package/SERVICE_CHANGELOG.md +849 -22
- package/package.json +1 -1
- package/products.md +41 -41
- package/src/services/tione/v20191022/tione_models.ts +250 -435
- package/src/services/tione/v20211111/tione_models.ts +1008 -1820
- package/tencentcloud/services/tione/v20191022/tione_models.d.ts +250 -250
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +1008 -1008
|
@@ -3,19 +3,19 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export interface OutputDataConfig {
|
|
5
5
|
/**
|
|
6
|
-
|
|
6
|
+
* cos输出桶
|
|
7
7
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8
|
-
|
|
8
|
+
*/
|
|
9
9
|
CosOutputBucket?: string;
|
|
10
10
|
/**
|
|
11
|
-
|
|
11
|
+
* cos输出key前缀
|
|
12
12
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13
|
-
|
|
13
|
+
*/
|
|
14
14
|
CosOutputKeyPrefix?: string;
|
|
15
15
|
/**
|
|
16
|
-
|
|
16
|
+
* 文件系统输出,如果指定了文件系统,那么Cos输出会被忽略
|
|
17
17
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
18
|
-
|
|
18
|
+
*/
|
|
19
19
|
FileSystemDataSource?: FileSystemDataSource;
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
@@ -32,20 +32,20 @@ export interface StopTrainingJobResponse {
|
|
|
32
32
|
*/
|
|
33
33
|
export interface BillingLabel {
|
|
34
34
|
/**
|
|
35
|
-
|
|
35
|
+
* 计费项标识
|
|
36
36
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
37
|
-
|
|
37
|
+
*/
|
|
38
38
|
Label: string;
|
|
39
39
|
/**
|
|
40
40
|
* 存储大小
|
|
41
41
|
*/
|
|
42
42
|
VolumeSize: number;
|
|
43
43
|
/**
|
|
44
|
-
|
|
44
|
+
* 计费状态
|
|
45
45
|
None: 不计费
|
|
46
46
|
StorageOnly: 仅存储计费
|
|
47
47
|
Computing: 计算和存储都计费
|
|
48
|
-
|
|
48
|
+
*/
|
|
49
49
|
Status: string;
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
@@ -66,68 +66,68 @@ export interface EnvConfig {
|
|
|
66
66
|
*/
|
|
67
67
|
export interface CreateNotebookInstanceRequest {
|
|
68
68
|
/**
|
|
69
|
-
|
|
69
|
+
* Notebook实例名称,不能超过63个字符
|
|
70
70
|
规则:“^\[a-zA-Z0-9\](-\*\[a-zA-Z0-9\])\*$”
|
|
71
|
-
|
|
71
|
+
*/
|
|
72
72
|
NotebookInstanceName: string;
|
|
73
73
|
/**
|
|
74
|
-
|
|
74
|
+
* Notebook算力类型
|
|
75
75
|
参考https://cloud.tencent.com/document/product/851/41239
|
|
76
|
-
|
|
76
|
+
*/
|
|
77
77
|
InstanceType: string;
|
|
78
78
|
/**
|
|
79
|
-
|
|
79
|
+
* 数据卷大小(GB)
|
|
80
80
|
用户持久化Notebook实例的数据
|
|
81
|
-
|
|
81
|
+
*/
|
|
82
82
|
VolumeSizeInGB: number;
|
|
83
83
|
/**
|
|
84
|
-
|
|
84
|
+
* 外网访问权限,可取值Enabled/Disabled
|
|
85
85
|
开启后,Notebook实例可以具有访问外网80,443端口的权限
|
|
86
|
-
|
|
86
|
+
*/
|
|
87
87
|
DirectInternetAccess?: string;
|
|
88
88
|
/**
|
|
89
|
-
|
|
89
|
+
* Root用户权限,可取值Enabled/Disabled
|
|
90
90
|
开启后,Notebook实例可以切换至root用户执行命令
|
|
91
|
-
|
|
91
|
+
*/
|
|
92
92
|
RootAccess?: string;
|
|
93
93
|
/**
|
|
94
|
-
|
|
94
|
+
* 子网ID
|
|
95
95
|
如果需要Notebook实例访问VPC内的资源,则需要选择对应的子网
|
|
96
|
-
|
|
96
|
+
*/
|
|
97
97
|
SubnetId?: string;
|
|
98
98
|
/**
|
|
99
|
-
|
|
99
|
+
* 生命周期脚本名称
|
|
100
100
|
必须是已存在的生命周期脚本,具体参考https://cloud.tencent.com/document/product/851/43140
|
|
101
|
-
|
|
101
|
+
*/
|
|
102
102
|
LifecycleScriptsName?: string;
|
|
103
103
|
/**
|
|
104
|
-
|
|
104
|
+
* 默认存储库名称
|
|
105
105
|
可以是已创建的存储库名称或者已https://开头的公共git库
|
|
106
106
|
参考https://cloud.tencent.com/document/product/851/43139
|
|
107
|
-
|
|
107
|
+
*/
|
|
108
108
|
DefaultCodeRepository?: string;
|
|
109
109
|
/**
|
|
110
|
-
|
|
110
|
+
* 其他存储库列表
|
|
111
111
|
每个元素可以是已创建的存储库名称或者已https://开头的公共git库
|
|
112
112
|
参考https://cloud.tencent.com/document/product/851/43139
|
|
113
|
-
|
|
113
|
+
*/
|
|
114
114
|
AdditionalCodeRepositories?: Array<string>;
|
|
115
115
|
/**
|
|
116
|
-
|
|
116
|
+
* 已弃用,请使用ClsConfig配置。
|
|
117
117
|
是否开启CLS日志服务,可取值Enabled/Disabled,默认为Disabled
|
|
118
118
|
开启后,Notebook运行的日志会收集到CLS中,CLS会产生费用,请根据需要选择
|
|
119
|
-
|
|
119
|
+
*/
|
|
120
120
|
ClsAccess?: string;
|
|
121
121
|
/**
|
|
122
|
-
|
|
122
|
+
* 自动停止配置
|
|
123
123
|
选择定时停止Notebook实例
|
|
124
|
-
|
|
124
|
+
*/
|
|
125
125
|
StoppingCondition?: StoppingCondition;
|
|
126
126
|
/**
|
|
127
|
-
|
|
127
|
+
* 自动停止,可取值Enabled/Disabled
|
|
128
128
|
取值为Disabled的时候StoppingCondition将被忽略
|
|
129
129
|
取值为Enabled的时候读取StoppingCondition作为自动停止的配置
|
|
130
|
-
|
|
130
|
+
*/
|
|
131
131
|
AutoStopping?: string;
|
|
132
132
|
/**
|
|
133
133
|
* 接入日志的配置,默认接入免费日志
|
|
@@ -143,24 +143,24 @@ export declare type DescribeNotebookSummaryRequest = null;
|
|
|
143
143
|
*/
|
|
144
144
|
export interface SecondaryStatusTransition {
|
|
145
145
|
/**
|
|
146
|
-
|
|
146
|
+
* 状态开始时间
|
|
147
147
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
148
|
-
|
|
148
|
+
*/
|
|
149
149
|
StartTime: string;
|
|
150
150
|
/**
|
|
151
|
-
|
|
151
|
+
* 状态结束时间
|
|
152
152
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
153
|
-
|
|
153
|
+
*/
|
|
154
154
|
EndTime: string;
|
|
155
155
|
/**
|
|
156
|
-
|
|
156
|
+
* 状态名
|
|
157
157
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
158
|
-
|
|
158
|
+
*/
|
|
159
159
|
Status: string;
|
|
160
160
|
/**
|
|
161
|
-
|
|
161
|
+
* 状态详情
|
|
162
162
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
163
|
-
|
|
163
|
+
*/
|
|
164
164
|
StatusMessage: string;
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
@@ -168,9 +168,9 @@ export interface SecondaryStatusTransition {
|
|
|
168
168
|
*/
|
|
169
169
|
export interface DescribeNotebookInstanceRequest {
|
|
170
170
|
/**
|
|
171
|
-
|
|
171
|
+
* Notebook实例名称
|
|
172
172
|
规则:“^\[a-zA-Z0-9\](-\*\[a-zA-Z0-9\])\*$”
|
|
173
|
-
|
|
173
|
+
*/
|
|
174
174
|
NotebookInstanceName: string;
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
@@ -187,74 +187,74 @@ export interface DeleteNotebookInstanceResponse {
|
|
|
187
187
|
*/
|
|
188
188
|
export interface NotebookInstanceSummary {
|
|
189
189
|
/**
|
|
190
|
-
|
|
190
|
+
* 创建时间
|
|
191
191
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
192
|
-
|
|
192
|
+
*/
|
|
193
193
|
CreationTime: string;
|
|
194
194
|
/**
|
|
195
|
-
|
|
195
|
+
* 最近修改时间
|
|
196
196
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
197
|
-
|
|
197
|
+
*/
|
|
198
198
|
LastModifiedTime: string;
|
|
199
199
|
/**
|
|
200
|
-
|
|
200
|
+
* notebook实例名字
|
|
201
201
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
202
|
-
|
|
202
|
+
*/
|
|
203
203
|
NotebookInstanceName: string;
|
|
204
204
|
/**
|
|
205
|
-
|
|
205
|
+
* notebook实例状态,取值范围:
|
|
206
206
|
Pending: 创建中
|
|
207
207
|
Inservice: 运行中
|
|
208
208
|
Stopping: 停止中
|
|
209
209
|
Stopped: 已停止
|
|
210
210
|
Failed: 失败
|
|
211
211
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
212
|
-
|
|
212
|
+
*/
|
|
213
213
|
NotebookInstanceStatus: string;
|
|
214
214
|
/**
|
|
215
|
-
|
|
215
|
+
* 算力类型
|
|
216
216
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
217
|
-
|
|
217
|
+
*/
|
|
218
218
|
InstanceType: string;
|
|
219
219
|
/**
|
|
220
|
-
|
|
220
|
+
* 实例ID
|
|
221
221
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
222
|
-
|
|
222
|
+
*/
|
|
223
223
|
InstanceId: string;
|
|
224
224
|
/**
|
|
225
|
-
|
|
225
|
+
* 启动时间
|
|
226
226
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
227
|
-
|
|
227
|
+
*/
|
|
228
228
|
StartupTime: string;
|
|
229
229
|
/**
|
|
230
|
-
|
|
230
|
+
* 运行截止时间
|
|
231
231
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
232
|
-
|
|
232
|
+
*/
|
|
233
233
|
Deadline: string;
|
|
234
234
|
/**
|
|
235
|
-
|
|
235
|
+
* 自动停止配置
|
|
236
236
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
237
|
-
|
|
237
|
+
*/
|
|
238
238
|
StoppingCondition: StoppingCondition;
|
|
239
239
|
/**
|
|
240
|
-
|
|
240
|
+
* 是否是预付费实例
|
|
241
241
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
242
|
-
|
|
242
|
+
*/
|
|
243
243
|
Prepay: boolean;
|
|
244
244
|
/**
|
|
245
|
-
|
|
245
|
+
* 计费标识
|
|
246
246
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
247
|
-
|
|
247
|
+
*/
|
|
248
248
|
BillingLabel: BillingLabel;
|
|
249
249
|
/**
|
|
250
|
-
|
|
250
|
+
* 运行时长,秒
|
|
251
251
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
252
|
-
|
|
252
|
+
*/
|
|
253
253
|
RuntimeInSeconds: number;
|
|
254
254
|
/**
|
|
255
|
-
|
|
255
|
+
* 剩余时长,秒
|
|
256
256
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
257
|
-
|
|
257
|
+
*/
|
|
258
258
|
RemainTimeInSeconds: number;
|
|
259
259
|
}
|
|
260
260
|
/**
|
|
@@ -266,9 +266,9 @@ export interface GitConfig {
|
|
|
266
266
|
*/
|
|
267
267
|
RepositoryUrl: string;
|
|
268
268
|
/**
|
|
269
|
-
|
|
269
|
+
* 代码分支
|
|
270
270
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
271
|
-
|
|
271
|
+
*/
|
|
272
272
|
Branch?: string;
|
|
273
273
|
}
|
|
274
274
|
/**
|
|
@@ -301,19 +301,19 @@ export interface CodeRepoSummary {
|
|
|
301
301
|
*/
|
|
302
302
|
export interface ResourceConfig {
|
|
303
303
|
/**
|
|
304
|
-
|
|
304
|
+
* 计算实例数量
|
|
305
305
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
306
|
-
|
|
306
|
+
*/
|
|
307
307
|
InstanceCount: number;
|
|
308
308
|
/**
|
|
309
|
-
|
|
309
|
+
* 计算实例类型
|
|
310
310
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
311
|
-
|
|
311
|
+
*/
|
|
312
312
|
InstanceType: string;
|
|
313
313
|
/**
|
|
314
|
-
|
|
314
|
+
* 挂载CBS大小(GB)
|
|
315
315
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
316
|
-
|
|
316
|
+
*/
|
|
317
317
|
VolumeSizeInGB?: number;
|
|
318
318
|
}
|
|
319
319
|
/**
|
|
@@ -338,16 +338,16 @@ export interface DescribeNotebookLifecycleScriptsRequest {
|
|
|
338
338
|
*/
|
|
339
339
|
Limit?: number;
|
|
340
340
|
/**
|
|
341
|
-
|
|
341
|
+
* 过滤条件。
|
|
342
342
|
instance-name - String - 是否必填:否 -(过滤条件)按照名称过滤。
|
|
343
343
|
search-by-name - String - 是否必填:否 -(过滤条件)按照名称检索,模糊匹配。
|
|
344
|
-
|
|
344
|
+
*/
|
|
345
345
|
Filters?: Array<Filter>;
|
|
346
346
|
/**
|
|
347
|
-
|
|
347
|
+
* 排序规则。默认取Descending
|
|
348
348
|
Descending 按更新时间降序
|
|
349
349
|
Ascending 按更新时间升序
|
|
350
|
-
|
|
350
|
+
*/
|
|
351
351
|
SortOrder?: string;
|
|
352
352
|
}
|
|
353
353
|
/**
|
|
@@ -359,10 +359,10 @@ export interface GitSecret {
|
|
|
359
359
|
*/
|
|
360
360
|
NoSecret?: boolean;
|
|
361
361
|
/**
|
|
362
|
-
|
|
362
|
+
* Git用户名密码base64编码后的字符串
|
|
363
363
|
编码前的内容应为Json字符串,如
|
|
364
364
|
{"UserName": "用户名", "Password":"密码"}
|
|
365
|
-
|
|
365
|
+
*/
|
|
366
366
|
Secret?: string;
|
|
367
367
|
}
|
|
368
368
|
/**
|
|
@@ -408,24 +408,24 @@ export interface DescribeCodeRepositoryResponse {
|
|
|
408
408
|
*/
|
|
409
409
|
export interface InputDataConfig {
|
|
410
410
|
/**
|
|
411
|
-
|
|
411
|
+
* 通道名
|
|
412
412
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
413
|
-
|
|
413
|
+
*/
|
|
414
414
|
ChannelName?: string;
|
|
415
415
|
/**
|
|
416
|
-
|
|
416
|
+
* 数据源配置
|
|
417
417
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
418
|
-
|
|
418
|
+
*/
|
|
419
419
|
DataSource?: DataSource;
|
|
420
420
|
/**
|
|
421
|
-
|
|
421
|
+
* 输入类型
|
|
422
422
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
423
|
-
|
|
423
|
+
*/
|
|
424
424
|
InputMode?: string;
|
|
425
425
|
/**
|
|
426
|
-
|
|
426
|
+
* 文件类型
|
|
427
427
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
428
|
-
|
|
428
|
+
*/
|
|
429
429
|
ContentType?: string;
|
|
430
430
|
}
|
|
431
431
|
/**
|
|
@@ -468,24 +468,24 @@ export interface CreateNotebookInstanceResponse {
|
|
|
468
468
|
*/
|
|
469
469
|
export interface FileSystemDataSource {
|
|
470
470
|
/**
|
|
471
|
-
|
|
471
|
+
* 文件系统目录
|
|
472
472
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
473
|
-
|
|
473
|
+
*/
|
|
474
474
|
DirectoryPath?: string;
|
|
475
475
|
/**
|
|
476
|
-
|
|
476
|
+
* 文件系统类型
|
|
477
477
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
478
|
-
|
|
478
|
+
*/
|
|
479
479
|
FileSystemType?: string;
|
|
480
480
|
/**
|
|
481
|
-
|
|
481
|
+
* 文件系统访问模式
|
|
482
482
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
483
|
-
|
|
483
|
+
*/
|
|
484
484
|
FileSystemAccessMode?: string;
|
|
485
485
|
/**
|
|
486
|
-
|
|
486
|
+
* 文件系统ID
|
|
487
487
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
488
|
-
|
|
488
|
+
*/
|
|
489
489
|
FileSystemId?: string;
|
|
490
490
|
}
|
|
491
491
|
/**
|
|
@@ -549,14 +549,14 @@ export interface UpdateNotebookLifecycleScriptRequest {
|
|
|
549
549
|
*/
|
|
550
550
|
NotebookLifecycleScriptsName: string;
|
|
551
551
|
/**
|
|
552
|
-
|
|
552
|
+
* 创建脚本,base64编码
|
|
553
553
|
base64后的脚本长度不能超过16384个字符
|
|
554
|
-
|
|
554
|
+
*/
|
|
555
555
|
CreateScript?: string;
|
|
556
556
|
/**
|
|
557
|
-
|
|
557
|
+
* 启动脚本,base64编码
|
|
558
558
|
base64后的脚本长度不能超过16384个字符
|
|
559
|
-
|
|
559
|
+
*/
|
|
560
560
|
StartScript?: string;
|
|
561
561
|
}
|
|
562
562
|
/**
|
|
@@ -564,9 +564,9 @@ export interface UpdateNotebookLifecycleScriptRequest {
|
|
|
564
564
|
*/
|
|
565
565
|
export interface UpdateNotebookInstanceRequest {
|
|
566
566
|
/**
|
|
567
|
-
|
|
567
|
+
* Notebook实例名称
|
|
568
568
|
规则:“^\[a-zA-Z0-9\](-\*\[a-zA-Z0-9\])\*$”
|
|
569
|
-
|
|
569
|
+
*/
|
|
570
570
|
NotebookInstanceName: string;
|
|
571
571
|
/**
|
|
572
572
|
* 角色的资源描述
|
|
@@ -589,39 +589,39 @@ export interface UpdateNotebookInstanceRequest {
|
|
|
589
589
|
*/
|
|
590
590
|
LifecycleScriptsName?: string;
|
|
591
591
|
/**
|
|
592
|
-
|
|
592
|
+
* 是否解绑生命周期脚本,默认 false。
|
|
593
593
|
该值为true时,LifecycleScriptsName将被忽略
|
|
594
|
-
|
|
594
|
+
*/
|
|
595
595
|
DisassociateLifecycleScript?: boolean;
|
|
596
596
|
/**
|
|
597
|
-
|
|
597
|
+
* 默认存储库名称
|
|
598
598
|
可以是已创建的存储库名称或者已https://开头的公共git库
|
|
599
|
-
|
|
599
|
+
*/
|
|
600
600
|
DefaultCodeRepository?: string;
|
|
601
601
|
/**
|
|
602
|
-
|
|
602
|
+
* 其他存储库列表
|
|
603
603
|
每个元素可以是已创建的存储库名称或者已https://开头的公共git库
|
|
604
|
-
|
|
604
|
+
*/
|
|
605
605
|
AdditionalCodeRepositories?: Array<string>;
|
|
606
606
|
/**
|
|
607
|
-
|
|
607
|
+
* 是否取消关联默认存储库,默认false
|
|
608
608
|
该值为true时,DefaultCodeRepository将被忽略
|
|
609
|
-
|
|
609
|
+
*/
|
|
610
610
|
DisassociateDefaultCodeRepository?: boolean;
|
|
611
611
|
/**
|
|
612
|
-
|
|
612
|
+
* 是否取消关联其他存储库,默认false
|
|
613
613
|
该值为true时,AdditionalCodeRepositories将被忽略
|
|
614
|
-
|
|
614
|
+
*/
|
|
615
615
|
DisassociateAdditionalCodeRepositories?: boolean;
|
|
616
616
|
/**
|
|
617
617
|
* 已弃用,请使用ClsConfig配置。是否开启CLS日志服务,可取值Enabled/Disabled
|
|
618
618
|
*/
|
|
619
619
|
ClsAccess?: string;
|
|
620
620
|
/**
|
|
621
|
-
|
|
621
|
+
* 自动停止,可取值Enabled/Disabled
|
|
622
622
|
取值为Disabled的时候StoppingCondition将被忽略
|
|
623
623
|
取值为Enabled的时候读取StoppingCondition作为自动停止的配置
|
|
624
|
-
|
|
624
|
+
*/
|
|
625
625
|
AutoStopping?: string;
|
|
626
626
|
/**
|
|
627
627
|
* 自动停止配置,只在AutoStopping为Enabled的时候生效
|
|
@@ -637,9 +637,9 @@ export interface UpdateNotebookInstanceRequest {
|
|
|
637
637
|
*/
|
|
638
638
|
export interface CreatePresignedNotebookInstanceUrlRequest {
|
|
639
639
|
/**
|
|
640
|
-
|
|
640
|
+
* Notebook实例名称
|
|
641
641
|
规则:“^\[a-zA-Z0-9\](-\*\[a-zA-Z0-9\])\*$”
|
|
642
|
-
|
|
642
|
+
*/
|
|
643
643
|
NotebookInstanceName: string;
|
|
644
644
|
/**
|
|
645
645
|
* session有效时间,秒,取值范围[1800, 43200]
|
|
@@ -655,14 +655,14 @@ export interface CreateNotebookLifecycleScriptRequest {
|
|
|
655
655
|
*/
|
|
656
656
|
NotebookLifecycleScriptsName: string;
|
|
657
657
|
/**
|
|
658
|
-
|
|
658
|
+
* 创建脚本,base64编码
|
|
659
659
|
base64后的脚本长度不能超过16384个字符
|
|
660
|
-
|
|
660
|
+
*/
|
|
661
661
|
CreateScript?: string;
|
|
662
662
|
/**
|
|
663
|
-
|
|
663
|
+
* 启动脚本,base64编码
|
|
664
664
|
base64后的脚本长度不能超过16384个字符
|
|
665
|
-
|
|
665
|
+
*/
|
|
666
666
|
StartScript?: string;
|
|
667
667
|
}
|
|
668
668
|
/**
|
|
@@ -695,13 +695,13 @@ export interface DescribeNotebookInstancesRequest {
|
|
|
695
695
|
*/
|
|
696
696
|
Limit?: number;
|
|
697
697
|
/**
|
|
698
|
-
|
|
698
|
+
* 排序规则。默认取Descending
|
|
699
699
|
Descending 按更新时间降序
|
|
700
700
|
Ascending 按更新时间升序
|
|
701
|
-
|
|
701
|
+
*/
|
|
702
702
|
SortOrder?: string;
|
|
703
703
|
/**
|
|
704
|
-
|
|
704
|
+
* 过滤条件。
|
|
705
705
|
instance-name - String - 是否必填:否 -(过滤条件)按照名称过滤。
|
|
706
706
|
search-by-name - String - 是否必填:否 -(过滤条件)按照名称检索,模糊匹配。
|
|
707
707
|
lifecycle-name - String - 是否必填:否 -(过滤条件)按照生命周期脚本名称过滤。
|
|
@@ -710,7 +710,7 @@ export interface DescribeNotebookInstancesRequest {
|
|
|
710
710
|
billing-status - String - 是否必填:否 - (过滤条件)按照计费状态过滤,可取以下值
|
|
711
711
|
StorageOnly:仅存储计费的实例
|
|
712
712
|
Computing:计算和存储都计费的实例
|
|
713
|
-
|
|
713
|
+
*/
|
|
714
714
|
Filters?: Array<Filter>;
|
|
715
715
|
/**
|
|
716
716
|
* 【废弃字段】排序字段
|
|
@@ -739,14 +739,14 @@ export interface DescribeTrainingJobsResponse {
|
|
|
739
739
|
*/
|
|
740
740
|
export interface StoppingCondition {
|
|
741
741
|
/**
|
|
742
|
-
|
|
742
|
+
* 最长运行运行时间(秒)
|
|
743
743
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
744
|
-
|
|
744
|
+
*/
|
|
745
745
|
MaxRuntimeInSeconds?: number;
|
|
746
746
|
/**
|
|
747
|
-
|
|
747
|
+
* 最长等待运行时间(秒)
|
|
748
748
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
749
|
-
|
|
749
|
+
*/
|
|
750
750
|
MaxWaitTimeInSeconds?: number;
|
|
751
751
|
}
|
|
752
752
|
/**
|
|
@@ -758,9 +758,9 @@ export interface DescribeCodeRepositoriesResponse {
|
|
|
758
758
|
*/
|
|
759
759
|
TotalCount?: number;
|
|
760
760
|
/**
|
|
761
|
-
|
|
761
|
+
* 存储库列表
|
|
762
762
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
763
|
-
|
|
763
|
+
*/
|
|
764
764
|
CodeRepoSet?: Array<CodeRepoSummary>;
|
|
765
765
|
/**
|
|
766
766
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -815,57 +815,57 @@ export interface DescribeNotebookInstanceResponse {
|
|
|
815
815
|
*/
|
|
816
816
|
NotebookInstanceName?: string;
|
|
817
817
|
/**
|
|
818
|
-
|
|
818
|
+
* Notebook算力资源类型
|
|
819
819
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
820
|
-
|
|
820
|
+
*/
|
|
821
821
|
InstanceType?: string;
|
|
822
822
|
/**
|
|
823
|
-
|
|
823
|
+
* 角色的资源描述
|
|
824
824
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
825
|
-
|
|
825
|
+
*/
|
|
826
826
|
RoleArn?: string;
|
|
827
827
|
/**
|
|
828
|
-
|
|
828
|
+
* 外网访问权限
|
|
829
829
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
830
|
-
|
|
830
|
+
*/
|
|
831
831
|
DirectInternetAccess?: string;
|
|
832
832
|
/**
|
|
833
|
-
|
|
833
|
+
* Root用户权限
|
|
834
834
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
835
|
-
|
|
835
|
+
*/
|
|
836
836
|
RootAccess?: string;
|
|
837
837
|
/**
|
|
838
|
-
|
|
838
|
+
* 子网ID
|
|
839
839
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
840
|
-
|
|
840
|
+
*/
|
|
841
841
|
SubnetId?: string;
|
|
842
842
|
/**
|
|
843
|
-
|
|
843
|
+
* 数据卷大小(GB)
|
|
844
844
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
845
|
-
|
|
845
|
+
*/
|
|
846
846
|
VolumeSizeInGB?: number;
|
|
847
847
|
/**
|
|
848
|
-
|
|
848
|
+
* 创建失败原因
|
|
849
849
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
850
|
-
|
|
850
|
+
*/
|
|
851
851
|
FailureReason?: string;
|
|
852
852
|
/**
|
|
853
|
-
|
|
853
|
+
* Notebook实例创建时间
|
|
854
854
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
855
|
-
|
|
855
|
+
*/
|
|
856
856
|
CreationTime?: string;
|
|
857
857
|
/**
|
|
858
|
-
|
|
858
|
+
* Notebook实例最近修改时间
|
|
859
859
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
860
|
-
|
|
860
|
+
*/
|
|
861
861
|
LastModifiedTime?: string;
|
|
862
862
|
/**
|
|
863
|
-
|
|
863
|
+
* Notebook实例日志链接
|
|
864
864
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
865
|
-
|
|
865
|
+
*/
|
|
866
866
|
LogUrl?: string;
|
|
867
867
|
/**
|
|
868
|
-
|
|
868
|
+
* Notebook实例状态
|
|
869
869
|
|
|
870
870
|
Pending: 创建中
|
|
871
871
|
Inservice: 运行中
|
|
@@ -873,54 +873,54 @@ export interface DescribeNotebookInstanceResponse {
|
|
|
873
873
|
Stopped: 已停止
|
|
874
874
|
Failed: 失败
|
|
875
875
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
876
|
-
|
|
876
|
+
*/
|
|
877
877
|
NotebookInstanceStatus?: string;
|
|
878
878
|
/**
|
|
879
|
-
|
|
879
|
+
* Notebook实例ID
|
|
880
880
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
881
|
-
|
|
881
|
+
*/
|
|
882
882
|
InstanceId?: string;
|
|
883
883
|
/**
|
|
884
|
-
|
|
884
|
+
* notebook生命周期脚本名称
|
|
885
885
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
886
|
-
|
|
886
|
+
*/
|
|
887
887
|
LifecycleScriptsName?: string;
|
|
888
888
|
/**
|
|
889
|
-
|
|
889
|
+
* 默认存储库名称
|
|
890
890
|
可以是已创建的存储库名称或者已https://开头的公共git库
|
|
891
891
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
892
|
-
|
|
892
|
+
*/
|
|
893
893
|
DefaultCodeRepository?: string;
|
|
894
894
|
/**
|
|
895
|
-
|
|
895
|
+
* 其他存储库列表
|
|
896
896
|
每个元素可以是已创建的存储库名称或者已https://开头的公共git库
|
|
897
897
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
898
|
-
|
|
898
|
+
*/
|
|
899
899
|
AdditionalCodeRepositories?: Array<string>;
|
|
900
900
|
/**
|
|
901
|
-
|
|
901
|
+
* 是否开启CLS日志服务
|
|
902
902
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
903
|
-
|
|
903
|
+
*/
|
|
904
904
|
ClsAccess?: string;
|
|
905
905
|
/**
|
|
906
|
-
|
|
906
|
+
* 是否预付费实例
|
|
907
907
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
908
|
-
|
|
908
|
+
*/
|
|
909
909
|
Prepay?: boolean;
|
|
910
910
|
/**
|
|
911
|
-
|
|
911
|
+
* 实例运行截止时间
|
|
912
912
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
913
|
-
|
|
913
|
+
*/
|
|
914
914
|
Deadline?: string;
|
|
915
915
|
/**
|
|
916
|
-
|
|
916
|
+
* 自动停止配置
|
|
917
917
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
918
|
-
|
|
918
|
+
*/
|
|
919
919
|
StoppingCondition?: StoppingCondition;
|
|
920
920
|
/**
|
|
921
|
-
|
|
921
|
+
* Cls配置
|
|
922
922
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
923
|
-
|
|
923
|
+
*/
|
|
924
924
|
ClsConfig?: ClsConfig;
|
|
925
925
|
/**
|
|
926
926
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -941,44 +941,44 @@ export interface DescribeTrainingJobRequest {
|
|
|
941
941
|
*/
|
|
942
942
|
export interface TrainingJobSummary {
|
|
943
943
|
/**
|
|
944
|
-
|
|
944
|
+
* 任务创建时间
|
|
945
945
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
946
|
-
|
|
946
|
+
*/
|
|
947
947
|
CreationTime: string;
|
|
948
948
|
/**
|
|
949
|
-
|
|
949
|
+
* 最近修改时间
|
|
950
950
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
951
|
-
|
|
951
|
+
*/
|
|
952
952
|
LastModifiedTime: string;
|
|
953
953
|
/**
|
|
954
|
-
|
|
954
|
+
* 训练任务名
|
|
955
955
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
956
|
-
|
|
956
|
+
*/
|
|
957
957
|
TrainingJobName: string;
|
|
958
958
|
/**
|
|
959
|
-
|
|
959
|
+
* 训练任务状态,取值范围
|
|
960
960
|
InProgress:运行中
|
|
961
961
|
Completed: 已完成
|
|
962
962
|
Failed: 失败
|
|
963
963
|
Stopping: 停止中
|
|
964
964
|
Stopped:已停止
|
|
965
965
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
966
|
-
|
|
966
|
+
*/
|
|
967
967
|
TrainingJobStatus: string;
|
|
968
968
|
/**
|
|
969
|
-
|
|
969
|
+
* 完成时间
|
|
970
970
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
971
|
-
|
|
971
|
+
*/
|
|
972
972
|
TrainingEndTime: string;
|
|
973
973
|
/**
|
|
974
|
-
|
|
974
|
+
* 算了实例Id
|
|
975
975
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
976
|
-
|
|
976
|
+
*/
|
|
977
977
|
InstanceId: string;
|
|
978
978
|
/**
|
|
979
|
-
|
|
979
|
+
* 资源配置
|
|
980
980
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
981
|
-
|
|
981
|
+
*/
|
|
982
982
|
ResourceConfig: ResourceConfig;
|
|
983
983
|
}
|
|
984
984
|
/**
|
|
@@ -986,19 +986,19 @@ export interface TrainingJobSummary {
|
|
|
986
986
|
*/
|
|
987
987
|
export interface AlgorithmSpecification {
|
|
988
988
|
/**
|
|
989
|
-
|
|
989
|
+
* 镜像名字
|
|
990
990
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
991
|
-
|
|
991
|
+
*/
|
|
992
992
|
TrainingImageName?: string;
|
|
993
993
|
/**
|
|
994
|
-
|
|
994
|
+
* 输入模式File|Pipe
|
|
995
995
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
996
|
-
|
|
996
|
+
*/
|
|
997
997
|
TrainingInputMode?: string;
|
|
998
998
|
/**
|
|
999
|
-
|
|
999
|
+
* 算法名字
|
|
1000
1000
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1001
|
-
|
|
1001
|
+
*/
|
|
1002
1002
|
AlgorithmName?: string;
|
|
1003
1003
|
}
|
|
1004
1004
|
/**
|
|
@@ -1006,24 +1006,24 @@ export interface AlgorithmSpecification {
|
|
|
1006
1006
|
*/
|
|
1007
1007
|
export interface CosDataSource {
|
|
1008
1008
|
/**
|
|
1009
|
-
|
|
1009
|
+
* cos桶
|
|
1010
1010
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1011
|
-
|
|
1011
|
+
*/
|
|
1012
1012
|
Bucket: string;
|
|
1013
1013
|
/**
|
|
1014
|
-
|
|
1014
|
+
* cos文件key
|
|
1015
1015
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1016
|
-
|
|
1016
|
+
*/
|
|
1017
1017
|
KeyPrefix: string;
|
|
1018
1018
|
/**
|
|
1019
|
-
|
|
1019
|
+
* 分布式数据下载方式
|
|
1020
1020
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1021
|
-
|
|
1021
|
+
*/
|
|
1022
1022
|
DataDistributionType: string;
|
|
1023
1023
|
/**
|
|
1024
|
-
|
|
1024
|
+
* 数据类型
|
|
1025
1025
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1026
|
-
|
|
1026
|
+
*/
|
|
1027
1027
|
DataType: string;
|
|
1028
1028
|
}
|
|
1029
1029
|
/**
|
|
@@ -1112,14 +1112,14 @@ export interface DescribeNotebookLifecycleScriptResponse {
|
|
|
1112
1112
|
*/
|
|
1113
1113
|
NotebookLifecycleScriptsName?: string;
|
|
1114
1114
|
/**
|
|
1115
|
-
|
|
1115
|
+
* 创建脚本
|
|
1116
1116
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1117
|
-
|
|
1117
|
+
*/
|
|
1118
1118
|
CreateScript?: string;
|
|
1119
1119
|
/**
|
|
1120
|
-
|
|
1120
|
+
* 启动脚本
|
|
1121
1121
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1122
|
-
|
|
1122
|
+
*/
|
|
1123
1123
|
StartScript?: string;
|
|
1124
1124
|
/**
|
|
1125
1125
|
* 创建时间
|
|
@@ -1147,9 +1147,9 @@ export interface DescribeTrainingJobResponse {
|
|
|
1147
1147
|
*/
|
|
1148
1148
|
TrainingJobName?: string;
|
|
1149
1149
|
/**
|
|
1150
|
-
|
|
1150
|
+
* 算法超级参数
|
|
1151
1151
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1152
|
-
|
|
1152
|
+
*/
|
|
1153
1153
|
HyperParameters?: string;
|
|
1154
1154
|
/**
|
|
1155
1155
|
* 输入数据配置
|
|
@@ -1160,45 +1160,45 @@ export interface DescribeTrainingJobResponse {
|
|
|
1160
1160
|
*/
|
|
1161
1161
|
OutputDataConfig?: OutputDataConfig;
|
|
1162
1162
|
/**
|
|
1163
|
-
|
|
1163
|
+
* 中止条件
|
|
1164
1164
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1165
|
-
|
|
1165
|
+
*/
|
|
1166
1166
|
StoppingCondition?: StoppingCondition;
|
|
1167
1167
|
/**
|
|
1168
1168
|
* 计算实例配置
|
|
1169
1169
|
*/
|
|
1170
1170
|
ResourceConfig?: ResourceConfig;
|
|
1171
1171
|
/**
|
|
1172
|
-
|
|
1172
|
+
* 私有网络配置
|
|
1173
1173
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1174
|
-
|
|
1174
|
+
*/
|
|
1175
1175
|
VpcConfig?: VpcConfig;
|
|
1176
1176
|
/**
|
|
1177
|
-
|
|
1177
|
+
* 失败原因
|
|
1178
1178
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1179
|
-
|
|
1179
|
+
*/
|
|
1180
1180
|
FailureReason?: string;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* 最近修改时间
|
|
1183
1183
|
*/
|
|
1184
1184
|
LastModifiedTime?: string;
|
|
1185
1185
|
/**
|
|
1186
|
-
|
|
1186
|
+
* 任务开始时间
|
|
1187
1187
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1188
|
-
|
|
1188
|
+
*/
|
|
1189
1189
|
TrainingStartTime?: string;
|
|
1190
1190
|
/**
|
|
1191
|
-
|
|
1191
|
+
* 任务完成时间
|
|
1192
1192
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1193
|
-
|
|
1193
|
+
*/
|
|
1194
1194
|
TrainingEndTime?: string;
|
|
1195
1195
|
/**
|
|
1196
|
-
|
|
1196
|
+
* 模型输出配置
|
|
1197
1197
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1198
|
-
|
|
1198
|
+
*/
|
|
1199
1199
|
ModelArtifacts?: ModelArtifacts;
|
|
1200
1200
|
/**
|
|
1201
|
-
|
|
1201
|
+
* 详细状态,取值范围
|
|
1202
1202
|
Starting:启动中
|
|
1203
1203
|
Downloading: 准备训练数据
|
|
1204
1204
|
Training: 正在训练
|
|
@@ -1208,31 +1208,31 @@ export interface DescribeTrainingJobResponse {
|
|
|
1208
1208
|
MaxRuntimeExceeded: 任务超过最大运行时间
|
|
1209
1209
|
Stopping: 停止中
|
|
1210
1210
|
Stopped:已停止
|
|
1211
|
-
|
|
1211
|
+
*/
|
|
1212
1212
|
SecondaryStatus?: string;
|
|
1213
1213
|
/**
|
|
1214
|
-
|
|
1214
|
+
* 详细状态事件记录
|
|
1215
1215
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1216
|
-
|
|
1216
|
+
*/
|
|
1217
1217
|
SecondaryStatusTransitions?: Array<SecondaryStatusTransition>;
|
|
1218
1218
|
/**
|
|
1219
|
-
|
|
1219
|
+
* 角色名称
|
|
1220
1220
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1221
|
-
|
|
1221
|
+
*/
|
|
1222
1222
|
RoleName?: string;
|
|
1223
1223
|
/**
|
|
1224
|
-
|
|
1224
|
+
* 训练任务状态,取值范围
|
|
1225
1225
|
InProgress:运行中
|
|
1226
1226
|
Completed: 已完成
|
|
1227
1227
|
Failed: 失败
|
|
1228
1228
|
Stopping: 停止中
|
|
1229
1229
|
Stopped:已停止
|
|
1230
|
-
|
|
1230
|
+
*/
|
|
1231
1231
|
TrainingJobStatus?: string;
|
|
1232
1232
|
/**
|
|
1233
|
-
|
|
1233
|
+
* 训练任务日志链接
|
|
1234
1234
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1235
|
-
|
|
1235
|
+
*/
|
|
1236
1236
|
LogUrl?: string;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* 训练任务实例ID
|
|
@@ -1310,9 +1310,9 @@ export interface CreateTrainingJobRequest {
|
|
|
1310
1310
|
*/
|
|
1311
1311
|
RoleName?: string;
|
|
1312
1312
|
/**
|
|
1313
|
-
|
|
1313
|
+
* 在资源不足(ResourceInsufficient)时后台不定时尝试重新创建训练任务。可取值Enabled/Disabled
|
|
1314
1314
|
默认值为Disabled即不重新尝试。设为Enabled时重新尝试有一定的时间期限,定义在 StoppingCondition 中 MaxWaitTimeInSecond中 ,默认值为1天,超过该期限创建失败。
|
|
1315
|
-
|
|
1315
|
+
*/
|
|
1316
1316
|
RetryWhenResourceInsufficient?: string;
|
|
1317
1317
|
}
|
|
1318
1318
|
/**
|
|
@@ -1338,14 +1338,14 @@ export interface DescribeNotebookLifecycleScriptRequest {
|
|
|
1338
1338
|
*/
|
|
1339
1339
|
export interface VpcConfig {
|
|
1340
1340
|
/**
|
|
1341
|
-
|
|
1341
|
+
* 安全组id
|
|
1342
1342
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1343
|
-
|
|
1343
|
+
*/
|
|
1344
1344
|
SecurityGroupIds: Array<string>;
|
|
1345
1345
|
/**
|
|
1346
|
-
|
|
1346
|
+
* 子网id
|
|
1347
1347
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1348
|
-
|
|
1348
|
+
*/
|
|
1349
1349
|
SubnetId: string;
|
|
1350
1350
|
}
|
|
1351
1351
|
/**
|
|
@@ -1412,10 +1412,10 @@ export interface DescribeTrainingJobsRequest {
|
|
|
1412
1412
|
*/
|
|
1413
1413
|
StatusEquals?: string;
|
|
1414
1414
|
/**
|
|
1415
|
-
|
|
1415
|
+
* 过滤条件。
|
|
1416
1416
|
instance-name - String - 是否必填:否 -(过滤条件)按照名称过滤。
|
|
1417
1417
|
search-by-name - String - 是否必填:否 -(过滤条件)按照名称检索,模糊匹配。
|
|
1418
|
-
|
|
1418
|
+
*/
|
|
1419
1419
|
Filters?: Array<Filter>;
|
|
1420
1420
|
}
|
|
1421
1421
|
/**
|
|
@@ -1427,10 +1427,10 @@ export interface StartNotebookInstanceRequest {
|
|
|
1427
1427
|
*/
|
|
1428
1428
|
NotebookInstanceName: string;
|
|
1429
1429
|
/**
|
|
1430
|
-
|
|
1430
|
+
* 自动停止,可取值Enabled/Disabled
|
|
1431
1431
|
取值为Disabled的时候StoppingCondition将被忽略
|
|
1432
1432
|
取值为Enabled的时候读取StoppingCondition作为自动停止的配置
|
|
1433
|
-
|
|
1433
|
+
*/
|
|
1434
1434
|
AutoStopping?: string;
|
|
1435
1435
|
/**
|
|
1436
1436
|
* 自动停止配置,只在AutoStopping为Enabled的时候生效
|
|
@@ -1463,16 +1463,16 @@ export interface DescribeCodeRepositoriesRequest {
|
|
|
1463
1463
|
*/
|
|
1464
1464
|
Limit?: number;
|
|
1465
1465
|
/**
|
|
1466
|
-
|
|
1466
|
+
* 过滤条件。
|
|
1467
1467
|
instance-name - String - 是否必填:否 -(过滤条件)按照名称过滤。
|
|
1468
1468
|
search-by-name - String - 是否必填:否 -(过滤条件)按照名称检索,模糊匹配。
|
|
1469
|
-
|
|
1469
|
+
*/
|
|
1470
1470
|
Filters?: Array<Filter>;
|
|
1471
1471
|
/**
|
|
1472
|
-
|
|
1472
|
+
* 排序规则。默认取Descending
|
|
1473
1473
|
Descending 按更新时间降序
|
|
1474
1474
|
Ascending 按更新时间升序
|
|
1475
|
-
|
|
1475
|
+
*/
|
|
1476
1476
|
SortOrder?: string;
|
|
1477
1477
|
}
|
|
1478
1478
|
/**
|
|
@@ -1480,14 +1480,14 @@ export interface DescribeCodeRepositoriesRequest {
|
|
|
1480
1480
|
*/
|
|
1481
1481
|
export interface DataSource {
|
|
1482
1482
|
/**
|
|
1483
|
-
|
|
1483
|
+
* cos数据源
|
|
1484
1484
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1485
|
-
|
|
1485
|
+
*/
|
|
1486
1486
|
CosDataSource?: CosDataSource;
|
|
1487
1487
|
/**
|
|
1488
|
-
|
|
1488
|
+
* 文件系统输入源
|
|
1489
1489
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1490
|
-
|
|
1490
|
+
*/
|
|
1491
1491
|
FileSystemDataSource?: FileSystemDataSource;
|
|
1492
1492
|
}
|
|
1493
1493
|
/**
|
|
@@ -1495,9 +1495,9 @@ export interface DataSource {
|
|
|
1495
1495
|
*/
|
|
1496
1496
|
export interface ModelArtifacts {
|
|
1497
1497
|
/**
|
|
1498
|
-
|
|
1498
|
+
* cos输出路径
|
|
1499
1499
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1500
|
-
|
|
1500
|
+
*/
|
|
1501
1501
|
CosModelArtifacts: string;
|
|
1502
1502
|
}
|
|
1503
1503
|
/**
|