@nestbox-ai/admin 1.0.47 → 1.0.49
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/.openapi-generator/FILES +3 -0
- package/README.md +8 -2
- package/api.ts +297 -0
- package/dist/api.d.ts +180 -0
- package/dist/api.js +219 -0
- package/dist/esm/api.d.ts +180 -0
- package/dist/esm/api.js +219 -0
- package/docs/BenchmarkingDatapointDto.md +22 -0
- package/docs/BenchmarkingReportsDto.md +22 -0
- package/docs/CreateMachineAgentDto.md +2 -0
- package/docs/MachineInstancesApi.md +177 -0
- package/docs/MachineStatusDto.md +24 -0
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -2656,6 +2656,105 @@ const MachineInstancesApiAxiosParamCreator = function (configuration) {
|
|
|
2656
2656
|
options: localVarRequestOptions,
|
|
2657
2657
|
};
|
|
2658
2658
|
}),
|
|
2659
|
+
/**
|
|
2660
|
+
*
|
|
2661
|
+
* @summary Retrieve CSV benchmarking datapoints for a specific machine
|
|
2662
|
+
* @param {string} projectId
|
|
2663
|
+
* @param {string} machineId
|
|
2664
|
+
* @param {*} [options] Override http request option.
|
|
2665
|
+
* @throws {RequiredError}
|
|
2666
|
+
*/
|
|
2667
|
+
machineInstancesControllerGetMachineBenchmarkingDatapoints: (projectId_1, machineId_1, ...args_1) => __awaiter(this, [projectId_1, machineId_1, ...args_1], void 0, function* (projectId, machineId, options = {}) {
|
|
2668
|
+
// verify required parameter 'projectId' is not null or undefined
|
|
2669
|
+
(0, common_1.assertParamExists)('machineInstancesControllerGetMachineBenchmarkingDatapoints', 'projectId', projectId);
|
|
2670
|
+
// verify required parameter 'machineId' is not null or undefined
|
|
2671
|
+
(0, common_1.assertParamExists)('machineInstancesControllerGetMachineBenchmarkingDatapoints', 'machineId', machineId);
|
|
2672
|
+
const localVarPath = `/projects/{projectId}/instances/machine/{machineId}/benchmarking-datapoints`
|
|
2673
|
+
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
2674
|
+
.replace(`{${"machineId"}}`, encodeURIComponent(String(machineId)));
|
|
2675
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2676
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2677
|
+
let baseOptions;
|
|
2678
|
+
if (configuration) {
|
|
2679
|
+
baseOptions = configuration.baseOptions;
|
|
2680
|
+
}
|
|
2681
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
2682
|
+
const localVarHeaderParameter = {};
|
|
2683
|
+
const localVarQueryParameter = {};
|
|
2684
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2685
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2686
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2687
|
+
return {
|
|
2688
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2689
|
+
options: localVarRequestOptions,
|
|
2690
|
+
};
|
|
2691
|
+
}),
|
|
2692
|
+
/**
|
|
2693
|
+
*
|
|
2694
|
+
* @summary Retrieve benchmarking reports for a specific machine
|
|
2695
|
+
* @param {string} projectId
|
|
2696
|
+
* @param {string} machineId
|
|
2697
|
+
* @param {*} [options] Override http request option.
|
|
2698
|
+
* @throws {RequiredError}
|
|
2699
|
+
*/
|
|
2700
|
+
machineInstancesControllerGetMachineBenchmarkingReports: (projectId_1, machineId_1, ...args_1) => __awaiter(this, [projectId_1, machineId_1, ...args_1], void 0, function* (projectId, machineId, options = {}) {
|
|
2701
|
+
// verify required parameter 'projectId' is not null or undefined
|
|
2702
|
+
(0, common_1.assertParamExists)('machineInstancesControllerGetMachineBenchmarkingReports', 'projectId', projectId);
|
|
2703
|
+
// verify required parameter 'machineId' is not null or undefined
|
|
2704
|
+
(0, common_1.assertParamExists)('machineInstancesControllerGetMachineBenchmarkingReports', 'machineId', machineId);
|
|
2705
|
+
const localVarPath = `/projects/{projectId}/instances/machine/{machineId}/benchmarking-reports`
|
|
2706
|
+
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
2707
|
+
.replace(`{${"machineId"}}`, encodeURIComponent(String(machineId)));
|
|
2708
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2709
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2710
|
+
let baseOptions;
|
|
2711
|
+
if (configuration) {
|
|
2712
|
+
baseOptions = configuration.baseOptions;
|
|
2713
|
+
}
|
|
2714
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
2715
|
+
const localVarHeaderParameter = {};
|
|
2716
|
+
const localVarQueryParameter = {};
|
|
2717
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2718
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2719
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2720
|
+
return {
|
|
2721
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2722
|
+
options: localVarRequestOptions,
|
|
2723
|
+
};
|
|
2724
|
+
}),
|
|
2725
|
+
/**
|
|
2726
|
+
*
|
|
2727
|
+
* @summary Retrieve status of a specific machine instance
|
|
2728
|
+
* @param {string} projectId
|
|
2729
|
+
* @param {string} machineId
|
|
2730
|
+
* @param {*} [options] Override http request option.
|
|
2731
|
+
* @throws {RequiredError}
|
|
2732
|
+
*/
|
|
2733
|
+
machineInstancesControllerGetMachineBootstrapStatus: (projectId_1, machineId_1, ...args_1) => __awaiter(this, [projectId_1, machineId_1, ...args_1], void 0, function* (projectId, machineId, options = {}) {
|
|
2734
|
+
// verify required parameter 'projectId' is not null or undefined
|
|
2735
|
+
(0, common_1.assertParamExists)('machineInstancesControllerGetMachineBootstrapStatus', 'projectId', projectId);
|
|
2736
|
+
// verify required parameter 'machineId' is not null or undefined
|
|
2737
|
+
(0, common_1.assertParamExists)('machineInstancesControllerGetMachineBootstrapStatus', 'machineId', machineId);
|
|
2738
|
+
const localVarPath = `/projects/{projectId}/instances/machine/{machineId}/status`
|
|
2739
|
+
.replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)))
|
|
2740
|
+
.replace(`{${"machineId"}}`, encodeURIComponent(String(machineId)));
|
|
2741
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2742
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2743
|
+
let baseOptions;
|
|
2744
|
+
if (configuration) {
|
|
2745
|
+
baseOptions = configuration.baseOptions;
|
|
2746
|
+
}
|
|
2747
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
2748
|
+
const localVarHeaderParameter = {};
|
|
2749
|
+
const localVarQueryParameter = {};
|
|
2750
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2751
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2752
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2753
|
+
return {
|
|
2754
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2755
|
+
options: localVarRequestOptions,
|
|
2756
|
+
};
|
|
2757
|
+
}),
|
|
2659
2758
|
/**
|
|
2660
2759
|
*
|
|
2661
2760
|
* @summary Retrieve running status of instances
|
|
@@ -2834,6 +2933,57 @@ const MachineInstancesApiFp = function (configuration) {
|
|
|
2834
2933
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2835
2934
|
});
|
|
2836
2935
|
},
|
|
2936
|
+
/**
|
|
2937
|
+
*
|
|
2938
|
+
* @summary Retrieve CSV benchmarking datapoints for a specific machine
|
|
2939
|
+
* @param {string} projectId
|
|
2940
|
+
* @param {string} machineId
|
|
2941
|
+
* @param {*} [options] Override http request option.
|
|
2942
|
+
* @throws {RequiredError}
|
|
2943
|
+
*/
|
|
2944
|
+
machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId, machineId, options) {
|
|
2945
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2946
|
+
var _a, _b, _c;
|
|
2947
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId, machineId, options);
|
|
2948
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2949
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['MachineInstancesApi.machineInstancesControllerGetMachineBenchmarkingDatapoints']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2950
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2951
|
+
});
|
|
2952
|
+
},
|
|
2953
|
+
/**
|
|
2954
|
+
*
|
|
2955
|
+
* @summary Retrieve benchmarking reports for a specific machine
|
|
2956
|
+
* @param {string} projectId
|
|
2957
|
+
* @param {string} machineId
|
|
2958
|
+
* @param {*} [options] Override http request option.
|
|
2959
|
+
* @throws {RequiredError}
|
|
2960
|
+
*/
|
|
2961
|
+
machineInstancesControllerGetMachineBenchmarkingReports(projectId, machineId, options) {
|
|
2962
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2963
|
+
var _a, _b, _c;
|
|
2964
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.machineInstancesControllerGetMachineBenchmarkingReports(projectId, machineId, options);
|
|
2965
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2966
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['MachineInstancesApi.machineInstancesControllerGetMachineBenchmarkingReports']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2967
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2968
|
+
});
|
|
2969
|
+
},
|
|
2970
|
+
/**
|
|
2971
|
+
*
|
|
2972
|
+
* @summary Retrieve status of a specific machine instance
|
|
2973
|
+
* @param {string} projectId
|
|
2974
|
+
* @param {string} machineId
|
|
2975
|
+
* @param {*} [options] Override http request option.
|
|
2976
|
+
* @throws {RequiredError}
|
|
2977
|
+
*/
|
|
2978
|
+
machineInstancesControllerGetMachineBootstrapStatus(projectId, machineId, options) {
|
|
2979
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2980
|
+
var _a, _b, _c;
|
|
2981
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.machineInstancesControllerGetMachineBootstrapStatus(projectId, machineId, options);
|
|
2982
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2983
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['MachineInstancesApi.machineInstancesControllerGetMachineBootstrapStatus']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2984
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2985
|
+
});
|
|
2986
|
+
},
|
|
2837
2987
|
/**
|
|
2838
2988
|
*
|
|
2839
2989
|
* @summary Retrieve running status of instances
|
|
@@ -2928,6 +3078,39 @@ const MachineInstancesApiFactory = function (configuration, basePath, axios) {
|
|
|
2928
3078
|
machineInstancesControllerGetInstanceRunningStatus(projectId, options) {
|
|
2929
3079
|
return localVarFp.machineInstancesControllerGetInstanceRunningStatus(projectId, options).then((request) => request(axios, basePath));
|
|
2930
3080
|
},
|
|
3081
|
+
/**
|
|
3082
|
+
*
|
|
3083
|
+
* @summary Retrieve CSV benchmarking datapoints for a specific machine
|
|
3084
|
+
* @param {string} projectId
|
|
3085
|
+
* @param {string} machineId
|
|
3086
|
+
* @param {*} [options] Override http request option.
|
|
3087
|
+
* @throws {RequiredError}
|
|
3088
|
+
*/
|
|
3089
|
+
machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId, machineId, options) {
|
|
3090
|
+
return localVarFp.machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId, machineId, options).then((request) => request(axios, basePath));
|
|
3091
|
+
},
|
|
3092
|
+
/**
|
|
3093
|
+
*
|
|
3094
|
+
* @summary Retrieve benchmarking reports for a specific machine
|
|
3095
|
+
* @param {string} projectId
|
|
3096
|
+
* @param {string} machineId
|
|
3097
|
+
* @param {*} [options] Override http request option.
|
|
3098
|
+
* @throws {RequiredError}
|
|
3099
|
+
*/
|
|
3100
|
+
machineInstancesControllerGetMachineBenchmarkingReports(projectId, machineId, options) {
|
|
3101
|
+
return localVarFp.machineInstancesControllerGetMachineBenchmarkingReports(projectId, machineId, options).then((request) => request(axios, basePath));
|
|
3102
|
+
},
|
|
3103
|
+
/**
|
|
3104
|
+
*
|
|
3105
|
+
* @summary Retrieve status of a specific machine instance
|
|
3106
|
+
* @param {string} projectId
|
|
3107
|
+
* @param {string} machineId
|
|
3108
|
+
* @param {*} [options] Override http request option.
|
|
3109
|
+
* @throws {RequiredError}
|
|
3110
|
+
*/
|
|
3111
|
+
machineInstancesControllerGetMachineBootstrapStatus(projectId, machineId, options) {
|
|
3112
|
+
return localVarFp.machineInstancesControllerGetMachineBootstrapStatus(projectId, machineId, options).then((request) => request(axios, basePath));
|
|
3113
|
+
},
|
|
2931
3114
|
/**
|
|
2932
3115
|
*
|
|
2933
3116
|
* @summary Retrieve running status of instances
|
|
@@ -3007,6 +3190,42 @@ class MachineInstancesApi extends base_1.BaseAPI {
|
|
|
3007
3190
|
machineInstancesControllerGetInstanceRunningStatus(projectId, options) {
|
|
3008
3191
|
return (0, exports.MachineInstancesApiFp)(this.configuration).machineInstancesControllerGetInstanceRunningStatus(projectId, options).then((request) => request(this.axios, this.basePath));
|
|
3009
3192
|
}
|
|
3193
|
+
/**
|
|
3194
|
+
*
|
|
3195
|
+
* @summary Retrieve CSV benchmarking datapoints for a specific machine
|
|
3196
|
+
* @param {string} projectId
|
|
3197
|
+
* @param {string} machineId
|
|
3198
|
+
* @param {*} [options] Override http request option.
|
|
3199
|
+
* @throws {RequiredError}
|
|
3200
|
+
* @memberof MachineInstancesApi
|
|
3201
|
+
*/
|
|
3202
|
+
machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId, machineId, options) {
|
|
3203
|
+
return (0, exports.MachineInstancesApiFp)(this.configuration).machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId, machineId, options).then((request) => request(this.axios, this.basePath));
|
|
3204
|
+
}
|
|
3205
|
+
/**
|
|
3206
|
+
*
|
|
3207
|
+
* @summary Retrieve benchmarking reports for a specific machine
|
|
3208
|
+
* @param {string} projectId
|
|
3209
|
+
* @param {string} machineId
|
|
3210
|
+
* @param {*} [options] Override http request option.
|
|
3211
|
+
* @throws {RequiredError}
|
|
3212
|
+
* @memberof MachineInstancesApi
|
|
3213
|
+
*/
|
|
3214
|
+
machineInstancesControllerGetMachineBenchmarkingReports(projectId, machineId, options) {
|
|
3215
|
+
return (0, exports.MachineInstancesApiFp)(this.configuration).machineInstancesControllerGetMachineBenchmarkingReports(projectId, machineId, options).then((request) => request(this.axios, this.basePath));
|
|
3216
|
+
}
|
|
3217
|
+
/**
|
|
3218
|
+
*
|
|
3219
|
+
* @summary Retrieve status of a specific machine instance
|
|
3220
|
+
* @param {string} projectId
|
|
3221
|
+
* @param {string} machineId
|
|
3222
|
+
* @param {*} [options] Override http request option.
|
|
3223
|
+
* @throws {RequiredError}
|
|
3224
|
+
* @memberof MachineInstancesApi
|
|
3225
|
+
*/
|
|
3226
|
+
machineInstancesControllerGetMachineBootstrapStatus(projectId, machineId, options) {
|
|
3227
|
+
return (0, exports.MachineInstancesApiFp)(this.configuration).machineInstancesControllerGetMachineBootstrapStatus(projectId, machineId, options).then((request) => request(this.axios, this.basePath));
|
|
3228
|
+
}
|
|
3010
3229
|
/**
|
|
3011
3230
|
*
|
|
3012
3231
|
* @summary Retrieve running status of instances
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -157,6 +157,44 @@ export interface BadRequestExceptionResponse {
|
|
|
157
157
|
*/
|
|
158
158
|
'errors': object | null;
|
|
159
159
|
}
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* @export
|
|
163
|
+
* @interface BenchmarkingDatapointDto
|
|
164
|
+
*/
|
|
165
|
+
export interface BenchmarkingDatapointDto {
|
|
166
|
+
/**
|
|
167
|
+
* Combined content of all benchmarking lines
|
|
168
|
+
* @type {string}
|
|
169
|
+
* @memberof BenchmarkingDatapointDto
|
|
170
|
+
*/
|
|
171
|
+
'lines': string;
|
|
172
|
+
/**
|
|
173
|
+
* Total number of lines found
|
|
174
|
+
* @type {number}
|
|
175
|
+
* @memberof BenchmarkingDatapointDto
|
|
176
|
+
*/
|
|
177
|
+
'totalLines': number;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* @export
|
|
182
|
+
* @interface BenchmarkingReportsDto
|
|
183
|
+
*/
|
|
184
|
+
export interface BenchmarkingReportsDto {
|
|
185
|
+
/**
|
|
186
|
+
* Combined markdown content of all benchmarking reports
|
|
187
|
+
* @type {string}
|
|
188
|
+
* @memberof BenchmarkingReportsDto
|
|
189
|
+
*/
|
|
190
|
+
'content': string;
|
|
191
|
+
/**
|
|
192
|
+
* Total number of reports found
|
|
193
|
+
* @type {number}
|
|
194
|
+
* @memberof BenchmarkingReportsDto
|
|
195
|
+
*/
|
|
196
|
+
'totalReports': number;
|
|
197
|
+
}
|
|
160
198
|
/**
|
|
161
199
|
*
|
|
162
200
|
* @export
|
|
@@ -317,6 +355,12 @@ export interface CreateMachineAgentDto {
|
|
|
317
355
|
* @memberof CreateMachineAgentDto
|
|
318
356
|
*/
|
|
319
357
|
'userId': number;
|
|
358
|
+
/**
|
|
359
|
+
* Optional Input Schema JSON for agent.
|
|
360
|
+
* @type {object}
|
|
361
|
+
* @memberof CreateMachineAgentDto
|
|
362
|
+
*/
|
|
363
|
+
'inputSchema'?: object;
|
|
320
364
|
}
|
|
321
365
|
/**
|
|
322
366
|
*
|
|
@@ -833,6 +877,31 @@ export interface LoginResponseDTO {
|
|
|
833
877
|
*/
|
|
834
878
|
'token': string;
|
|
835
879
|
}
|
|
880
|
+
/**
|
|
881
|
+
*
|
|
882
|
+
* @export
|
|
883
|
+
* @interface MachineStatusDto
|
|
884
|
+
*/
|
|
885
|
+
export interface MachineStatusDto {
|
|
886
|
+
/**
|
|
887
|
+
* Current status of the machine instance
|
|
888
|
+
* @type {string}
|
|
889
|
+
* @memberof MachineStatusDto
|
|
890
|
+
*/
|
|
891
|
+
'status': string;
|
|
892
|
+
/**
|
|
893
|
+
* Logs from the machine instance execution
|
|
894
|
+
* @type {string}
|
|
895
|
+
* @memberof MachineStatusDto
|
|
896
|
+
*/
|
|
897
|
+
'logs': string;
|
|
898
|
+
/**
|
|
899
|
+
* Timestamp of the status update
|
|
900
|
+
* @type {string}
|
|
901
|
+
* @memberof MachineStatusDto
|
|
902
|
+
*/
|
|
903
|
+
'timeStamp': string;
|
|
904
|
+
}
|
|
836
905
|
/**
|
|
837
906
|
*
|
|
838
907
|
* @export
|
|
@@ -2792,6 +2861,33 @@ export declare const MachineInstancesApiAxiosParamCreator: (configuration?: Conf
|
|
|
2792
2861
|
* @throws {RequiredError}
|
|
2793
2862
|
*/
|
|
2794
2863
|
machineInstancesControllerGetInstanceRunningStatus: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2864
|
+
/**
|
|
2865
|
+
*
|
|
2866
|
+
* @summary Retrieve CSV benchmarking datapoints for a specific machine
|
|
2867
|
+
* @param {string} projectId
|
|
2868
|
+
* @param {string} machineId
|
|
2869
|
+
* @param {*} [options] Override http request option.
|
|
2870
|
+
* @throws {RequiredError}
|
|
2871
|
+
*/
|
|
2872
|
+
machineInstancesControllerGetMachineBenchmarkingDatapoints: (projectId: string, machineId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2873
|
+
/**
|
|
2874
|
+
*
|
|
2875
|
+
* @summary Retrieve benchmarking reports for a specific machine
|
|
2876
|
+
* @param {string} projectId
|
|
2877
|
+
* @param {string} machineId
|
|
2878
|
+
* @param {*} [options] Override http request option.
|
|
2879
|
+
* @throws {RequiredError}
|
|
2880
|
+
*/
|
|
2881
|
+
machineInstancesControllerGetMachineBenchmarkingReports: (projectId: string, machineId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2882
|
+
/**
|
|
2883
|
+
*
|
|
2884
|
+
* @summary Retrieve status of a specific machine instance
|
|
2885
|
+
* @param {string} projectId
|
|
2886
|
+
* @param {string} machineId
|
|
2887
|
+
* @param {*} [options] Override http request option.
|
|
2888
|
+
* @throws {RequiredError}
|
|
2889
|
+
*/
|
|
2890
|
+
machineInstancesControllerGetMachineBootstrapStatus: (projectId: string, machineId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2795
2891
|
/**
|
|
2796
2892
|
*
|
|
2797
2893
|
* @summary Retrieve running status of instances
|
|
@@ -2852,6 +2948,33 @@ export declare const MachineInstancesApiFp: (configuration?: Configuration) => {
|
|
|
2852
2948
|
* @throws {RequiredError}
|
|
2853
2949
|
*/
|
|
2854
2950
|
machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
2951
|
+
/**
|
|
2952
|
+
*
|
|
2953
|
+
* @summary Retrieve CSV benchmarking datapoints for a specific machine
|
|
2954
|
+
* @param {string} projectId
|
|
2955
|
+
* @param {string} machineId
|
|
2956
|
+
* @param {*} [options] Override http request option.
|
|
2957
|
+
* @throws {RequiredError}
|
|
2958
|
+
*/
|
|
2959
|
+
machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BenchmarkingDatapointDto>>;
|
|
2960
|
+
/**
|
|
2961
|
+
*
|
|
2962
|
+
* @summary Retrieve benchmarking reports for a specific machine
|
|
2963
|
+
* @param {string} projectId
|
|
2964
|
+
* @param {string} machineId
|
|
2965
|
+
* @param {*} [options] Override http request option.
|
|
2966
|
+
* @throws {RequiredError}
|
|
2967
|
+
*/
|
|
2968
|
+
machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BenchmarkingReportsDto>>;
|
|
2969
|
+
/**
|
|
2970
|
+
*
|
|
2971
|
+
* @summary Retrieve status of a specific machine instance
|
|
2972
|
+
* @param {string} projectId
|
|
2973
|
+
* @param {string} machineId
|
|
2974
|
+
* @param {*} [options] Override http request option.
|
|
2975
|
+
* @throws {RequiredError}
|
|
2976
|
+
*/
|
|
2977
|
+
machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineStatusDto>>;
|
|
2855
2978
|
/**
|
|
2856
2979
|
*
|
|
2857
2980
|
* @summary Retrieve running status of instances
|
|
@@ -2912,6 +3035,33 @@ export declare const MachineInstancesApiFactory: (configuration?: Configuration,
|
|
|
2912
3035
|
* @throws {RequiredError}
|
|
2913
3036
|
*/
|
|
2914
3037
|
machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
3038
|
+
/**
|
|
3039
|
+
*
|
|
3040
|
+
* @summary Retrieve CSV benchmarking datapoints for a specific machine
|
|
3041
|
+
* @param {string} projectId
|
|
3042
|
+
* @param {string} machineId
|
|
3043
|
+
* @param {*} [options] Override http request option.
|
|
3044
|
+
* @throws {RequiredError}
|
|
3045
|
+
*/
|
|
3046
|
+
machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): AxiosPromise<BenchmarkingDatapointDto>;
|
|
3047
|
+
/**
|
|
3048
|
+
*
|
|
3049
|
+
* @summary Retrieve benchmarking reports for a specific machine
|
|
3050
|
+
* @param {string} projectId
|
|
3051
|
+
* @param {string} machineId
|
|
3052
|
+
* @param {*} [options] Override http request option.
|
|
3053
|
+
* @throws {RequiredError}
|
|
3054
|
+
*/
|
|
3055
|
+
machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): AxiosPromise<BenchmarkingReportsDto>;
|
|
3056
|
+
/**
|
|
3057
|
+
*
|
|
3058
|
+
* @summary Retrieve status of a specific machine instance
|
|
3059
|
+
* @param {string} projectId
|
|
3060
|
+
* @param {string} machineId
|
|
3061
|
+
* @param {*} [options] Override http request option.
|
|
3062
|
+
* @throws {RequiredError}
|
|
3063
|
+
*/
|
|
3064
|
+
machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): AxiosPromise<MachineStatusDto>;
|
|
2915
3065
|
/**
|
|
2916
3066
|
*
|
|
2917
3067
|
* @summary Retrieve running status of instances
|
|
@@ -2977,6 +3127,36 @@ export declare class MachineInstancesApi extends BaseAPI {
|
|
|
2977
3127
|
* @memberof MachineInstancesApi
|
|
2978
3128
|
*/
|
|
2979
3129
|
machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
3130
|
+
/**
|
|
3131
|
+
*
|
|
3132
|
+
* @summary Retrieve CSV benchmarking datapoints for a specific machine
|
|
3133
|
+
* @param {string} projectId
|
|
3134
|
+
* @param {string} machineId
|
|
3135
|
+
* @param {*} [options] Override http request option.
|
|
3136
|
+
* @throws {RequiredError}
|
|
3137
|
+
* @memberof MachineInstancesApi
|
|
3138
|
+
*/
|
|
3139
|
+
machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingDatapointDto, any>>;
|
|
3140
|
+
/**
|
|
3141
|
+
*
|
|
3142
|
+
* @summary Retrieve benchmarking reports for a specific machine
|
|
3143
|
+
* @param {string} projectId
|
|
3144
|
+
* @param {string} machineId
|
|
3145
|
+
* @param {*} [options] Override http request option.
|
|
3146
|
+
* @throws {RequiredError}
|
|
3147
|
+
* @memberof MachineInstancesApi
|
|
3148
|
+
*/
|
|
3149
|
+
machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingReportsDto, any>>;
|
|
3150
|
+
/**
|
|
3151
|
+
*
|
|
3152
|
+
* @summary Retrieve status of a specific machine instance
|
|
3153
|
+
* @param {string} projectId
|
|
3154
|
+
* @param {string} machineId
|
|
3155
|
+
* @param {*} [options] Override http request option.
|
|
3156
|
+
* @throws {RequiredError}
|
|
3157
|
+
* @memberof MachineInstancesApi
|
|
3158
|
+
*/
|
|
3159
|
+
machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineStatusDto, any>>;
|
|
2980
3160
|
/**
|
|
2981
3161
|
*
|
|
2982
3162
|
* @summary Retrieve running status of instances
|