Skip to content

Commit 82c757a

Browse files
committed
Generated ts 2020-12-03 for pai-dlc.
1 parent ffa3012 commit 82c757a

File tree

2 files changed

+73
-1
lines changed

2 files changed

+73
-1
lines changed

pai-dlc-20201203/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/pai-dlc20201203",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {

pai-dlc-20201203/src/client.ts

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,37 @@ export class EnvVar extends $tea.Model {
399399
}
400400
}
401401

402+
export class EventInfo extends $tea.Model {
403+
content?: string;
404+
id?: string;
405+
podId?: string;
406+
podUid?: string;
407+
time?: string;
408+
static names(): { [key: string]: string } {
409+
return {
410+
content: 'Content',
411+
id: 'Id',
412+
podId: 'PodId',
413+
podUid: 'PodUid',
414+
time: 'Time',
415+
};
416+
}
417+
418+
static types(): { [key: string]: any } {
419+
return {
420+
content: 'string',
421+
id: 'string',
422+
podId: 'string',
423+
podUid: 'string',
424+
time: 'string',
425+
};
426+
}
427+
428+
constructor(map?: { [key: string]: any }) {
429+
super(map);
430+
}
431+
}
432+
402433
export class ExtraPodSpec extends $tea.Model {
403434
initContainers?: ContainerSpec[];
404435
podAnnotations?: { [key: string]: string };
@@ -912,6 +943,40 @@ export class JobSpec extends $tea.Model {
912943
}
913944
}
914945

946+
export class LogInfo extends $tea.Model {
947+
content?: string;
948+
id?: string;
949+
podId?: string;
950+
podUid?: string;
951+
source?: string;
952+
time?: string;
953+
static names(): { [key: string]: string } {
954+
return {
955+
content: 'Content',
956+
id: 'Id',
957+
podId: 'PodId',
958+
podUid: 'PodUid',
959+
source: 'Source',
960+
time: 'Time',
961+
};
962+
}
963+
964+
static types(): { [key: string]: any } {
965+
return {
966+
content: 'string',
967+
id: 'string',
968+
podId: 'string',
969+
podUid: 'string',
970+
source: 'string',
971+
time: 'string',
972+
};
973+
}
974+
975+
constructor(map?: { [key: string]: any }) {
976+
super(map);
977+
}
978+
}
979+
915980
export class Member extends $tea.Model {
916981
memberId?: string;
917982
memberType?: string;
@@ -2425,15 +2490,18 @@ export class GetTokenResponse extends $tea.Model {
24252490
}
24262491

24272492
export class GetWebTerminalRequest extends $tea.Model {
2493+
isShared?: boolean;
24282494
podUid?: string;
24292495
static names(): { [key: string]: string } {
24302496
return {
2497+
isShared: 'IsShared',
24312498
podUid: 'PodUid',
24322499
};
24332500
}
24342501

24352502
static types(): { [key: string]: any } {
24362503
return {
2504+
isShared: 'boolean',
24372505
podUid: 'string',
24382506
};
24392507
}
@@ -4101,6 +4169,10 @@ export default class Client extends OpenApi {
41014169
async getWebTerminalWithOptions(JobId: string, PodId: string, request: GetWebTerminalRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetWebTerminalResponse> {
41024170
Util.validateModel(request);
41034171
let query : {[key: string ]: any} = { };
4172+
if (!Util.isUnset(request.isShared)) {
4173+
query["IsShared"] = request.isShared;
4174+
}
4175+
41044176
if (!Util.isUnset(request.podUid)) {
41054177
query["PodUid"] = request.podUid;
41064178
}

0 commit comments

Comments
 (0)