@ourskyai/platform-api 1.3.8459 → 1.3.8815
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 +2 -2
- package/api.ts +765 -11
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +477 -1
- package/dist/api.js +409 -2
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +477 -1
- package/dist/esm/api.js +408 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8815
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -777,6 +777,19 @@ export interface V1ClientToken {
|
|
|
777
777
|
*/
|
|
778
778
|
'cesiumToken': string;
|
|
779
779
|
}
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @export
|
|
783
|
+
* @interface V1CompleteNodeControllerCrashReportRequest
|
|
784
|
+
*/
|
|
785
|
+
export interface V1CompleteNodeControllerCrashReportRequest {
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @type {string}
|
|
789
|
+
* @memberof V1CompleteNodeControllerCrashReportRequest
|
|
790
|
+
*/
|
|
791
|
+
'id': string;
|
|
792
|
+
}
|
|
780
793
|
/**
|
|
781
794
|
*
|
|
782
795
|
* @export
|
|
@@ -1088,6 +1101,74 @@ export interface V1CreateNodeControllerArtifactRequest {
|
|
|
1088
1101
|
*/
|
|
1089
1102
|
'path': string;
|
|
1090
1103
|
}
|
|
1104
|
+
/**
|
|
1105
|
+
* create a crash report
|
|
1106
|
+
* @export
|
|
1107
|
+
* @interface V1CreateNodeControllerCrashReportRequest
|
|
1108
|
+
*/
|
|
1109
|
+
export interface V1CreateNodeControllerCrashReportRequest {
|
|
1110
|
+
/**
|
|
1111
|
+
*
|
|
1112
|
+
* @type {string}
|
|
1113
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1114
|
+
*/
|
|
1115
|
+
'lineageId': string;
|
|
1116
|
+
/**
|
|
1117
|
+
*
|
|
1118
|
+
* @type {string}
|
|
1119
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1120
|
+
*/
|
|
1121
|
+
'fileSha': string;
|
|
1122
|
+
/**
|
|
1123
|
+
*
|
|
1124
|
+
* @type {number}
|
|
1125
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1126
|
+
*/
|
|
1127
|
+
'fileSizeMb': number;
|
|
1128
|
+
/**
|
|
1129
|
+
*
|
|
1130
|
+
* @type {string}
|
|
1131
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1132
|
+
*/
|
|
1133
|
+
'softwareVersion': string;
|
|
1134
|
+
/**
|
|
1135
|
+
*
|
|
1136
|
+
* @type {string}
|
|
1137
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1138
|
+
*/
|
|
1139
|
+
'componentName': string;
|
|
1140
|
+
/**
|
|
1141
|
+
*
|
|
1142
|
+
* @type {string}
|
|
1143
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1144
|
+
*/
|
|
1145
|
+
'kernelVersion': string;
|
|
1146
|
+
/**
|
|
1147
|
+
*
|
|
1148
|
+
* @type {string}
|
|
1149
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1150
|
+
*/
|
|
1151
|
+
'backtrace': string;
|
|
1152
|
+
}
|
|
1153
|
+
/**
|
|
1154
|
+
*
|
|
1155
|
+
* @export
|
|
1156
|
+
* @interface V1CreateNodeControllerCrashReportResponse
|
|
1157
|
+
*/
|
|
1158
|
+
export interface V1CreateNodeControllerCrashReportResponse {
|
|
1159
|
+
/**
|
|
1160
|
+
*
|
|
1161
|
+
* @type {string}
|
|
1162
|
+
* @memberof V1CreateNodeControllerCrashReportResponse
|
|
1163
|
+
*/
|
|
1164
|
+
'id': string;
|
|
1165
|
+
/**
|
|
1166
|
+
*
|
|
1167
|
+
* @type {string}
|
|
1168
|
+
* @memberof V1CreateNodeControllerCrashReportResponse
|
|
1169
|
+
*/
|
|
1170
|
+
'uploadUrl': string;
|
|
1171
|
+
}
|
|
1091
1172
|
/**
|
|
1092
1173
|
*
|
|
1093
1174
|
* @export
|
|
@@ -2535,7 +2616,15 @@ export interface V1ImageSetImage {
|
|
|
2535
2616
|
* @memberof V1ImageSetImage
|
|
2536
2617
|
*/
|
|
2537
2618
|
'predictedStreakLocation'?: V1PredictedStreakLocation;
|
|
2619
|
+
/**
|
|
2620
|
+
*
|
|
2621
|
+
* @type {V1ImageRejectionReason}
|
|
2622
|
+
* @memberof V1ImageSetImage
|
|
2623
|
+
*/
|
|
2624
|
+
'rejectedReason'?: V1ImageRejectionReason;
|
|
2538
2625
|
}
|
|
2626
|
+
|
|
2627
|
+
|
|
2539
2628
|
/**
|
|
2540
2629
|
* Data related to the extraction of a dot from an image.
|
|
2541
2630
|
* @export
|
|
@@ -2779,6 +2868,22 @@ export interface V1Instruction {
|
|
|
2779
2868
|
*/
|
|
2780
2869
|
'autofocus'?: V1AutoFocusInstruction;
|
|
2781
2870
|
}
|
|
2871
|
+
/**
|
|
2872
|
+
*
|
|
2873
|
+
* @export
|
|
2874
|
+
* @enum {string}
|
|
2875
|
+
*/
|
|
2876
|
+
|
|
2877
|
+
export const V1JobStatus = {
|
|
2878
|
+
PENDING: 'PENDING',
|
|
2879
|
+
RUNNING: 'RUNNING',
|
|
2880
|
+
SUCCEEDED: 'SUCCEEDED',
|
|
2881
|
+
FAILED: 'FAILED'
|
|
2882
|
+
} as const;
|
|
2883
|
+
|
|
2884
|
+
export type V1JobStatus = typeof V1JobStatus[keyof typeof V1JobStatus];
|
|
2885
|
+
|
|
2886
|
+
|
|
2782
2887
|
/**
|
|
2783
2888
|
*
|
|
2784
2889
|
* @export
|
|
@@ -3260,6 +3365,67 @@ export interface V1NodeControllerBootstrapRequest {
|
|
|
3260
3365
|
*/
|
|
3261
3366
|
'chipSerialNumber': number;
|
|
3262
3367
|
}
|
|
3368
|
+
/**
|
|
3369
|
+
* edge controller crash report details
|
|
3370
|
+
* @export
|
|
3371
|
+
* @interface V1NodeControllerCrashReport
|
|
3372
|
+
*/
|
|
3373
|
+
export interface V1NodeControllerCrashReport {
|
|
3374
|
+
/**
|
|
3375
|
+
*
|
|
3376
|
+
* @type {string}
|
|
3377
|
+
* @memberof V1NodeControllerCrashReport
|
|
3378
|
+
*/
|
|
3379
|
+
'id': string;
|
|
3380
|
+
/**
|
|
3381
|
+
*
|
|
3382
|
+
* @type {string}
|
|
3383
|
+
* @memberof V1NodeControllerCrashReport
|
|
3384
|
+
*/
|
|
3385
|
+
'lineageId': string;
|
|
3386
|
+
/**
|
|
3387
|
+
*
|
|
3388
|
+
* @type {string}
|
|
3389
|
+
* @memberof V1NodeControllerCrashReport
|
|
3390
|
+
*/
|
|
3391
|
+
'fileSha': string;
|
|
3392
|
+
/**
|
|
3393
|
+
*
|
|
3394
|
+
* @type {number}
|
|
3395
|
+
* @memberof V1NodeControllerCrashReport
|
|
3396
|
+
*/
|
|
3397
|
+
'fileSizeMb': number;
|
|
3398
|
+
/**
|
|
3399
|
+
*
|
|
3400
|
+
* @type {string}
|
|
3401
|
+
* @memberof V1NodeControllerCrashReport
|
|
3402
|
+
*/
|
|
3403
|
+
'softwareVersion': string;
|
|
3404
|
+
/**
|
|
3405
|
+
*
|
|
3406
|
+
* @type {string}
|
|
3407
|
+
* @memberof V1NodeControllerCrashReport
|
|
3408
|
+
*/
|
|
3409
|
+
'componentName': string;
|
|
3410
|
+
/**
|
|
3411
|
+
*
|
|
3412
|
+
* @type {string}
|
|
3413
|
+
* @memberof V1NodeControllerCrashReport
|
|
3414
|
+
*/
|
|
3415
|
+
'kernelVersion': string;
|
|
3416
|
+
/**
|
|
3417
|
+
*
|
|
3418
|
+
* @type {string}
|
|
3419
|
+
* @memberof V1NodeControllerCrashReport
|
|
3420
|
+
*/
|
|
3421
|
+
'backtrace': string;
|
|
3422
|
+
/**
|
|
3423
|
+
*
|
|
3424
|
+
* @type {string}
|
|
3425
|
+
* @memberof V1NodeControllerCrashReport
|
|
3426
|
+
*/
|
|
3427
|
+
'completedAt'?: string;
|
|
3428
|
+
}
|
|
3263
3429
|
/**
|
|
3264
3430
|
*
|
|
3265
3431
|
* @export
|
|
@@ -3485,6 +3651,64 @@ export interface V1NodeWithLocation {
|
|
|
3485
3651
|
*/
|
|
3486
3652
|
'location': Location;
|
|
3487
3653
|
}
|
|
3654
|
+
/**
|
|
3655
|
+
*
|
|
3656
|
+
* @export
|
|
3657
|
+
* @interface V1OTAEncryptionRequestLatest
|
|
3658
|
+
*/
|
|
3659
|
+
export interface V1OTAEncryptionRequestLatest {
|
|
3660
|
+
/**
|
|
3661
|
+
*
|
|
3662
|
+
* @type {string}
|
|
3663
|
+
* @memberof V1OTAEncryptionRequestLatest
|
|
3664
|
+
*/
|
|
3665
|
+
'lineageId': string;
|
|
3666
|
+
}
|
|
3667
|
+
/**
|
|
3668
|
+
*
|
|
3669
|
+
* @export
|
|
3670
|
+
* @interface V1OTAEncryptionResult
|
|
3671
|
+
*/
|
|
3672
|
+
export interface V1OTAEncryptionResult {
|
|
3673
|
+
/**
|
|
3674
|
+
*
|
|
3675
|
+
* @type {string}
|
|
3676
|
+
* @memberof V1OTAEncryptionResult
|
|
3677
|
+
*/
|
|
3678
|
+
'id': string;
|
|
3679
|
+
/**
|
|
3680
|
+
*
|
|
3681
|
+
* @type {V1JobStatus}
|
|
3682
|
+
* @memberof V1OTAEncryptionResult
|
|
3683
|
+
*/
|
|
3684
|
+
'jobStatus': V1JobStatus;
|
|
3685
|
+
/**
|
|
3686
|
+
*
|
|
3687
|
+
* @type {string}
|
|
3688
|
+
* @memberof V1OTAEncryptionResult
|
|
3689
|
+
*/
|
|
3690
|
+
'createdAt': string;
|
|
3691
|
+
/**
|
|
3692
|
+
*
|
|
3693
|
+
* @type {string}
|
|
3694
|
+
* @memberof V1OTAEncryptionResult
|
|
3695
|
+
*/
|
|
3696
|
+
'startedAt'?: string;
|
|
3697
|
+
/**
|
|
3698
|
+
*
|
|
3699
|
+
* @type {string}
|
|
3700
|
+
* @memberof V1OTAEncryptionResult
|
|
3701
|
+
*/
|
|
3702
|
+
'finishedAt'?: string;
|
|
3703
|
+
/**
|
|
3704
|
+
*
|
|
3705
|
+
* @type {string}
|
|
3706
|
+
* @memberof V1OTAEncryptionResult
|
|
3707
|
+
*/
|
|
3708
|
+
'url'?: string;
|
|
3709
|
+
}
|
|
3710
|
+
|
|
3711
|
+
|
|
3488
3712
|
/**
|
|
3489
3713
|
* Observation Instruction
|
|
3490
3714
|
* @export
|
|
@@ -4994,6 +5218,99 @@ export interface V2NodeControllerIssueCertificateResponse {
|
|
|
4994
5218
|
*/
|
|
4995
5219
|
export const DefaultApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
4996
5220
|
return {
|
|
5221
|
+
/**
|
|
5222
|
+
* Get edge controller crash report details
|
|
5223
|
+
* @param {string} id
|
|
5224
|
+
* @param {*} [options] Override http request option.
|
|
5225
|
+
* @throws {RequiredError}
|
|
5226
|
+
*/
|
|
5227
|
+
adminV1GetNodeControllerCrashReport: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5228
|
+
// verify required parameter 'id' is not null or undefined
|
|
5229
|
+
assertParamExists('adminV1GetNodeControllerCrashReport', 'id', id)
|
|
5230
|
+
const localVarPath = `/v1/node-controller/crash-report`;
|
|
5231
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5232
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5233
|
+
let baseOptions;
|
|
5234
|
+
if (configuration) {
|
|
5235
|
+
baseOptions = configuration.baseOptions;
|
|
5236
|
+
}
|
|
5237
|
+
|
|
5238
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
5239
|
+
const localVarHeaderParameter = {} as any;
|
|
5240
|
+
const localVarQueryParameter = {} as any;
|
|
5241
|
+
|
|
5242
|
+
// authentication Roles required
|
|
5243
|
+
|
|
5244
|
+
// authentication BearerToken required
|
|
5245
|
+
// http bearer authentication required
|
|
5246
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
5247
|
+
|
|
5248
|
+
if (id !== undefined) {
|
|
5249
|
+
localVarQueryParameter['id'] = id;
|
|
5250
|
+
}
|
|
5251
|
+
|
|
5252
|
+
|
|
5253
|
+
|
|
5254
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5255
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5256
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5257
|
+
|
|
5258
|
+
return {
|
|
5259
|
+
url: toPathString(localVarUrlObj),
|
|
5260
|
+
options: localVarRequestOptions,
|
|
5261
|
+
};
|
|
5262
|
+
},
|
|
5263
|
+
/**
|
|
5264
|
+
* Get edge controller crash reports around a specific timeframe
|
|
5265
|
+
* @param {string} lineageId
|
|
5266
|
+
* @param {string} time
|
|
5267
|
+
* @param {*} [options] Override http request option.
|
|
5268
|
+
* @throws {RequiredError}
|
|
5269
|
+
*/
|
|
5270
|
+
adminV1GetNodeControllerCrashReportsAtTime: async (lineageId: string, time: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5271
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
5272
|
+
assertParamExists('adminV1GetNodeControllerCrashReportsAtTime', 'lineageId', lineageId)
|
|
5273
|
+
// verify required parameter 'time' is not null or undefined
|
|
5274
|
+
assertParamExists('adminV1GetNodeControllerCrashReportsAtTime', 'time', time)
|
|
5275
|
+
const localVarPath = `/v1/node-controller/crash-reports-at-time`;
|
|
5276
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5277
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5278
|
+
let baseOptions;
|
|
5279
|
+
if (configuration) {
|
|
5280
|
+
baseOptions = configuration.baseOptions;
|
|
5281
|
+
}
|
|
5282
|
+
|
|
5283
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
5284
|
+
const localVarHeaderParameter = {} as any;
|
|
5285
|
+
const localVarQueryParameter = {} as any;
|
|
5286
|
+
|
|
5287
|
+
// authentication Roles required
|
|
5288
|
+
|
|
5289
|
+
// authentication BearerToken required
|
|
5290
|
+
// http bearer authentication required
|
|
5291
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
5292
|
+
|
|
5293
|
+
if (lineageId !== undefined) {
|
|
5294
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
5295
|
+
}
|
|
5296
|
+
|
|
5297
|
+
if (time !== undefined) {
|
|
5298
|
+
localVarQueryParameter['time'] = (time as any instanceof Date) ?
|
|
5299
|
+
(time as any).toISOString() :
|
|
5300
|
+
time;
|
|
5301
|
+
}
|
|
5302
|
+
|
|
5303
|
+
|
|
5304
|
+
|
|
5305
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5306
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5307
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5308
|
+
|
|
5309
|
+
return {
|
|
5310
|
+
url: toPathString(localVarUrlObj),
|
|
5311
|
+
options: localVarRequestOptions,
|
|
5312
|
+
};
|
|
5313
|
+
},
|
|
4997
5314
|
/**
|
|
4998
5315
|
* Get images for a node for display in a camera roll format
|
|
4999
5316
|
* @param {string} [nodeId]
|
|
@@ -5196,6 +5513,47 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5196
5513
|
options: localVarRequestOptions,
|
|
5197
5514
|
};
|
|
5198
5515
|
},
|
|
5516
|
+
/**
|
|
5517
|
+
* Complete a crash report.
|
|
5518
|
+
* @param {V1CompleteNodeControllerCrashReportRequest} v1CompleteNodeControllerCrashReportRequest
|
|
5519
|
+
* @param {*} [options] Override http request option.
|
|
5520
|
+
* @throws {RequiredError}
|
|
5521
|
+
*/
|
|
5522
|
+
v1CompleteNodeControllerCrashReport: async (v1CompleteNodeControllerCrashReportRequest: V1CompleteNodeControllerCrashReportRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5523
|
+
// verify required parameter 'v1CompleteNodeControllerCrashReportRequest' is not null or undefined
|
|
5524
|
+
assertParamExists('v1CompleteNodeControllerCrashReport', 'v1CompleteNodeControllerCrashReportRequest', v1CompleteNodeControllerCrashReportRequest)
|
|
5525
|
+
const localVarPath = `/v1/node-controller/complete-crash-report`;
|
|
5526
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5527
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5528
|
+
let baseOptions;
|
|
5529
|
+
if (configuration) {
|
|
5530
|
+
baseOptions = configuration.baseOptions;
|
|
5531
|
+
}
|
|
5532
|
+
|
|
5533
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
5534
|
+
const localVarHeaderParameter = {} as any;
|
|
5535
|
+
const localVarQueryParameter = {} as any;
|
|
5536
|
+
|
|
5537
|
+
// authentication Roles required
|
|
5538
|
+
|
|
5539
|
+
// authentication BearerToken required
|
|
5540
|
+
// http bearer authentication required
|
|
5541
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
5542
|
+
|
|
5543
|
+
|
|
5544
|
+
|
|
5545
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5546
|
+
|
|
5547
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5548
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5549
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5550
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CompleteNodeControllerCrashReportRequest, localVarRequestOptions, configuration)
|
|
5551
|
+
|
|
5552
|
+
return {
|
|
5553
|
+
url: toPathString(localVarUrlObj),
|
|
5554
|
+
options: localVarRequestOptions,
|
|
5555
|
+
};
|
|
5556
|
+
},
|
|
5199
5557
|
/**
|
|
5200
5558
|
* Complete a node flare.
|
|
5201
5559
|
* @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
|
|
@@ -5658,7 +6016,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5658
6016
|
baseOptions = configuration.baseOptions;
|
|
5659
6017
|
}
|
|
5660
6018
|
|
|
5661
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
6019
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
6020
|
+
const localVarHeaderParameter = {} as any;
|
|
6021
|
+
const localVarQueryParameter = {} as any;
|
|
6022
|
+
|
|
6023
|
+
// authentication Roles required
|
|
6024
|
+
|
|
6025
|
+
// authentication BearerToken required
|
|
6026
|
+
// http bearer authentication required
|
|
6027
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
6028
|
+
|
|
6029
|
+
|
|
6030
|
+
|
|
6031
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6032
|
+
|
|
6033
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6034
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6035
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
6036
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateNodeRequest, localVarRequestOptions, configuration)
|
|
6037
|
+
|
|
6038
|
+
return {
|
|
6039
|
+
url: toPathString(localVarUrlObj),
|
|
6040
|
+
options: localVarRequestOptions,
|
|
6041
|
+
};
|
|
6042
|
+
},
|
|
6043
|
+
/**
|
|
6044
|
+
* Create a node controller artifact.
|
|
6045
|
+
* @param {V1CreateNodeControllerArtifactRequest} v1CreateNodeControllerArtifactRequest
|
|
6046
|
+
* @param {*} [options] Override http request option.
|
|
6047
|
+
* @throws {RequiredError}
|
|
6048
|
+
*/
|
|
6049
|
+
v1CreateNodeControllerArtifact: async (v1CreateNodeControllerArtifactRequest: V1CreateNodeControllerArtifactRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6050
|
+
// verify required parameter 'v1CreateNodeControllerArtifactRequest' is not null or undefined
|
|
6051
|
+
assertParamExists('v1CreateNodeControllerArtifact', 'v1CreateNodeControllerArtifactRequest', v1CreateNodeControllerArtifactRequest)
|
|
6052
|
+
const localVarPath = `/v1/node-controller-artifact`;
|
|
6053
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6054
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6055
|
+
let baseOptions;
|
|
6056
|
+
if (configuration) {
|
|
6057
|
+
baseOptions = configuration.baseOptions;
|
|
6058
|
+
}
|
|
6059
|
+
|
|
6060
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
5662
6061
|
const localVarHeaderParameter = {} as any;
|
|
5663
6062
|
const localVarQueryParameter = {} as any;
|
|
5664
6063
|
|
|
@@ -5675,7 +6074,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5675
6074
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5676
6075
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5677
6076
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5678
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
6077
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateNodeControllerArtifactRequest, localVarRequestOptions, configuration)
|
|
5679
6078
|
|
|
5680
6079
|
return {
|
|
5681
6080
|
url: toPathString(localVarUrlObj),
|
|
@@ -5683,15 +6082,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5683
6082
|
};
|
|
5684
6083
|
},
|
|
5685
6084
|
/**
|
|
5686
|
-
*
|
|
5687
|
-
* @param {
|
|
6085
|
+
* create a crash report record
|
|
6086
|
+
* @param {V1CreateNodeControllerCrashReportRequest} v1CreateNodeControllerCrashReportRequest
|
|
5688
6087
|
* @param {*} [options] Override http request option.
|
|
5689
6088
|
* @throws {RequiredError}
|
|
5690
6089
|
*/
|
|
5691
|
-
|
|
5692
|
-
// verify required parameter '
|
|
5693
|
-
assertParamExists('
|
|
5694
|
-
const localVarPath = `/v1/node-controller-
|
|
6090
|
+
v1CreateNodeControllerCrashReport: async (v1CreateNodeControllerCrashReportRequest: V1CreateNodeControllerCrashReportRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6091
|
+
// verify required parameter 'v1CreateNodeControllerCrashReportRequest' is not null or undefined
|
|
6092
|
+
assertParamExists('v1CreateNodeControllerCrashReport', 'v1CreateNodeControllerCrashReportRequest', v1CreateNodeControllerCrashReportRequest)
|
|
6093
|
+
const localVarPath = `/v1/node-controller/crash-report`;
|
|
5695
6094
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5696
6095
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5697
6096
|
let baseOptions;
|
|
@@ -5699,7 +6098,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5699
6098
|
baseOptions = configuration.baseOptions;
|
|
5700
6099
|
}
|
|
5701
6100
|
|
|
5702
|
-
const localVarRequestOptions = { method: '
|
|
6101
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
5703
6102
|
const localVarHeaderParameter = {} as any;
|
|
5704
6103
|
const localVarQueryParameter = {} as any;
|
|
5705
6104
|
|
|
@@ -5716,7 +6115,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5716
6115
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5717
6116
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5718
6117
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5719
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
6118
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateNodeControllerCrashReportRequest, localVarRequestOptions, configuration)
|
|
5720
6119
|
|
|
5721
6120
|
return {
|
|
5722
6121
|
url: toPathString(localVarUrlObj),
|
|
@@ -6998,6 +7397,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6998
7397
|
|
|
6999
7398
|
|
|
7000
7399
|
|
|
7400
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7401
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7402
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
7403
|
+
|
|
7404
|
+
return {
|
|
7405
|
+
url: toPathString(localVarUrlObj),
|
|
7406
|
+
options: localVarRequestOptions,
|
|
7407
|
+
};
|
|
7408
|
+
},
|
|
7409
|
+
/**
|
|
7410
|
+
* Get OTA encryption result
|
|
7411
|
+
* @param {string} id
|
|
7412
|
+
* @param {*} [options] Override http request option.
|
|
7413
|
+
* @throws {RequiredError}
|
|
7414
|
+
*/
|
|
7415
|
+
v1GetOTAEncryption: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7416
|
+
// verify required parameter 'id' is not null or undefined
|
|
7417
|
+
assertParamExists('v1GetOTAEncryption', 'id', id)
|
|
7418
|
+
const localVarPath = `/v1/encrypt-ota`;
|
|
7419
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7420
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7421
|
+
let baseOptions;
|
|
7422
|
+
if (configuration) {
|
|
7423
|
+
baseOptions = configuration.baseOptions;
|
|
7424
|
+
}
|
|
7425
|
+
|
|
7426
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
7427
|
+
const localVarHeaderParameter = {} as any;
|
|
7428
|
+
const localVarQueryParameter = {} as any;
|
|
7429
|
+
|
|
7430
|
+
// authentication Roles required
|
|
7431
|
+
|
|
7432
|
+
// authentication BearerToken required
|
|
7433
|
+
// http bearer authentication required
|
|
7434
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
7435
|
+
|
|
7436
|
+
if (id !== undefined) {
|
|
7437
|
+
localVarQueryParameter['id'] = id;
|
|
7438
|
+
}
|
|
7439
|
+
|
|
7440
|
+
|
|
7441
|
+
|
|
7001
7442
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7002
7443
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7003
7444
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -7810,6 +8251,47 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
7810
8251
|
options: localVarRequestOptions,
|
|
7811
8252
|
};
|
|
7812
8253
|
},
|
|
8254
|
+
/**
|
|
8255
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
8256
|
+
* @param {V1OTAEncryptionRequestLatest} v1OTAEncryptionRequestLatest
|
|
8257
|
+
* @param {*} [options] Override http request option.
|
|
8258
|
+
* @throws {RequiredError}
|
|
8259
|
+
*/
|
|
8260
|
+
v1StartOTAEncryptionLatest: async (v1OTAEncryptionRequestLatest: V1OTAEncryptionRequestLatest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8261
|
+
// verify required parameter 'v1OTAEncryptionRequestLatest' is not null or undefined
|
|
8262
|
+
assertParamExists('v1StartOTAEncryptionLatest', 'v1OTAEncryptionRequestLatest', v1OTAEncryptionRequestLatest)
|
|
8263
|
+
const localVarPath = `/v1/encrypt-ota`;
|
|
8264
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8265
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8266
|
+
let baseOptions;
|
|
8267
|
+
if (configuration) {
|
|
8268
|
+
baseOptions = configuration.baseOptions;
|
|
8269
|
+
}
|
|
8270
|
+
|
|
8271
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
8272
|
+
const localVarHeaderParameter = {} as any;
|
|
8273
|
+
const localVarQueryParameter = {} as any;
|
|
8274
|
+
|
|
8275
|
+
// authentication Roles required
|
|
8276
|
+
|
|
8277
|
+
// authentication BearerToken required
|
|
8278
|
+
// http bearer authentication required
|
|
8279
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
8280
|
+
|
|
8281
|
+
|
|
8282
|
+
|
|
8283
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
8284
|
+
|
|
8285
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8286
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8287
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
8288
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1OTAEncryptionRequestLatest, localVarRequestOptions, configuration)
|
|
8289
|
+
|
|
8290
|
+
return {
|
|
8291
|
+
url: toPathString(localVarUrlObj),
|
|
8292
|
+
options: localVarRequestOptions,
|
|
8293
|
+
};
|
|
8294
|
+
},
|
|
7813
8295
|
/**
|
|
7814
8296
|
* Update a mount.
|
|
7815
8297
|
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
@@ -8060,6 +8542,27 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
8060
8542
|
export const DefaultApiFp = function(configuration?: Configuration) {
|
|
8061
8543
|
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
|
|
8062
8544
|
return {
|
|
8545
|
+
/**
|
|
8546
|
+
* Get edge controller crash report details
|
|
8547
|
+
* @param {string} id
|
|
8548
|
+
* @param {*} [options] Override http request option.
|
|
8549
|
+
* @throws {RequiredError}
|
|
8550
|
+
*/
|
|
8551
|
+
async adminV1GetNodeControllerCrashReport(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeControllerCrashReport>> {
|
|
8552
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1GetNodeControllerCrashReport(id, options);
|
|
8553
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8554
|
+
},
|
|
8555
|
+
/**
|
|
8556
|
+
* Get edge controller crash reports around a specific timeframe
|
|
8557
|
+
* @param {string} lineageId
|
|
8558
|
+
* @param {string} time
|
|
8559
|
+
* @param {*} [options] Override http request option.
|
|
8560
|
+
* @throws {RequiredError}
|
|
8561
|
+
*/
|
|
8562
|
+
async adminV1GetNodeControllerCrashReportsAtTime(lineageId: string, time: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeControllerCrashReport>>> {
|
|
8563
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1GetNodeControllerCrashReportsAtTime(lineageId, time, options);
|
|
8564
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8565
|
+
},
|
|
8063
8566
|
/**
|
|
8064
8567
|
* Get images for a node for display in a camera roll format
|
|
8065
8568
|
* @param {string} [nodeId]
|
|
@@ -8108,6 +8611,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
8108
8611
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CompleteBootstrap(options);
|
|
8109
8612
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8110
8613
|
},
|
|
8614
|
+
/**
|
|
8615
|
+
* Complete a crash report.
|
|
8616
|
+
* @param {V1CompleteNodeControllerCrashReportRequest} v1CompleteNodeControllerCrashReportRequest
|
|
8617
|
+
* @param {*} [options] Override http request option.
|
|
8618
|
+
* @throws {RequiredError}
|
|
8619
|
+
*/
|
|
8620
|
+
async v1CompleteNodeControllerCrashReport(v1CompleteNodeControllerCrashReportRequest: V1CompleteNodeControllerCrashReportRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
8621
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CompleteNodeControllerCrashReport(v1CompleteNodeControllerCrashReportRequest, options);
|
|
8622
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8623
|
+
},
|
|
8111
8624
|
/**
|
|
8112
8625
|
* Complete a node flare.
|
|
8113
8626
|
* @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
|
|
@@ -8238,6 +8751,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
8238
8751
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateNodeControllerArtifact(v1CreateNodeControllerArtifactRequest, options);
|
|
8239
8752
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8240
8753
|
},
|
|
8754
|
+
/**
|
|
8755
|
+
* create a crash report record
|
|
8756
|
+
* @param {V1CreateNodeControllerCrashReportRequest} v1CreateNodeControllerCrashReportRequest
|
|
8757
|
+
* @param {*} [options] Override http request option.
|
|
8758
|
+
* @throws {RequiredError}
|
|
8759
|
+
*/
|
|
8760
|
+
async v1CreateNodeControllerCrashReport(v1CreateNodeControllerCrashReportRequest: V1CreateNodeControllerCrashReportRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateNodeControllerCrashReportResponse>> {
|
|
8761
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateNodeControllerCrashReport(v1CreateNodeControllerCrashReportRequest, options);
|
|
8762
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8763
|
+
},
|
|
8241
8764
|
/**
|
|
8242
8765
|
* Create node diagnostics.
|
|
8243
8766
|
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
@@ -8545,6 +9068,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
8545
9068
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodes(options);
|
|
8546
9069
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8547
9070
|
},
|
|
9071
|
+
/**
|
|
9072
|
+
* Get OTA encryption result
|
|
9073
|
+
* @param {string} id
|
|
9074
|
+
* @param {*} [options] Override http request option.
|
|
9075
|
+
* @throws {RequiredError}
|
|
9076
|
+
*/
|
|
9077
|
+
async v1GetOTAEncryption(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OTAEncryptionResult>> {
|
|
9078
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetOTAEncryption(id, options);
|
|
9079
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9080
|
+
},
|
|
8548
9081
|
/**
|
|
8549
9082
|
* Get an optical tube.
|
|
8550
9083
|
* @param {string} id
|
|
@@ -8748,6 +9281,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
8748
9281
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1RequestMacAddresses(v1RequestMacAddressesRequest, options);
|
|
8749
9282
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8750
9283
|
},
|
|
9284
|
+
/**
|
|
9285
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
9286
|
+
* @param {V1OTAEncryptionRequestLatest} v1OTAEncryptionRequestLatest
|
|
9287
|
+
* @param {*} [options] Override http request option.
|
|
9288
|
+
* @throws {RequiredError}
|
|
9289
|
+
*/
|
|
9290
|
+
async v1StartOTAEncryptionLatest(v1OTAEncryptionRequestLatest: V1OTAEncryptionRequestLatest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OTAEncryptionResult>> {
|
|
9291
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1StartOTAEncryptionLatest(v1OTAEncryptionRequestLatest, options);
|
|
9292
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9293
|
+
},
|
|
8751
9294
|
/**
|
|
8752
9295
|
* Update a mount.
|
|
8753
9296
|
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
@@ -8818,6 +9361,24 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
8818
9361
|
export const DefaultApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
8819
9362
|
const localVarFp = DefaultApiFp(configuration)
|
|
8820
9363
|
return {
|
|
9364
|
+
/**
|
|
9365
|
+
* Get edge controller crash report details
|
|
9366
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
9367
|
+
* @param {*} [options] Override http request option.
|
|
9368
|
+
* @throws {RequiredError}
|
|
9369
|
+
*/
|
|
9370
|
+
adminV1GetNodeControllerCrashReport(requestParameters: DefaultApiAdminV1GetNodeControllerCrashReportRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeControllerCrashReport> {
|
|
9371
|
+
return localVarFp.adminV1GetNodeControllerCrashReport(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
9372
|
+
},
|
|
9373
|
+
/**
|
|
9374
|
+
* Get edge controller crash reports around a specific timeframe
|
|
9375
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest} requestParameters Request parameters.
|
|
9376
|
+
* @param {*} [options] Override http request option.
|
|
9377
|
+
* @throws {RequiredError}
|
|
9378
|
+
*/
|
|
9379
|
+
adminV1GetNodeControllerCrashReportsAtTime(requestParameters: DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeControllerCrashReport>> {
|
|
9380
|
+
return localVarFp.adminV1GetNodeControllerCrashReportsAtTime(requestParameters.lineageId, requestParameters.time, options).then((request) => request(axios, basePath));
|
|
9381
|
+
},
|
|
8821
9382
|
/**
|
|
8822
9383
|
* Get images for a node for display in a camera roll format
|
|
8823
9384
|
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
@@ -8852,6 +9413,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
8852
9413
|
v1CompleteBootstrap(options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
8853
9414
|
return localVarFp.v1CompleteBootstrap(options).then((request) => request(axios, basePath));
|
|
8854
9415
|
},
|
|
9416
|
+
/**
|
|
9417
|
+
* Complete a crash report.
|
|
9418
|
+
* @param {DefaultApiV1CompleteNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
9419
|
+
* @param {*} [options] Override http request option.
|
|
9420
|
+
* @throws {RequiredError}
|
|
9421
|
+
*/
|
|
9422
|
+
v1CompleteNodeControllerCrashReport(requestParameters: DefaultApiV1CompleteNodeControllerCrashReportRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
9423
|
+
return localVarFp.v1CompleteNodeControllerCrashReport(requestParameters.v1CompleteNodeControllerCrashReportRequest, options).then((request) => request(axios, basePath));
|
|
9424
|
+
},
|
|
8855
9425
|
/**
|
|
8856
9426
|
* Complete a node flare.
|
|
8857
9427
|
* @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -8969,6 +9539,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
8969
9539
|
v1CreateNodeControllerArtifact(requestParameters: DefaultApiV1CreateNodeControllerArtifactRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeControllerArtifact> {
|
|
8970
9540
|
return localVarFp.v1CreateNodeControllerArtifact(requestParameters.v1CreateNodeControllerArtifactRequest, options).then((request) => request(axios, basePath));
|
|
8971
9541
|
},
|
|
9542
|
+
/**
|
|
9543
|
+
* create a crash report record
|
|
9544
|
+
* @param {DefaultApiV1CreateNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
9545
|
+
* @param {*} [options] Override http request option.
|
|
9546
|
+
* @throws {RequiredError}
|
|
9547
|
+
*/
|
|
9548
|
+
v1CreateNodeControllerCrashReport(requestParameters: DefaultApiV1CreateNodeControllerCrashReportRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateNodeControllerCrashReportResponse> {
|
|
9549
|
+
return localVarFp.v1CreateNodeControllerCrashReport(requestParameters.v1CreateNodeControllerCrashReportRequest, options).then((request) => request(axios, basePath));
|
|
9550
|
+
},
|
|
8972
9551
|
/**
|
|
8973
9552
|
* Create node diagnostics.
|
|
8974
9553
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -9237,6 +9816,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
9237
9816
|
v1GetNodes(options?: AxiosRequestConfig): AxiosPromise<V1GetNodes> {
|
|
9238
9817
|
return localVarFp.v1GetNodes(options).then((request) => request(axios, basePath));
|
|
9239
9818
|
},
|
|
9819
|
+
/**
|
|
9820
|
+
* Get OTA encryption result
|
|
9821
|
+
* @param {DefaultApiV1GetOTAEncryptionRequest} requestParameters Request parameters.
|
|
9822
|
+
* @param {*} [options] Override http request option.
|
|
9823
|
+
* @throws {RequiredError}
|
|
9824
|
+
*/
|
|
9825
|
+
v1GetOTAEncryption(requestParameters: DefaultApiV1GetOTAEncryptionRequest, options?: AxiosRequestConfig): AxiosPromise<V1OTAEncryptionResult> {
|
|
9826
|
+
return localVarFp.v1GetOTAEncryption(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
9827
|
+
},
|
|
9240
9828
|
/**
|
|
9241
9829
|
* Get an optical tube.
|
|
9242
9830
|
* @param {DefaultApiV1GetOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -9418,6 +10006,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
9418
10006
|
v1RequestMacAddresses(requestParameters: DefaultApiV1RequestMacAddressesRequest, options?: AxiosRequestConfig): AxiosPromise<V1RequestMacAddressesResponse> {
|
|
9419
10007
|
return localVarFp.v1RequestMacAddresses(requestParameters.v1RequestMacAddressesRequest, options).then((request) => request(axios, basePath));
|
|
9420
10008
|
},
|
|
10009
|
+
/**
|
|
10010
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
10011
|
+
* @param {DefaultApiV1StartOTAEncryptionLatestRequest} requestParameters Request parameters.
|
|
10012
|
+
* @param {*} [options] Override http request option.
|
|
10013
|
+
* @throws {RequiredError}
|
|
10014
|
+
*/
|
|
10015
|
+
v1StartOTAEncryptionLatest(requestParameters: DefaultApiV1StartOTAEncryptionLatestRequest, options?: AxiosRequestConfig): AxiosPromise<V1OTAEncryptionResult> {
|
|
10016
|
+
return localVarFp.v1StartOTAEncryptionLatest(requestParameters.v1OTAEncryptionRequestLatest, options).then((request) => request(axios, basePath));
|
|
10017
|
+
},
|
|
9421
10018
|
/**
|
|
9422
10019
|
* Update a mount.
|
|
9423
10020
|
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|
|
@@ -9475,6 +10072,41 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
9475
10072
|
};
|
|
9476
10073
|
};
|
|
9477
10074
|
|
|
10075
|
+
/**
|
|
10076
|
+
* Request parameters for adminV1GetNodeControllerCrashReport operation in DefaultApi.
|
|
10077
|
+
* @export
|
|
10078
|
+
* @interface DefaultApiAdminV1GetNodeControllerCrashReportRequest
|
|
10079
|
+
*/
|
|
10080
|
+
export interface DefaultApiAdminV1GetNodeControllerCrashReportRequest {
|
|
10081
|
+
/**
|
|
10082
|
+
*
|
|
10083
|
+
* @type {string}
|
|
10084
|
+
* @memberof DefaultApiAdminV1GetNodeControllerCrashReport
|
|
10085
|
+
*/
|
|
10086
|
+
readonly id: string
|
|
10087
|
+
}
|
|
10088
|
+
|
|
10089
|
+
/**
|
|
10090
|
+
* Request parameters for adminV1GetNodeControllerCrashReportsAtTime operation in DefaultApi.
|
|
10091
|
+
* @export
|
|
10092
|
+
* @interface DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest
|
|
10093
|
+
*/
|
|
10094
|
+
export interface DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest {
|
|
10095
|
+
/**
|
|
10096
|
+
*
|
|
10097
|
+
* @type {string}
|
|
10098
|
+
* @memberof DefaultApiAdminV1GetNodeControllerCrashReportsAtTime
|
|
10099
|
+
*/
|
|
10100
|
+
readonly lineageId: string
|
|
10101
|
+
|
|
10102
|
+
/**
|
|
10103
|
+
*
|
|
10104
|
+
* @type {string}
|
|
10105
|
+
* @memberof DefaultApiAdminV1GetNodeControllerCrashReportsAtTime
|
|
10106
|
+
*/
|
|
10107
|
+
readonly time: string
|
|
10108
|
+
}
|
|
10109
|
+
|
|
9478
10110
|
/**
|
|
9479
10111
|
* Request parameters for getCameraRoll operation in DefaultApi.
|
|
9480
10112
|
* @export
|
|
@@ -9573,6 +10205,20 @@ export interface DefaultApiV1CameraMatchRequest {
|
|
|
9573
10205
|
readonly isColor?: boolean
|
|
9574
10206
|
}
|
|
9575
10207
|
|
|
10208
|
+
/**
|
|
10209
|
+
* Request parameters for v1CompleteNodeControllerCrashReport operation in DefaultApi.
|
|
10210
|
+
* @export
|
|
10211
|
+
* @interface DefaultApiV1CompleteNodeControllerCrashReportRequest
|
|
10212
|
+
*/
|
|
10213
|
+
export interface DefaultApiV1CompleteNodeControllerCrashReportRequest {
|
|
10214
|
+
/**
|
|
10215
|
+
*
|
|
10216
|
+
* @type {V1CompleteNodeControllerCrashReportRequest}
|
|
10217
|
+
* @memberof DefaultApiV1CompleteNodeControllerCrashReport
|
|
10218
|
+
*/
|
|
10219
|
+
readonly v1CompleteNodeControllerCrashReportRequest: V1CompleteNodeControllerCrashReportRequest
|
|
10220
|
+
}
|
|
10221
|
+
|
|
9576
10222
|
/**
|
|
9577
10223
|
* Request parameters for v1CompleteNodeFlare operation in DefaultApi.
|
|
9578
10224
|
* @export
|
|
@@ -9755,6 +10401,20 @@ export interface DefaultApiV1CreateNodeControllerArtifactRequest {
|
|
|
9755
10401
|
readonly v1CreateNodeControllerArtifactRequest: V1CreateNodeControllerArtifactRequest
|
|
9756
10402
|
}
|
|
9757
10403
|
|
|
10404
|
+
/**
|
|
10405
|
+
* Request parameters for v1CreateNodeControllerCrashReport operation in DefaultApi.
|
|
10406
|
+
* @export
|
|
10407
|
+
* @interface DefaultApiV1CreateNodeControllerCrashReportRequest
|
|
10408
|
+
*/
|
|
10409
|
+
export interface DefaultApiV1CreateNodeControllerCrashReportRequest {
|
|
10410
|
+
/**
|
|
10411
|
+
*
|
|
10412
|
+
* @type {V1CreateNodeControllerCrashReportRequest}
|
|
10413
|
+
* @memberof DefaultApiV1CreateNodeControllerCrashReport
|
|
10414
|
+
*/
|
|
10415
|
+
readonly v1CreateNodeControllerCrashReportRequest: V1CreateNodeControllerCrashReportRequest
|
|
10416
|
+
}
|
|
10417
|
+
|
|
9758
10418
|
/**
|
|
9759
10419
|
* Request parameters for v1CreateNodeDiagnostics operation in DefaultApi.
|
|
9760
10420
|
* @export
|
|
@@ -10210,6 +10870,20 @@ export interface DefaultApiV1GetNodePropertiesRequest {
|
|
|
10210
10870
|
readonly nodeId: string
|
|
10211
10871
|
}
|
|
10212
10872
|
|
|
10873
|
+
/**
|
|
10874
|
+
* Request parameters for v1GetOTAEncryption operation in DefaultApi.
|
|
10875
|
+
* @export
|
|
10876
|
+
* @interface DefaultApiV1GetOTAEncryptionRequest
|
|
10877
|
+
*/
|
|
10878
|
+
export interface DefaultApiV1GetOTAEncryptionRequest {
|
|
10879
|
+
/**
|
|
10880
|
+
*
|
|
10881
|
+
* @type {string}
|
|
10882
|
+
* @memberof DefaultApiV1GetOTAEncryption
|
|
10883
|
+
*/
|
|
10884
|
+
readonly id: string
|
|
10885
|
+
}
|
|
10886
|
+
|
|
10213
10887
|
/**
|
|
10214
10888
|
* Request parameters for v1GetOpticalTube operation in DefaultApi.
|
|
10215
10889
|
* @export
|
|
@@ -10462,6 +11136,20 @@ export interface DefaultApiV1RequestMacAddressesRequest {
|
|
|
10462
11136
|
readonly v1RequestMacAddressesRequest: V1RequestMacAddressesRequest
|
|
10463
11137
|
}
|
|
10464
11138
|
|
|
11139
|
+
/**
|
|
11140
|
+
* Request parameters for v1StartOTAEncryptionLatest operation in DefaultApi.
|
|
11141
|
+
* @export
|
|
11142
|
+
* @interface DefaultApiV1StartOTAEncryptionLatestRequest
|
|
11143
|
+
*/
|
|
11144
|
+
export interface DefaultApiV1StartOTAEncryptionLatestRequest {
|
|
11145
|
+
/**
|
|
11146
|
+
*
|
|
11147
|
+
* @type {V1OTAEncryptionRequestLatest}
|
|
11148
|
+
* @memberof DefaultApiV1StartOTAEncryptionLatest
|
|
11149
|
+
*/
|
|
11150
|
+
readonly v1OTAEncryptionRequestLatest: V1OTAEncryptionRequestLatest
|
|
11151
|
+
}
|
|
11152
|
+
|
|
10465
11153
|
/**
|
|
10466
11154
|
* Request parameters for v1UpdateMount operation in DefaultApi.
|
|
10467
11155
|
* @export
|
|
@@ -10553,6 +11241,28 @@ export interface DefaultApiV2IssueCertificateRequest {
|
|
|
10553
11241
|
* @extends {BaseAPI}
|
|
10554
11242
|
*/
|
|
10555
11243
|
export class DefaultApi extends BaseAPI {
|
|
11244
|
+
/**
|
|
11245
|
+
* Get edge controller crash report details
|
|
11246
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
11247
|
+
* @param {*} [options] Override http request option.
|
|
11248
|
+
* @throws {RequiredError}
|
|
11249
|
+
* @memberof DefaultApi
|
|
11250
|
+
*/
|
|
11251
|
+
public adminV1GetNodeControllerCrashReport(requestParameters: DefaultApiAdminV1GetNodeControllerCrashReportRequest, options?: AxiosRequestConfig) {
|
|
11252
|
+
return DefaultApiFp(this.configuration).adminV1GetNodeControllerCrashReport(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
11253
|
+
}
|
|
11254
|
+
|
|
11255
|
+
/**
|
|
11256
|
+
* Get edge controller crash reports around a specific timeframe
|
|
11257
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest} requestParameters Request parameters.
|
|
11258
|
+
* @param {*} [options] Override http request option.
|
|
11259
|
+
* @throws {RequiredError}
|
|
11260
|
+
* @memberof DefaultApi
|
|
11261
|
+
*/
|
|
11262
|
+
public adminV1GetNodeControllerCrashReportsAtTime(requestParameters: DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest, options?: AxiosRequestConfig) {
|
|
11263
|
+
return DefaultApiFp(this.configuration).adminV1GetNodeControllerCrashReportsAtTime(requestParameters.lineageId, requestParameters.time, options).then((request) => request(this.axios, this.basePath));
|
|
11264
|
+
}
|
|
11265
|
+
|
|
10556
11266
|
/**
|
|
10557
11267
|
* Get images for a node for display in a camera roll format
|
|
10558
11268
|
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
@@ -10595,6 +11305,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
10595
11305
|
return DefaultApiFp(this.configuration).v1CompleteBootstrap(options).then((request) => request(this.axios, this.basePath));
|
|
10596
11306
|
}
|
|
10597
11307
|
|
|
11308
|
+
/**
|
|
11309
|
+
* Complete a crash report.
|
|
11310
|
+
* @param {DefaultApiV1CompleteNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
11311
|
+
* @param {*} [options] Override http request option.
|
|
11312
|
+
* @throws {RequiredError}
|
|
11313
|
+
* @memberof DefaultApi
|
|
11314
|
+
*/
|
|
11315
|
+
public v1CompleteNodeControllerCrashReport(requestParameters: DefaultApiV1CompleteNodeControllerCrashReportRequest, options?: AxiosRequestConfig) {
|
|
11316
|
+
return DefaultApiFp(this.configuration).v1CompleteNodeControllerCrashReport(requestParameters.v1CompleteNodeControllerCrashReportRequest, options).then((request) => request(this.axios, this.basePath));
|
|
11317
|
+
}
|
|
11318
|
+
|
|
10598
11319
|
/**
|
|
10599
11320
|
* Complete a node flare.
|
|
10600
11321
|
* @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -10738,6 +11459,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
10738
11459
|
return DefaultApiFp(this.configuration).v1CreateNodeControllerArtifact(requestParameters.v1CreateNodeControllerArtifactRequest, options).then((request) => request(this.axios, this.basePath));
|
|
10739
11460
|
}
|
|
10740
11461
|
|
|
11462
|
+
/**
|
|
11463
|
+
* create a crash report record
|
|
11464
|
+
* @param {DefaultApiV1CreateNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
11465
|
+
* @param {*} [options] Override http request option.
|
|
11466
|
+
* @throws {RequiredError}
|
|
11467
|
+
* @memberof DefaultApi
|
|
11468
|
+
*/
|
|
11469
|
+
public v1CreateNodeControllerCrashReport(requestParameters: DefaultApiV1CreateNodeControllerCrashReportRequest, options?: AxiosRequestConfig) {
|
|
11470
|
+
return DefaultApiFp(this.configuration).v1CreateNodeControllerCrashReport(requestParameters.v1CreateNodeControllerCrashReportRequest, options).then((request) => request(this.axios, this.basePath));
|
|
11471
|
+
}
|
|
11472
|
+
|
|
10741
11473
|
/**
|
|
10742
11474
|
* Create node diagnostics.
|
|
10743
11475
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -11066,6 +11798,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
11066
11798
|
return DefaultApiFp(this.configuration).v1GetNodes(options).then((request) => request(this.axios, this.basePath));
|
|
11067
11799
|
}
|
|
11068
11800
|
|
|
11801
|
+
/**
|
|
11802
|
+
* Get OTA encryption result
|
|
11803
|
+
* @param {DefaultApiV1GetOTAEncryptionRequest} requestParameters Request parameters.
|
|
11804
|
+
* @param {*} [options] Override http request option.
|
|
11805
|
+
* @throws {RequiredError}
|
|
11806
|
+
* @memberof DefaultApi
|
|
11807
|
+
*/
|
|
11808
|
+
public v1GetOTAEncryption(requestParameters: DefaultApiV1GetOTAEncryptionRequest, options?: AxiosRequestConfig) {
|
|
11809
|
+
return DefaultApiFp(this.configuration).v1GetOTAEncryption(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
11810
|
+
}
|
|
11811
|
+
|
|
11069
11812
|
/**
|
|
11070
11813
|
* Get an optical tube.
|
|
11071
11814
|
* @param {DefaultApiV1GetOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -11287,6 +12030,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
11287
12030
|
return DefaultApiFp(this.configuration).v1RequestMacAddresses(requestParameters.v1RequestMacAddressesRequest, options).then((request) => request(this.axios, this.basePath));
|
|
11288
12031
|
}
|
|
11289
12032
|
|
|
12033
|
+
/**
|
|
12034
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
12035
|
+
* @param {DefaultApiV1StartOTAEncryptionLatestRequest} requestParameters Request parameters.
|
|
12036
|
+
* @param {*} [options] Override http request option.
|
|
12037
|
+
* @throws {RequiredError}
|
|
12038
|
+
* @memberof DefaultApi
|
|
12039
|
+
*/
|
|
12040
|
+
public v1StartOTAEncryptionLatest(requestParameters: DefaultApiV1StartOTAEncryptionLatestRequest, options?: AxiosRequestConfig) {
|
|
12041
|
+
return DefaultApiFp(this.configuration).v1StartOTAEncryptionLatest(requestParameters.v1OTAEncryptionRequestLatest, options).then((request) => request(this.axios, this.basePath));
|
|
12042
|
+
}
|
|
12043
|
+
|
|
11290
12044
|
/**
|
|
11291
12045
|
* Update a mount.
|
|
11292
12046
|
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|