@aws-sdk/client-groundstation 3.427.0 → 3.429.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-types/models/models_0.d.ts +30 -30
- package/dist-types/ts3.4/models/models_0.d.ts +30 -30
- package/package.json +32 -32
|
@@ -195,7 +195,7 @@ export interface AggregateStatus {
|
|
|
195
195
|
* @public
|
|
196
196
|
* <p>Aggregate status.</p>
|
|
197
197
|
*/
|
|
198
|
-
status: AgentStatus |
|
|
198
|
+
status: AgentStatus | undefined;
|
|
199
199
|
/**
|
|
200
200
|
* @public
|
|
201
201
|
* <p>Sparse map of failure signatures.</p>
|
|
@@ -221,7 +221,7 @@ export interface ComponentStatusData {
|
|
|
221
221
|
* @public
|
|
222
222
|
* <p>Component status.</p>
|
|
223
223
|
*/
|
|
224
|
-
status: AgentStatus |
|
|
224
|
+
status: AgentStatus | undefined;
|
|
225
225
|
/**
|
|
226
226
|
* @public
|
|
227
227
|
* <p>Bytes sent by the component.</p>
|
|
@@ -339,7 +339,7 @@ export interface FrequencyBandwidth {
|
|
|
339
339
|
* @public
|
|
340
340
|
* <p>Frequency bandwidth units.</p>
|
|
341
341
|
*/
|
|
342
|
-
units: BandwidthUnits |
|
|
342
|
+
units: BandwidthUnits | undefined;
|
|
343
343
|
}
|
|
344
344
|
/**
|
|
345
345
|
* @public
|
|
@@ -368,7 +368,7 @@ export interface Frequency {
|
|
|
368
368
|
* @public
|
|
369
369
|
* <p>Frequency units.</p>
|
|
370
370
|
*/
|
|
371
|
-
units: FrequencyUnits |
|
|
371
|
+
units: FrequencyUnits | undefined;
|
|
372
372
|
}
|
|
373
373
|
/**
|
|
374
374
|
* @public
|
|
@@ -413,7 +413,7 @@ export interface SpectrumConfig {
|
|
|
413
413
|
* @public
|
|
414
414
|
* <p>Polarization of a spectral <code>Config</code>. Capturing both <code>"RIGHT_HAND"</code> and <code>"LEFT_HAND"</code> polarization requires two separate configs.</p>
|
|
415
415
|
*/
|
|
416
|
-
polarization?: Polarization
|
|
416
|
+
polarization?: Polarization;
|
|
417
417
|
}
|
|
418
418
|
/**
|
|
419
419
|
* @public
|
|
@@ -484,7 +484,7 @@ export interface UplinkSpectrumConfig {
|
|
|
484
484
|
* @public
|
|
485
485
|
* <p>Polarization of an uplink spectral <code>Config</code>. Capturing both <code>"RIGHT_HAND"</code> and <code>"LEFT_HAND"</code> polarization requires two separate configs.</p>
|
|
486
486
|
*/
|
|
487
|
-
polarization?: Polarization
|
|
487
|
+
polarization?: Polarization;
|
|
488
488
|
}
|
|
489
489
|
/**
|
|
490
490
|
* @public
|
|
@@ -511,7 +511,7 @@ export interface Eirp {
|
|
|
511
511
|
* @public
|
|
512
512
|
* <p>Units of an EIRP.</p>
|
|
513
513
|
*/
|
|
514
|
-
units: EirpUnits |
|
|
514
|
+
units: EirpUnits | undefined;
|
|
515
515
|
}
|
|
516
516
|
/**
|
|
517
517
|
* @public
|
|
@@ -650,12 +650,12 @@ export interface AwsGroundStationAgentEndpoint {
|
|
|
650
650
|
* @public
|
|
651
651
|
* <p>The status of AgentEndpoint.</p>
|
|
652
652
|
*/
|
|
653
|
-
agentStatus?: AgentStatus
|
|
653
|
+
agentStatus?: AgentStatus;
|
|
654
654
|
/**
|
|
655
655
|
* @public
|
|
656
656
|
* <p>The results of the audit.</p>
|
|
657
657
|
*/
|
|
658
|
-
auditResults?: AuditResults
|
|
658
|
+
auditResults?: AuditResults;
|
|
659
659
|
}
|
|
660
660
|
/**
|
|
661
661
|
* @public
|
|
@@ -739,7 +739,7 @@ export interface ConfigIdResponse {
|
|
|
739
739
|
* @public
|
|
740
740
|
* <p>Type of a <code>Config</code>.</p>
|
|
741
741
|
*/
|
|
742
|
-
configType?: ConfigCapabilityType
|
|
742
|
+
configType?: ConfigCapabilityType;
|
|
743
743
|
/**
|
|
744
744
|
* @public
|
|
745
745
|
* <p>ARN of a <code>Config</code>.</p>
|
|
@@ -806,7 +806,7 @@ export interface TrackingConfig {
|
|
|
806
806
|
* @public
|
|
807
807
|
* <p>Current setting for autotrack.</p>
|
|
808
808
|
*/
|
|
809
|
-
autotrack: Criticality |
|
|
809
|
+
autotrack: Criticality | undefined;
|
|
810
810
|
}
|
|
811
811
|
/**
|
|
812
812
|
* @public
|
|
@@ -1013,7 +1013,7 @@ export interface DeleteConfigRequest {
|
|
|
1013
1013
|
* @public
|
|
1014
1014
|
* <p>Type of a <code>Config</code>.</p>
|
|
1015
1015
|
*/
|
|
1016
|
-
configType: ConfigCapabilityType |
|
|
1016
|
+
configType: ConfigCapabilityType | undefined;
|
|
1017
1017
|
}
|
|
1018
1018
|
/**
|
|
1019
1019
|
* @public
|
|
@@ -1029,7 +1029,7 @@ export interface GetConfigRequest {
|
|
|
1029
1029
|
* @public
|
|
1030
1030
|
* <p>Type of a <code>Config</code>.</p>
|
|
1031
1031
|
*/
|
|
1032
|
-
configType: ConfigCapabilityType |
|
|
1032
|
+
configType: ConfigCapabilityType | undefined;
|
|
1033
1033
|
}
|
|
1034
1034
|
/**
|
|
1035
1035
|
* @public
|
|
@@ -1056,7 +1056,7 @@ export interface GetConfigResponse {
|
|
|
1056
1056
|
* @public
|
|
1057
1057
|
* <p>Type of a <code>Config</code>.</p>
|
|
1058
1058
|
*/
|
|
1059
|
-
configType?: ConfigCapabilityType
|
|
1059
|
+
configType?: ConfigCapabilityType;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* @public
|
|
1062
1062
|
* <p>Data elements in a <code>Config</code>.</p>
|
|
@@ -1098,7 +1098,7 @@ export interface ConfigListItem {
|
|
|
1098
1098
|
* @public
|
|
1099
1099
|
* <p>Type of a <code>Config</code>.</p>
|
|
1100
1100
|
*/
|
|
1101
|
-
configType?: ConfigCapabilityType
|
|
1101
|
+
configType?: ConfigCapabilityType;
|
|
1102
1102
|
/**
|
|
1103
1103
|
* @public
|
|
1104
1104
|
* <p>ARN of a <code>Config</code>.</p>
|
|
@@ -1145,7 +1145,7 @@ export interface UpdateConfigRequest {
|
|
|
1145
1145
|
* @public
|
|
1146
1146
|
* <p>Type of a <code>Config</code>.</p>
|
|
1147
1147
|
*/
|
|
1148
|
-
configType: ConfigCapabilityType |
|
|
1148
|
+
configType: ConfigCapabilityType | undefined;
|
|
1149
1149
|
/**
|
|
1150
1150
|
* @public
|
|
1151
1151
|
* <p>Parameters of a <code>Config</code>.</p>
|
|
@@ -1186,7 +1186,7 @@ export interface DataflowEndpoint {
|
|
|
1186
1186
|
* @public
|
|
1187
1187
|
* <p>Status of a dataflow endpoint.</p>
|
|
1188
1188
|
*/
|
|
1189
|
-
status?: EndpointStatus
|
|
1189
|
+
status?: EndpointStatus;
|
|
1190
1190
|
/**
|
|
1191
1191
|
* @public
|
|
1192
1192
|
* <p>Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.</p>
|
|
@@ -1238,12 +1238,12 @@ export interface EndpointDetails {
|
|
|
1238
1238
|
* @public
|
|
1239
1239
|
* <p>A dataflow endpoint health status. This field is ignored when calling <code>CreateDataflowEndpointGroup</code>.</p>
|
|
1240
1240
|
*/
|
|
1241
|
-
healthStatus?: CapabilityHealth
|
|
1241
|
+
healthStatus?: CapabilityHealth;
|
|
1242
1242
|
/**
|
|
1243
1243
|
* @public
|
|
1244
1244
|
* <p>Health reasons for a dataflow endpoint. This field is ignored when calling <code>CreateDataflowEndpointGroup</code>.</p>
|
|
1245
1245
|
*/
|
|
1246
|
-
healthReasons?:
|
|
1246
|
+
healthReasons?: CapabilityHealthReason[];
|
|
1247
1247
|
}
|
|
1248
1248
|
/**
|
|
1249
1249
|
* @public
|
|
@@ -1360,7 +1360,7 @@ export interface Destination {
|
|
|
1360
1360
|
* @public
|
|
1361
1361
|
* <p>Type of a <code>Config</code>.</p>
|
|
1362
1362
|
*/
|
|
1363
|
-
configType?: ConfigCapabilityType
|
|
1363
|
+
configType?: ConfigCapabilityType;
|
|
1364
1364
|
/**
|
|
1365
1365
|
* @public
|
|
1366
1366
|
* <p>UUID of a <code>Config</code>.</p>
|
|
@@ -1386,7 +1386,7 @@ export interface Source {
|
|
|
1386
1386
|
* @public
|
|
1387
1387
|
* <p>Type of a <code>Config</code>.</p>
|
|
1388
1388
|
*/
|
|
1389
|
-
configType?: ConfigCapabilityType
|
|
1389
|
+
configType?: ConfigCapabilityType;
|
|
1390
1390
|
/**
|
|
1391
1391
|
* @public
|
|
1392
1392
|
* <p>UUID of a <code>Config</code>.</p>
|
|
@@ -1439,7 +1439,7 @@ export interface Elevation {
|
|
|
1439
1439
|
* @public
|
|
1440
1440
|
* <p>Elevation angle units.</p>
|
|
1441
1441
|
*/
|
|
1442
|
-
unit: AngleUnits |
|
|
1442
|
+
unit: AngleUnits | undefined;
|
|
1443
1443
|
}
|
|
1444
1444
|
/**
|
|
1445
1445
|
* @public
|
|
@@ -1490,7 +1490,7 @@ export interface DescribeContactResponse {
|
|
|
1490
1490
|
* @public
|
|
1491
1491
|
* <p>Status of a contact.</p>
|
|
1492
1492
|
*/
|
|
1493
|
-
contactStatus?: ContactStatus
|
|
1493
|
+
contactStatus?: ContactStatus;
|
|
1494
1494
|
/**
|
|
1495
1495
|
* @public
|
|
1496
1496
|
* <p>Error message for a contact.</p>
|
|
@@ -1536,7 +1536,7 @@ export interface ListContactsRequest {
|
|
|
1536
1536
|
* @public
|
|
1537
1537
|
* <p>Status of a contact reservation.</p>
|
|
1538
1538
|
*/
|
|
1539
|
-
statusList:
|
|
1539
|
+
statusList: ContactStatus[] | undefined;
|
|
1540
1540
|
/**
|
|
1541
1541
|
* @public
|
|
1542
1542
|
* <p>Start time of a contact in UTC.</p>
|
|
@@ -1612,7 +1612,7 @@ export interface ContactData {
|
|
|
1612
1612
|
* @public
|
|
1613
1613
|
* <p>Status of a contact.</p>
|
|
1614
1614
|
*/
|
|
1615
|
-
contactStatus?: ContactStatus
|
|
1615
|
+
contactStatus?: ContactStatus;
|
|
1616
1616
|
/**
|
|
1617
1617
|
* @public
|
|
1618
1618
|
* <p>Error message of a contact.</p>
|
|
@@ -2278,7 +2278,7 @@ export interface DescribeEphemerisResponse {
|
|
|
2278
2278
|
* @public
|
|
2279
2279
|
* <p>The status of the ephemeris.</p>
|
|
2280
2280
|
*/
|
|
2281
|
-
status?: EphemerisStatus
|
|
2281
|
+
status?: EphemerisStatus;
|
|
2282
2282
|
/**
|
|
2283
2283
|
* @public
|
|
2284
2284
|
* <p>Customer-provided priority score to establish the order in which overlapping ephemerides should be used.</p>
|
|
@@ -2315,7 +2315,7 @@ export interface DescribeEphemerisResponse {
|
|
|
2315
2315
|
* @public
|
|
2316
2316
|
* <p>Reason that an ephemeris failed validation. Only provided for ephemerides with <code>INVALID</code> status.</p>
|
|
2317
2317
|
*/
|
|
2318
|
-
invalidReason?: EphemerisInvalidReason
|
|
2318
|
+
invalidReason?: EphemerisInvalidReason;
|
|
2319
2319
|
}
|
|
2320
2320
|
/**
|
|
2321
2321
|
* @public
|
|
@@ -2331,7 +2331,7 @@ export interface EphemerisItem {
|
|
|
2331
2331
|
* @public
|
|
2332
2332
|
* <p>The status of the ephemeris.</p>
|
|
2333
2333
|
*/
|
|
2334
|
-
status?: EphemerisStatus
|
|
2334
|
+
status?: EphemerisStatus;
|
|
2335
2335
|
/**
|
|
2336
2336
|
* @public
|
|
2337
2337
|
* <p>Customer-provided priority score to establish the order in which overlapping ephemerides should be used.</p>
|
|
@@ -2383,7 +2383,7 @@ export interface ListEphemeridesRequest {
|
|
|
2383
2383
|
* @public
|
|
2384
2384
|
* <p>The list of ephemeris status to return.</p>
|
|
2385
2385
|
*/
|
|
2386
|
-
statusList?:
|
|
2386
|
+
statusList?: EphemerisStatus[];
|
|
2387
2387
|
/**
|
|
2388
2388
|
* @public
|
|
2389
2389
|
* <p>Maximum number of ephemerides to return.</p>
|
|
@@ -2458,7 +2458,7 @@ export interface EphemerisMetaData {
|
|
|
2458
2458
|
* @public
|
|
2459
2459
|
* <p>The <code>EphemerisSource</code> that generated a given ephemeris.</p>
|
|
2460
2460
|
*/
|
|
2461
|
-
source: EphemerisSource |
|
|
2461
|
+
source: EphemerisSource | undefined;
|
|
2462
2462
|
/**
|
|
2463
2463
|
* @public
|
|
2464
2464
|
* <p>UUID of a customer-provided ephemeris.</p>
|
|
@@ -62,13 +62,13 @@ export declare const AgentStatus: {
|
|
|
62
62
|
};
|
|
63
63
|
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
64
64
|
export interface AggregateStatus {
|
|
65
|
-
status: AgentStatus |
|
|
65
|
+
status: AgentStatus | undefined;
|
|
66
66
|
signatureMap?: Record<string, boolean>;
|
|
67
67
|
}
|
|
68
68
|
export interface ComponentStatusData {
|
|
69
69
|
componentType: string | undefined;
|
|
70
70
|
capabilityArn: string | undefined;
|
|
71
|
-
status: AgentStatus |
|
|
71
|
+
status: AgentStatus | undefined;
|
|
72
72
|
bytesSent?: number;
|
|
73
73
|
bytesReceived?: number;
|
|
74
74
|
packetsDropped?: number;
|
|
@@ -100,7 +100,7 @@ export type BandwidthUnits =
|
|
|
100
100
|
(typeof BandwidthUnits)[keyof typeof BandwidthUnits];
|
|
101
101
|
export interface FrequencyBandwidth {
|
|
102
102
|
value: number | undefined;
|
|
103
|
-
units: BandwidthUnits |
|
|
103
|
+
units: BandwidthUnits | undefined;
|
|
104
104
|
}
|
|
105
105
|
export declare const FrequencyUnits: {
|
|
106
106
|
readonly GHZ: "GHz";
|
|
@@ -111,7 +111,7 @@ export type FrequencyUnits =
|
|
|
111
111
|
(typeof FrequencyUnits)[keyof typeof FrequencyUnits];
|
|
112
112
|
export interface Frequency {
|
|
113
113
|
value: number | undefined;
|
|
114
|
-
units: FrequencyUnits |
|
|
114
|
+
units: FrequencyUnits | undefined;
|
|
115
115
|
}
|
|
116
116
|
export declare const Polarization: {
|
|
117
117
|
readonly LEFT_HAND: "LEFT_HAND";
|
|
@@ -122,7 +122,7 @@ export type Polarization = (typeof Polarization)[keyof typeof Polarization];
|
|
|
122
122
|
export interface SpectrumConfig {
|
|
123
123
|
centerFrequency: Frequency | undefined;
|
|
124
124
|
bandwidth: FrequencyBandwidth | undefined;
|
|
125
|
-
polarization?: Polarization
|
|
125
|
+
polarization?: Polarization;
|
|
126
126
|
}
|
|
127
127
|
export interface AntennaDownlinkConfig {
|
|
128
128
|
spectrumConfig: SpectrumConfig | undefined;
|
|
@@ -140,7 +140,7 @@ export interface AntennaDownlinkDemodDecodeConfig {
|
|
|
140
140
|
}
|
|
141
141
|
export interface UplinkSpectrumConfig {
|
|
142
142
|
centerFrequency: Frequency | undefined;
|
|
143
|
-
polarization?: Polarization
|
|
143
|
+
polarization?: Polarization;
|
|
144
144
|
}
|
|
145
145
|
export declare const EirpUnits: {
|
|
146
146
|
readonly DBW: "dBW";
|
|
@@ -148,7 +148,7 @@ export declare const EirpUnits: {
|
|
|
148
148
|
export type EirpUnits = (typeof EirpUnits)[keyof typeof EirpUnits];
|
|
149
149
|
export interface Eirp {
|
|
150
150
|
value: number | undefined;
|
|
151
|
-
units: EirpUnits |
|
|
151
|
+
units: EirpUnits | undefined;
|
|
152
152
|
}
|
|
153
153
|
export interface AntennaUplinkConfig {
|
|
154
154
|
transmitDisabled?: boolean;
|
|
@@ -184,8 +184,8 @@ export interface AwsGroundStationAgentEndpoint {
|
|
|
184
184
|
name: string | undefined;
|
|
185
185
|
egressAddress: ConnectionDetails | undefined;
|
|
186
186
|
ingressAddress: RangedConnectionDetails | undefined;
|
|
187
|
-
agentStatus?: AgentStatus
|
|
188
|
-
auditResults?: AuditResults
|
|
187
|
+
agentStatus?: AgentStatus;
|
|
188
|
+
auditResults?: AuditResults;
|
|
189
189
|
}
|
|
190
190
|
export interface CancelContactRequest {
|
|
191
191
|
contactId: string | undefined;
|
|
@@ -223,7 +223,7 @@ export type ConfigCapabilityType =
|
|
|
223
223
|
(typeof ConfigCapabilityType)[keyof typeof ConfigCapabilityType];
|
|
224
224
|
export interface ConfigIdResponse {
|
|
225
225
|
configId?: string;
|
|
226
|
-
configType?: ConfigCapabilityType
|
|
226
|
+
configType?: ConfigCapabilityType;
|
|
227
227
|
configArn?: string;
|
|
228
228
|
}
|
|
229
229
|
export interface DataflowEndpointConfig {
|
|
@@ -242,7 +242,7 @@ export declare const Criticality: {
|
|
|
242
242
|
};
|
|
243
243
|
export type Criticality = (typeof Criticality)[keyof typeof Criticality];
|
|
244
244
|
export interface TrackingConfig {
|
|
245
|
-
autotrack: Criticality |
|
|
245
|
+
autotrack: Criticality | undefined;
|
|
246
246
|
}
|
|
247
247
|
export interface UplinkEchoConfig {
|
|
248
248
|
enabled: boolean | undefined;
|
|
@@ -367,17 +367,17 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
367
367
|
}
|
|
368
368
|
export interface DeleteConfigRequest {
|
|
369
369
|
configId: string | undefined;
|
|
370
|
-
configType: ConfigCapabilityType |
|
|
370
|
+
configType: ConfigCapabilityType | undefined;
|
|
371
371
|
}
|
|
372
372
|
export interface GetConfigRequest {
|
|
373
373
|
configId: string | undefined;
|
|
374
|
-
configType: ConfigCapabilityType |
|
|
374
|
+
configType: ConfigCapabilityType | undefined;
|
|
375
375
|
}
|
|
376
376
|
export interface GetConfigResponse {
|
|
377
377
|
configId: string | undefined;
|
|
378
378
|
configArn: string | undefined;
|
|
379
379
|
name: string | undefined;
|
|
380
|
-
configType?: ConfigCapabilityType
|
|
380
|
+
configType?: ConfigCapabilityType;
|
|
381
381
|
configData: ConfigTypeData | undefined;
|
|
382
382
|
tags?: Record<string, string>;
|
|
383
383
|
}
|
|
@@ -387,7 +387,7 @@ export interface ListConfigsRequest {
|
|
|
387
387
|
}
|
|
388
388
|
export interface ConfigListItem {
|
|
389
389
|
configId?: string;
|
|
390
|
-
configType?: ConfigCapabilityType
|
|
390
|
+
configType?: ConfigCapabilityType;
|
|
391
391
|
configArn?: string;
|
|
392
392
|
name?: string;
|
|
393
393
|
}
|
|
@@ -398,7 +398,7 @@ export interface ListConfigsResponse {
|
|
|
398
398
|
export interface UpdateConfigRequest {
|
|
399
399
|
configId: string | undefined;
|
|
400
400
|
name: string | undefined;
|
|
401
|
-
configType: ConfigCapabilityType |
|
|
401
|
+
configType: ConfigCapabilityType | undefined;
|
|
402
402
|
configData: ConfigTypeData | undefined;
|
|
403
403
|
}
|
|
404
404
|
export declare const EndpointStatus: {
|
|
@@ -413,7 +413,7 @@ export type EndpointStatus =
|
|
|
413
413
|
export interface DataflowEndpoint {
|
|
414
414
|
name?: string;
|
|
415
415
|
address?: SocketAddress;
|
|
416
|
-
status?: EndpointStatus
|
|
416
|
+
status?: EndpointStatus;
|
|
417
417
|
mtu?: number;
|
|
418
418
|
}
|
|
419
419
|
export interface SecurityDetails {
|
|
@@ -425,8 +425,8 @@ export interface EndpointDetails {
|
|
|
425
425
|
securityDetails?: SecurityDetails;
|
|
426
426
|
endpoint?: DataflowEndpoint;
|
|
427
427
|
awsGroundStationAgentEndpoint?: AwsGroundStationAgentEndpoint;
|
|
428
|
-
healthStatus?: CapabilityHealth
|
|
429
|
-
healthReasons?:
|
|
428
|
+
healthStatus?: CapabilityHealth;
|
|
429
|
+
healthReasons?: CapabilityHealthReason[];
|
|
430
430
|
}
|
|
431
431
|
export interface S3RecordingDetails {
|
|
432
432
|
bucketArn?: string;
|
|
@@ -490,13 +490,13 @@ export declare const ContactStatus: {
|
|
|
490
490
|
};
|
|
491
491
|
export type ContactStatus = (typeof ContactStatus)[keyof typeof ContactStatus];
|
|
492
492
|
export interface Destination {
|
|
493
|
-
configType?: ConfigCapabilityType
|
|
493
|
+
configType?: ConfigCapabilityType;
|
|
494
494
|
configId?: string;
|
|
495
495
|
configDetails?: ConfigDetails;
|
|
496
496
|
dataflowDestinationRegion?: string;
|
|
497
497
|
}
|
|
498
498
|
export interface Source {
|
|
499
|
-
configType?: ConfigCapabilityType
|
|
499
|
+
configType?: ConfigCapabilityType;
|
|
500
500
|
configId?: string;
|
|
501
501
|
configDetails?: ConfigDetails;
|
|
502
502
|
dataflowSourceRegion?: string;
|
|
@@ -508,7 +508,7 @@ export interface DataflowDetail {
|
|
|
508
508
|
}
|
|
509
509
|
export interface Elevation {
|
|
510
510
|
value: number | undefined;
|
|
511
|
-
unit: AngleUnits |
|
|
511
|
+
unit: AngleUnits | undefined;
|
|
512
512
|
}
|
|
513
513
|
export interface DescribeContactResponse {
|
|
514
514
|
contactId?: string;
|
|
@@ -519,7 +519,7 @@ export interface DescribeContactResponse {
|
|
|
519
519
|
prePassStartTime?: Date;
|
|
520
520
|
postPassEndTime?: Date;
|
|
521
521
|
groundStation?: string;
|
|
522
|
-
contactStatus?: ContactStatus
|
|
522
|
+
contactStatus?: ContactStatus;
|
|
523
523
|
errorMessage?: string;
|
|
524
524
|
maximumElevation?: Elevation;
|
|
525
525
|
tags?: Record<string, string>;
|
|
@@ -529,7 +529,7 @@ export interface DescribeContactResponse {
|
|
|
529
529
|
export interface ListContactsRequest {
|
|
530
530
|
maxResults?: number;
|
|
531
531
|
nextToken?: string;
|
|
532
|
-
statusList:
|
|
532
|
+
statusList: ContactStatus[] | undefined;
|
|
533
533
|
startTime: Date | undefined;
|
|
534
534
|
endTime: Date | undefined;
|
|
535
535
|
groundStation?: string;
|
|
@@ -545,7 +545,7 @@ export interface ContactData {
|
|
|
545
545
|
prePassStartTime?: Date;
|
|
546
546
|
postPassEndTime?: Date;
|
|
547
547
|
groundStation?: string;
|
|
548
|
-
contactStatus?: ContactStatus
|
|
548
|
+
contactStatus?: ContactStatus;
|
|
549
549
|
errorMessage?: string;
|
|
550
550
|
maximumElevation?: Elevation;
|
|
551
551
|
region?: string;
|
|
@@ -763,18 +763,18 @@ export declare namespace EphemerisTypeDescription {
|
|
|
763
763
|
export interface DescribeEphemerisResponse {
|
|
764
764
|
ephemerisId?: string;
|
|
765
765
|
satelliteId?: string;
|
|
766
|
-
status?: EphemerisStatus
|
|
766
|
+
status?: EphemerisStatus;
|
|
767
767
|
priority?: number;
|
|
768
768
|
creationTime?: Date;
|
|
769
769
|
enabled?: boolean;
|
|
770
770
|
name?: string;
|
|
771
771
|
tags?: Record<string, string>;
|
|
772
772
|
suppliedData?: EphemerisTypeDescription;
|
|
773
|
-
invalidReason?: EphemerisInvalidReason
|
|
773
|
+
invalidReason?: EphemerisInvalidReason;
|
|
774
774
|
}
|
|
775
775
|
export interface EphemerisItem {
|
|
776
776
|
ephemerisId?: string;
|
|
777
|
-
status?: EphemerisStatus
|
|
777
|
+
status?: EphemerisStatus;
|
|
778
778
|
priority?: number;
|
|
779
779
|
enabled?: boolean;
|
|
780
780
|
creationTime?: Date;
|
|
@@ -785,7 +785,7 @@ export interface ListEphemeridesRequest {
|
|
|
785
785
|
satelliteId: string | undefined;
|
|
786
786
|
startTime: Date | undefined;
|
|
787
787
|
endTime: Date | undefined;
|
|
788
|
-
statusList?:
|
|
788
|
+
statusList?: EphemerisStatus[];
|
|
789
789
|
maxResults?: number;
|
|
790
790
|
nextToken?: string;
|
|
791
791
|
}
|
|
@@ -806,7 +806,7 @@ export declare const EphemerisSource: {
|
|
|
806
806
|
export type EphemerisSource =
|
|
807
807
|
(typeof EphemerisSource)[keyof typeof EphemerisSource];
|
|
808
808
|
export interface EphemerisMetaData {
|
|
809
|
-
source: EphemerisSource |
|
|
809
|
+
source: EphemerisSource | undefined;
|
|
810
810
|
ephemerisId?: string;
|
|
811
811
|
epoch?: Date;
|
|
812
812
|
name?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-groundstation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
|
-
"@smithy/util-waiter": "^2.0.
|
|
58
|
+
"@smithy/util-waiter": "^2.0.11",
|
|
59
59
|
"tslib": "^2.5.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|