@alicloud/dms20250414 1.9.7 → 1.10.0
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 +75 -0
- package/dist/client.js +214 -0
- package/dist/client.js.map +1 -1
- package/dist/models/GetWorkspaceCodePublishSettingRequest.d.ts +21 -0
- package/dist/models/GetWorkspaceCodePublishSettingRequest.js +58 -0
- package/dist/models/GetWorkspaceCodePublishSettingRequest.js.map +1 -0
- package/dist/models/GetWorkspaceCodePublishSettingResponse.d.ts +19 -0
- package/dist/models/GetWorkspaceCodePublishSettingResponse.js +69 -0
- package/dist/models/GetWorkspaceCodePublishSettingResponse.js.map +1 -0
- package/dist/models/GetWorkspaceCodePublishSettingResponseBody.d.ts +85 -0
- package/dist/models/GetWorkspaceCodePublishSettingResponseBody.js +123 -0
- package/dist/models/GetWorkspaceCodePublishSettingResponseBody.js.map +1 -0
- package/dist/models/ListFileUploadRequest.d.ts +1 -0
- package/dist/models/ListFileUploadRequest.js +2 -0
- package/dist/models/ListFileUploadRequest.js.map +1 -1
- package/dist/models/SetWorkspaceCodePublishSettingRequest.d.ts +29 -0
- package/dist/models/SetWorkspaceCodePublishSettingRequest.js +60 -0
- package/dist/models/SetWorkspaceCodePublishSettingRequest.js.map +1 -0
- package/dist/models/SetWorkspaceCodePublishSettingResponse.d.ts +19 -0
- package/dist/models/SetWorkspaceCodePublishSettingResponse.js +69 -0
- package/dist/models/SetWorkspaceCodePublishSettingResponse.js.map +1 -0
- package/dist/models/SetWorkspaceCodePublishSettingResponseBody.d.ts +38 -0
- package/dist/models/SetWorkspaceCodePublishSettingResponseBody.js +66 -0
- package/dist/models/SetWorkspaceCodePublishSettingResponseBody.js.map +1 -0
- package/dist/models/WorkspaceActionLogRequest.d.ts +29 -0
- package/dist/models/WorkspaceActionLogRequest.js +60 -0
- package/dist/models/WorkspaceActionLogRequest.js.map +1 -0
- package/dist/models/WorkspaceActionLogResponse.d.ts +19 -0
- package/dist/models/WorkspaceActionLogResponse.js +69 -0
- package/dist/models/WorkspaceActionLogResponse.js.map +1 -0
- package/dist/models/WorkspaceActionLogResponseBody.d.ts +43 -0
- package/dist/models/WorkspaceActionLogResponseBody.js +68 -0
- package/dist/models/WorkspaceActionLogResponseBody.js.map +1 -0
- package/dist/models/WorkspaceActionStatusRequest.d.ts +29 -0
- package/dist/models/WorkspaceActionStatusRequest.js +60 -0
- package/dist/models/WorkspaceActionStatusRequest.js.map +1 -0
- package/dist/models/WorkspaceActionStatusResponse.d.ts +19 -0
- package/dist/models/WorkspaceActionStatusResponse.js +69 -0
- package/dist/models/WorkspaceActionStatusResponse.js.map +1 -0
- package/dist/models/WorkspaceActionStatusResponseBody.d.ts +74 -0
- package/dist/models/WorkspaceActionStatusResponseBody.js +96 -0
- package/dist/models/WorkspaceActionStatusResponseBody.js.map +1 -0
- package/dist/models/WorkspaceCodePublishRequest.d.ts +29 -0
- package/dist/models/WorkspaceCodePublishRequest.js +60 -0
- package/dist/models/WorkspaceCodePublishRequest.js.map +1 -0
- package/dist/models/WorkspaceCodePublishResponse.d.ts +19 -0
- package/dist/models/WorkspaceCodePublishResponse.js +69 -0
- package/dist/models/WorkspaceCodePublishResponse.js.map +1 -0
- package/dist/models/WorkspaceCodePublishResponseBody.d.ts +60 -0
- package/dist/models/WorkspaceCodePublishResponseBody.js +90 -0
- package/dist/models/WorkspaceCodePublishResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +19 -0
- package/dist/models/model.js +45 -7
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +234 -0
- package/src/models/GetWorkspaceCodePublishSettingRequest.ts +34 -0
- package/src/models/GetWorkspaceCodePublishSettingResponse.ts +40 -0
- package/src/models/GetWorkspaceCodePublishSettingResponseBody.ts +145 -0
- package/src/models/ListFileUploadRequest.ts +3 -0
- package/src/models/SetWorkspaceCodePublishSettingRequest.ts +44 -0
- package/src/models/SetWorkspaceCodePublishSettingResponse.ts +40 -0
- package/src/models/SetWorkspaceCodePublishSettingResponseBody.ts +59 -0
- package/src/models/WorkspaceActionLogRequest.ts +44 -0
- package/src/models/WorkspaceActionLogResponse.ts +40 -0
- package/src/models/WorkspaceActionLogResponseBody.ts +66 -0
- package/src/models/WorkspaceActionStatusRequest.ts +44 -0
- package/src/models/WorkspaceActionStatusResponse.ts +40 -0
- package/src/models/WorkspaceActionStatusResponseBody.ts +116 -0
- package/src/models/WorkspaceCodePublishRequest.ts +44 -0
- package/src/models/WorkspaceCodePublishResponse.ts +40 -0
- package/src/models/WorkspaceCodePublishResponseBody.ts +96 -0
- package/src/models/model.ts +19 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { WorkspaceActionLogResponseBody } from "./WorkspaceActionLogResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class WorkspaceActionLogResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: WorkspaceActionLogResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: WorkspaceActionLogResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class WorkspaceActionLogResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* log info
|
|
9
|
+
*/
|
|
10
|
+
data?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* UnknownError
|
|
14
|
+
*/
|
|
15
|
+
errorCode?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 200
|
|
19
|
+
*/
|
|
20
|
+
httpStatusCode?: number;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* This record is being collected, please wait for a moment.
|
|
24
|
+
*/
|
|
25
|
+
message?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* E0D21075-CD3E-4D98-8264-FD8AD04A63B6
|
|
29
|
+
*/
|
|
30
|
+
requestId?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* true
|
|
34
|
+
*/
|
|
35
|
+
success?: boolean;
|
|
36
|
+
static names(): { [key: string]: string } {
|
|
37
|
+
return {
|
|
38
|
+
data: 'Data',
|
|
39
|
+
errorCode: 'ErrorCode',
|
|
40
|
+
httpStatusCode: 'HttpStatusCode',
|
|
41
|
+
message: 'Message',
|
|
42
|
+
requestId: 'RequestId',
|
|
43
|
+
success: 'Success',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static types(): { [key: string]: any } {
|
|
48
|
+
return {
|
|
49
|
+
data: 'string',
|
|
50
|
+
errorCode: 'string',
|
|
51
|
+
httpStatusCode: 'number',
|
|
52
|
+
message: 'string',
|
|
53
|
+
requestId: 'string',
|
|
54
|
+
success: 'boolean',
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
validate() {
|
|
59
|
+
super.validate();
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
constructor(map?: { [key: string]: any }) {
|
|
63
|
+
super(map);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class WorkspaceActionStatusRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ws-xxx-xxxx
|
|
12
|
+
*/
|
|
13
|
+
key?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* This parameter is required.
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* 12345
|
|
20
|
+
*/
|
|
21
|
+
workspaceId?: string;
|
|
22
|
+
static names(): { [key: string]: string } {
|
|
23
|
+
return {
|
|
24
|
+
key: 'Key',
|
|
25
|
+
workspaceId: 'WorkspaceId',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
key: 'string',
|
|
32
|
+
workspaceId: 'string',
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
validate() {
|
|
37
|
+
super.validate();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
constructor(map?: { [key: string]: any }) {
|
|
41
|
+
super(map);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { WorkspaceActionStatusResponseBody } from "./WorkspaceActionStatusResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class WorkspaceActionStatusResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: WorkspaceActionStatusResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: WorkspaceActionStatusResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class WorkspaceActionStatusResponseBodyData extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* action failed
|
|
9
|
+
*/
|
|
10
|
+
data?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 2026-01-13T14:30:20.582182728+08:00
|
|
14
|
+
*/
|
|
15
|
+
endTime?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 2026-01-13T14:30:20.582182728+08:00
|
|
19
|
+
*/
|
|
20
|
+
startTime?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @remarks
|
|
23
|
+
* This parameter is required.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* {\\"phase\\": \\"Created\\", \\"latestExecError\\": {\\"message\\": \\"\\", \\"code\\": \\"\\", \\"requestId\\": \\"\\", \\"extraInfo\\": \\"\\", \\"title\\": \\"\\"}}
|
|
27
|
+
*/
|
|
28
|
+
status?: string;
|
|
29
|
+
static names(): { [key: string]: string } {
|
|
30
|
+
return {
|
|
31
|
+
data: 'Data',
|
|
32
|
+
endTime: 'EndTime',
|
|
33
|
+
startTime: 'StartTime',
|
|
34
|
+
status: 'Status',
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
static types(): { [key: string]: any } {
|
|
39
|
+
return {
|
|
40
|
+
data: 'string',
|
|
41
|
+
endTime: 'string',
|
|
42
|
+
startTime: 'string',
|
|
43
|
+
status: 'string',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
validate() {
|
|
48
|
+
super.validate();
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
constructor(map?: { [key: string]: any }) {
|
|
52
|
+
super(map);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export class WorkspaceActionStatusResponseBody extends $dara.Model {
|
|
57
|
+
data?: WorkspaceActionStatusResponseBodyData;
|
|
58
|
+
/**
|
|
59
|
+
* @example
|
|
60
|
+
* InvalidTid
|
|
61
|
+
*/
|
|
62
|
+
errorCode?: string;
|
|
63
|
+
/**
|
|
64
|
+
* @example
|
|
65
|
+
* 200
|
|
66
|
+
*/
|
|
67
|
+
httpStatusCode?: number;
|
|
68
|
+
/**
|
|
69
|
+
* @example
|
|
70
|
+
* This record is being collected, please wait for a moment.
|
|
71
|
+
*/
|
|
72
|
+
message?: string;
|
|
73
|
+
/**
|
|
74
|
+
* @example
|
|
75
|
+
* 67E910F2-4B62-5B0C-ACA3-7547695C****
|
|
76
|
+
*/
|
|
77
|
+
requestId?: string;
|
|
78
|
+
/**
|
|
79
|
+
* @example
|
|
80
|
+
* true
|
|
81
|
+
*/
|
|
82
|
+
success?: boolean;
|
|
83
|
+
static names(): { [key: string]: string } {
|
|
84
|
+
return {
|
|
85
|
+
data: 'Data',
|
|
86
|
+
errorCode: 'ErrorCode',
|
|
87
|
+
httpStatusCode: 'HttpStatusCode',
|
|
88
|
+
message: 'Message',
|
|
89
|
+
requestId: 'RequestId',
|
|
90
|
+
success: 'Success',
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
static types(): { [key: string]: any } {
|
|
95
|
+
return {
|
|
96
|
+
data: WorkspaceActionStatusResponseBodyData,
|
|
97
|
+
errorCode: 'string',
|
|
98
|
+
httpStatusCode: 'number',
|
|
99
|
+
message: 'string',
|
|
100
|
+
requestId: 'string',
|
|
101
|
+
success: 'boolean',
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
validate() {
|
|
106
|
+
if(this.data && typeof (this.data as any).validate === 'function') {
|
|
107
|
+
(this.data as any).validate();
|
|
108
|
+
}
|
|
109
|
+
super.validate();
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
constructor(map?: { [key: string]: any }) {
|
|
113
|
+
super(map);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class WorkspaceCodePublishRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* {"repos":[{"repo":"git@xxxx.git", "branch":"master"}], "exclude":["/.dms", "/username"]}
|
|
12
|
+
*/
|
|
13
|
+
config?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* This parameter is required.
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* 12345678
|
|
20
|
+
*/
|
|
21
|
+
workspaceId?: string;
|
|
22
|
+
static names(): { [key: string]: string } {
|
|
23
|
+
return {
|
|
24
|
+
config: 'Config',
|
|
25
|
+
workspaceId: 'WorkspaceId',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
config: 'string',
|
|
32
|
+
workspaceId: 'string',
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
validate() {
|
|
37
|
+
super.validate();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
constructor(map?: { [key: string]: any }) {
|
|
41
|
+
super(map);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { WorkspaceCodePublishResponseBody } from "./WorkspaceCodePublishResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class WorkspaceCodePublishResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: WorkspaceCodePublishResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: WorkspaceCodePublishResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class WorkspaceCodePublishResponseBodyData extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* ws-xxxx-xxxxxx
|
|
9
|
+
*/
|
|
10
|
+
key?: string;
|
|
11
|
+
static names(): { [key: string]: string } {
|
|
12
|
+
return {
|
|
13
|
+
key: 'Key',
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static types(): { [key: string]: any } {
|
|
18
|
+
return {
|
|
19
|
+
key: 'string',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
validate() {
|
|
24
|
+
super.validate();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
constructor(map?: { [key: string]: any }) {
|
|
28
|
+
super(map);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export class WorkspaceCodePublishResponseBody extends $dara.Model {
|
|
33
|
+
/**
|
|
34
|
+
* @remarks
|
|
35
|
+
* job
|
|
36
|
+
*/
|
|
37
|
+
data?: WorkspaceCodePublishResponseBodyData;
|
|
38
|
+
/**
|
|
39
|
+
* @example
|
|
40
|
+
* UnknownError
|
|
41
|
+
*/
|
|
42
|
+
errorCode?: string;
|
|
43
|
+
/**
|
|
44
|
+
* @example
|
|
45
|
+
* 200
|
|
46
|
+
*/
|
|
47
|
+
httpStatusCode?: number;
|
|
48
|
+
/**
|
|
49
|
+
* @example
|
|
50
|
+
* Failed to deploy,repo branch empty
|
|
51
|
+
*/
|
|
52
|
+
message?: string;
|
|
53
|
+
/**
|
|
54
|
+
* @example
|
|
55
|
+
* 67E910F2-4B62-5B0C-ACA3-7547695C****
|
|
56
|
+
*/
|
|
57
|
+
requestId?: string;
|
|
58
|
+
/**
|
|
59
|
+
* @example
|
|
60
|
+
* true
|
|
61
|
+
*/
|
|
62
|
+
success?: boolean;
|
|
63
|
+
static names(): { [key: string]: string } {
|
|
64
|
+
return {
|
|
65
|
+
data: 'Data',
|
|
66
|
+
errorCode: 'ErrorCode',
|
|
67
|
+
httpStatusCode: 'HttpStatusCode',
|
|
68
|
+
message: 'Message',
|
|
69
|
+
requestId: 'RequestId',
|
|
70
|
+
success: 'Success',
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
static types(): { [key: string]: any } {
|
|
75
|
+
return {
|
|
76
|
+
data: WorkspaceCodePublishResponseBodyData,
|
|
77
|
+
errorCode: 'string',
|
|
78
|
+
httpStatusCode: 'number',
|
|
79
|
+
message: 'string',
|
|
80
|
+
requestId: 'string',
|
|
81
|
+
success: 'boolean',
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
validate() {
|
|
86
|
+
if(this.data && typeof (this.data as any).validate === 'function') {
|
|
87
|
+
(this.data as any).validate();
|
|
88
|
+
}
|
|
89
|
+
super.validate();
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
constructor(map?: { [key: string]: any }) {
|
|
93
|
+
super(map);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -33,6 +33,8 @@ export { GetAirflowResponseBodyRoot } from './GetAirflowResponseBody';
|
|
|
33
33
|
export { GetDataAgentSubAccountInfoResponseBodyData } from './GetDataAgentSubAccountInfoResponseBody';
|
|
34
34
|
export { GetDataAgentWorkspaceInfoResponseBodyData } from './GetDataAgentWorkspaceInfoResponseBody';
|
|
35
35
|
export { GetNotebookTaskStatusResponseBodyData } from './GetNotebookTaskStatusResponseBody';
|
|
36
|
+
export { GetWorkspaceCodePublishSettingResponseBodyDataRepos } from './GetWorkspaceCodePublishSettingResponseBody';
|
|
37
|
+
export { GetWorkspaceCodePublishSettingResponseBodyData } from './GetWorkspaceCodePublishSettingResponseBody';
|
|
36
38
|
export { ListAirflowsResponseBodyRootList } from './ListAirflowsResponseBody';
|
|
37
39
|
export { ListAirflowsResponseBodyRoot } from './ListAirflowsResponseBody';
|
|
38
40
|
export { ListCustomAgentResponseBodyDataContentCallbackConfig } from './ListCustomAgentResponseBody';
|
|
@@ -68,6 +70,8 @@ export { SendChatMessageResponseBodyData } from './SendChatMessageResponseBody';
|
|
|
68
70
|
export { UpdateAirflowResponseBodyRoot } from './UpdateAirflowResponseBody';
|
|
69
71
|
export { UpdateDataAgentSpaceInfoResponseBodyData } from './UpdateDataAgentSpaceInfoResponseBody';
|
|
70
72
|
export { UpdateDataAgentWorkspaceMemberRoleResponseBodyData } from './UpdateDataAgentWorkspaceMemberRoleResponseBody';
|
|
73
|
+
export { WorkspaceActionStatusResponseBodyData } from './WorkspaceActionStatusResponseBody';
|
|
74
|
+
export { WorkspaceCodePublishResponseBodyData } from './WorkspaceCodePublishResponseBody';
|
|
71
75
|
export { AgentServiceOrderSummaryVO } from './AgentServiceOrderSummaryVo';
|
|
72
76
|
export { AgentServiceOrderVO } from './AgentServiceOrderVo';
|
|
73
77
|
export { DLCatalog } from './Dlcatalog';
|
|
@@ -219,6 +223,9 @@ export { GetNotebookAndSubmitTaskResponse } from './GetNotebookAndSubmitTaskResp
|
|
|
219
223
|
export { GetNotebookTaskStatusRequest } from './GetNotebookTaskStatusRequest';
|
|
220
224
|
export { GetNotebookTaskStatusResponseBody } from './GetNotebookTaskStatusResponseBody';
|
|
221
225
|
export { GetNotebookTaskStatusResponse } from './GetNotebookTaskStatusResponse';
|
|
226
|
+
export { GetWorkspaceCodePublishSettingRequest } from './GetWorkspaceCodePublishSettingRequest';
|
|
227
|
+
export { GetWorkspaceCodePublishSettingResponseBody } from './GetWorkspaceCodePublishSettingResponseBody';
|
|
228
|
+
export { GetWorkspaceCodePublishSettingResponse } from './GetWorkspaceCodePublishSettingResponse';
|
|
222
229
|
export { ListAirflowsRequest } from './ListAirflowsRequest';
|
|
223
230
|
export { ListAirflowsResponseBody } from './ListAirflowsResponseBody';
|
|
224
231
|
export { ListAirflowsResponse } from './ListAirflowsResponse';
|
|
@@ -288,6 +295,9 @@ export { SendChatMessageRequest } from './SendChatMessageRequest';
|
|
|
288
295
|
export { SendChatMessageShrinkRequest } from './SendChatMessageShrinkRequest';
|
|
289
296
|
export { SendChatMessageResponseBody } from './SendChatMessageResponseBody';
|
|
290
297
|
export { SendChatMessageResponse } from './SendChatMessageResponse';
|
|
298
|
+
export { SetWorkspaceCodePublishSettingRequest } from './SetWorkspaceCodePublishSettingRequest';
|
|
299
|
+
export { SetWorkspaceCodePublishSettingResponseBody } from './SetWorkspaceCodePublishSettingResponseBody';
|
|
300
|
+
export { SetWorkspaceCodePublishSettingResponse } from './SetWorkspaceCodePublishSettingResponse';
|
|
291
301
|
export { UpdateAirflowRequest } from './UpdateAirflowRequest';
|
|
292
302
|
export { UpdateAirflowResponseBody } from './UpdateAirflowResponseBody';
|
|
293
303
|
export { UpdateAirflowResponse } from './UpdateAirflowResponse';
|
|
@@ -313,3 +323,12 @@ export { UpdateDataLakeTableRequest } from './UpdateDataLakeTableRequest';
|
|
|
313
323
|
export { UpdateDataLakeTableShrinkRequest } from './UpdateDataLakeTableShrinkRequest';
|
|
314
324
|
export { UpdateDataLakeTableResponseBody } from './UpdateDataLakeTableResponseBody';
|
|
315
325
|
export { UpdateDataLakeTableResponse } from './UpdateDataLakeTableResponse';
|
|
326
|
+
export { WorkspaceActionLogRequest } from './WorkspaceActionLogRequest';
|
|
327
|
+
export { WorkspaceActionLogResponseBody } from './WorkspaceActionLogResponseBody';
|
|
328
|
+
export { WorkspaceActionLogResponse } from './WorkspaceActionLogResponse';
|
|
329
|
+
export { WorkspaceActionStatusRequest } from './WorkspaceActionStatusRequest';
|
|
330
|
+
export { WorkspaceActionStatusResponseBody } from './WorkspaceActionStatusResponseBody';
|
|
331
|
+
export { WorkspaceActionStatusResponse } from './WorkspaceActionStatusResponse';
|
|
332
|
+
export { WorkspaceCodePublishRequest } from './WorkspaceCodePublishRequest';
|
|
333
|
+
export { WorkspaceCodePublishResponseBody } from './WorkspaceCodePublishResponseBody';
|
|
334
|
+
export { WorkspaceCodePublishResponse } from './WorkspaceCodePublishResponse';
|