@aws-sdk/client-groundstation 3.933.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +147 -146
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +146 -0
- package/dist-es/models/errors.js +81 -0
- package/dist-es/models/models_0.js +1 -227
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +305 -0
- package/dist-types/models/errors.d.ts +94 -0
- package/dist-types/models/models_0.d.ts +1 -399
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +174 -0
- package/dist-types/ts3.4/models/errors.d.ts +48 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -222
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,22 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>Dependency encountered an error.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class DependencyException extends __BaseException {
|
|
8
|
-
readonly name: "DependencyException";
|
|
9
|
-
readonly $fault: "server";
|
|
10
|
-
/**
|
|
11
|
-
* <p/>
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
parameterName?: string | undefined;
|
|
15
|
-
/**
|
|
16
|
-
* @internal
|
|
17
|
-
*/
|
|
18
|
-
constructor(opts: __ExceptionOptionType<DependencyException, __BaseException>);
|
|
19
|
-
}
|
|
1
|
+
import { AgentStatus, AngleUnits, AuditResults, BandwidthUnits, CapabilityHealth, CapabilityHealthReason, ConfigCapabilityType, ContactStatus, Criticality, EirpUnits, EndpointStatus, EphemerisErrorCode, EphemerisInvalidReason, EphemerisSource, EphemerisStatus, EphemerisType, FrequencyUnits, Polarization } from "./enums";
|
|
20
2
|
/**
|
|
21
3
|
* @public
|
|
22
4
|
*/
|
|
@@ -42,35 +24,6 @@ export interface GetAgentConfigurationResponse {
|
|
|
42
24
|
*/
|
|
43
25
|
taskingDocument?: string | undefined;
|
|
44
26
|
}
|
|
45
|
-
/**
|
|
46
|
-
* <p>One or more parameters are not valid.</p>
|
|
47
|
-
* @public
|
|
48
|
-
*/
|
|
49
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
50
|
-
readonly name: "InvalidParameterException";
|
|
51
|
-
readonly $fault: "client";
|
|
52
|
-
/**
|
|
53
|
-
* <p/>
|
|
54
|
-
* @public
|
|
55
|
-
*/
|
|
56
|
-
parameterName?: string | undefined;
|
|
57
|
-
/**
|
|
58
|
-
* @internal
|
|
59
|
-
*/
|
|
60
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* <p>Resource was not found.</p>
|
|
64
|
-
* @public
|
|
65
|
-
*/
|
|
66
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
67
|
-
readonly name: "ResourceNotFoundException";
|
|
68
|
-
readonly $fault: "client";
|
|
69
|
-
/**
|
|
70
|
-
* @internal
|
|
71
|
-
*/
|
|
72
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
73
|
-
}
|
|
74
27
|
/**
|
|
75
28
|
* <p>Version information for agent components.</p>
|
|
76
29
|
* @public
|
|
@@ -174,20 +127,6 @@ export interface RegisterAgentResponse {
|
|
|
174
127
|
*/
|
|
175
128
|
agentId?: string | undefined;
|
|
176
129
|
}
|
|
177
|
-
/**
|
|
178
|
-
* @public
|
|
179
|
-
* @enum
|
|
180
|
-
*/
|
|
181
|
-
export declare const AgentStatus: {
|
|
182
|
-
readonly ACTIVE: "ACTIVE";
|
|
183
|
-
readonly FAILED: "FAILED";
|
|
184
|
-
readonly INACTIVE: "INACTIVE";
|
|
185
|
-
readonly SUCCESS: "SUCCESS";
|
|
186
|
-
};
|
|
187
|
-
/**
|
|
188
|
-
* @public
|
|
189
|
-
*/
|
|
190
|
-
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
191
130
|
/**
|
|
192
131
|
* <p>Aggregate status of Agent components.</p>
|
|
193
132
|
* @public
|
|
@@ -280,18 +219,6 @@ export interface UpdateAgentStatusResponse {
|
|
|
280
219
|
*/
|
|
281
220
|
agentId: string | undefined;
|
|
282
221
|
}
|
|
283
|
-
/**
|
|
284
|
-
* @public
|
|
285
|
-
* @enum
|
|
286
|
-
*/
|
|
287
|
-
export declare const AngleUnits: {
|
|
288
|
-
readonly DEGREE_ANGLE: "DEGREE_ANGLE";
|
|
289
|
-
readonly RADIAN: "RADIAN";
|
|
290
|
-
};
|
|
291
|
-
/**
|
|
292
|
-
* @public
|
|
293
|
-
*/
|
|
294
|
-
export type AngleUnits = (typeof AngleUnits)[keyof typeof AngleUnits];
|
|
295
222
|
/**
|
|
296
223
|
* <p>Details about an antenna demod decode <code>Config</code> used in a contact.</p>
|
|
297
224
|
* @public
|
|
@@ -303,19 +230,6 @@ export interface AntennaDemodDecodeDetails {
|
|
|
303
230
|
*/
|
|
304
231
|
outputNode?: string | undefined;
|
|
305
232
|
}
|
|
306
|
-
/**
|
|
307
|
-
* @public
|
|
308
|
-
* @enum
|
|
309
|
-
*/
|
|
310
|
-
export declare const BandwidthUnits: {
|
|
311
|
-
readonly GHZ: "GHz";
|
|
312
|
-
readonly KHZ: "kHz";
|
|
313
|
-
readonly MHZ: "MHz";
|
|
314
|
-
};
|
|
315
|
-
/**
|
|
316
|
-
* @public
|
|
317
|
-
*/
|
|
318
|
-
export type BandwidthUnits = (typeof BandwidthUnits)[keyof typeof BandwidthUnits];
|
|
319
233
|
/**
|
|
320
234
|
* <p>Object that describes the frequency bandwidth. </p>
|
|
321
235
|
* @public
|
|
@@ -332,19 +246,6 @@ export interface FrequencyBandwidth {
|
|
|
332
246
|
*/
|
|
333
247
|
units: BandwidthUnits | undefined;
|
|
334
248
|
}
|
|
335
|
-
/**
|
|
336
|
-
* @public
|
|
337
|
-
* @enum
|
|
338
|
-
*/
|
|
339
|
-
export declare const FrequencyUnits: {
|
|
340
|
-
readonly GHZ: "GHz";
|
|
341
|
-
readonly KHZ: "kHz";
|
|
342
|
-
readonly MHZ: "MHz";
|
|
343
|
-
};
|
|
344
|
-
/**
|
|
345
|
-
* @public
|
|
346
|
-
*/
|
|
347
|
-
export type FrequencyUnits = (typeof FrequencyUnits)[keyof typeof FrequencyUnits];
|
|
348
249
|
/**
|
|
349
250
|
* <p>Object that describes the frequency.</p>
|
|
350
251
|
* @public
|
|
@@ -361,19 +262,6 @@ export interface Frequency {
|
|
|
361
262
|
*/
|
|
362
263
|
units: FrequencyUnits | undefined;
|
|
363
264
|
}
|
|
364
|
-
/**
|
|
365
|
-
* @public
|
|
366
|
-
* @enum
|
|
367
|
-
*/
|
|
368
|
-
export declare const Polarization: {
|
|
369
|
-
readonly LEFT_HAND: "LEFT_HAND";
|
|
370
|
-
readonly NONE: "NONE";
|
|
371
|
-
readonly RIGHT_HAND: "RIGHT_HAND";
|
|
372
|
-
};
|
|
373
|
-
/**
|
|
374
|
-
* @public
|
|
375
|
-
*/
|
|
376
|
-
export type Polarization = (typeof Polarization)[keyof typeof Polarization];
|
|
377
265
|
/**
|
|
378
266
|
* <p>Object that describes a spectral <code>Config</code>.</p>
|
|
379
267
|
* @public
|
|
@@ -465,17 +353,6 @@ export interface UplinkSpectrumConfig {
|
|
|
465
353
|
*/
|
|
466
354
|
polarization?: Polarization | undefined;
|
|
467
355
|
}
|
|
468
|
-
/**
|
|
469
|
-
* @public
|
|
470
|
-
* @enum
|
|
471
|
-
*/
|
|
472
|
-
export declare const EirpUnits: {
|
|
473
|
-
readonly DBW: "dBW";
|
|
474
|
-
};
|
|
475
|
-
/**
|
|
476
|
-
* @public
|
|
477
|
-
*/
|
|
478
|
-
export type EirpUnits = (typeof EirpUnits)[keyof typeof EirpUnits];
|
|
479
356
|
/**
|
|
480
357
|
* <p>Object that represents EIRP.</p>
|
|
481
358
|
* @public
|
|
@@ -513,18 +390,6 @@ export interface AntennaUplinkConfig {
|
|
|
513
390
|
*/
|
|
514
391
|
targetEirp: Eirp | undefined;
|
|
515
392
|
}
|
|
516
|
-
/**
|
|
517
|
-
* @public
|
|
518
|
-
* @enum
|
|
519
|
-
*/
|
|
520
|
-
export declare const AuditResults: {
|
|
521
|
-
readonly HEALTHY: "HEALTHY";
|
|
522
|
-
readonly UNHEALTHY: "UNHEALTHY";
|
|
523
|
-
};
|
|
524
|
-
/**
|
|
525
|
-
* @public
|
|
526
|
-
*/
|
|
527
|
-
export type AuditResults = (typeof AuditResults)[keyof typeof AuditResults];
|
|
528
393
|
/**
|
|
529
394
|
* <p>Information about the socket address.</p>
|
|
530
395
|
* @public
|
|
@@ -836,52 +701,6 @@ export interface ContactIdResponse {
|
|
|
836
701
|
*/
|
|
837
702
|
contactId?: string | undefined;
|
|
838
703
|
}
|
|
839
|
-
/**
|
|
840
|
-
* @public
|
|
841
|
-
* @enum
|
|
842
|
-
*/
|
|
843
|
-
export declare const CapabilityHealth: {
|
|
844
|
-
readonly HEALTHY: "HEALTHY";
|
|
845
|
-
readonly UNHEALTHY: "UNHEALTHY";
|
|
846
|
-
};
|
|
847
|
-
/**
|
|
848
|
-
* @public
|
|
849
|
-
*/
|
|
850
|
-
export type CapabilityHealth = (typeof CapabilityHealth)[keyof typeof CapabilityHealth];
|
|
851
|
-
/**
|
|
852
|
-
* @public
|
|
853
|
-
* @enum
|
|
854
|
-
*/
|
|
855
|
-
export declare const CapabilityHealthReason: {
|
|
856
|
-
readonly DATAPLANE_FAILURE: "DATAPLANE_FAILURE";
|
|
857
|
-
readonly HEALTHY: "HEALTHY";
|
|
858
|
-
readonly INITIALIZING_DATAPLANE: "INITIALIZING_DATAPLANE";
|
|
859
|
-
readonly INVALID_IP_OWNERSHIP: "INVALID_IP_OWNERSHIP";
|
|
860
|
-
readonly NOT_AUTHORIZED_TO_CREATE_SLR: "NOT_AUTHORIZED_TO_CREATE_SLR";
|
|
861
|
-
readonly NO_REGISTERED_AGENT: "NO_REGISTERED_AGENT";
|
|
862
|
-
readonly UNVERIFIED_IP_OWNERSHIP: "UNVERIFIED_IP_OWNERSHIP";
|
|
863
|
-
};
|
|
864
|
-
/**
|
|
865
|
-
* @public
|
|
866
|
-
*/
|
|
867
|
-
export type CapabilityHealthReason = (typeof CapabilityHealthReason)[keyof typeof CapabilityHealthReason];
|
|
868
|
-
/**
|
|
869
|
-
* @public
|
|
870
|
-
* @enum
|
|
871
|
-
*/
|
|
872
|
-
export declare const ConfigCapabilityType: {
|
|
873
|
-
readonly ANTENNA_DOWNLINK: "antenna-downlink";
|
|
874
|
-
readonly ANTENNA_DOWNLINK_DEMOD_DECODE: "antenna-downlink-demod-decode";
|
|
875
|
-
readonly ANTENNA_UPLINK: "antenna-uplink";
|
|
876
|
-
readonly DATAFLOW_ENDPOINT: "dataflow-endpoint";
|
|
877
|
-
readonly S3_RECORDING: "s3-recording";
|
|
878
|
-
readonly TRACKING: "tracking";
|
|
879
|
-
readonly UPLINK_ECHO: "uplink-echo";
|
|
880
|
-
};
|
|
881
|
-
/**
|
|
882
|
-
* @public
|
|
883
|
-
*/
|
|
884
|
-
export type ConfigCapabilityType = (typeof ConfigCapabilityType)[keyof typeof ConfigCapabilityType];
|
|
885
704
|
/**
|
|
886
705
|
* <p/>
|
|
887
706
|
* @public
|
|
@@ -940,19 +759,6 @@ export interface S3RecordingConfig {
|
|
|
940
759
|
*/
|
|
941
760
|
prefix?: string | undefined;
|
|
942
761
|
}
|
|
943
|
-
/**
|
|
944
|
-
* @public
|
|
945
|
-
* @enum
|
|
946
|
-
*/
|
|
947
|
-
export declare const Criticality: {
|
|
948
|
-
readonly PREFERRED: "PREFERRED";
|
|
949
|
-
readonly REMOVED: "REMOVED";
|
|
950
|
-
readonly REQUIRED: "REQUIRED";
|
|
951
|
-
};
|
|
952
|
-
/**
|
|
953
|
-
* @public
|
|
954
|
-
*/
|
|
955
|
-
export type Criticality = (typeof Criticality)[keyof typeof Criticality];
|
|
956
762
|
/**
|
|
957
763
|
* <p>Object that determines whether tracking should be used during a contact executed with this <code>Config</code> in the mission profile.</p>
|
|
958
764
|
* @public
|
|
@@ -1136,23 +942,6 @@ export interface CreateConfigRequest {
|
|
|
1136
942
|
*/
|
|
1137
943
|
tags?: Record<string, string> | undefined;
|
|
1138
944
|
}
|
|
1139
|
-
/**
|
|
1140
|
-
* <p>Account limits for this resource have been exceeded.</p>
|
|
1141
|
-
* @public
|
|
1142
|
-
*/
|
|
1143
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
1144
|
-
readonly name: "ResourceLimitExceededException";
|
|
1145
|
-
readonly $fault: "client";
|
|
1146
|
-
/**
|
|
1147
|
-
* <p/>
|
|
1148
|
-
* @public
|
|
1149
|
-
*/
|
|
1150
|
-
parameterName?: string | undefined;
|
|
1151
|
-
/**
|
|
1152
|
-
* @internal
|
|
1153
|
-
*/
|
|
1154
|
-
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
1155
|
-
}
|
|
1156
945
|
/**
|
|
1157
946
|
* <p/>
|
|
1158
947
|
* @public
|
|
@@ -1380,21 +1169,6 @@ export interface DownlinkAwsGroundStationAgentEndpointDetails {
|
|
|
1380
1169
|
*/
|
|
1381
1170
|
auditResults?: AuditResults | undefined;
|
|
1382
1171
|
}
|
|
1383
|
-
/**
|
|
1384
|
-
* @public
|
|
1385
|
-
* @enum
|
|
1386
|
-
*/
|
|
1387
|
-
export declare const EndpointStatus: {
|
|
1388
|
-
readonly created: "created";
|
|
1389
|
-
readonly creating: "creating";
|
|
1390
|
-
readonly deleted: "deleted";
|
|
1391
|
-
readonly deleting: "deleting";
|
|
1392
|
-
readonly failed: "failed";
|
|
1393
|
-
};
|
|
1394
|
-
/**
|
|
1395
|
-
* @public
|
|
1396
|
-
*/
|
|
1397
|
-
export type EndpointStatus = (typeof EndpointStatus)[keyof typeof EndpointStatus];
|
|
1398
1172
|
/**
|
|
1399
1173
|
* <p>Information about a dataflow endpoint.</p>
|
|
1400
1174
|
* @public
|
|
@@ -1644,29 +1418,6 @@ export interface DescribeContactRequest {
|
|
|
1644
1418
|
*/
|
|
1645
1419
|
contactId: string | undefined;
|
|
1646
1420
|
}
|
|
1647
|
-
/**
|
|
1648
|
-
* @public
|
|
1649
|
-
* @enum
|
|
1650
|
-
*/
|
|
1651
|
-
export declare const ContactStatus: {
|
|
1652
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
1653
|
-
readonly AWS_CANCELLED: "AWS_CANCELLED";
|
|
1654
|
-
readonly AWS_FAILED: "AWS_FAILED";
|
|
1655
|
-
readonly CANCELLED: "CANCELLED";
|
|
1656
|
-
readonly CANCELLING: "CANCELLING";
|
|
1657
|
-
readonly COMPLETED: "COMPLETED";
|
|
1658
|
-
readonly FAILED: "FAILED";
|
|
1659
|
-
readonly FAILED_TO_SCHEDULE: "FAILED_TO_SCHEDULE";
|
|
1660
|
-
readonly PASS: "PASS";
|
|
1661
|
-
readonly POSTPASS: "POSTPASS";
|
|
1662
|
-
readonly PREPASS: "PREPASS";
|
|
1663
|
-
readonly SCHEDULED: "SCHEDULED";
|
|
1664
|
-
readonly SCHEDULING: "SCHEDULING";
|
|
1665
|
-
};
|
|
1666
|
-
/**
|
|
1667
|
-
* @public
|
|
1668
|
-
*/
|
|
1669
|
-
export type ContactStatus = (typeof ContactStatus)[keyof typeof ContactStatus];
|
|
1670
1421
|
/**
|
|
1671
1422
|
* <p>Dataflow details for the destination side.</p>
|
|
1672
1423
|
* @public
|
|
@@ -1740,20 +1491,6 @@ export interface DataflowDetail {
|
|
|
1740
1491
|
*/
|
|
1741
1492
|
errorMessage?: string | undefined;
|
|
1742
1493
|
}
|
|
1743
|
-
/**
|
|
1744
|
-
* @public
|
|
1745
|
-
* @enum
|
|
1746
|
-
*/
|
|
1747
|
-
export declare const EphemerisType: {
|
|
1748
|
-
readonly AZ_EL: "AZ_EL";
|
|
1749
|
-
readonly OEM: "OEM";
|
|
1750
|
-
readonly SERVICE_MANAGED: "SERVICE_MANAGED";
|
|
1751
|
-
readonly TLE: "TLE";
|
|
1752
|
-
};
|
|
1753
|
-
/**
|
|
1754
|
-
* @public
|
|
1755
|
-
*/
|
|
1756
|
-
export type EphemerisType = (typeof EphemerisType)[keyof typeof EphemerisType];
|
|
1757
1494
|
/**
|
|
1758
1495
|
* <p>Ephemeris data for a contact.</p>
|
|
1759
1496
|
* @public
|
|
@@ -2302,23 +2039,6 @@ export interface CreateDataflowEndpointGroupV2Response {
|
|
|
2302
2039
|
*/
|
|
2303
2040
|
dataflowEndpointGroupId?: string | undefined;
|
|
2304
2041
|
}
|
|
2305
|
-
/**
|
|
2306
|
-
* <p>Request would cause a service quota to be exceeded.</p>
|
|
2307
|
-
* @public
|
|
2308
|
-
*/
|
|
2309
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
2310
|
-
readonly name: "ServiceQuotaExceededException";
|
|
2311
|
-
readonly $fault: "client";
|
|
2312
|
-
/**
|
|
2313
|
-
* <p>Parameter name that caused the exception</p>
|
|
2314
|
-
* @public
|
|
2315
|
-
*/
|
|
2316
|
-
parameterName?: string | undefined;
|
|
2317
|
-
/**
|
|
2318
|
-
* @internal
|
|
2319
|
-
*/
|
|
2320
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
2321
|
-
}
|
|
2322
2042
|
/**
|
|
2323
2043
|
* <p>Ephemeris data in Orbit Ephemeris Message (OEM) format.</p> <p> AWS Ground Station processes OEM ephemerides according to the <a href="https://ccsds.org/wp-content/uploads/gravity_forms/5-448e85c647331d9cbaf66c096458bdd5/2025/01//502x0b3e1.pdf">CCSDS standard</a> with some extra restrictions. OEM files should be in KVN format. For more detail about the OEM format that AWS Ground Station supports, see <a href="https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format">OEM ephemeris format</a> in the AWS Ground Station user guide. </p>
|
|
2324
2044
|
* @public
|
|
@@ -2739,18 +2459,6 @@ export interface DeleteEphemerisRequest {
|
|
|
2739
2459
|
*/
|
|
2740
2460
|
ephemerisId: string | undefined;
|
|
2741
2461
|
}
|
|
2742
|
-
/**
|
|
2743
|
-
* <p>The specified resource is in use by non-terminal state contacts and cannot be modified or deleted.</p>
|
|
2744
|
-
* @public
|
|
2745
|
-
*/
|
|
2746
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
2747
|
-
readonly name: "ResourceInUseException";
|
|
2748
|
-
readonly $fault: "client";
|
|
2749
|
-
/**
|
|
2750
|
-
* @internal
|
|
2751
|
-
*/
|
|
2752
|
-
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
2753
|
-
}
|
|
2754
2462
|
/**
|
|
2755
2463
|
* <p/>
|
|
2756
2464
|
* @public
|
|
@@ -2772,54 +2480,6 @@ export interface DescribeEphemerisRequest {
|
|
|
2772
2480
|
*/
|
|
2773
2481
|
ephemerisId: string | undefined;
|
|
2774
2482
|
}
|
|
2775
|
-
/**
|
|
2776
|
-
* @public
|
|
2777
|
-
* @enum
|
|
2778
|
-
*/
|
|
2779
|
-
export declare const EphemerisErrorCode: {
|
|
2780
|
-
readonly AZ_EL_SEGMENTS_OUT_OF_ORDER: "AZ_EL_SEGMENTS_OUT_OF_ORDER";
|
|
2781
|
-
readonly AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME: "AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME";
|
|
2782
|
-
readonly AZ_EL_SEGMENT_END_TIME_INVALID: "AZ_EL_SEGMENT_END_TIME_INVALID";
|
|
2783
|
-
readonly AZ_EL_SEGMENT_END_TIME_TOO_LATE: "AZ_EL_SEGMENT_END_TIME_TOO_LATE";
|
|
2784
|
-
readonly AZ_EL_SEGMENT_LIST_MISSING: "AZ_EL_SEGMENT_LIST_MISSING";
|
|
2785
|
-
readonly AZ_EL_SEGMENT_REFERENCE_EPOCH_INVALID: "AZ_EL_SEGMENT_REFERENCE_EPOCH_INVALID";
|
|
2786
|
-
readonly AZ_EL_SEGMENT_START_TIME_INVALID: "AZ_EL_SEGMENT_START_TIME_INVALID";
|
|
2787
|
-
readonly AZ_EL_SEGMENT_TIMES_OVERLAP: "AZ_EL_SEGMENT_TIMES_OVERLAP";
|
|
2788
|
-
readonly AZ_EL_SEGMENT_VALID_TIME_RANGE_INVALID: "AZ_EL_SEGMENT_VALID_TIME_RANGE_INVALID";
|
|
2789
|
-
readonly AZ_EL_TOTAL_DURATION_EXCEEDED: "AZ_EL_TOTAL_DURATION_EXCEEDED";
|
|
2790
|
-
readonly CENTER_BODY_UNSUPPORTED: "CENTER_BODY_UNSUPPORTED";
|
|
2791
|
-
readonly CREATION_DATE_MISSING: "CREATION_DATE_MISSING";
|
|
2792
|
-
readonly END_TIME_IN_PAST: "END_TIME_IN_PAST";
|
|
2793
|
-
readonly EXPIRATION_TIME_TOO_EARLY: "EXPIRATION_TIME_TOO_EARLY";
|
|
2794
|
-
readonly FILE_FORMAT_INVALID: "FILE_FORMAT_INVALID";
|
|
2795
|
-
readonly INSUFFICIENT_KMS_PERMISSIONS: "INSUFFICIENT_KMS_PERMISSIONS";
|
|
2796
|
-
readonly INSUFFICIENT_TIME_AZ_EL: "INSUFFICIENT_TIME_AZ_EL";
|
|
2797
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
2798
|
-
readonly INTERPOLATION_DEGREE_INVALID: "INTERPOLATION_DEGREE_INVALID";
|
|
2799
|
-
readonly INTERPOLATION_MISSING: "INTERPOLATION_MISSING";
|
|
2800
|
-
readonly MEAN_MOTION_INVALID: "MEAN_MOTION_INVALID";
|
|
2801
|
-
readonly MISMATCHED_SATCAT_ID: "MISMATCHED_SATCAT_ID";
|
|
2802
|
-
readonly OBJECT_ID_MISSING: "OBJECT_ID_MISSING";
|
|
2803
|
-
readonly OBJECT_NAME_MISSING: "OBJECT_NAME_MISSING";
|
|
2804
|
-
readonly OEM_VERSION_UNSUPPORTED: "OEM_VERSION_UNSUPPORTED";
|
|
2805
|
-
readonly ORIGINATOR_MISSING: "ORIGINATOR_MISSING";
|
|
2806
|
-
readonly REF_FRAME_EPOCH_UNSUPPORTED: "REF_FRAME_EPOCH_UNSUPPORTED";
|
|
2807
|
-
readonly REF_FRAME_UNSUPPORTED: "REF_FRAME_UNSUPPORTED";
|
|
2808
|
-
readonly START_TIME_IN_FUTURE: "START_TIME_IN_FUTURE";
|
|
2809
|
-
readonly START_TIME_METADATA_TOO_EARLY: "START_TIME_METADATA_TOO_EARLY";
|
|
2810
|
-
readonly STOP_TIME_METADATA_TOO_LATE: "STOP_TIME_METADATA_TOO_LATE";
|
|
2811
|
-
readonly TIME_AZ_EL_ANGLE_UNITS_INVALID: "TIME_AZ_EL_ANGLE_UNITS_INVALID";
|
|
2812
|
-
readonly TIME_AZ_EL_AZ_DEGREE_RANGE_INVALID: "TIME_AZ_EL_AZ_DEGREE_RANGE_INVALID";
|
|
2813
|
-
readonly TIME_AZ_EL_AZ_RADIAN_RANGE_INVALID: "TIME_AZ_EL_AZ_RADIAN_RANGE_INVALID";
|
|
2814
|
-
readonly TIME_AZ_EL_EL_DEGREE_RANGE_INVALID: "TIME_AZ_EL_EL_DEGREE_RANGE_INVALID";
|
|
2815
|
-
readonly TIME_AZ_EL_EL_RADIAN_RANGE_INVALID: "TIME_AZ_EL_EL_RADIAN_RANGE_INVALID";
|
|
2816
|
-
readonly TIME_AZ_EL_ITEMS_OUT_OF_ORDER: "TIME_AZ_EL_ITEMS_OUT_OF_ORDER";
|
|
2817
|
-
readonly TIME_SYSTEM_UNSUPPORTED: "TIME_SYSTEM_UNSUPPORTED";
|
|
2818
|
-
};
|
|
2819
|
-
/**
|
|
2820
|
-
* @public
|
|
2821
|
-
*/
|
|
2822
|
-
export type EphemerisErrorCode = (typeof EphemerisErrorCode)[keyof typeof EphemerisErrorCode];
|
|
2823
2483
|
/**
|
|
2824
2484
|
* <p>Detailed error information for ephemeris validation failures.</p> <p>Provides an error code and descriptive message to help diagnose and resolve validation issues.</p>
|
|
2825
2485
|
* @public
|
|
@@ -2836,52 +2496,6 @@ export interface EphemerisErrorReason {
|
|
|
2836
2496
|
*/
|
|
2837
2497
|
errorMessage: string | undefined;
|
|
2838
2498
|
}
|
|
2839
|
-
/**
|
|
2840
|
-
* @public
|
|
2841
|
-
* @enum
|
|
2842
|
-
*/
|
|
2843
|
-
export declare const EphemerisInvalidReason: {
|
|
2844
|
-
/**
|
|
2845
|
-
* Provided KMS key is invalid
|
|
2846
|
-
*/
|
|
2847
|
-
readonly KMS_KEY_INVALID: "KMS_KEY_INVALID";
|
|
2848
|
-
/**
|
|
2849
|
-
* Provided spacecraft identifiers such as spacecraft NORAD Id are invalid
|
|
2850
|
-
*/
|
|
2851
|
-
readonly METADATA_INVALID: "METADATA_INVALID";
|
|
2852
|
-
/**
|
|
2853
|
-
* Start, end, or expiration time(s) are invalid for the provided ephemeris
|
|
2854
|
-
*/
|
|
2855
|
-
readonly TIME_RANGE_INVALID: "TIME_RANGE_INVALID";
|
|
2856
|
-
/**
|
|
2857
|
-
* Provided ephemeris defines invalid spacecraft trajectory
|
|
2858
|
-
*/
|
|
2859
|
-
readonly TRAJECTORY_INVALID: "TRAJECTORY_INVALID";
|
|
2860
|
-
/**
|
|
2861
|
-
* Internal Service Error occurred while processing ephemeris
|
|
2862
|
-
*/
|
|
2863
|
-
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
2864
|
-
};
|
|
2865
|
-
/**
|
|
2866
|
-
* @public
|
|
2867
|
-
*/
|
|
2868
|
-
export type EphemerisInvalidReason = (typeof EphemerisInvalidReason)[keyof typeof EphemerisInvalidReason];
|
|
2869
|
-
/**
|
|
2870
|
-
* @public
|
|
2871
|
-
* @enum
|
|
2872
|
-
*/
|
|
2873
|
-
export declare const EphemerisStatus: {
|
|
2874
|
-
readonly DISABLED: "DISABLED";
|
|
2875
|
-
readonly ENABLED: "ENABLED";
|
|
2876
|
-
readonly ERROR: "ERROR";
|
|
2877
|
-
readonly EXPIRED: "EXPIRED";
|
|
2878
|
-
readonly INVALID: "INVALID";
|
|
2879
|
-
readonly VALIDATING: "VALIDATING";
|
|
2880
|
-
};
|
|
2881
|
-
/**
|
|
2882
|
-
* @public
|
|
2883
|
-
*/
|
|
2884
|
-
export type EphemerisStatus = (typeof EphemerisStatus)[keyof typeof EphemerisStatus];
|
|
2885
2499
|
/**
|
|
2886
2500
|
* <p>Description of ephemeris.</p>
|
|
2887
2501
|
* @public
|
|
@@ -3143,18 +2757,6 @@ export interface UpdateEphemerisRequest {
|
|
|
3143
2757
|
*/
|
|
3144
2758
|
priority?: number | undefined;
|
|
3145
2759
|
}
|
|
3146
|
-
/**
|
|
3147
|
-
* @public
|
|
3148
|
-
* @enum
|
|
3149
|
-
*/
|
|
3150
|
-
export declare const EphemerisSource: {
|
|
3151
|
-
readonly CUSTOMER_PROVIDED: "CUSTOMER_PROVIDED";
|
|
3152
|
-
readonly SPACE_TRACK: "SPACE_TRACK";
|
|
3153
|
-
};
|
|
3154
|
-
/**
|
|
3155
|
-
* @public
|
|
3156
|
-
*/
|
|
3157
|
-
export type EphemerisSource = (typeof EphemerisSource)[keyof typeof EphemerisSource];
|
|
3158
2760
|
/**
|
|
3159
2761
|
* <p>Metadata describing a particular ephemeris.</p>
|
|
3160
2762
|
* @public
|
|
@@ -6,5 +6,7 @@ export { GroundStationExtensionConfiguration } from "./extensionConfiguration";
|
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./waiters";
|
|
9
|
-
export * from "./models";
|
|
9
|
+
export * from "./models/enums";
|
|
10
|
+
export * from "./models/errors";
|
|
11
|
+
export * from "./models/models_0";
|
|
10
12
|
export { GroundStationServiceException } from "./models/GroundStationServiceException";
|