@alicloud/pai-dlc20201203 1.4.3 → 1.4.5
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 +324 -0
- package/dist/client.js +708 -363
- package/dist/client.js.map +1 -1
- package/package.json +6 -6
- package/src/client.ts +348 -0
package/dist/client.d.ts
CHANGED
|
@@ -755,6 +755,7 @@ export declare class Tensorboard extends $tea.Model {
|
|
|
755
755
|
displayName?: string;
|
|
756
756
|
duration?: string;
|
|
757
757
|
gmtCreateTime?: string;
|
|
758
|
+
gmtFinishTime?: string;
|
|
758
759
|
gmtModifyTime?: string;
|
|
759
760
|
jobId?: string;
|
|
760
761
|
reasonCode?: string;
|
|
@@ -767,6 +768,7 @@ export declare class Tensorboard extends $tea.Model {
|
|
|
767
768
|
tensorboardSpec?: TensorboardSpec;
|
|
768
769
|
tensorboardUrl?: string;
|
|
769
770
|
userId?: string;
|
|
771
|
+
username?: string;
|
|
770
772
|
static names(): {
|
|
771
773
|
[key: string]: string;
|
|
772
774
|
};
|
|
@@ -1588,6 +1590,7 @@ export declare class ListJobsRequest extends $tea.Model {
|
|
|
1588
1590
|
pageSize?: number;
|
|
1589
1591
|
pipelineId?: string;
|
|
1590
1592
|
resourceId?: string;
|
|
1593
|
+
resourceQuotaName?: string;
|
|
1591
1594
|
showOwn?: boolean;
|
|
1592
1595
|
sortBy?: string;
|
|
1593
1596
|
startTime?: string;
|
|
@@ -1621,6 +1624,7 @@ export declare class ListJobsShrinkRequest extends $tea.Model {
|
|
|
1621
1624
|
pageSize?: number;
|
|
1622
1625
|
pipelineId?: string;
|
|
1623
1626
|
resourceId?: string;
|
|
1627
|
+
resourceQuotaName?: string;
|
|
1624
1628
|
showOwn?: boolean;
|
|
1625
1629
|
sortBy?: string;
|
|
1626
1630
|
startTime?: string;
|
|
@@ -1684,6 +1688,8 @@ export declare class ListTensorboardsRequest extends $tea.Model {
|
|
|
1684
1688
|
startTime?: string;
|
|
1685
1689
|
status?: string;
|
|
1686
1690
|
tensorboardId?: string;
|
|
1691
|
+
userId?: string;
|
|
1692
|
+
username?: string;
|
|
1687
1693
|
verbose?: boolean;
|
|
1688
1694
|
workspaceId?: string;
|
|
1689
1695
|
static names(): {
|
|
@@ -2070,96 +2076,414 @@ export default class Client extends OpenApi {
|
|
|
2070
2076
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
2071
2077
|
[key: string]: string;
|
|
2072
2078
|
}, endpoint: string): string;
|
|
2079
|
+
/**
|
|
2080
|
+
* @summary 创建一个DLC作业
|
|
2081
|
+
*
|
|
2082
|
+
* @param request CreateJobRequest
|
|
2083
|
+
* @param headers map
|
|
2084
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2085
|
+
* @return CreateJobResponse
|
|
2086
|
+
*/
|
|
2073
2087
|
createJobWithOptions(request: CreateJobRequest, headers: {
|
|
2074
2088
|
[key: string]: string;
|
|
2075
2089
|
}, runtime: $Util.RuntimeOptions): Promise<CreateJobResponse>;
|
|
2090
|
+
/**
|
|
2091
|
+
* @summary 创建一个DLC作业
|
|
2092
|
+
*
|
|
2093
|
+
* @param request CreateJobRequest
|
|
2094
|
+
* @return CreateJobResponse
|
|
2095
|
+
*/
|
|
2076
2096
|
createJob(request: CreateJobRequest): Promise<CreateJobResponse>;
|
|
2097
|
+
/**
|
|
2098
|
+
* @summary 创建一个Tensorboard
|
|
2099
|
+
*
|
|
2100
|
+
* @param request CreateTensorboardRequest
|
|
2101
|
+
* @param headers map
|
|
2102
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2103
|
+
* @return CreateTensorboardResponse
|
|
2104
|
+
*/
|
|
2077
2105
|
createTensorboardWithOptions(request: CreateTensorboardRequest, headers: {
|
|
2078
2106
|
[key: string]: string;
|
|
2079
2107
|
}, runtime: $Util.RuntimeOptions): Promise<CreateTensorboardResponse>;
|
|
2108
|
+
/**
|
|
2109
|
+
* @summary 创建一个Tensorboard
|
|
2110
|
+
*
|
|
2111
|
+
* @param request CreateTensorboardRequest
|
|
2112
|
+
* @return CreateTensorboardResponse
|
|
2113
|
+
*/
|
|
2080
2114
|
createTensorboard(request: CreateTensorboardRequest): Promise<CreateTensorboardResponse>;
|
|
2115
|
+
/**
|
|
2116
|
+
* @summary 删除一个DLC作业
|
|
2117
|
+
*
|
|
2118
|
+
* @param headers map
|
|
2119
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2120
|
+
* @return DeleteJobResponse
|
|
2121
|
+
*/
|
|
2081
2122
|
deleteJobWithOptions(JobId: string, headers: {
|
|
2082
2123
|
[key: string]: string;
|
|
2083
2124
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteJobResponse>;
|
|
2125
|
+
/**
|
|
2126
|
+
* @summary 删除一个DLC作业
|
|
2127
|
+
*
|
|
2128
|
+
* @return DeleteJobResponse
|
|
2129
|
+
*/
|
|
2084
2130
|
deleteJob(JobId: string): Promise<DeleteJobResponse>;
|
|
2131
|
+
/**
|
|
2132
|
+
* @summary 删除一个数据源配置
|
|
2133
|
+
*
|
|
2134
|
+
* @param request DeleteTensorboardRequest
|
|
2135
|
+
* @param headers map
|
|
2136
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2137
|
+
* @return DeleteTensorboardResponse
|
|
2138
|
+
*/
|
|
2085
2139
|
deleteTensorboardWithOptions(TensorboardId: string, request: DeleteTensorboardRequest, headers: {
|
|
2086
2140
|
[key: string]: string;
|
|
2087
2141
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteTensorboardResponse>;
|
|
2142
|
+
/**
|
|
2143
|
+
* @summary 删除一个数据源配置
|
|
2144
|
+
*
|
|
2145
|
+
* @param request DeleteTensorboardRequest
|
|
2146
|
+
* @return DeleteTensorboardResponse
|
|
2147
|
+
*/
|
|
2088
2148
|
deleteTensorboard(TensorboardId: string, request: DeleteTensorboardRequest): Promise<DeleteTensorboardResponse>;
|
|
2149
|
+
/**
|
|
2150
|
+
* @summary 获取一个DLC作业详情
|
|
2151
|
+
*
|
|
2152
|
+
* @param request GetJobRequest
|
|
2153
|
+
* @param headers map
|
|
2154
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2155
|
+
* @return GetJobResponse
|
|
2156
|
+
*/
|
|
2089
2157
|
getJobWithOptions(JobId: string, request: GetJobRequest, headers: {
|
|
2090
2158
|
[key: string]: string;
|
|
2091
2159
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobResponse>;
|
|
2160
|
+
/**
|
|
2161
|
+
* @summary 获取一个DLC作业详情
|
|
2162
|
+
*
|
|
2163
|
+
* @param request GetJobRequest
|
|
2164
|
+
* @return GetJobResponse
|
|
2165
|
+
*/
|
|
2092
2166
|
getJob(JobId: string, request: GetJobRequest): Promise<GetJobResponse>;
|
|
2167
|
+
/**
|
|
2168
|
+
* @summary 获取作业的事件
|
|
2169
|
+
*
|
|
2170
|
+
* @param request GetJobEventsRequest
|
|
2171
|
+
* @param headers map
|
|
2172
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2173
|
+
* @return GetJobEventsResponse
|
|
2174
|
+
*/
|
|
2093
2175
|
getJobEventsWithOptions(JobId: string, request: GetJobEventsRequest, headers: {
|
|
2094
2176
|
[key: string]: string;
|
|
2095
2177
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobEventsResponse>;
|
|
2178
|
+
/**
|
|
2179
|
+
* @summary 获取作业的事件
|
|
2180
|
+
*
|
|
2181
|
+
* @param request GetJobEventsRequest
|
|
2182
|
+
* @return GetJobEventsResponse
|
|
2183
|
+
*/
|
|
2096
2184
|
getJobEvents(JobId: string, request: GetJobEventsRequest): Promise<GetJobEventsResponse>;
|
|
2185
|
+
/**
|
|
2186
|
+
* @summary 获取一个作业的资源监控指标
|
|
2187
|
+
*
|
|
2188
|
+
* @param request GetJobMetricsRequest
|
|
2189
|
+
* @param headers map
|
|
2190
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2191
|
+
* @return GetJobMetricsResponse
|
|
2192
|
+
*/
|
|
2097
2193
|
getJobMetricsWithOptions(JobId: string, request: GetJobMetricsRequest, headers: {
|
|
2098
2194
|
[key: string]: string;
|
|
2099
2195
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobMetricsResponse>;
|
|
2196
|
+
/**
|
|
2197
|
+
* @summary 获取一个作业的资源监控指标
|
|
2198
|
+
*
|
|
2199
|
+
* @param request GetJobMetricsRequest
|
|
2200
|
+
* @return GetJobMetricsResponse
|
|
2201
|
+
*/
|
|
2100
2202
|
getJobMetrics(JobId: string, request: GetJobMetricsRequest): Promise<GetJobMetricsResponse>;
|
|
2203
|
+
/**
|
|
2204
|
+
* @summary 获取DLC作业某次算力健康检测结果
|
|
2205
|
+
*
|
|
2206
|
+
* @param request GetJobSanityCheckResultRequest
|
|
2207
|
+
* @param headers map
|
|
2208
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2209
|
+
* @return GetJobSanityCheckResultResponse
|
|
2210
|
+
*/
|
|
2101
2211
|
getJobSanityCheckResultWithOptions(JobId: string, request: GetJobSanityCheckResultRequest, headers: {
|
|
2102
2212
|
[key: string]: string;
|
|
2103
2213
|
}, runtime: $Util.RuntimeOptions): Promise<GetJobSanityCheckResultResponse>;
|
|
2214
|
+
/**
|
|
2215
|
+
* @summary 获取DLC作业某次算力健康检测结果
|
|
2216
|
+
*
|
|
2217
|
+
* @param request GetJobSanityCheckResultRequest
|
|
2218
|
+
* @return GetJobSanityCheckResultResponse
|
|
2219
|
+
*/
|
|
2104
2220
|
getJobSanityCheckResult(JobId: string, request: GetJobSanityCheckResultRequest): Promise<GetJobSanityCheckResultResponse>;
|
|
2221
|
+
/**
|
|
2222
|
+
* @summary 获取作业中一个运行实例的系统事件
|
|
2223
|
+
*
|
|
2224
|
+
* @param request GetPodEventsRequest
|
|
2225
|
+
* @param headers map
|
|
2226
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2227
|
+
* @return GetPodEventsResponse
|
|
2228
|
+
*/
|
|
2105
2229
|
getPodEventsWithOptions(JobId: string, PodId: string, request: GetPodEventsRequest, headers: {
|
|
2106
2230
|
[key: string]: string;
|
|
2107
2231
|
}, runtime: $Util.RuntimeOptions): Promise<GetPodEventsResponse>;
|
|
2232
|
+
/**
|
|
2233
|
+
* @summary 获取作业中一个运行实例的系统事件
|
|
2234
|
+
*
|
|
2235
|
+
* @param request GetPodEventsRequest
|
|
2236
|
+
* @return GetPodEventsResponse
|
|
2237
|
+
*/
|
|
2108
2238
|
getPodEvents(JobId: string, PodId: string, request: GetPodEventsRequest): Promise<GetPodEventsResponse>;
|
|
2239
|
+
/**
|
|
2240
|
+
* @summary 获取作业中一个运行实例的日志
|
|
2241
|
+
*
|
|
2242
|
+
* @param request GetPodLogsRequest
|
|
2243
|
+
* @param headers map
|
|
2244
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2245
|
+
* @return GetPodLogsResponse
|
|
2246
|
+
*/
|
|
2109
2247
|
getPodLogsWithOptions(JobId: string, PodId: string, request: GetPodLogsRequest, headers: {
|
|
2110
2248
|
[key: string]: string;
|
|
2111
2249
|
}, runtime: $Util.RuntimeOptions): Promise<GetPodLogsResponse>;
|
|
2250
|
+
/**
|
|
2251
|
+
* @summary 获取作业中一个运行实例的日志
|
|
2252
|
+
*
|
|
2253
|
+
* @param request GetPodLogsRequest
|
|
2254
|
+
* @return GetPodLogsResponse
|
|
2255
|
+
*/
|
|
2112
2256
|
getPodLogs(JobId: string, PodId: string, request: GetPodLogsRequest): Promise<GetPodLogsResponse>;
|
|
2257
|
+
/**
|
|
2258
|
+
* @summary 获取一个Tensorboard
|
|
2259
|
+
*
|
|
2260
|
+
* @param request GetTensorboardRequest
|
|
2261
|
+
* @param headers map
|
|
2262
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2263
|
+
* @return GetTensorboardResponse
|
|
2264
|
+
*/
|
|
2113
2265
|
getTensorboardWithOptions(TensorboardId: string, request: GetTensorboardRequest, headers: {
|
|
2114
2266
|
[key: string]: string;
|
|
2115
2267
|
}, runtime: $Util.RuntimeOptions): Promise<GetTensorboardResponse>;
|
|
2268
|
+
/**
|
|
2269
|
+
* @summary 获取一个Tensorboard
|
|
2270
|
+
*
|
|
2271
|
+
* @param request GetTensorboardRequest
|
|
2272
|
+
* @return GetTensorboardResponse
|
|
2273
|
+
*/
|
|
2116
2274
|
getTensorboard(TensorboardId: string, request: GetTensorboardRequest): Promise<GetTensorboardResponse>;
|
|
2275
|
+
/**
|
|
2276
|
+
* @summary Get the shared url for tensorboard
|
|
2277
|
+
*
|
|
2278
|
+
* @param request GetTensorboardSharedUrlRequest
|
|
2279
|
+
* @param headers map
|
|
2280
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2281
|
+
* @return GetTensorboardSharedUrlResponse
|
|
2282
|
+
*/
|
|
2117
2283
|
getTensorboardSharedUrlWithOptions(TensorboardId: string, request: GetTensorboardSharedUrlRequest, headers: {
|
|
2118
2284
|
[key: string]: string;
|
|
2119
2285
|
}, runtime: $Util.RuntimeOptions): Promise<GetTensorboardSharedUrlResponse>;
|
|
2286
|
+
/**
|
|
2287
|
+
* @summary Get the shared url for tensorboard
|
|
2288
|
+
*
|
|
2289
|
+
* @param request GetTensorboardSharedUrlRequest
|
|
2290
|
+
* @return GetTensorboardSharedUrlResponse
|
|
2291
|
+
*/
|
|
2120
2292
|
getTensorboardSharedUrl(TensorboardId: string, request: GetTensorboardSharedUrlRequest): Promise<GetTensorboardSharedUrlResponse>;
|
|
2293
|
+
/**
|
|
2294
|
+
* @summary 获取用户Token
|
|
2295
|
+
*
|
|
2296
|
+
* @param request GetTokenRequest
|
|
2297
|
+
* @param headers map
|
|
2298
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2299
|
+
* @return GetTokenResponse
|
|
2300
|
+
*/
|
|
2121
2301
|
getTokenWithOptions(request: GetTokenRequest, headers: {
|
|
2122
2302
|
[key: string]: string;
|
|
2123
2303
|
}, runtime: $Util.RuntimeOptions): Promise<GetTokenResponse>;
|
|
2304
|
+
/**
|
|
2305
|
+
* @summary 获取用户Token
|
|
2306
|
+
*
|
|
2307
|
+
* @param request GetTokenRequest
|
|
2308
|
+
* @return GetTokenResponse
|
|
2309
|
+
*/
|
|
2124
2310
|
getToken(request: GetTokenRequest): Promise<GetTokenResponse>;
|
|
2311
|
+
/**
|
|
2312
|
+
* @summary Get the url for accessing pod's terminal in k8s
|
|
2313
|
+
*
|
|
2314
|
+
* @param request GetWebTerminalRequest
|
|
2315
|
+
* @param headers map
|
|
2316
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2317
|
+
* @return GetWebTerminalResponse
|
|
2318
|
+
*/
|
|
2125
2319
|
getWebTerminalWithOptions(JobId: string, PodId: string, request: GetWebTerminalRequest, headers: {
|
|
2126
2320
|
[key: string]: string;
|
|
2127
2321
|
}, runtime: $Util.RuntimeOptions): Promise<GetWebTerminalResponse>;
|
|
2322
|
+
/**
|
|
2323
|
+
* @summary Get the url for accessing pod's terminal in k8s
|
|
2324
|
+
*
|
|
2325
|
+
* @param request GetWebTerminalRequest
|
|
2326
|
+
* @return GetWebTerminalResponse
|
|
2327
|
+
*/
|
|
2128
2328
|
getWebTerminal(JobId: string, PodId: string, request: GetWebTerminalRequest): Promise<GetWebTerminalResponse>;
|
|
2329
|
+
/**
|
|
2330
|
+
* @summary ListEcsSpecs
|
|
2331
|
+
*
|
|
2332
|
+
* @param request ListEcsSpecsRequest
|
|
2333
|
+
* @param headers map
|
|
2334
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2335
|
+
* @return ListEcsSpecsResponse
|
|
2336
|
+
*/
|
|
2129
2337
|
listEcsSpecsWithOptions(request: ListEcsSpecsRequest, headers: {
|
|
2130
2338
|
[key: string]: string;
|
|
2131
2339
|
}, runtime: $Util.RuntimeOptions): Promise<ListEcsSpecsResponse>;
|
|
2340
|
+
/**
|
|
2341
|
+
* @summary ListEcsSpecs
|
|
2342
|
+
*
|
|
2343
|
+
* @param request ListEcsSpecsRequest
|
|
2344
|
+
* @return ListEcsSpecsResponse
|
|
2345
|
+
*/
|
|
2132
2346
|
listEcsSpecs(request: ListEcsSpecsRequest): Promise<ListEcsSpecsResponse>;
|
|
2347
|
+
/**
|
|
2348
|
+
* @summary 获取某个DLC作业的多次算力健康检测结果
|
|
2349
|
+
*
|
|
2350
|
+
* @param request ListJobSanityCheckResultsRequest
|
|
2351
|
+
* @param headers map
|
|
2352
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2353
|
+
* @return ListJobSanityCheckResultsResponse
|
|
2354
|
+
*/
|
|
2133
2355
|
listJobSanityCheckResultsWithOptions(JobId: string, request: ListJobSanityCheckResultsRequest, headers: {
|
|
2134
2356
|
[key: string]: string;
|
|
2135
2357
|
}, runtime: $Util.RuntimeOptions): Promise<ListJobSanityCheckResultsResponse>;
|
|
2358
|
+
/**
|
|
2359
|
+
* @summary 获取某个DLC作业的多次算力健康检测结果
|
|
2360
|
+
*
|
|
2361
|
+
* @param request ListJobSanityCheckResultsRequest
|
|
2362
|
+
* @return ListJobSanityCheckResultsResponse
|
|
2363
|
+
*/
|
|
2136
2364
|
listJobSanityCheckResults(JobId: string, request: ListJobSanityCheckResultsRequest): Promise<ListJobSanityCheckResultsResponse>;
|
|
2365
|
+
/**
|
|
2366
|
+
* @summary 根据过滤条件获取DLC作业列表
|
|
2367
|
+
*
|
|
2368
|
+
* @param tmpReq ListJobsRequest
|
|
2369
|
+
* @param headers map
|
|
2370
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2371
|
+
* @return ListJobsResponse
|
|
2372
|
+
*/
|
|
2137
2373
|
listJobsWithOptions(tmpReq: ListJobsRequest, headers: {
|
|
2138
2374
|
[key: string]: string;
|
|
2139
2375
|
}, runtime: $Util.RuntimeOptions): Promise<ListJobsResponse>;
|
|
2376
|
+
/**
|
|
2377
|
+
* @summary 根据过滤条件获取DLC作业列表
|
|
2378
|
+
*
|
|
2379
|
+
* @param request ListJobsRequest
|
|
2380
|
+
* @return ListJobsResponse
|
|
2381
|
+
*/
|
|
2140
2382
|
listJobs(request: ListJobsRequest): Promise<ListJobsResponse>;
|
|
2383
|
+
/**
|
|
2384
|
+
* @summary 获取Tensorboard
|
|
2385
|
+
*
|
|
2386
|
+
* @param request ListTensorboardsRequest
|
|
2387
|
+
* @param headers map
|
|
2388
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2389
|
+
* @return ListTensorboardsResponse
|
|
2390
|
+
*/
|
|
2141
2391
|
listTensorboardsWithOptions(request: ListTensorboardsRequest, headers: {
|
|
2142
2392
|
[key: string]: string;
|
|
2143
2393
|
}, runtime: $Util.RuntimeOptions): Promise<ListTensorboardsResponse>;
|
|
2394
|
+
/**
|
|
2395
|
+
* @summary 获取Tensorboard
|
|
2396
|
+
*
|
|
2397
|
+
* @param request ListTensorboardsRequest
|
|
2398
|
+
* @return ListTensorboardsResponse
|
|
2399
|
+
*/
|
|
2144
2400
|
listTensorboards(request: ListTensorboardsRequest): Promise<ListTensorboardsResponse>;
|
|
2401
|
+
/**
|
|
2402
|
+
* @summary 开始运行tensorboard
|
|
2403
|
+
*
|
|
2404
|
+
* @param request StartTensorboardRequest
|
|
2405
|
+
* @param headers map
|
|
2406
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2407
|
+
* @return StartTensorboardResponse
|
|
2408
|
+
*/
|
|
2145
2409
|
startTensorboardWithOptions(TensorboardId: string, request: StartTensorboardRequest, headers: {
|
|
2146
2410
|
[key: string]: string;
|
|
2147
2411
|
}, runtime: $Util.RuntimeOptions): Promise<StartTensorboardResponse>;
|
|
2412
|
+
/**
|
|
2413
|
+
* @summary 开始运行tensorboard
|
|
2414
|
+
*
|
|
2415
|
+
* @param request StartTensorboardRequest
|
|
2416
|
+
* @return StartTensorboardResponse
|
|
2417
|
+
*/
|
|
2148
2418
|
startTensorboard(TensorboardId: string, request: StartTensorboardRequest): Promise<StartTensorboardResponse>;
|
|
2419
|
+
/**
|
|
2420
|
+
* @summary 停止一个DLC作业
|
|
2421
|
+
*
|
|
2422
|
+
* @param headers map
|
|
2423
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2424
|
+
* @return StopJobResponse
|
|
2425
|
+
*/
|
|
2149
2426
|
stopJobWithOptions(JobId: string, headers: {
|
|
2150
2427
|
[key: string]: string;
|
|
2151
2428
|
}, runtime: $Util.RuntimeOptions): Promise<StopJobResponse>;
|
|
2429
|
+
/**
|
|
2430
|
+
* @summary 停止一个DLC作业
|
|
2431
|
+
*
|
|
2432
|
+
* @return StopJobResponse
|
|
2433
|
+
*/
|
|
2152
2434
|
stopJob(JobId: string): Promise<StopJobResponse>;
|
|
2435
|
+
/**
|
|
2436
|
+
* @summary 停止运行tensorboard
|
|
2437
|
+
*
|
|
2438
|
+
* @param request StopTensorboardRequest
|
|
2439
|
+
* @param headers map
|
|
2440
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2441
|
+
* @return StopTensorboardResponse
|
|
2442
|
+
*/
|
|
2153
2443
|
stopTensorboardWithOptions(TensorboardId: string, request: StopTensorboardRequest, headers: {
|
|
2154
2444
|
[key: string]: string;
|
|
2155
2445
|
}, runtime: $Util.RuntimeOptions): Promise<StopTensorboardResponse>;
|
|
2446
|
+
/**
|
|
2447
|
+
* @summary 停止运行tensorboard
|
|
2448
|
+
*
|
|
2449
|
+
* @param request StopTensorboardRequest
|
|
2450
|
+
* @return StopTensorboardResponse
|
|
2451
|
+
*/
|
|
2156
2452
|
stopTensorboard(TensorboardId: string, request: StopTensorboardRequest): Promise<StopTensorboardResponse>;
|
|
2453
|
+
/**
|
|
2454
|
+
* @summary 更新一个Job
|
|
2455
|
+
*
|
|
2456
|
+
* @param request UpdateJobRequest
|
|
2457
|
+
* @param headers map
|
|
2458
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2459
|
+
* @return UpdateJobResponse
|
|
2460
|
+
*/
|
|
2157
2461
|
updateJobWithOptions(JobId: string, request: UpdateJobRequest, headers: {
|
|
2158
2462
|
[key: string]: string;
|
|
2159
2463
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateJobResponse>;
|
|
2464
|
+
/**
|
|
2465
|
+
* @summary 更新一个Job
|
|
2466
|
+
*
|
|
2467
|
+
* @param request UpdateJobRequest
|
|
2468
|
+
* @return UpdateJobResponse
|
|
2469
|
+
*/
|
|
2160
2470
|
updateJob(JobId: string, request: UpdateJobRequest): Promise<UpdateJobResponse>;
|
|
2471
|
+
/**
|
|
2472
|
+
* @summary 更新tensorboard
|
|
2473
|
+
*
|
|
2474
|
+
* @param request UpdateTensorboardRequest
|
|
2475
|
+
* @param headers map
|
|
2476
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2477
|
+
* @return UpdateTensorboardResponse
|
|
2478
|
+
*/
|
|
2161
2479
|
updateTensorboardWithOptions(TensorboardId: string, request: UpdateTensorboardRequest, headers: {
|
|
2162
2480
|
[key: string]: string;
|
|
2163
2481
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateTensorboardResponse>;
|
|
2482
|
+
/**
|
|
2483
|
+
* @summary 更新tensorboard
|
|
2484
|
+
*
|
|
2485
|
+
* @param request UpdateTensorboardRequest
|
|
2486
|
+
* @return UpdateTensorboardResponse
|
|
2487
|
+
*/
|
|
2164
2488
|
updateTensorboard(TensorboardId: string, request: UpdateTensorboardRequest): Promise<UpdateTensorboardResponse>;
|
|
2165
2489
|
}
|