@nestbox-ai/admin 1.0.47 → 1.0.48

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/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
@@ -833,6 +871,31 @@ export interface LoginResponseDTO {
833
871
  */
834
872
  'token': string;
835
873
  }
874
+ /**
875
+ *
876
+ * @export
877
+ * @interface MachineStatusDto
878
+ */
879
+ export interface MachineStatusDto {
880
+ /**
881
+ * Current status of the machine instance
882
+ * @type {string}
883
+ * @memberof MachineStatusDto
884
+ */
885
+ 'status': string;
886
+ /**
887
+ * Logs from the machine instance execution
888
+ * @type {string}
889
+ * @memberof MachineStatusDto
890
+ */
891
+ 'logs': string;
892
+ /**
893
+ * Timestamp of the status update
894
+ * @type {string}
895
+ * @memberof MachineStatusDto
896
+ */
897
+ 'timeStamp': string;
898
+ }
836
899
  /**
837
900
  *
838
901
  * @export
@@ -2792,6 +2855,33 @@ export declare const MachineInstancesApiAxiosParamCreator: (configuration?: Conf
2792
2855
  * @throws {RequiredError}
2793
2856
  */
2794
2857
  machineInstancesControllerGetInstanceRunningStatus: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2858
+ /**
2859
+ *
2860
+ * @summary Retrieve CSV benchmarking datapoints for a specific machine
2861
+ * @param {string} projectId
2862
+ * @param {string} machineId
2863
+ * @param {*} [options] Override http request option.
2864
+ * @throws {RequiredError}
2865
+ */
2866
+ machineInstancesControllerGetMachineBenchmarkingDatapoints: (projectId: string, machineId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2867
+ /**
2868
+ *
2869
+ * @summary Retrieve benchmarking reports for a specific machine
2870
+ * @param {string} projectId
2871
+ * @param {string} machineId
2872
+ * @param {*} [options] Override http request option.
2873
+ * @throws {RequiredError}
2874
+ */
2875
+ machineInstancesControllerGetMachineBenchmarkingReports: (projectId: string, machineId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2876
+ /**
2877
+ *
2878
+ * @summary Retrieve status of a specific machine instance
2879
+ * @param {string} projectId
2880
+ * @param {string} machineId
2881
+ * @param {*} [options] Override http request option.
2882
+ * @throws {RequiredError}
2883
+ */
2884
+ machineInstancesControllerGetMachineBootstrapStatus: (projectId: string, machineId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2795
2885
  /**
2796
2886
  *
2797
2887
  * @summary Retrieve running status of instances
@@ -2852,6 +2942,33 @@ export declare const MachineInstancesApiFp: (configuration?: Configuration) => {
2852
2942
  * @throws {RequiredError}
2853
2943
  */
2854
2944
  machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
2945
+ /**
2946
+ *
2947
+ * @summary Retrieve CSV benchmarking datapoints for a specific machine
2948
+ * @param {string} projectId
2949
+ * @param {string} machineId
2950
+ * @param {*} [options] Override http request option.
2951
+ * @throws {RequiredError}
2952
+ */
2953
+ machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BenchmarkingDatapointDto>>;
2954
+ /**
2955
+ *
2956
+ * @summary Retrieve benchmarking reports for a specific machine
2957
+ * @param {string} projectId
2958
+ * @param {string} machineId
2959
+ * @param {*} [options] Override http request option.
2960
+ * @throws {RequiredError}
2961
+ */
2962
+ machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BenchmarkingReportsDto>>;
2963
+ /**
2964
+ *
2965
+ * @summary Retrieve status of a specific machine instance
2966
+ * @param {string} projectId
2967
+ * @param {string} machineId
2968
+ * @param {*} [options] Override http request option.
2969
+ * @throws {RequiredError}
2970
+ */
2971
+ machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineStatusDto>>;
2855
2972
  /**
2856
2973
  *
2857
2974
  * @summary Retrieve running status of instances
@@ -2912,6 +3029,33 @@ export declare const MachineInstancesApiFactory: (configuration?: Configuration,
2912
3029
  * @throws {RequiredError}
2913
3030
  */
2914
3031
  machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3032
+ /**
3033
+ *
3034
+ * @summary Retrieve CSV benchmarking datapoints for a specific machine
3035
+ * @param {string} projectId
3036
+ * @param {string} machineId
3037
+ * @param {*} [options] Override http request option.
3038
+ * @throws {RequiredError}
3039
+ */
3040
+ machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): AxiosPromise<BenchmarkingDatapointDto>;
3041
+ /**
3042
+ *
3043
+ * @summary Retrieve benchmarking reports for a specific machine
3044
+ * @param {string} projectId
3045
+ * @param {string} machineId
3046
+ * @param {*} [options] Override http request option.
3047
+ * @throws {RequiredError}
3048
+ */
3049
+ machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): AxiosPromise<BenchmarkingReportsDto>;
3050
+ /**
3051
+ *
3052
+ * @summary Retrieve status of a specific machine instance
3053
+ * @param {string} projectId
3054
+ * @param {string} machineId
3055
+ * @param {*} [options] Override http request option.
3056
+ * @throws {RequiredError}
3057
+ */
3058
+ machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): AxiosPromise<MachineStatusDto>;
2915
3059
  /**
2916
3060
  *
2917
3061
  * @summary Retrieve running status of instances
@@ -2977,6 +3121,36 @@ export declare class MachineInstancesApi extends BaseAPI {
2977
3121
  * @memberof MachineInstancesApi
2978
3122
  */
2979
3123
  machineInstancesControllerGetInstanceRunningStatus(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3124
+ /**
3125
+ *
3126
+ * @summary Retrieve CSV benchmarking datapoints for a specific machine
3127
+ * @param {string} projectId
3128
+ * @param {string} machineId
3129
+ * @param {*} [options] Override http request option.
3130
+ * @throws {RequiredError}
3131
+ * @memberof MachineInstancesApi
3132
+ */
3133
+ machineInstancesControllerGetMachineBenchmarkingDatapoints(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingDatapointDto, any>>;
3134
+ /**
3135
+ *
3136
+ * @summary Retrieve benchmarking reports for a specific machine
3137
+ * @param {string} projectId
3138
+ * @param {string} machineId
3139
+ * @param {*} [options] Override http request option.
3140
+ * @throws {RequiredError}
3141
+ * @memberof MachineInstancesApi
3142
+ */
3143
+ machineInstancesControllerGetMachineBenchmarkingReports(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BenchmarkingReportsDto, any>>;
3144
+ /**
3145
+ *
3146
+ * @summary Retrieve status of a specific machine instance
3147
+ * @param {string} projectId
3148
+ * @param {string} machineId
3149
+ * @param {*} [options] Override http request option.
3150
+ * @throws {RequiredError}
3151
+ * @memberof MachineInstancesApi
3152
+ */
3153
+ machineInstancesControllerGetMachineBootstrapStatus(projectId: string, machineId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineStatusDto, any>>;
2980
3154
  /**
2981
3155
  *
2982
3156
  * @summary Retrieve running status of instances