@ourskyai/platform-api 1.3.8106 → 1.3.8639
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 +768 -46
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +475 -22
- package/dist/api.js +416 -18
- 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 +475 -22
- package/dist/esm/api.js +415 -17
- 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/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -701,6 +701,19 @@ export interface V1ClientToken {
|
|
|
701
701
|
*/
|
|
702
702
|
'cesiumToken': string;
|
|
703
703
|
}
|
|
704
|
+
/**
|
|
705
|
+
*
|
|
706
|
+
* @export
|
|
707
|
+
* @interface V1CompleteNodeControllerCrashReportRequest
|
|
708
|
+
*/
|
|
709
|
+
export interface V1CompleteNodeControllerCrashReportRequest {
|
|
710
|
+
/**
|
|
711
|
+
*
|
|
712
|
+
* @type {string}
|
|
713
|
+
* @memberof V1CompleteNodeControllerCrashReportRequest
|
|
714
|
+
*/
|
|
715
|
+
'id': string;
|
|
716
|
+
}
|
|
704
717
|
/**
|
|
705
718
|
*
|
|
706
719
|
* @export
|
|
@@ -1002,6 +1015,74 @@ export interface V1CreateNodeControllerArtifactRequest {
|
|
|
1002
1015
|
*/
|
|
1003
1016
|
'path': string;
|
|
1004
1017
|
}
|
|
1018
|
+
/**
|
|
1019
|
+
* create a crash report
|
|
1020
|
+
* @export
|
|
1021
|
+
* @interface V1CreateNodeControllerCrashReportRequest
|
|
1022
|
+
*/
|
|
1023
|
+
export interface V1CreateNodeControllerCrashReportRequest {
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* @type {string}
|
|
1027
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1028
|
+
*/
|
|
1029
|
+
'lineageId': string;
|
|
1030
|
+
/**
|
|
1031
|
+
*
|
|
1032
|
+
* @type {string}
|
|
1033
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1034
|
+
*/
|
|
1035
|
+
'fileSha': string;
|
|
1036
|
+
/**
|
|
1037
|
+
*
|
|
1038
|
+
* @type {number}
|
|
1039
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1040
|
+
*/
|
|
1041
|
+
'fileSizeMb': number;
|
|
1042
|
+
/**
|
|
1043
|
+
*
|
|
1044
|
+
* @type {string}
|
|
1045
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1046
|
+
*/
|
|
1047
|
+
'softwareVersion': string;
|
|
1048
|
+
/**
|
|
1049
|
+
*
|
|
1050
|
+
* @type {string}
|
|
1051
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1052
|
+
*/
|
|
1053
|
+
'componentName': string;
|
|
1054
|
+
/**
|
|
1055
|
+
*
|
|
1056
|
+
* @type {string}
|
|
1057
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1058
|
+
*/
|
|
1059
|
+
'kernelVersion': string;
|
|
1060
|
+
/**
|
|
1061
|
+
*
|
|
1062
|
+
* @type {string}
|
|
1063
|
+
* @memberof V1CreateNodeControllerCrashReportRequest
|
|
1064
|
+
*/
|
|
1065
|
+
'backtrace': string;
|
|
1066
|
+
}
|
|
1067
|
+
/**
|
|
1068
|
+
*
|
|
1069
|
+
* @export
|
|
1070
|
+
* @interface V1CreateNodeControllerCrashReportResponse
|
|
1071
|
+
*/
|
|
1072
|
+
export interface V1CreateNodeControllerCrashReportResponse {
|
|
1073
|
+
/**
|
|
1074
|
+
*
|
|
1075
|
+
* @type {string}
|
|
1076
|
+
* @memberof V1CreateNodeControllerCrashReportResponse
|
|
1077
|
+
*/
|
|
1078
|
+
'id': string;
|
|
1079
|
+
/**
|
|
1080
|
+
*
|
|
1081
|
+
* @type {string}
|
|
1082
|
+
* @memberof V1CreateNodeControllerCrashReportResponse
|
|
1083
|
+
*/
|
|
1084
|
+
'uploadUrl': string;
|
|
1085
|
+
}
|
|
1005
1086
|
/**
|
|
1006
1087
|
*
|
|
1007
1088
|
* @export
|
|
@@ -2659,6 +2740,18 @@ export interface V1Instruction {
|
|
|
2659
2740
|
*/
|
|
2660
2741
|
'autofocus'?: V1AutoFocusInstruction;
|
|
2661
2742
|
}
|
|
2743
|
+
/**
|
|
2744
|
+
*
|
|
2745
|
+
* @export
|
|
2746
|
+
* @enum {string}
|
|
2747
|
+
*/
|
|
2748
|
+
export declare const V1JobStatus: {
|
|
2749
|
+
readonly PENDING: "PENDING";
|
|
2750
|
+
readonly RUNNING: "RUNNING";
|
|
2751
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
2752
|
+
readonly FAILED: "FAILED";
|
|
2753
|
+
};
|
|
2754
|
+
export type V1JobStatus = typeof V1JobStatus[keyof typeof V1JobStatus];
|
|
2662
2755
|
/**
|
|
2663
2756
|
*
|
|
2664
2757
|
* @export
|
|
@@ -3120,6 +3213,67 @@ export interface V1NodeControllerBootstrapRequest {
|
|
|
3120
3213
|
*/
|
|
3121
3214
|
'chipSerialNumber': number;
|
|
3122
3215
|
}
|
|
3216
|
+
/**
|
|
3217
|
+
* edge controller crash report details
|
|
3218
|
+
* @export
|
|
3219
|
+
* @interface V1NodeControllerCrashReport
|
|
3220
|
+
*/
|
|
3221
|
+
export interface V1NodeControllerCrashReport {
|
|
3222
|
+
/**
|
|
3223
|
+
*
|
|
3224
|
+
* @type {string}
|
|
3225
|
+
* @memberof V1NodeControllerCrashReport
|
|
3226
|
+
*/
|
|
3227
|
+
'id': string;
|
|
3228
|
+
/**
|
|
3229
|
+
*
|
|
3230
|
+
* @type {string}
|
|
3231
|
+
* @memberof V1NodeControllerCrashReport
|
|
3232
|
+
*/
|
|
3233
|
+
'lineageId': string;
|
|
3234
|
+
/**
|
|
3235
|
+
*
|
|
3236
|
+
* @type {string}
|
|
3237
|
+
* @memberof V1NodeControllerCrashReport
|
|
3238
|
+
*/
|
|
3239
|
+
'fileSha': string;
|
|
3240
|
+
/**
|
|
3241
|
+
*
|
|
3242
|
+
* @type {number}
|
|
3243
|
+
* @memberof V1NodeControllerCrashReport
|
|
3244
|
+
*/
|
|
3245
|
+
'fileSizeMb': number;
|
|
3246
|
+
/**
|
|
3247
|
+
*
|
|
3248
|
+
* @type {string}
|
|
3249
|
+
* @memberof V1NodeControllerCrashReport
|
|
3250
|
+
*/
|
|
3251
|
+
'softwareVersion': string;
|
|
3252
|
+
/**
|
|
3253
|
+
*
|
|
3254
|
+
* @type {string}
|
|
3255
|
+
* @memberof V1NodeControllerCrashReport
|
|
3256
|
+
*/
|
|
3257
|
+
'componentName': string;
|
|
3258
|
+
/**
|
|
3259
|
+
*
|
|
3260
|
+
* @type {string}
|
|
3261
|
+
* @memberof V1NodeControllerCrashReport
|
|
3262
|
+
*/
|
|
3263
|
+
'kernelVersion': string;
|
|
3264
|
+
/**
|
|
3265
|
+
*
|
|
3266
|
+
* @type {string}
|
|
3267
|
+
* @memberof V1NodeControllerCrashReport
|
|
3268
|
+
*/
|
|
3269
|
+
'backtrace': string;
|
|
3270
|
+
/**
|
|
3271
|
+
*
|
|
3272
|
+
* @type {string}
|
|
3273
|
+
* @memberof V1NodeControllerCrashReport
|
|
3274
|
+
*/
|
|
3275
|
+
'completedAt'?: string;
|
|
3276
|
+
}
|
|
3123
3277
|
/**
|
|
3124
3278
|
*
|
|
3125
3279
|
* @export
|
|
@@ -3333,6 +3487,62 @@ export interface V1NodeWithLocation {
|
|
|
3333
3487
|
*/
|
|
3334
3488
|
'location': Location;
|
|
3335
3489
|
}
|
|
3490
|
+
/**
|
|
3491
|
+
*
|
|
3492
|
+
* @export
|
|
3493
|
+
* @interface V1OTAEncryptionRequestLatest
|
|
3494
|
+
*/
|
|
3495
|
+
export interface V1OTAEncryptionRequestLatest {
|
|
3496
|
+
/**
|
|
3497
|
+
*
|
|
3498
|
+
* @type {string}
|
|
3499
|
+
* @memberof V1OTAEncryptionRequestLatest
|
|
3500
|
+
*/
|
|
3501
|
+
'lineageId': string;
|
|
3502
|
+
}
|
|
3503
|
+
/**
|
|
3504
|
+
*
|
|
3505
|
+
* @export
|
|
3506
|
+
* @interface V1OTAEncryptionResult
|
|
3507
|
+
*/
|
|
3508
|
+
export interface V1OTAEncryptionResult {
|
|
3509
|
+
/**
|
|
3510
|
+
*
|
|
3511
|
+
* @type {string}
|
|
3512
|
+
* @memberof V1OTAEncryptionResult
|
|
3513
|
+
*/
|
|
3514
|
+
'id': string;
|
|
3515
|
+
/**
|
|
3516
|
+
*
|
|
3517
|
+
* @type {V1JobStatus}
|
|
3518
|
+
* @memberof V1OTAEncryptionResult
|
|
3519
|
+
*/
|
|
3520
|
+
'jobStatus': V1JobStatus;
|
|
3521
|
+
/**
|
|
3522
|
+
*
|
|
3523
|
+
* @type {string}
|
|
3524
|
+
* @memberof V1OTAEncryptionResult
|
|
3525
|
+
*/
|
|
3526
|
+
'createdAt': string;
|
|
3527
|
+
/**
|
|
3528
|
+
*
|
|
3529
|
+
* @type {string}
|
|
3530
|
+
* @memberof V1OTAEncryptionResult
|
|
3531
|
+
*/
|
|
3532
|
+
'startedAt'?: string;
|
|
3533
|
+
/**
|
|
3534
|
+
*
|
|
3535
|
+
* @type {string}
|
|
3536
|
+
* @memberof V1OTAEncryptionResult
|
|
3537
|
+
*/
|
|
3538
|
+
'finishedAt'?: string;
|
|
3539
|
+
/**
|
|
3540
|
+
*
|
|
3541
|
+
* @type {string}
|
|
3542
|
+
* @memberof V1OTAEncryptionResult
|
|
3543
|
+
*/
|
|
3544
|
+
'url'?: string;
|
|
3545
|
+
}
|
|
3336
3546
|
/**
|
|
3337
3547
|
* Observation Instruction
|
|
3338
3548
|
* @export
|
|
@@ -4803,6 +5013,21 @@ export interface V2NodeControllerIssueCertificateResponse {
|
|
|
4803
5013
|
* @export
|
|
4804
5014
|
*/
|
|
4805
5015
|
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5016
|
+
/**
|
|
5017
|
+
* Get edge controller crash report details
|
|
5018
|
+
* @param {string} id
|
|
5019
|
+
* @param {*} [options] Override http request option.
|
|
5020
|
+
* @throws {RequiredError}
|
|
5021
|
+
*/
|
|
5022
|
+
adminV1GetNodeControllerCrashReport: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5023
|
+
/**
|
|
5024
|
+
* Get edge controller crash reports around a specific timeframe
|
|
5025
|
+
* @param {string} lineageId
|
|
5026
|
+
* @param {string} time
|
|
5027
|
+
* @param {*} [options] Override http request option.
|
|
5028
|
+
* @throws {RequiredError}
|
|
5029
|
+
*/
|
|
5030
|
+
adminV1GetNodeControllerCrashReportsAtTime: (lineageId: string, time: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4806
5031
|
/**
|
|
4807
5032
|
* Get images for a node for display in a camera roll format
|
|
4808
5033
|
* @param {string} [nodeId]
|
|
@@ -4839,6 +5064,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4839
5064
|
* @throws {RequiredError}
|
|
4840
5065
|
*/
|
|
4841
5066
|
v1CompleteBootstrap: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5067
|
+
/**
|
|
5068
|
+
* Complete a crash report.
|
|
5069
|
+
* @param {V1CompleteNodeControllerCrashReportRequest} v1CompleteNodeControllerCrashReportRequest
|
|
5070
|
+
* @param {*} [options] Override http request option.
|
|
5071
|
+
* @throws {RequiredError}
|
|
5072
|
+
*/
|
|
5073
|
+
v1CompleteNodeControllerCrashReport: (v1CompleteNodeControllerCrashReportRequest: V1CompleteNodeControllerCrashReportRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4842
5074
|
/**
|
|
4843
5075
|
* Complete a node flare.
|
|
4844
5076
|
* @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
|
|
@@ -4930,6 +5162,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4930
5162
|
* @throws {RequiredError}
|
|
4931
5163
|
*/
|
|
4932
5164
|
v1CreateNodeControllerArtifact: (v1CreateNodeControllerArtifactRequest: V1CreateNodeControllerArtifactRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5165
|
+
/**
|
|
5166
|
+
* create a crash report record
|
|
5167
|
+
* @param {V1CreateNodeControllerCrashReportRequest} v1CreateNodeControllerCrashReportRequest
|
|
5168
|
+
* @param {*} [options] Override http request option.
|
|
5169
|
+
* @throws {RequiredError}
|
|
5170
|
+
*/
|
|
5171
|
+
v1CreateNodeControllerCrashReport: (v1CreateNodeControllerCrashReportRequest: V1CreateNodeControllerCrashReportRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4933
5172
|
/**
|
|
4934
5173
|
* Create node diagnostics.
|
|
4935
5174
|
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
@@ -5147,6 +5386,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5147
5386
|
* @throws {RequiredError}
|
|
5148
5387
|
*/
|
|
5149
5388
|
v1GetNodes: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5389
|
+
/**
|
|
5390
|
+
* Get OTA encryption result
|
|
5391
|
+
* @param {string} id
|
|
5392
|
+
* @param {*} [options] Override http request option.
|
|
5393
|
+
* @throws {RequiredError}
|
|
5394
|
+
*/
|
|
5395
|
+
v1GetOTAEncryption: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5150
5396
|
/**
|
|
5151
5397
|
* Get an optical tube.
|
|
5152
5398
|
* @param {string} id
|
|
@@ -5197,11 +5443,10 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5197
5443
|
v1GetSkyAtlasSatellites: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5198
5444
|
/**
|
|
5199
5445
|
* Get the target QCOM OTA software release for a node
|
|
5200
|
-
* @param {string} lineageId lineage id
|
|
5201
5446
|
* @param {*} [options] Override http request option.
|
|
5202
5447
|
* @throws {RequiredError}
|
|
5203
5448
|
*/
|
|
5204
|
-
v1GetTargetQCOMOTASoftwareReleaseForNode: (
|
|
5449
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5205
5450
|
/**
|
|
5206
5451
|
* Get the target software releases for a node
|
|
5207
5452
|
* @param {string} lineageId lineage id
|
|
@@ -5291,6 +5536,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5291
5536
|
* @throws {RequiredError}
|
|
5292
5537
|
*/
|
|
5293
5538
|
v1RequestMacAddresses: (v1RequestMacAddressesRequest: V1RequestMacAddressesRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5539
|
+
/**
|
|
5540
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
5541
|
+
* @param {V1OTAEncryptionRequestLatest} v1OTAEncryptionRequestLatest
|
|
5542
|
+
* @param {*} [options] Override http request option.
|
|
5543
|
+
* @throws {RequiredError}
|
|
5544
|
+
*/
|
|
5545
|
+
v1StartOTAEncryptionLatest: (v1OTAEncryptionRequestLatest: V1OTAEncryptionRequestLatest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5294
5546
|
/**
|
|
5295
5547
|
* Update a mount.
|
|
5296
5548
|
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
@@ -5339,6 +5591,21 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5339
5591
|
* @export
|
|
5340
5592
|
*/
|
|
5341
5593
|
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
5594
|
+
/**
|
|
5595
|
+
* Get edge controller crash report details
|
|
5596
|
+
* @param {string} id
|
|
5597
|
+
* @param {*} [options] Override http request option.
|
|
5598
|
+
* @throws {RequiredError}
|
|
5599
|
+
*/
|
|
5600
|
+
adminV1GetNodeControllerCrashReport(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeControllerCrashReport>>;
|
|
5601
|
+
/**
|
|
5602
|
+
* Get edge controller crash reports around a specific timeframe
|
|
5603
|
+
* @param {string} lineageId
|
|
5604
|
+
* @param {string} time
|
|
5605
|
+
* @param {*} [options] Override http request option.
|
|
5606
|
+
* @throws {RequiredError}
|
|
5607
|
+
*/
|
|
5608
|
+
adminV1GetNodeControllerCrashReportsAtTime(lineageId: string, time: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1NodeControllerCrashReport>>>;
|
|
5342
5609
|
/**
|
|
5343
5610
|
* Get images for a node for display in a camera roll format
|
|
5344
5611
|
* @param {string} [nodeId]
|
|
@@ -5375,6 +5642,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
5375
5642
|
* @throws {RequiredError}
|
|
5376
5643
|
*/
|
|
5377
5644
|
v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
5645
|
+
/**
|
|
5646
|
+
* Complete a crash report.
|
|
5647
|
+
* @param {V1CompleteNodeControllerCrashReportRequest} v1CompleteNodeControllerCrashReportRequest
|
|
5648
|
+
* @param {*} [options] Override http request option.
|
|
5649
|
+
* @throws {RequiredError}
|
|
5650
|
+
*/
|
|
5651
|
+
v1CompleteNodeControllerCrashReport(v1CompleteNodeControllerCrashReportRequest: V1CompleteNodeControllerCrashReportRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
5378
5652
|
/**
|
|
5379
5653
|
* Complete a node flare.
|
|
5380
5654
|
* @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
|
|
@@ -5466,6 +5740,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
5466
5740
|
* @throws {RequiredError}
|
|
5467
5741
|
*/
|
|
5468
5742
|
v1CreateNodeControllerArtifact(v1CreateNodeControllerArtifactRequest: V1CreateNodeControllerArtifactRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeControllerArtifact>>;
|
|
5743
|
+
/**
|
|
5744
|
+
* create a crash report record
|
|
5745
|
+
* @param {V1CreateNodeControllerCrashReportRequest} v1CreateNodeControllerCrashReportRequest
|
|
5746
|
+
* @param {*} [options] Override http request option.
|
|
5747
|
+
* @throws {RequiredError}
|
|
5748
|
+
*/
|
|
5749
|
+
v1CreateNodeControllerCrashReport(v1CreateNodeControllerCrashReportRequest: V1CreateNodeControllerCrashReportRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1CreateNodeControllerCrashReportResponse>>;
|
|
5469
5750
|
/**
|
|
5470
5751
|
* Create node diagnostics.
|
|
5471
5752
|
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
@@ -5683,6 +5964,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
5683
5964
|
* @throws {RequiredError}
|
|
5684
5965
|
*/
|
|
5685
5966
|
v1GetNodes(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GetNodes>>;
|
|
5967
|
+
/**
|
|
5968
|
+
* Get OTA encryption result
|
|
5969
|
+
* @param {string} id
|
|
5970
|
+
* @param {*} [options] Override http request option.
|
|
5971
|
+
* @throws {RequiredError}
|
|
5972
|
+
*/
|
|
5973
|
+
v1GetOTAEncryption(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OTAEncryptionResult>>;
|
|
5686
5974
|
/**
|
|
5687
5975
|
* Get an optical tube.
|
|
5688
5976
|
* @param {string} id
|
|
@@ -5733,11 +6021,10 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
5733
6021
|
v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
5734
6022
|
/**
|
|
5735
6023
|
* Get the target QCOM OTA software release for a node
|
|
5736
|
-
* @param {string} lineageId lineage id
|
|
5737
6024
|
* @param {*} [options] Override http request option.
|
|
5738
6025
|
* @throws {RequiredError}
|
|
5739
6026
|
*/
|
|
5740
|
-
v1GetTargetQCOMOTASoftwareReleaseForNode(
|
|
6027
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1SoftwareRelease>>;
|
|
5741
6028
|
/**
|
|
5742
6029
|
* Get the target software releases for a node
|
|
5743
6030
|
* @param {string} lineageId lineage id
|
|
@@ -5827,6 +6114,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
5827
6114
|
* @throws {RequiredError}
|
|
5828
6115
|
*/
|
|
5829
6116
|
v1RequestMacAddresses(v1RequestMacAddressesRequest: V1RequestMacAddressesRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1RequestMacAddressesResponse>>;
|
|
6117
|
+
/**
|
|
6118
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
6119
|
+
* @param {V1OTAEncryptionRequestLatest} v1OTAEncryptionRequestLatest
|
|
6120
|
+
* @param {*} [options] Override http request option.
|
|
6121
|
+
* @throws {RequiredError}
|
|
6122
|
+
*/
|
|
6123
|
+
v1StartOTAEncryptionLatest(v1OTAEncryptionRequestLatest: V1OTAEncryptionRequestLatest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OTAEncryptionResult>>;
|
|
5830
6124
|
/**
|
|
5831
6125
|
* Update a mount.
|
|
5832
6126
|
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
@@ -5875,6 +6169,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
5875
6169
|
* @export
|
|
5876
6170
|
*/
|
|
5877
6171
|
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6172
|
+
/**
|
|
6173
|
+
* Get edge controller crash report details
|
|
6174
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
6175
|
+
* @param {*} [options] Override http request option.
|
|
6176
|
+
* @throws {RequiredError}
|
|
6177
|
+
*/
|
|
6178
|
+
adminV1GetNodeControllerCrashReport(requestParameters: DefaultApiAdminV1GetNodeControllerCrashReportRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeControllerCrashReport>;
|
|
6179
|
+
/**
|
|
6180
|
+
* Get edge controller crash reports around a specific timeframe
|
|
6181
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest} requestParameters Request parameters.
|
|
6182
|
+
* @param {*} [options] Override http request option.
|
|
6183
|
+
* @throws {RequiredError}
|
|
6184
|
+
*/
|
|
6185
|
+
adminV1GetNodeControllerCrashReportsAtTime(requestParameters: DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1NodeControllerCrashReport>>;
|
|
5878
6186
|
/**
|
|
5879
6187
|
* Get images for a node for display in a camera roll format
|
|
5880
6188
|
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
@@ -5901,6 +6209,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
5901
6209
|
* @throws {RequiredError}
|
|
5902
6210
|
*/
|
|
5903
6211
|
v1CompleteBootstrap(options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
6212
|
+
/**
|
|
6213
|
+
* Complete a crash report.
|
|
6214
|
+
* @param {DefaultApiV1CompleteNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
6215
|
+
* @param {*} [options] Override http request option.
|
|
6216
|
+
* @throws {RequiredError}
|
|
6217
|
+
*/
|
|
6218
|
+
v1CompleteNodeControllerCrashReport(requestParameters: DefaultApiV1CompleteNodeControllerCrashReportRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
5904
6219
|
/**
|
|
5905
6220
|
* Complete a node flare.
|
|
5906
6221
|
* @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -5992,6 +6307,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
5992
6307
|
* @throws {RequiredError}
|
|
5993
6308
|
*/
|
|
5994
6309
|
v1CreateNodeControllerArtifact(requestParameters: DefaultApiV1CreateNodeControllerArtifactRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeControllerArtifact>;
|
|
6310
|
+
/**
|
|
6311
|
+
* create a crash report record
|
|
6312
|
+
* @param {DefaultApiV1CreateNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
6313
|
+
* @param {*} [options] Override http request option.
|
|
6314
|
+
* @throws {RequiredError}
|
|
6315
|
+
*/
|
|
6316
|
+
v1CreateNodeControllerCrashReport(requestParameters: DefaultApiV1CreateNodeControllerCrashReportRequest, options?: AxiosRequestConfig): AxiosPromise<V1CreateNodeControllerCrashReportResponse>;
|
|
5995
6317
|
/**
|
|
5996
6318
|
* Create node diagnostics.
|
|
5997
6319
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -6200,6 +6522,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
6200
6522
|
* @throws {RequiredError}
|
|
6201
6523
|
*/
|
|
6202
6524
|
v1GetNodes(options?: AxiosRequestConfig): AxiosPromise<V1GetNodes>;
|
|
6525
|
+
/**
|
|
6526
|
+
* Get OTA encryption result
|
|
6527
|
+
* @param {DefaultApiV1GetOTAEncryptionRequest} requestParameters Request parameters.
|
|
6528
|
+
* @param {*} [options] Override http request option.
|
|
6529
|
+
* @throws {RequiredError}
|
|
6530
|
+
*/
|
|
6531
|
+
v1GetOTAEncryption(requestParameters: DefaultApiV1GetOTAEncryptionRequest, options?: AxiosRequestConfig): AxiosPromise<V1OTAEncryptionResult>;
|
|
6203
6532
|
/**
|
|
6204
6533
|
* Get an optical tube.
|
|
6205
6534
|
* @param {DefaultApiV1GetOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -6250,11 +6579,10 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
6250
6579
|
v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
6251
6580
|
/**
|
|
6252
6581
|
* Get the target QCOM OTA software release for a node
|
|
6253
|
-
* @param {DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest} requestParameters Request parameters.
|
|
6254
6582
|
* @param {*} [options] Override http request option.
|
|
6255
6583
|
* @throws {RequiredError}
|
|
6256
6584
|
*/
|
|
6257
|
-
v1GetTargetQCOMOTASoftwareReleaseForNode(
|
|
6585
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(options?: AxiosRequestConfig): AxiosPromise<V1SoftwareRelease>;
|
|
6258
6586
|
/**
|
|
6259
6587
|
* Get the target software releases for a node
|
|
6260
6588
|
* @param {DefaultApiV1GetTargetSoftwareReleasesForNodeRequest} requestParameters Request parameters.
|
|
@@ -6342,6 +6670,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
6342
6670
|
* @throws {RequiredError}
|
|
6343
6671
|
*/
|
|
6344
6672
|
v1RequestMacAddresses(requestParameters: DefaultApiV1RequestMacAddressesRequest, options?: AxiosRequestConfig): AxiosPromise<V1RequestMacAddressesResponse>;
|
|
6673
|
+
/**
|
|
6674
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
6675
|
+
* @param {DefaultApiV1StartOTAEncryptionLatestRequest} requestParameters Request parameters.
|
|
6676
|
+
* @param {*} [options] Override http request option.
|
|
6677
|
+
* @throws {RequiredError}
|
|
6678
|
+
*/
|
|
6679
|
+
v1StartOTAEncryptionLatest(requestParameters: DefaultApiV1StartOTAEncryptionLatestRequest, options?: AxiosRequestConfig): AxiosPromise<V1OTAEncryptionResult>;
|
|
6345
6680
|
/**
|
|
6346
6681
|
* Update a mount.
|
|
6347
6682
|
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|
|
@@ -6385,6 +6720,38 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
6385
6720
|
*/
|
|
6386
6721
|
v2IssueCertificate(requestParameters: DefaultApiV2IssueCertificateRequest, options?: AxiosRequestConfig): AxiosPromise<V2NodeControllerIssueCertificateResponse>;
|
|
6387
6722
|
};
|
|
6723
|
+
/**
|
|
6724
|
+
* Request parameters for adminV1GetNodeControllerCrashReport operation in DefaultApi.
|
|
6725
|
+
* @export
|
|
6726
|
+
* @interface DefaultApiAdminV1GetNodeControllerCrashReportRequest
|
|
6727
|
+
*/
|
|
6728
|
+
export interface DefaultApiAdminV1GetNodeControllerCrashReportRequest {
|
|
6729
|
+
/**
|
|
6730
|
+
*
|
|
6731
|
+
* @type {string}
|
|
6732
|
+
* @memberof DefaultApiAdminV1GetNodeControllerCrashReport
|
|
6733
|
+
*/
|
|
6734
|
+
readonly id: string;
|
|
6735
|
+
}
|
|
6736
|
+
/**
|
|
6737
|
+
* Request parameters for adminV1GetNodeControllerCrashReportsAtTime operation in DefaultApi.
|
|
6738
|
+
* @export
|
|
6739
|
+
* @interface DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest
|
|
6740
|
+
*/
|
|
6741
|
+
export interface DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest {
|
|
6742
|
+
/**
|
|
6743
|
+
*
|
|
6744
|
+
* @type {string}
|
|
6745
|
+
* @memberof DefaultApiAdminV1GetNodeControllerCrashReportsAtTime
|
|
6746
|
+
*/
|
|
6747
|
+
readonly lineageId: string;
|
|
6748
|
+
/**
|
|
6749
|
+
*
|
|
6750
|
+
* @type {string}
|
|
6751
|
+
* @memberof DefaultApiAdminV1GetNodeControllerCrashReportsAtTime
|
|
6752
|
+
*/
|
|
6753
|
+
readonly time: string;
|
|
6754
|
+
}
|
|
6388
6755
|
/**
|
|
6389
6756
|
* Request parameters for getCameraRoll operation in DefaultApi.
|
|
6390
6757
|
* @export
|
|
@@ -6471,6 +6838,19 @@ export interface DefaultApiV1CameraMatchRequest {
|
|
|
6471
6838
|
*/
|
|
6472
6839
|
readonly isColor?: boolean;
|
|
6473
6840
|
}
|
|
6841
|
+
/**
|
|
6842
|
+
* Request parameters for v1CompleteNodeControllerCrashReport operation in DefaultApi.
|
|
6843
|
+
* @export
|
|
6844
|
+
* @interface DefaultApiV1CompleteNodeControllerCrashReportRequest
|
|
6845
|
+
*/
|
|
6846
|
+
export interface DefaultApiV1CompleteNodeControllerCrashReportRequest {
|
|
6847
|
+
/**
|
|
6848
|
+
*
|
|
6849
|
+
* @type {V1CompleteNodeControllerCrashReportRequest}
|
|
6850
|
+
* @memberof DefaultApiV1CompleteNodeControllerCrashReport
|
|
6851
|
+
*/
|
|
6852
|
+
readonly v1CompleteNodeControllerCrashReportRequest: V1CompleteNodeControllerCrashReportRequest;
|
|
6853
|
+
}
|
|
6474
6854
|
/**
|
|
6475
6855
|
* Request parameters for v1CompleteNodeFlare operation in DefaultApi.
|
|
6476
6856
|
* @export
|
|
@@ -6640,6 +7020,19 @@ export interface DefaultApiV1CreateNodeControllerArtifactRequest {
|
|
|
6640
7020
|
*/
|
|
6641
7021
|
readonly v1CreateNodeControllerArtifactRequest: V1CreateNodeControllerArtifactRequest;
|
|
6642
7022
|
}
|
|
7023
|
+
/**
|
|
7024
|
+
* Request parameters for v1CreateNodeControllerCrashReport operation in DefaultApi.
|
|
7025
|
+
* @export
|
|
7026
|
+
* @interface DefaultApiV1CreateNodeControllerCrashReportRequest
|
|
7027
|
+
*/
|
|
7028
|
+
export interface DefaultApiV1CreateNodeControllerCrashReportRequest {
|
|
7029
|
+
/**
|
|
7030
|
+
*
|
|
7031
|
+
* @type {V1CreateNodeControllerCrashReportRequest}
|
|
7032
|
+
* @memberof DefaultApiV1CreateNodeControllerCrashReport
|
|
7033
|
+
*/
|
|
7034
|
+
readonly v1CreateNodeControllerCrashReportRequest: V1CreateNodeControllerCrashReportRequest;
|
|
7035
|
+
}
|
|
6643
7036
|
/**
|
|
6644
7037
|
* Request parameters for v1CreateNodeDiagnostics operation in DefaultApi.
|
|
6645
7038
|
* @export
|
|
@@ -7058,6 +7451,19 @@ export interface DefaultApiV1GetNodePropertiesRequest {
|
|
|
7058
7451
|
*/
|
|
7059
7452
|
readonly nodeId: string;
|
|
7060
7453
|
}
|
|
7454
|
+
/**
|
|
7455
|
+
* Request parameters for v1GetOTAEncryption operation in DefaultApi.
|
|
7456
|
+
* @export
|
|
7457
|
+
* @interface DefaultApiV1GetOTAEncryptionRequest
|
|
7458
|
+
*/
|
|
7459
|
+
export interface DefaultApiV1GetOTAEncryptionRequest {
|
|
7460
|
+
/**
|
|
7461
|
+
*
|
|
7462
|
+
* @type {string}
|
|
7463
|
+
* @memberof DefaultApiV1GetOTAEncryption
|
|
7464
|
+
*/
|
|
7465
|
+
readonly id: string;
|
|
7466
|
+
}
|
|
7061
7467
|
/**
|
|
7062
7468
|
* Request parameters for v1GetOpticalTube operation in DefaultApi.
|
|
7063
7469
|
* @export
|
|
@@ -7136,19 +7542,6 @@ export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
|
7136
7542
|
*/
|
|
7137
7543
|
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
|
|
7138
7544
|
}
|
|
7139
|
-
/**
|
|
7140
|
-
* Request parameters for v1GetTargetQCOMOTASoftwareReleaseForNode operation in DefaultApi.
|
|
7141
|
-
* @export
|
|
7142
|
-
* @interface DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest
|
|
7143
|
-
*/
|
|
7144
|
-
export interface DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest {
|
|
7145
|
-
/**
|
|
7146
|
-
* lineage id
|
|
7147
|
-
* @type {string}
|
|
7148
|
-
* @memberof DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNode
|
|
7149
|
-
*/
|
|
7150
|
-
readonly lineageId: string;
|
|
7151
|
-
}
|
|
7152
7545
|
/**
|
|
7153
7546
|
* Request parameters for v1GetTargetSoftwareReleasesForNode operation in DefaultApi.
|
|
7154
7547
|
* @export
|
|
@@ -7304,6 +7697,19 @@ export interface DefaultApiV1RequestMacAddressesRequest {
|
|
|
7304
7697
|
*/
|
|
7305
7698
|
readonly v1RequestMacAddressesRequest: V1RequestMacAddressesRequest;
|
|
7306
7699
|
}
|
|
7700
|
+
/**
|
|
7701
|
+
* Request parameters for v1StartOTAEncryptionLatest operation in DefaultApi.
|
|
7702
|
+
* @export
|
|
7703
|
+
* @interface DefaultApiV1StartOTAEncryptionLatestRequest
|
|
7704
|
+
*/
|
|
7705
|
+
export interface DefaultApiV1StartOTAEncryptionLatestRequest {
|
|
7706
|
+
/**
|
|
7707
|
+
*
|
|
7708
|
+
* @type {V1OTAEncryptionRequestLatest}
|
|
7709
|
+
* @memberof DefaultApiV1StartOTAEncryptionLatest
|
|
7710
|
+
*/
|
|
7711
|
+
readonly v1OTAEncryptionRequestLatest: V1OTAEncryptionRequestLatest;
|
|
7712
|
+
}
|
|
7307
7713
|
/**
|
|
7308
7714
|
* Request parameters for v1UpdateMount operation in DefaultApi.
|
|
7309
7715
|
* @export
|
|
@@ -7389,6 +7795,22 @@ export interface DefaultApiV2IssueCertificateRequest {
|
|
|
7389
7795
|
* @extends {BaseAPI}
|
|
7390
7796
|
*/
|
|
7391
7797
|
export declare class DefaultApi extends BaseAPI {
|
|
7798
|
+
/**
|
|
7799
|
+
* Get edge controller crash report details
|
|
7800
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
7801
|
+
* @param {*} [options] Override http request option.
|
|
7802
|
+
* @throws {RequiredError}
|
|
7803
|
+
* @memberof DefaultApi
|
|
7804
|
+
*/
|
|
7805
|
+
adminV1GetNodeControllerCrashReport(requestParameters: DefaultApiAdminV1GetNodeControllerCrashReportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeControllerCrashReport, any>>;
|
|
7806
|
+
/**
|
|
7807
|
+
* Get edge controller crash reports around a specific timeframe
|
|
7808
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest} requestParameters Request parameters.
|
|
7809
|
+
* @param {*} [options] Override http request option.
|
|
7810
|
+
* @throws {RequiredError}
|
|
7811
|
+
* @memberof DefaultApi
|
|
7812
|
+
*/
|
|
7813
|
+
adminV1GetNodeControllerCrashReportsAtTime(requestParameters: DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeControllerCrashReport[], any>>;
|
|
7392
7814
|
/**
|
|
7393
7815
|
* Get images for a node for display in a camera roll format
|
|
7394
7816
|
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
@@ -7419,6 +7841,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
7419
7841
|
* @memberof DefaultApi
|
|
7420
7842
|
*/
|
|
7421
7843
|
v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
7844
|
+
/**
|
|
7845
|
+
* Complete a crash report.
|
|
7846
|
+
* @param {DefaultApiV1CompleteNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
7847
|
+
* @param {*} [options] Override http request option.
|
|
7848
|
+
* @throws {RequiredError}
|
|
7849
|
+
* @memberof DefaultApi
|
|
7850
|
+
*/
|
|
7851
|
+
v1CompleteNodeControllerCrashReport(requestParameters: DefaultApiV1CompleteNodeControllerCrashReportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
7422
7852
|
/**
|
|
7423
7853
|
* Complete a node flare.
|
|
7424
7854
|
* @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -7523,6 +7953,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
7523
7953
|
* @memberof DefaultApi
|
|
7524
7954
|
*/
|
|
7525
7955
|
v1CreateNodeControllerArtifact(requestParameters: DefaultApiV1CreateNodeControllerArtifactRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeControllerArtifact, any>>;
|
|
7956
|
+
/**
|
|
7957
|
+
* create a crash report record
|
|
7958
|
+
* @param {DefaultApiV1CreateNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
7959
|
+
* @param {*} [options] Override http request option.
|
|
7960
|
+
* @throws {RequiredError}
|
|
7961
|
+
* @memberof DefaultApi
|
|
7962
|
+
*/
|
|
7963
|
+
v1CreateNodeControllerCrashReport(requestParameters: DefaultApiV1CreateNodeControllerCrashReportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1CreateNodeControllerCrashReportResponse, any>>;
|
|
7526
7964
|
/**
|
|
7527
7965
|
* Create node diagnostics.
|
|
7528
7966
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -7761,6 +8199,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
7761
8199
|
* @memberof DefaultApi
|
|
7762
8200
|
*/
|
|
7763
8201
|
v1GetNodes(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GetNodes, any>>;
|
|
8202
|
+
/**
|
|
8203
|
+
* Get OTA encryption result
|
|
8204
|
+
* @param {DefaultApiV1GetOTAEncryptionRequest} requestParameters Request parameters.
|
|
8205
|
+
* @param {*} [options] Override http request option.
|
|
8206
|
+
* @throws {RequiredError}
|
|
8207
|
+
* @memberof DefaultApi
|
|
8208
|
+
*/
|
|
8209
|
+
v1GetOTAEncryption(requestParameters: DefaultApiV1GetOTAEncryptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OTAEncryptionResult, any>>;
|
|
7764
8210
|
/**
|
|
7765
8211
|
* Get an optical tube.
|
|
7766
8212
|
* @param {DefaultApiV1GetOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -7818,12 +8264,11 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
7818
8264
|
v1GetSkyAtlasSatellites(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
7819
8265
|
/**
|
|
7820
8266
|
* Get the target QCOM OTA software release for a node
|
|
7821
|
-
* @param {DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest} requestParameters Request parameters.
|
|
7822
8267
|
* @param {*} [options] Override http request option.
|
|
7823
8268
|
* @throws {RequiredError}
|
|
7824
8269
|
* @memberof DefaultApi
|
|
7825
8270
|
*/
|
|
7826
|
-
v1GetTargetQCOMOTASoftwareReleaseForNode(
|
|
8271
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1SoftwareRelease, any>>;
|
|
7827
8272
|
/**
|
|
7828
8273
|
* Get the target software releases for a node
|
|
7829
8274
|
* @param {DefaultApiV1GetTargetSoftwareReleasesForNodeRequest} requestParameters Request parameters.
|
|
@@ -7923,6 +8368,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
7923
8368
|
* @memberof DefaultApi
|
|
7924
8369
|
*/
|
|
7925
8370
|
v1RequestMacAddresses(requestParameters: DefaultApiV1RequestMacAddressesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1RequestMacAddressesResponse, any>>;
|
|
8371
|
+
/**
|
|
8372
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
8373
|
+
* @param {DefaultApiV1StartOTAEncryptionLatestRequest} requestParameters Request parameters.
|
|
8374
|
+
* @param {*} [options] Override http request option.
|
|
8375
|
+
* @throws {RequiredError}
|
|
8376
|
+
* @memberof DefaultApi
|
|
8377
|
+
*/
|
|
8378
|
+
v1StartOTAEncryptionLatest(requestParameters: DefaultApiV1StartOTAEncryptionLatestRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OTAEncryptionResult, any>>;
|
|
7926
8379
|
/**
|
|
7927
8380
|
* Update a mount.
|
|
7928
8381
|
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|