@cirrobio/api-client 0.12.21 → 0.12.23
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/README.md +1 -1
- package/dist/apis/WorkspacesApi.d.ts +15 -1
- package/dist/apis/WorkspacesApi.js +40 -0
- package/dist/esm/apis/WorkspacesApi.d.ts +15 -1
- package/dist/esm/apis/WorkspacesApi.js +41 -1
- package/dist/esm/models/DatasetDetail.d.ts +6 -0
- package/dist/esm/models/DatasetDetail.js +2 -0
- package/dist/esm/models/PipelineCode.d.ts +6 -0
- package/dist/esm/models/PipelineCode.js +3 -0
- package/dist/esm/models/ProjectSettings.d.ts +6 -0
- package/dist/esm/models/ProjectSettings.js +2 -0
- package/dist/models/DatasetDetail.d.ts +6 -0
- package/dist/models/DatasetDetail.js +2 -0
- package/dist/models/PipelineCode.d.ts +6 -0
- package/dist/models/PipelineCode.js +3 -0
- package/dist/models/ProjectSettings.d.ts +6 -0
- package/dist/models/ProjectSettings.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { CreateResponse, PostponeWorkspaceAutostopInput, Workspace, WorkspaceConnectionResponse, WorkspaceEnvironment, WorkspaceInput } from '../models/index';
|
|
13
|
+
import type { CreateResponse, LogEntry, PostponeWorkspaceAutostopInput, Workspace, WorkspaceConnectionResponse, WorkspaceEnvironment, WorkspaceInput } from '../models/index';
|
|
14
14
|
export interface ConnectWorkspaceRequest {
|
|
15
15
|
projectId: string;
|
|
16
16
|
workspaceId: string;
|
|
@@ -32,6 +32,10 @@ export interface GetWorkspaceRequest {
|
|
|
32
32
|
projectId: string;
|
|
33
33
|
workspaceId: string;
|
|
34
34
|
}
|
|
35
|
+
export interface GetWorkspaceLogsRequest {
|
|
36
|
+
projectId: string;
|
|
37
|
+
workspaceId: string;
|
|
38
|
+
}
|
|
35
39
|
export interface GetWorkspacesRequest {
|
|
36
40
|
projectId: string;
|
|
37
41
|
}
|
|
@@ -117,6 +121,16 @@ export declare class WorkspacesApi extends runtime.BaseAPI {
|
|
|
117
121
|
* Get workspace environments
|
|
118
122
|
*/
|
|
119
123
|
getWorkspaceEnvironments(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<WorkspaceEnvironment>>;
|
|
124
|
+
/**
|
|
125
|
+
* Retrieves logs from the main workspace container
|
|
126
|
+
* Get workspace logs
|
|
127
|
+
*/
|
|
128
|
+
getWorkspaceLogsRaw(requestParameters: GetWorkspaceLogsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<LogEntry>>>;
|
|
129
|
+
/**
|
|
130
|
+
* Retrieves logs from the main workspace container
|
|
131
|
+
* Get workspace logs
|
|
132
|
+
*/
|
|
133
|
+
getWorkspaceLogs(requestParameters: GetWorkspaceLogsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<LogEntry>>;
|
|
120
134
|
/**
|
|
121
135
|
* Retrieves a list of workspaces that the user has access to
|
|
122
136
|
* Get workspaces
|
|
@@ -269,6 +269,46 @@ class WorkspacesApi extends runtime.BaseAPI {
|
|
|
269
269
|
return yield response.value();
|
|
270
270
|
});
|
|
271
271
|
}
|
|
272
|
+
/**
|
|
273
|
+
* Retrieves logs from the main workspace container
|
|
274
|
+
* Get workspace logs
|
|
275
|
+
*/
|
|
276
|
+
getWorkspaceLogsRaw(requestParameters, initOverrides) {
|
|
277
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
278
|
+
if (requestParameters.projectId === null || requestParameters.projectId === undefined) {
|
|
279
|
+
throw new runtime.RequiredError('projectId', 'Required parameter requestParameters.projectId was null or undefined when calling getWorkspaceLogs.');
|
|
280
|
+
}
|
|
281
|
+
if (requestParameters.workspaceId === null || requestParameters.workspaceId === undefined) {
|
|
282
|
+
throw new runtime.RequiredError('workspaceId', 'Required parameter requestParameters.workspaceId was null or undefined when calling getWorkspaceLogs.');
|
|
283
|
+
}
|
|
284
|
+
const queryParameters = {};
|
|
285
|
+
const headerParameters = {};
|
|
286
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
287
|
+
const token = this.configuration.accessToken;
|
|
288
|
+
const tokenString = yield token("accessToken", []);
|
|
289
|
+
if (tokenString) {
|
|
290
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
const response = yield this.request({
|
|
294
|
+
path: `/projects/{projectId}/workspaces/{workspaceId}/logs`.replace(`{${"projectId"}}`, encodeURIComponent(String(requestParameters.projectId))).replace(`{${"workspaceId"}}`, encodeURIComponent(String(requestParameters.workspaceId))),
|
|
295
|
+
method: 'GET',
|
|
296
|
+
headers: headerParameters,
|
|
297
|
+
query: queryParameters,
|
|
298
|
+
}, initOverrides);
|
|
299
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.LogEntryFromJSON));
|
|
300
|
+
});
|
|
301
|
+
}
|
|
302
|
+
/**
|
|
303
|
+
* Retrieves logs from the main workspace container
|
|
304
|
+
* Get workspace logs
|
|
305
|
+
*/
|
|
306
|
+
getWorkspaceLogs(requestParameters, initOverrides) {
|
|
307
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
308
|
+
const response = yield this.getWorkspaceLogsRaw(requestParameters, initOverrides);
|
|
309
|
+
return yield response.value();
|
|
310
|
+
});
|
|
311
|
+
}
|
|
272
312
|
/**
|
|
273
313
|
* Retrieves a list of workspaces that the user has access to
|
|
274
314
|
* Get workspaces
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { CreateResponse, PostponeWorkspaceAutostopInput, Workspace, WorkspaceConnectionResponse, WorkspaceEnvironment, WorkspaceInput } from '../models/index';
|
|
13
|
+
import type { CreateResponse, LogEntry, PostponeWorkspaceAutostopInput, Workspace, WorkspaceConnectionResponse, WorkspaceEnvironment, WorkspaceInput } from '../models/index';
|
|
14
14
|
export interface ConnectWorkspaceRequest {
|
|
15
15
|
projectId: string;
|
|
16
16
|
workspaceId: string;
|
|
@@ -32,6 +32,10 @@ export interface GetWorkspaceRequest {
|
|
|
32
32
|
projectId: string;
|
|
33
33
|
workspaceId: string;
|
|
34
34
|
}
|
|
35
|
+
export interface GetWorkspaceLogsRequest {
|
|
36
|
+
projectId: string;
|
|
37
|
+
workspaceId: string;
|
|
38
|
+
}
|
|
35
39
|
export interface GetWorkspacesRequest {
|
|
36
40
|
projectId: string;
|
|
37
41
|
}
|
|
@@ -117,6 +121,16 @@ export declare class WorkspacesApi extends runtime.BaseAPI {
|
|
|
117
121
|
* Get workspace environments
|
|
118
122
|
*/
|
|
119
123
|
getWorkspaceEnvironments(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<WorkspaceEnvironment>>;
|
|
124
|
+
/**
|
|
125
|
+
* Retrieves logs from the main workspace container
|
|
126
|
+
* Get workspace logs
|
|
127
|
+
*/
|
|
128
|
+
getWorkspaceLogsRaw(requestParameters: GetWorkspaceLogsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<LogEntry>>>;
|
|
129
|
+
/**
|
|
130
|
+
* Retrieves logs from the main workspace container
|
|
131
|
+
* Get workspace logs
|
|
132
|
+
*/
|
|
133
|
+
getWorkspaceLogs(requestParameters: GetWorkspaceLogsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<LogEntry>>;
|
|
120
134
|
/**
|
|
121
135
|
* Retrieves a list of workspaces that the user has access to
|
|
122
136
|
* Get workspaces
|
|
@@ -21,7 +21,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
21
21
|
});
|
|
22
22
|
};
|
|
23
23
|
import * as runtime from '../runtime';
|
|
24
|
-
import { CreateResponseFromJSON, PostponeWorkspaceAutostopInputToJSON, WorkspaceFromJSON, WorkspaceConnectionResponseFromJSON, WorkspaceEnvironmentFromJSON, WorkspaceInputToJSON, } from '../models/index';
|
|
24
|
+
import { CreateResponseFromJSON, LogEntryFromJSON, PostponeWorkspaceAutostopInputToJSON, WorkspaceFromJSON, WorkspaceConnectionResponseFromJSON, WorkspaceEnvironmentFromJSON, WorkspaceInputToJSON, } from '../models/index';
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
@@ -266,6 +266,46 @@ export class WorkspacesApi extends runtime.BaseAPI {
|
|
|
266
266
|
return yield response.value();
|
|
267
267
|
});
|
|
268
268
|
}
|
|
269
|
+
/**
|
|
270
|
+
* Retrieves logs from the main workspace container
|
|
271
|
+
* Get workspace logs
|
|
272
|
+
*/
|
|
273
|
+
getWorkspaceLogsRaw(requestParameters, initOverrides) {
|
|
274
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
275
|
+
if (requestParameters.projectId === null || requestParameters.projectId === undefined) {
|
|
276
|
+
throw new runtime.RequiredError('projectId', 'Required parameter requestParameters.projectId was null or undefined when calling getWorkspaceLogs.');
|
|
277
|
+
}
|
|
278
|
+
if (requestParameters.workspaceId === null || requestParameters.workspaceId === undefined) {
|
|
279
|
+
throw new runtime.RequiredError('workspaceId', 'Required parameter requestParameters.workspaceId was null or undefined when calling getWorkspaceLogs.');
|
|
280
|
+
}
|
|
281
|
+
const queryParameters = {};
|
|
282
|
+
const headerParameters = {};
|
|
283
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
284
|
+
const token = this.configuration.accessToken;
|
|
285
|
+
const tokenString = yield token("accessToken", []);
|
|
286
|
+
if (tokenString) {
|
|
287
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
const response = yield this.request({
|
|
291
|
+
path: `/projects/{projectId}/workspaces/{workspaceId}/logs`.replace(`{${"projectId"}}`, encodeURIComponent(String(requestParameters.projectId))).replace(`{${"workspaceId"}}`, encodeURIComponent(String(requestParameters.workspaceId))),
|
|
292
|
+
method: 'GET',
|
|
293
|
+
headers: headerParameters,
|
|
294
|
+
query: queryParameters,
|
|
295
|
+
}, initOverrides);
|
|
296
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(LogEntryFromJSON));
|
|
297
|
+
});
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* Retrieves logs from the main workspace container
|
|
301
|
+
* Get workspace logs
|
|
302
|
+
*/
|
|
303
|
+
getWorkspaceLogs(requestParameters, initOverrides) {
|
|
304
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
305
|
+
const response = yield this.getWorkspaceLogsRaw(requestParameters, initOverrides);
|
|
306
|
+
return yield response.value();
|
|
307
|
+
});
|
|
308
|
+
}
|
|
269
309
|
/**
|
|
270
310
|
* Retrieves a list of workspaces that the user has access to
|
|
271
311
|
* Get workspaces
|
|
@@ -138,6 +138,12 @@ export interface DatasetDetail {
|
|
|
138
138
|
* @memberof DatasetDetail
|
|
139
139
|
*/
|
|
140
140
|
totalSizeBytes?: number | null;
|
|
141
|
+
/**
|
|
142
|
+
* Total number of dataset files
|
|
143
|
+
* @type {number}
|
|
144
|
+
* @memberof DatasetDetail
|
|
145
|
+
*/
|
|
146
|
+
fileCount?: number | null;
|
|
141
147
|
/**
|
|
142
148
|
*
|
|
143
149
|
* @type {string}
|
|
@@ -68,6 +68,7 @@ export function DatasetDetailFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
68
68
|
'share': !exists(json, 'share') ? undefined : NamedItemFromJSON(json['share']),
|
|
69
69
|
'isViewRestricted': json['isViewRestricted'],
|
|
70
70
|
'totalSizeBytes': !exists(json, 'totalSizeBytes') ? undefined : json['totalSizeBytes'],
|
|
71
|
+
'fileCount': !exists(json, 'fileCount') ? undefined : json['fileCount'],
|
|
71
72
|
'createdBy': json['createdBy'],
|
|
72
73
|
'createdAt': (new Date(json['createdAt'])),
|
|
73
74
|
'updatedAt': (new Date(json['updatedAt'])),
|
|
@@ -100,6 +101,7 @@ export function DatasetDetailToJSON(value) {
|
|
|
100
101
|
'share': NamedItemToJSON(value.share),
|
|
101
102
|
'isViewRestricted': value.isViewRestricted,
|
|
102
103
|
'totalSizeBytes': value.totalSizeBytes,
|
|
104
|
+
'fileCount': value.fileCount,
|
|
103
105
|
'createdBy': value.createdBy,
|
|
104
106
|
'createdAt': (value.createdAt.toISOString()),
|
|
105
107
|
'updatedAt': (value.updatedAt.toISOString()),
|
|
@@ -40,6 +40,12 @@ export interface PipelineCode {
|
|
|
40
40
|
* @memberof PipelineCode
|
|
41
41
|
*/
|
|
42
42
|
entryPoint: string;
|
|
43
|
+
/**
|
|
44
|
+
* Version of the executor
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof PipelineCode
|
|
47
|
+
*/
|
|
48
|
+
executorVersion?: string | null;
|
|
43
49
|
}
|
|
44
50
|
/**
|
|
45
51
|
* Check if a given object implements the PipelineCode interface.
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
14
15
|
import { RepositoryTypeFromJSON, RepositoryTypeToJSON, } from './RepositoryType';
|
|
15
16
|
/**
|
|
16
17
|
* Check if a given object implements the PipelineCode interface.
|
|
@@ -35,6 +36,7 @@ export function PipelineCodeFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
36
|
'version': json['version'],
|
|
36
37
|
'repositoryType': RepositoryTypeFromJSON(json['repositoryType']),
|
|
37
38
|
'entryPoint': json['entryPoint'],
|
|
39
|
+
'executorVersion': !exists(json, 'executorVersion') ? undefined : json['executorVersion'],
|
|
38
40
|
};
|
|
39
41
|
}
|
|
40
42
|
export function PipelineCodeToJSON(value) {
|
|
@@ -49,5 +51,6 @@ export function PipelineCodeToJSON(value) {
|
|
|
49
51
|
'version': value.version,
|
|
50
52
|
'repositoryType': RepositoryTypeToJSON(value.repositoryType),
|
|
51
53
|
'entryPoint': value.entryPoint,
|
|
54
|
+
'executorVersion': value.executorVersion,
|
|
52
55
|
};
|
|
53
56
|
}
|
|
@@ -137,6 +137,12 @@ export interface ProjectSettings {
|
|
|
137
137
|
* @memberof ProjectSettings
|
|
138
138
|
*/
|
|
139
139
|
maxWorkspacesPerUser?: number;
|
|
140
|
+
/**
|
|
141
|
+
* Enables advanced GPU configuration (multi-GPU and GPU model selection) for workspaces
|
|
142
|
+
* @type {boolean}
|
|
143
|
+
* @memberof ProjectSettings
|
|
144
|
+
*/
|
|
145
|
+
enableAdvancedGpuConfig?: boolean | null;
|
|
140
146
|
/**
|
|
141
147
|
* Enables the project to be discoverable by other users
|
|
142
148
|
* @type {boolean}
|
|
@@ -50,6 +50,7 @@ export function ProjectSettingsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
50
|
'maxWorkspacesVCPU': !exists(json, 'maxWorkspacesVCPU') ? undefined : json['maxWorkspacesVCPU'],
|
|
51
51
|
'maxWorkspacesGPUVCPU': !exists(json, 'maxWorkspacesGPUVCPU') ? undefined : json['maxWorkspacesGPUVCPU'],
|
|
52
52
|
'maxWorkspacesPerUser': !exists(json, 'maxWorkspacesPerUser') ? undefined : json['maxWorkspacesPerUser'],
|
|
53
|
+
'enableAdvancedGpuConfig': !exists(json, 'enableAdvancedGpuConfig') ? undefined : json['enableAdvancedGpuConfig'],
|
|
53
54
|
'isDiscoverable': !exists(json, 'isDiscoverable') ? undefined : json['isDiscoverable'],
|
|
54
55
|
'isShareable': !exists(json, 'isShareable') ? undefined : json['isShareable'],
|
|
55
56
|
'hasPipelinesEnabled': !exists(json, 'hasPipelinesEnabled') ? undefined : json['hasPipelinesEnabled'],
|
|
@@ -84,6 +85,7 @@ export function ProjectSettingsToJSON(value) {
|
|
|
84
85
|
'maxWorkspacesVCPU': value.maxWorkspacesVCPU,
|
|
85
86
|
'maxWorkspacesGPUVCPU': value.maxWorkspacesGPUVCPU,
|
|
86
87
|
'maxWorkspacesPerUser': value.maxWorkspacesPerUser,
|
|
88
|
+
'enableAdvancedGpuConfig': value.enableAdvancedGpuConfig,
|
|
87
89
|
'isDiscoverable': value.isDiscoverable,
|
|
88
90
|
'isShareable': value.isShareable,
|
|
89
91
|
'hasPipelinesEnabled': value.hasPipelinesEnabled,
|
|
@@ -138,6 +138,12 @@ export interface DatasetDetail {
|
|
|
138
138
|
* @memberof DatasetDetail
|
|
139
139
|
*/
|
|
140
140
|
totalSizeBytes?: number | null;
|
|
141
|
+
/**
|
|
142
|
+
* Total number of dataset files
|
|
143
|
+
* @type {number}
|
|
144
|
+
* @memberof DatasetDetail
|
|
145
|
+
*/
|
|
146
|
+
fileCount?: number | null;
|
|
141
147
|
/**
|
|
142
148
|
*
|
|
143
149
|
* @type {string}
|
|
@@ -73,6 +73,7 @@ function DatasetDetailFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
73
73
|
'share': !(0, runtime_1.exists)(json, 'share') ? undefined : (0, NamedItem_1.NamedItemFromJSON)(json['share']),
|
|
74
74
|
'isViewRestricted': json['isViewRestricted'],
|
|
75
75
|
'totalSizeBytes': !(0, runtime_1.exists)(json, 'totalSizeBytes') ? undefined : json['totalSizeBytes'],
|
|
76
|
+
'fileCount': !(0, runtime_1.exists)(json, 'fileCount') ? undefined : json['fileCount'],
|
|
76
77
|
'createdBy': json['createdBy'],
|
|
77
78
|
'createdAt': (new Date(json['createdAt'])),
|
|
78
79
|
'updatedAt': (new Date(json['updatedAt'])),
|
|
@@ -106,6 +107,7 @@ function DatasetDetailToJSON(value) {
|
|
|
106
107
|
'share': (0, NamedItem_1.NamedItemToJSON)(value.share),
|
|
107
108
|
'isViewRestricted': value.isViewRestricted,
|
|
108
109
|
'totalSizeBytes': value.totalSizeBytes,
|
|
110
|
+
'fileCount': value.fileCount,
|
|
109
111
|
'createdBy': value.createdBy,
|
|
110
112
|
'createdAt': (value.createdAt.toISOString()),
|
|
111
113
|
'updatedAt': (value.updatedAt.toISOString()),
|
|
@@ -40,6 +40,12 @@ export interface PipelineCode {
|
|
|
40
40
|
* @memberof PipelineCode
|
|
41
41
|
*/
|
|
42
42
|
entryPoint: string;
|
|
43
|
+
/**
|
|
44
|
+
* Version of the executor
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof PipelineCode
|
|
47
|
+
*/
|
|
48
|
+
executorVersion?: string | null;
|
|
43
49
|
}
|
|
44
50
|
/**
|
|
45
51
|
* Check if a given object implements the PipelineCode interface.
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.PipelineCodeToJSON = exports.PipelineCodeFromJSONTyped = exports.PipelineCodeFromJSON = exports.instanceOfPipelineCode = void 0;
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
17
18
|
const RepositoryType_1 = require("./RepositoryType");
|
|
18
19
|
/**
|
|
19
20
|
* Check if a given object implements the PipelineCode interface.
|
|
@@ -40,6 +41,7 @@ function PipelineCodeFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
41
|
'version': json['version'],
|
|
41
42
|
'repositoryType': (0, RepositoryType_1.RepositoryTypeFromJSON)(json['repositoryType']),
|
|
42
43
|
'entryPoint': json['entryPoint'],
|
|
44
|
+
'executorVersion': !(0, runtime_1.exists)(json, 'executorVersion') ? undefined : json['executorVersion'],
|
|
43
45
|
};
|
|
44
46
|
}
|
|
45
47
|
exports.PipelineCodeFromJSONTyped = PipelineCodeFromJSONTyped;
|
|
@@ -55,6 +57,7 @@ function PipelineCodeToJSON(value) {
|
|
|
55
57
|
'version': value.version,
|
|
56
58
|
'repositoryType': (0, RepositoryType_1.RepositoryTypeToJSON)(value.repositoryType),
|
|
57
59
|
'entryPoint': value.entryPoint,
|
|
60
|
+
'executorVersion': value.executorVersion,
|
|
58
61
|
};
|
|
59
62
|
}
|
|
60
63
|
exports.PipelineCodeToJSON = PipelineCodeToJSON;
|
|
@@ -137,6 +137,12 @@ export interface ProjectSettings {
|
|
|
137
137
|
* @memberof ProjectSettings
|
|
138
138
|
*/
|
|
139
139
|
maxWorkspacesPerUser?: number;
|
|
140
|
+
/**
|
|
141
|
+
* Enables advanced GPU configuration (multi-GPU and GPU model selection) for workspaces
|
|
142
|
+
* @type {boolean}
|
|
143
|
+
* @memberof ProjectSettings
|
|
144
|
+
*/
|
|
145
|
+
enableAdvancedGpuConfig?: boolean | null;
|
|
140
146
|
/**
|
|
141
147
|
* Enables the project to be discoverable by other users
|
|
142
148
|
* @type {boolean}
|
|
@@ -55,6 +55,7 @@ function ProjectSettingsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
55
55
|
'maxWorkspacesVCPU': !(0, runtime_1.exists)(json, 'maxWorkspacesVCPU') ? undefined : json['maxWorkspacesVCPU'],
|
|
56
56
|
'maxWorkspacesGPUVCPU': !(0, runtime_1.exists)(json, 'maxWorkspacesGPUVCPU') ? undefined : json['maxWorkspacesGPUVCPU'],
|
|
57
57
|
'maxWorkspacesPerUser': !(0, runtime_1.exists)(json, 'maxWorkspacesPerUser') ? undefined : json['maxWorkspacesPerUser'],
|
|
58
|
+
'enableAdvancedGpuConfig': !(0, runtime_1.exists)(json, 'enableAdvancedGpuConfig') ? undefined : json['enableAdvancedGpuConfig'],
|
|
58
59
|
'isDiscoverable': !(0, runtime_1.exists)(json, 'isDiscoverable') ? undefined : json['isDiscoverable'],
|
|
59
60
|
'isShareable': !(0, runtime_1.exists)(json, 'isShareable') ? undefined : json['isShareable'],
|
|
60
61
|
'hasPipelinesEnabled': !(0, runtime_1.exists)(json, 'hasPipelinesEnabled') ? undefined : json['hasPipelinesEnabled'],
|
|
@@ -90,6 +91,7 @@ function ProjectSettingsToJSON(value) {
|
|
|
90
91
|
'maxWorkspacesVCPU': value.maxWorkspacesVCPU,
|
|
91
92
|
'maxWorkspacesGPUVCPU': value.maxWorkspacesGPUVCPU,
|
|
92
93
|
'maxWorkspacesPerUser': value.maxWorkspacesPerUser,
|
|
94
|
+
'enableAdvancedGpuConfig': value.enableAdvancedGpuConfig,
|
|
93
95
|
'isDiscoverable': value.isDiscoverable,
|
|
94
96
|
'isShareable': value.isShareable,
|
|
95
97
|
'hasPipelinesEnabled': value.hasPipelinesEnabled,
|