@alicloud/pai-dlc20201203 1.4.4 → 1.4.6
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/dist/client.d.ts +382 -0
- package/dist/client.js +423 -3
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +450 -0
package/dist/client.d.ts
CHANGED
|
@@ -36,6 +36,21 @@ export declare class AliyunAccounts extends $tea.Model {
|
|
|
36
36
|
[key: string]: any;
|
|
37
37
|
});
|
|
38
38
|
}
|
|
39
|
+
export declare class AssumeUserInfo extends $tea.Model {
|
|
40
|
+
accessKeyId?: string;
|
|
41
|
+
id?: string;
|
|
42
|
+
securityToken?: string;
|
|
43
|
+
type?: string;
|
|
44
|
+
static names(): {
|
|
45
|
+
[key: string]: string;
|
|
46
|
+
};
|
|
47
|
+
static types(): {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
};
|
|
50
|
+
constructor(map?: {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
});
|
|
53
|
+
}
|
|
39
54
|
export declare class CodeSourceItem extends $tea.Model {
|
|
40
55
|
codeBranch?: string;
|
|
41
56
|
codeCommit?: string;
|
|
@@ -76,6 +91,50 @@ export declare class ContainerSpec extends $tea.Model {
|
|
|
76
91
|
[key: string]: any;
|
|
77
92
|
});
|
|
78
93
|
}
|
|
94
|
+
export declare class CredentialConfig extends $tea.Model {
|
|
95
|
+
aliyunEnvRoleKey?: string;
|
|
96
|
+
credentialConfigItems?: CredentialConfigItem[];
|
|
97
|
+
enableCredentialInject?: boolean;
|
|
98
|
+
static names(): {
|
|
99
|
+
[key: string]: string;
|
|
100
|
+
};
|
|
101
|
+
static types(): {
|
|
102
|
+
[key: string]: any;
|
|
103
|
+
};
|
|
104
|
+
constructor(map?: {
|
|
105
|
+
[key: string]: any;
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
export declare class CredentialConfigItem extends $tea.Model {
|
|
109
|
+
key?: string;
|
|
110
|
+
roles?: CredentialRole[];
|
|
111
|
+
type?: string;
|
|
112
|
+
static names(): {
|
|
113
|
+
[key: string]: string;
|
|
114
|
+
};
|
|
115
|
+
static types(): {
|
|
116
|
+
[key: string]: any;
|
|
117
|
+
};
|
|
118
|
+
constructor(map?: {
|
|
119
|
+
[key: string]: any;
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
export declare class CredentialRole extends $tea.Model {
|
|
123
|
+
assumeRoleFor?: string;
|
|
124
|
+
assumeUserInfo?: AssumeUserInfo;
|
|
125
|
+
policy?: string;
|
|
126
|
+
roleArn?: string;
|
|
127
|
+
roleType?: string;
|
|
128
|
+
static names(): {
|
|
129
|
+
[key: string]: string;
|
|
130
|
+
};
|
|
131
|
+
static types(): {
|
|
132
|
+
[key: string]: any;
|
|
133
|
+
};
|
|
134
|
+
constructor(map?: {
|
|
135
|
+
[key: string]: any;
|
|
136
|
+
});
|
|
137
|
+
}
|
|
79
138
|
export declare class DataSourceItem extends $tea.Model {
|
|
80
139
|
dataSourceId?: string;
|
|
81
140
|
dataSourceType?: string;
|
|
@@ -391,6 +450,7 @@ export declare class JobElasticSpec extends $tea.Model {
|
|
|
391
450
|
}
|
|
392
451
|
export declare class JobItem extends $tea.Model {
|
|
393
452
|
codeSource?: JobItemCodeSource;
|
|
453
|
+
credentialConfig?: CredentialConfig;
|
|
394
454
|
dataSources?: JobItemDataSources[];
|
|
395
455
|
displayName?: string;
|
|
396
456
|
duration?: number;
|
|
@@ -755,6 +815,7 @@ export declare class Tensorboard extends $tea.Model {
|
|
|
755
815
|
displayName?: string;
|
|
756
816
|
duration?: string;
|
|
757
817
|
gmtCreateTime?: string;
|
|
818
|
+
gmtFinishTime?: string;
|
|
758
819
|
gmtModifyTime?: string;
|
|
759
820
|
jobId?: string;
|
|
760
821
|
reasonCode?: string;
|
|
@@ -767,6 +828,7 @@ export declare class Tensorboard extends $tea.Model {
|
|
|
767
828
|
tensorboardSpec?: TensorboardSpec;
|
|
768
829
|
tensorboardUrl?: string;
|
|
769
830
|
userId?: string;
|
|
831
|
+
username?: string;
|
|
770
832
|
static names(): {
|
|
771
833
|
[key: string]: string;
|
|
772
834
|
};
|
|
@@ -1686,6 +1748,8 @@ export declare class ListTensorboardsRequest extends $tea.Model {
|
|
|
1686
1748
|
startTime?: string;
|
|
1687
1749
|
status?: string;
|
|
1688
1750
|
tensorboardId?: string;
|
|
1751
|
+
userId?: string;
|
|
1752
|
+
username?: string;
|
|
1689
1753
|
verbose?: boolean;
|
|
1690
1754
|
workspaceId?: string;
|
|
1691
1755
|
static names(): {
|
|
@@ -2072,96 +2136,414 @@ export default class Client extends OpenApi {
|
|
|
2072
2136
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
2073
2137
|
[key: string]: string;
|
|
2074
2138
|
}, endpoint: string): string;
|
|
2139
|
+
/**
|
|
2140
|
+
* @summary 创建一个DLC作业
|
|
2141
|
+
*
|
|
2142
|
+
* @param request CreateJobRequest
|
|
2143
|
+
* @param headers map
|
|
2144
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2145
|
+
* @return CreateJobResponse
|
|
2146
|
+
*/
|
|
2075
2147
|
createJobWithOptions(request: CreateJobRequest, headers: {
|
|
2076
2148
|
[key: string]: string;
|
|
2077
2149
|
}, runtime: $Util.RuntimeOptions): Promise<CreateJobResponse>;
|
|
2150
|
+
/**
|
|
2151
|
+
* @summary 创建一个DLC作业
|
|
2152
|
+
*
|
|
2153
|
+
* @param request CreateJobRequest
|
|
2154
|
+
* @return CreateJobResponse
|
|
2155
|
+
*/
|
|
2078
2156
|
createJob(request: CreateJobRequest): Promise<CreateJobResponse>;
|
|
2157
|
+
/**
|
|
2158
|
+
* @summary 创建一个Tensorboard
|
|
2159
|
+
*
|
|
2160
|
+
* @param request CreateTensorboardRequest
|
|
2161
|
+
* @param headers map
|
|
2162
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2163
|
+
* @return CreateTensorboardResponse
|
|
2164
|
+
*/
|
|
2079
2165
|
createTensorboardWithOptions(request: CreateTensorboardRequest, headers: {
|
|
2080
2166
|
[key: string]: string;
|
|
2081
2167
|
}, runtime: $Util.RuntimeOptions): Promise<CreateTensorboardResponse>;
|
|
2168
|
+
/**
|
|
2169
|
+
* @summary 创建一个Tensorboard
|
|
2170
|
+
*
|
|
2171
|
+
* @param request CreateTensorboardRequest
|
|
2172
|
+
* @return CreateTensorboardResponse
|
|
2173
|
+
*/
|
|
2082
2174
|
createTensorboard(request: CreateTensorboardRequest): Promise<CreateTensorboardResponse>;
|
|
2175
|
+
/**
|
|
2176
|
+
* @summary 删除一个DLC作业
|
|
2177
|
+
*
|
|
2178
|
+
* @param headers map
|
|
2179
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2180
|
+
* @return DeleteJobResponse
|
|
2181
|
+
*/
|
|
2083
2182
|
deleteJobWithOptions(JobId: string, headers: {
|
|
2084
2183
|
[key: string]: string;
|
|
2085
2184
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteJobResponse>;
|
|
2185
|
+
/**
|
|
2186
|
+
* @summary 删除一个DLC作业
|
|
2187
|
+
*
|
|
2188
|
+
* @return DeleteJobResponse
|
|
2189
|
+
*/
|
|
2086
2190
|
deleteJob(JobId: string): Promise<DeleteJobResponse>;
|
|
2191
|
+
/**
|
|
2192
|
+
* @summary 删除一个数据源配置
|
|
2193
|
+
*
|
|
2194
|
+
* @param request DeleteTensorboardRequest
|
|
2195
|
+
* @param headers map
|
|
2196
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2197
|
+
* @return DeleteTensorboardResponse
|
|
2198
|
+
*/
|
|
2087
2199
|
deleteTensorboardWithOptions(TensorboardId: string, request: DeleteTensorboardRequest, headers: {
|
|
2088
2200
|
[key: string]: string;
|
|
2089
2201
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteTensorboardResponse>;
|
|
2202
|
+
/**
|
|
2203
|
+
* @summary 删除一个数据源配置
|
|
2204
|
+
*
|
|
2205
|
+
* @param request DeleteTensorboardRequest
|
|
2206
|
+
* @return DeleteTensorboardResponse
|
|
2207
|
+
*/
|
|
2090
2208
|
deleteTensorboard(TensorboardId: string, request: DeleteTensorboardRequest): Promise<DeleteTensorboardResponse>;
|
|
2209
|
+
/**
|
|
2210
|
+
* @summary 获取一个DLC作业详情
|
|
2211
|
+
*
|
|
2212
|
+
* @param request GetJobRequest
|
|
2213
|
+
* @param headers map
|
|
2214
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2215
|
+
* @return GetJobResponse
|
|
2216
|
+
*/
|
|
2091
2217
|
getJobWithOptions(JobId: string, request: GetJobRequest, headers: {
|
|
2092
2218
|
[key: string]: string;
|
|
2093
2219
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobResponse>;
|
|
2220
|
+
/**
|
|
2221
|
+
* @summary 获取一个DLC作业详情
|
|
2222
|
+
*
|
|
2223
|
+
* @param request GetJobRequest
|
|
2224
|
+
* @return GetJobResponse
|
|
2225
|
+
*/
|
|
2094
2226
|
getJob(JobId: string, request: GetJobRequest): Promise<GetJobResponse>;
|
|
2227
|
+
/**
|
|
2228
|
+
* @summary 获取作业的事件
|
|
2229
|
+
*
|
|
2230
|
+
* @param request GetJobEventsRequest
|
|
2231
|
+
* @param headers map
|
|
2232
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2233
|
+
* @return GetJobEventsResponse
|
|
2234
|
+
*/
|
|
2095
2235
|
getJobEventsWithOptions(JobId: string, request: GetJobEventsRequest, headers: {
|
|
2096
2236
|
[key: string]: string;
|
|
2097
2237
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobEventsResponse>;
|
|
2238
|
+
/**
|
|
2239
|
+
* @summary 获取作业的事件
|
|
2240
|
+
*
|
|
2241
|
+
* @param request GetJobEventsRequest
|
|
2242
|
+
* @return GetJobEventsResponse
|
|
2243
|
+
*/
|
|
2098
2244
|
getJobEvents(JobId: string, request: GetJobEventsRequest): Promise<GetJobEventsResponse>;
|
|
2245
|
+
/**
|
|
2246
|
+
* @summary 获取一个作业的资源监控指标
|
|
2247
|
+
*
|
|
2248
|
+
* @param request GetJobMetricsRequest
|
|
2249
|
+
* @param headers map
|
|
2250
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2251
|
+
* @return GetJobMetricsResponse
|
|
2252
|
+
*/
|
|
2099
2253
|
getJobMetricsWithOptions(JobId: string, request: GetJobMetricsRequest, headers: {
|
|
2100
2254
|
[key: string]: string;
|
|
2101
2255
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobMetricsResponse>;
|
|
2256
|
+
/**
|
|
2257
|
+
* @summary 获取一个作业的资源监控指标
|
|
2258
|
+
*
|
|
2259
|
+
* @param request GetJobMetricsRequest
|
|
2260
|
+
* @return GetJobMetricsResponse
|
|
2261
|
+
*/
|
|
2102
2262
|
getJobMetrics(JobId: string, request: GetJobMetricsRequest): Promise<GetJobMetricsResponse>;
|
|
2263
|
+
/**
|
|
2264
|
+
* @summary 获取DLC作业某次算力健康检测结果
|
|
2265
|
+
*
|
|
2266
|
+
* @param request GetJobSanityCheckResultRequest
|
|
2267
|
+
* @param headers map
|
|
2268
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2269
|
+
* @return GetJobSanityCheckResultResponse
|
|
2270
|
+
*/
|
|
2103
2271
|
getJobSanityCheckResultWithOptions(JobId: string, request: GetJobSanityCheckResultRequest, headers: {
|
|
2104
2272
|
[key: string]: string;
|
|
2105
2273
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobSanityCheckResultResponse>;
|
|
2274
|
+
/**
|
|
2275
|
+
* @summary 获取DLC作业某次算力健康检测结果
|
|
2276
|
+
*
|
|
2277
|
+
* @param request GetJobSanityCheckResultRequest
|
|
2278
|
+
* @return GetJobSanityCheckResultResponse
|
|
2279
|
+
*/
|
|
2106
2280
|
getJobSanityCheckResult(JobId: string, request: GetJobSanityCheckResultRequest): Promise<GetJobSanityCheckResultResponse>;
|
|
2281
|
+
/**
|
|
2282
|
+
* @summary 获取作业中一个运行实例的系统事件
|
|
2283
|
+
*
|
|
2284
|
+
* @param request GetPodEventsRequest
|
|
2285
|
+
* @param headers map
|
|
2286
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2287
|
+
* @return GetPodEventsResponse
|
|
2288
|
+
*/
|
|
2107
2289
|
getPodEventsWithOptions(JobId: string, PodId: string, request: GetPodEventsRequest, headers: {
|
|
2108
2290
|
[key: string]: string;
|
|
2109
2291
|
}, runtime: $Util.RuntimeOptions): Promise<GetPodEventsResponse>;
|
|
2292
|
+
/**
|
|
2293
|
+
* @summary 获取作业中一个运行实例的系统事件
|
|
2294
|
+
*
|
|
2295
|
+
* @param request GetPodEventsRequest
|
|
2296
|
+
* @return GetPodEventsResponse
|
|
2297
|
+
*/
|
|
2110
2298
|
getPodEvents(JobId: string, PodId: string, request: GetPodEventsRequest): Promise<GetPodEventsResponse>;
|
|
2299
|
+
/**
|
|
2300
|
+
* @summary 获取作业中一个运行实例的日志
|
|
2301
|
+
*
|
|
2302
|
+
* @param request GetPodLogsRequest
|
|
2303
|
+
* @param headers map
|
|
2304
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2305
|
+
* @return GetPodLogsResponse
|
|
2306
|
+
*/
|
|
2111
2307
|
getPodLogsWithOptions(JobId: string, PodId: string, request: GetPodLogsRequest, headers: {
|
|
2112
2308
|
[key: string]: string;
|
|
2113
2309
|
}, runtime: $Util.RuntimeOptions): Promise<GetPodLogsResponse>;
|
|
2310
|
+
/**
|
|
2311
|
+
* @summary 获取作业中一个运行实例的日志
|
|
2312
|
+
*
|
|
2313
|
+
* @param request GetPodLogsRequest
|
|
2314
|
+
* @return GetPodLogsResponse
|
|
2315
|
+
*/
|
|
2114
2316
|
getPodLogs(JobId: string, PodId: string, request: GetPodLogsRequest): Promise<GetPodLogsResponse>;
|
|
2317
|
+
/**
|
|
2318
|
+
* @summary 获取一个Tensorboard
|
|
2319
|
+
*
|
|
2320
|
+
* @param request GetTensorboardRequest
|
|
2321
|
+
* @param headers map
|
|
2322
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2323
|
+
* @return GetTensorboardResponse
|
|
2324
|
+
*/
|
|
2115
2325
|
getTensorboardWithOptions(TensorboardId: string, request: GetTensorboardRequest, headers: {
|
|
2116
2326
|
[key: string]: string;
|
|
2117
2327
|
}, runtime: $Util.RuntimeOptions): Promise<GetTensorboardResponse>;
|
|
2328
|
+
/**
|
|
2329
|
+
* @summary 获取一个Tensorboard
|
|
2330
|
+
*
|
|
2331
|
+
* @param request GetTensorboardRequest
|
|
2332
|
+
* @return GetTensorboardResponse
|
|
2333
|
+
*/
|
|
2118
2334
|
getTensorboard(TensorboardId: string, request: GetTensorboardRequest): Promise<GetTensorboardResponse>;
|
|
2335
|
+
/**
|
|
2336
|
+
* @summary Get the shared url for tensorboard
|
|
2337
|
+
*
|
|
2338
|
+
* @param request GetTensorboardSharedUrlRequest
|
|
2339
|
+
* @param headers map
|
|
2340
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2341
|
+
* @return GetTensorboardSharedUrlResponse
|
|
2342
|
+
*/
|
|
2119
2343
|
getTensorboardSharedUrlWithOptions(TensorboardId: string, request: GetTensorboardSharedUrlRequest, headers: {
|
|
2120
2344
|
[key: string]: string;
|
|
2121
2345
|
}, runtime: $Util.RuntimeOptions): Promise<GetTensorboardSharedUrlResponse>;
|
|
2346
|
+
/**
|
|
2347
|
+
* @summary Get the shared url for tensorboard
|
|
2348
|
+
*
|
|
2349
|
+
* @param request GetTensorboardSharedUrlRequest
|
|
2350
|
+
* @return GetTensorboardSharedUrlResponse
|
|
2351
|
+
*/
|
|
2122
2352
|
getTensorboardSharedUrl(TensorboardId: string, request: GetTensorboardSharedUrlRequest): Promise<GetTensorboardSharedUrlResponse>;
|
|
2353
|
+
/**
|
|
2354
|
+
* @summary 获取用户Token
|
|
2355
|
+
*
|
|
2356
|
+
* @param request GetTokenRequest
|
|
2357
|
+
* @param headers map
|
|
2358
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2359
|
+
* @return GetTokenResponse
|
|
2360
|
+
*/
|
|
2123
2361
|
getTokenWithOptions(request: GetTokenRequest, headers: {
|
|
2124
2362
|
[key: string]: string;
|
|
2125
2363
|
}, runtime: $Util.RuntimeOptions): Promise<GetTokenResponse>;
|
|
2364
|
+
/**
|
|
2365
|
+
* @summary 获取用户Token
|
|
2366
|
+
*
|
|
2367
|
+
* @param request GetTokenRequest
|
|
2368
|
+
* @return GetTokenResponse
|
|
2369
|
+
*/
|
|
2126
2370
|
getToken(request: GetTokenRequest): Promise<GetTokenResponse>;
|
|
2371
|
+
/**
|
|
2372
|
+
* @summary Get the url for accessing pod's terminal in k8s
|
|
2373
|
+
*
|
|
2374
|
+
* @param request GetWebTerminalRequest
|
|
2375
|
+
* @param headers map
|
|
2376
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2377
|
+
* @return GetWebTerminalResponse
|
|
2378
|
+
*/
|
|
2127
2379
|
getWebTerminalWithOptions(JobId: string, PodId: string, request: GetWebTerminalRequest, headers: {
|
|
2128
2380
|
[key: string]: string;
|
|
2129
2381
|
}, runtime: $Util.RuntimeOptions): Promise<GetWebTerminalResponse>;
|
|
2382
|
+
/**
|
|
2383
|
+
* @summary Get the url for accessing pod's terminal in k8s
|
|
2384
|
+
*
|
|
2385
|
+
* @param request GetWebTerminalRequest
|
|
2386
|
+
* @return GetWebTerminalResponse
|
|
2387
|
+
*/
|
|
2130
2388
|
getWebTerminal(JobId: string, PodId: string, request: GetWebTerminalRequest): Promise<GetWebTerminalResponse>;
|
|
2389
|
+
/**
|
|
2390
|
+
* @summary ListEcsSpecs
|
|
2391
|
+
*
|
|
2392
|
+
* @param request ListEcsSpecsRequest
|
|
2393
|
+
* @param headers map
|
|
2394
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2395
|
+
* @return ListEcsSpecsResponse
|
|
2396
|
+
*/
|
|
2131
2397
|
listEcsSpecsWithOptions(request: ListEcsSpecsRequest, headers: {
|
|
2132
2398
|
[key: string]: string;
|
|
2133
2399
|
}, runtime: $Util.RuntimeOptions): Promise<ListEcsSpecsResponse>;
|
|
2400
|
+
/**
|
|
2401
|
+
* @summary ListEcsSpecs
|
|
2402
|
+
*
|
|
2403
|
+
* @param request ListEcsSpecsRequest
|
|
2404
|
+
* @return ListEcsSpecsResponse
|
|
2405
|
+
*/
|
|
2134
2406
|
listEcsSpecs(request: ListEcsSpecsRequest): Promise<ListEcsSpecsResponse>;
|
|
2407
|
+
/**
|
|
2408
|
+
* @summary 获取某个DLC作业的多次算力健康检测结果
|
|
2409
|
+
*
|
|
2410
|
+
* @param request ListJobSanityCheckResultsRequest
|
|
2411
|
+
* @param headers map
|
|
2412
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2413
|
+
* @return ListJobSanityCheckResultsResponse
|
|
2414
|
+
*/
|
|
2135
2415
|
listJobSanityCheckResultsWithOptions(JobId: string, request: ListJobSanityCheckResultsRequest, headers: {
|
|
2136
2416
|
[key: string]: string;
|
|
2137
2417
|
}, runtime: $Util.RuntimeOptions): Promise<ListJobSanityCheckResultsResponse>;
|
|
2418
|
+
/**
|
|
2419
|
+
* @summary 获取某个DLC作业的多次算力健康检测结果
|
|
2420
|
+
*
|
|
2421
|
+
* @param request ListJobSanityCheckResultsRequest
|
|
2422
|
+
* @return ListJobSanityCheckResultsResponse
|
|
2423
|
+
*/
|
|
2138
2424
|
listJobSanityCheckResults(JobId: string, request: ListJobSanityCheckResultsRequest): Promise<ListJobSanityCheckResultsResponse>;
|
|
2425
|
+
/**
|
|
2426
|
+
* @summary 根据过滤条件获取DLC作业列表
|
|
2427
|
+
*
|
|
2428
|
+
* @param tmpReq ListJobsRequest
|
|
2429
|
+
* @param headers map
|
|
2430
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2431
|
+
* @return ListJobsResponse
|
|
2432
|
+
*/
|
|
2139
2433
|
listJobsWithOptions(tmpReq: ListJobsRequest, headers: {
|
|
2140
2434
|
[key: string]: string;
|
|
2141
2435
|
}, runtime: $Util.RuntimeOptions): Promise<ListJobsResponse>;
|
|
2436
|
+
/**
|
|
2437
|
+
* @summary 根据过滤条件获取DLC作业列表
|
|
2438
|
+
*
|
|
2439
|
+
* @param request ListJobsRequest
|
|
2440
|
+
* @return ListJobsResponse
|
|
2441
|
+
*/
|
|
2142
2442
|
listJobs(request: ListJobsRequest): Promise<ListJobsResponse>;
|
|
2443
|
+
/**
|
|
2444
|
+
* @summary 获取Tensorboard
|
|
2445
|
+
*
|
|
2446
|
+
* @param request ListTensorboardsRequest
|
|
2447
|
+
* @param headers map
|
|
2448
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2449
|
+
* @return ListTensorboardsResponse
|
|
2450
|
+
*/
|
|
2143
2451
|
listTensorboardsWithOptions(request: ListTensorboardsRequest, headers: {
|
|
2144
2452
|
[key: string]: string;
|
|
2145
2453
|
}, runtime: $Util.RuntimeOptions): Promise<ListTensorboardsResponse>;
|
|
2454
|
+
/**
|
|
2455
|
+
* @summary 获取Tensorboard
|
|
2456
|
+
*
|
|
2457
|
+
* @param request ListTensorboardsRequest
|
|
2458
|
+
* @return ListTensorboardsResponse
|
|
2459
|
+
*/
|
|
2146
2460
|
listTensorboards(request: ListTensorboardsRequest): Promise<ListTensorboardsResponse>;
|
|
2461
|
+
/**
|
|
2462
|
+
* @summary 开始运行tensorboard
|
|
2463
|
+
*
|
|
2464
|
+
* @param request StartTensorboardRequest
|
|
2465
|
+
* @param headers map
|
|
2466
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2467
|
+
* @return StartTensorboardResponse
|
|
2468
|
+
*/
|
|
2147
2469
|
startTensorboardWithOptions(TensorboardId: string, request: StartTensorboardRequest, headers: {
|
|
2148
2470
|
[key: string]: string;
|
|
2149
2471
|
}, runtime: $Util.RuntimeOptions): Promise<StartTensorboardResponse>;
|
|
2472
|
+
/**
|
|
2473
|
+
* @summary 开始运行tensorboard
|
|
2474
|
+
*
|
|
2475
|
+
* @param request StartTensorboardRequest
|
|
2476
|
+
* @return StartTensorboardResponse
|
|
2477
|
+
*/
|
|
2150
2478
|
startTensorboard(TensorboardId: string, request: StartTensorboardRequest): Promise<StartTensorboardResponse>;
|
|
2479
|
+
/**
|
|
2480
|
+
* @summary 停止一个DLC作业
|
|
2481
|
+
*
|
|
2482
|
+
* @param headers map
|
|
2483
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2484
|
+
* @return StopJobResponse
|
|
2485
|
+
*/
|
|
2151
2486
|
stopJobWithOptions(JobId: string, headers: {
|
|
2152
2487
|
[key: string]: string;
|
|
2153
2488
|
}, runtime: $Util.RuntimeOptions): Promise<StopJobResponse>;
|
|
2489
|
+
/**
|
|
2490
|
+
* @summary 停止一个DLC作业
|
|
2491
|
+
*
|
|
2492
|
+
* @return StopJobResponse
|
|
2493
|
+
*/
|
|
2154
2494
|
stopJob(JobId: string): Promise<StopJobResponse>;
|
|
2495
|
+
/**
|
|
2496
|
+
* @summary 停止运行tensorboard
|
|
2497
|
+
*
|
|
2498
|
+
* @param request StopTensorboardRequest
|
|
2499
|
+
* @param headers map
|
|
2500
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2501
|
+
* @return StopTensorboardResponse
|
|
2502
|
+
*/
|
|
2155
2503
|
stopTensorboardWithOptions(TensorboardId: string, request: StopTensorboardRequest, headers: {
|
|
2156
2504
|
[key: string]: string;
|
|
2157
2505
|
}, runtime: $Util.RuntimeOptions): Promise<StopTensorboardResponse>;
|
|
2506
|
+
/**
|
|
2507
|
+
* @summary 停止运行tensorboard
|
|
2508
|
+
*
|
|
2509
|
+
* @param request StopTensorboardRequest
|
|
2510
|
+
* @return StopTensorboardResponse
|
|
2511
|
+
*/
|
|
2158
2512
|
stopTensorboard(TensorboardId: string, request: StopTensorboardRequest): Promise<StopTensorboardResponse>;
|
|
2513
|
+
/**
|
|
2514
|
+
* @summary 更新一个Job
|
|
2515
|
+
*
|
|
2516
|
+
* @param request UpdateJobRequest
|
|
2517
|
+
* @param headers map
|
|
2518
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2519
|
+
* @return UpdateJobResponse
|
|
2520
|
+
*/
|
|
2159
2521
|
updateJobWithOptions(JobId: string, request: UpdateJobRequest, headers: {
|
|
2160
2522
|
[key: string]: string;
|
|
2161
2523
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateJobResponse>;
|
|
2524
|
+
/**
|
|
2525
|
+
* @summary 更新一个Job
|
|
2526
|
+
*
|
|
2527
|
+
* @param request UpdateJobRequest
|
|
2528
|
+
* @return UpdateJobResponse
|
|
2529
|
+
*/
|
|
2162
2530
|
updateJob(JobId: string, request: UpdateJobRequest): Promise<UpdateJobResponse>;
|
|
2531
|
+
/**
|
|
2532
|
+
* @summary 更新tensorboard
|
|
2533
|
+
*
|
|
2534
|
+
* @param request UpdateTensorboardRequest
|
|
2535
|
+
* @param headers map
|
|
2536
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2537
|
+
* @return UpdateTensorboardResponse
|
|
2538
|
+
*/
|
|
2163
2539
|
updateTensorboardWithOptions(TensorboardId: string, request: UpdateTensorboardRequest, headers: {
|
|
2164
2540
|
[key: string]: string;
|
|
2165
2541
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateTensorboardResponse>;
|
|
2542
|
+
/**
|
|
2543
|
+
* @summary 更新tensorboard
|
|
2544
|
+
*
|
|
2545
|
+
* @param request UpdateTensorboardRequest
|
|
2546
|
+
* @return UpdateTensorboardResponse
|
|
2547
|
+
*/
|
|
2166
2548
|
updateTensorboard(TensorboardId: string, request: UpdateTensorboardRequest): Promise<UpdateTensorboardResponse>;
|
|
2167
2549
|
}
|