@aws-sdk/client-groundstation 3.1030.0 → 3.1032.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/README.md +35 -0
- package/dist-cjs/index.js +158 -2
- package/dist-cjs/schemas/schemas_0.js +174 -13
- package/dist-es/GroundStation.js +18 -0
- package/dist-es/commands/DescribeContactVersionCommand.js +16 -0
- package/dist-es/commands/ListAntennasCommand.js +16 -0
- package/dist-es/commands/ListContactVersionsCommand.js +16 -0
- package/dist-es/commands/ListGroundStationReservationsCommand.js +16 -0
- package/dist-es/commands/UpdateContactCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +28 -0
- package/dist-es/pagination/ListAntennasPaginator.js +4 -0
- package/dist-es/pagination/ListContactVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListGroundStationReservationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +169 -9
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForContactUpdated.js +40 -0
- package/dist-types/GroundStation.d.ts +62 -0
- package/dist-types/GroundStationClient.d.ts +7 -2
- package/dist-types/commands/CancelContactCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +18 -0
- package/dist-types/commands/DescribeContactVersionCommand.d.ts +331 -0
- package/dist-types/commands/ListAntennasCommand.d.ts +89 -0
- package/dist-types/commands/ListContactVersionsCommand.d.ts +99 -0
- package/dist-types/commands/ListContactsCommand.d.ts +12 -0
- package/dist-types/commands/ListGroundStationReservationsCommand.d.ts +104 -0
- package/dist-types/commands/ReserveContactCommand.d.ts +7 -0
- package/dist-types/commands/UpdateContactCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +77 -5
- package/dist-types/models/errors.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +572 -64
- package/dist-types/pagination/ListAntennasPaginator.d.ts +7 -0
- package/dist-types/pagination/ListContactVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGroundStationReservationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/GroundStation.d.ts +115 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/DescribeContactVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAntennasCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListContactVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGroundStationReservationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +35 -0
- package/dist-types/ts3.4/models/models_0.d.ts +154 -1
- package/dist-types/ts3.4/pagination/ListAntennasPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListContactVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGroundStationReservationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForContactUpdated.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForContactUpdated.d.ts +14 -0
- package/package.json +34 -34
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GroundStationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GroundStationClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateContactRequest,
|
|
10
|
+
UpdateContactResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateContactCommandInput extends UpdateContactRequest {}
|
|
15
|
+
export interface UpdateContactCommandOutput
|
|
16
|
+
extends UpdateContactResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateContactCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateContactCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateContactCommandInput,
|
|
23
|
+
UpdateContactCommandOutput,
|
|
24
|
+
GroundStationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: UpdateContactCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateContactCommandInput,
|
|
32
|
+
UpdateContactCommandOutput,
|
|
33
|
+
GroundStationClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateContactCommand extends UpdateContactCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateContactRequest;
|
|
43
|
+
output: UpdateContactResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateContactCommandInput;
|
|
47
|
+
output: UpdateContactCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -9,6 +9,7 @@ export * from "./DeleteDataflowEndpointGroupCommand";
|
|
|
9
9
|
export * from "./DeleteEphemerisCommand";
|
|
10
10
|
export * from "./DeleteMissionProfileCommand";
|
|
11
11
|
export * from "./DescribeContactCommand";
|
|
12
|
+
export * from "./DescribeContactVersionCommand";
|
|
12
13
|
export * from "./DescribeEphemerisCommand";
|
|
13
14
|
export * from "./GetAgentConfigurationCommand";
|
|
14
15
|
export * from "./GetAgentTaskResponseUrlCommand";
|
|
@@ -17,10 +18,13 @@ export * from "./GetDataflowEndpointGroupCommand";
|
|
|
17
18
|
export * from "./GetMinuteUsageCommand";
|
|
18
19
|
export * from "./GetMissionProfileCommand";
|
|
19
20
|
export * from "./GetSatelliteCommand";
|
|
21
|
+
export * from "./ListAntennasCommand";
|
|
20
22
|
export * from "./ListConfigsCommand";
|
|
23
|
+
export * from "./ListContactVersionsCommand";
|
|
21
24
|
export * from "./ListContactsCommand";
|
|
22
25
|
export * from "./ListDataflowEndpointGroupsCommand";
|
|
23
26
|
export * from "./ListEphemeridesCommand";
|
|
27
|
+
export * from "./ListGroundStationReservationsCommand";
|
|
24
28
|
export * from "./ListGroundStationsCommand";
|
|
25
29
|
export * from "./ListMissionProfilesCommand";
|
|
26
30
|
export * from "./ListSatellitesCommand";
|
|
@@ -31,5 +35,6 @@ export * from "./TagResourceCommand";
|
|
|
31
35
|
export * from "./UntagResourceCommand";
|
|
32
36
|
export * from "./UpdateAgentStatusCommand";
|
|
33
37
|
export * from "./UpdateConfigCommand";
|
|
38
|
+
export * from "./UpdateContactCommand";
|
|
34
39
|
export * from "./UpdateEphemerisCommand";
|
|
35
40
|
export * from "./UpdateMissionProfileCommand";
|
|
@@ -111,6 +111,29 @@ export declare const EphemerisType: {
|
|
|
111
111
|
readonly TLE: "TLE";
|
|
112
112
|
};
|
|
113
113
|
export type EphemerisType = (typeof EphemerisType)[keyof typeof EphemerisType];
|
|
114
|
+
export declare const VersionFailureReasonCode: {
|
|
115
|
+
readonly AZEL_EPHEMERIS_INVALID_STATUS: "AZEL_EPHEMERIS_INVALID_STATUS";
|
|
116
|
+
readonly AZEL_EPHEMERIS_NOT_FOUND: "AZEL_EPHEMERIS_NOT_FOUND";
|
|
117
|
+
readonly AZEL_EPHEMERIS_TIME_RANGE_INVALID: "AZEL_EPHEMERIS_TIME_RANGE_INVALID";
|
|
118
|
+
readonly AZEL_EPHEMERIS_WRONG_GROUND_STATION: "AZEL_EPHEMERIS_WRONG_GROUND_STATION";
|
|
119
|
+
readonly EPHEMERIS_NOT_ENABLED: "EPHEMERIS_NOT_ENABLED";
|
|
120
|
+
readonly EPHEMERIS_NOT_FOUND: "EPHEMERIS_NOT_FOUND";
|
|
121
|
+
readonly EPHEMERIS_TIME_RANGE_INVALID: "EPHEMERIS_TIME_RANGE_INVALID";
|
|
122
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
123
|
+
readonly INVALID_SATELLITE_ARN: "INVALID_SATELLITE_ARN";
|
|
124
|
+
readonly INVALID_UPDATE_CONTACT_REQUEST: "INVALID_UPDATE_CONTACT_REQUEST";
|
|
125
|
+
readonly NOT_ONBOARDED_TO_AZEL_EPHEMERIS: "NOT_ONBOARDED_TO_AZEL_EPHEMERIS";
|
|
126
|
+
readonly SATELLITE_DOES_NOT_MATCH_EPHEMERIS: "SATELLITE_DOES_NOT_MATCH_EPHEMERIS";
|
|
127
|
+
};
|
|
128
|
+
export type VersionFailureReasonCode =
|
|
129
|
+
(typeof VersionFailureReasonCode)[keyof typeof VersionFailureReasonCode];
|
|
130
|
+
export declare const VersionStatus: {
|
|
131
|
+
readonly ACTIVE: "ACTIVE";
|
|
132
|
+
readonly FAILED_TO_UPDATE: "FAILED_TO_UPDATE";
|
|
133
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
134
|
+
readonly UPDATING: "UPDATING";
|
|
135
|
+
};
|
|
136
|
+
export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
|
|
114
137
|
export declare const EphemerisErrorCode: {
|
|
115
138
|
readonly AZ_EL_SEGMENTS_OUT_OF_ORDER: "AZ_EL_SEGMENTS_OUT_OF_ORDER";
|
|
116
139
|
readonly AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME: "AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME";
|
|
@@ -178,3 +201,15 @@ export declare const EphemerisSource: {
|
|
|
178
201
|
};
|
|
179
202
|
export type EphemerisSource =
|
|
180
203
|
(typeof EphemerisSource)[keyof typeof EphemerisSource];
|
|
204
|
+
export declare const ReservationType: {
|
|
205
|
+
readonly CONTACT: "CONTACT";
|
|
206
|
+
readonly MAINTENANCE: "MAINTENANCE";
|
|
207
|
+
};
|
|
208
|
+
export type ReservationType =
|
|
209
|
+
(typeof ReservationType)[keyof typeof ReservationType];
|
|
210
|
+
export declare const MaintenanceType: {
|
|
211
|
+
readonly PLANNED: "PLANNED";
|
|
212
|
+
readonly UNPLANNED: "UNPLANNED";
|
|
213
|
+
};
|
|
214
|
+
export type MaintenanceType =
|
|
215
|
+
(typeof MaintenanceType)[keyof typeof MaintenanceType];
|
|
@@ -16,8 +16,12 @@ import {
|
|
|
16
16
|
EphemerisStatus,
|
|
17
17
|
EphemerisType,
|
|
18
18
|
FrequencyUnits,
|
|
19
|
+
MaintenanceType,
|
|
19
20
|
Polarization,
|
|
21
|
+
ReservationType,
|
|
20
22
|
TelemetrySinkType,
|
|
23
|
+
VersionFailureReasonCode,
|
|
24
|
+
VersionStatus,
|
|
21
25
|
} from "./enums";
|
|
22
26
|
export interface GetAgentConfigurationRequest {
|
|
23
27
|
agentId: string | undefined;
|
|
@@ -103,6 +107,11 @@ export interface AntennaDownlinkDemodDecodeConfig {
|
|
|
103
107
|
demodulationConfig: DemodulationConfig | undefined;
|
|
104
108
|
decodeConfig: DecodeConfig | undefined;
|
|
105
109
|
}
|
|
110
|
+
export interface AntennaListItem {
|
|
111
|
+
groundStationName: string | undefined;
|
|
112
|
+
antennaName: string | undefined;
|
|
113
|
+
region: string | undefined;
|
|
114
|
+
}
|
|
106
115
|
export interface UplinkSpectrumConfig {
|
|
107
116
|
centerFrequency: Frequency | undefined;
|
|
108
117
|
polarization?: Polarization | undefined;
|
|
@@ -207,6 +216,7 @@ export interface CancelContactRequest {
|
|
|
207
216
|
}
|
|
208
217
|
export interface ContactIdResponse {
|
|
209
218
|
contactId?: string | undefined;
|
|
219
|
+
versionId?: number | undefined;
|
|
210
220
|
}
|
|
211
221
|
export interface ConfigIdResponse {
|
|
212
222
|
configId?: string | undefined;
|
|
@@ -566,25 +576,61 @@ export interface Elevation {
|
|
|
566
576
|
value: number | undefined;
|
|
567
577
|
unit: AngleUnits | undefined;
|
|
568
578
|
}
|
|
579
|
+
export interface OemProgramTrackSettings {
|
|
580
|
+
ephemerisId: string | undefined;
|
|
581
|
+
}
|
|
582
|
+
export interface TleProgramTrackSettings {
|
|
583
|
+
ephemerisId: string | undefined;
|
|
584
|
+
}
|
|
569
585
|
export type ProgramTrackSettings =
|
|
570
586
|
| ProgramTrackSettings.AzElMember
|
|
587
|
+
| ProgramTrackSettings.OemMember
|
|
588
|
+
| ProgramTrackSettings.TleMember
|
|
571
589
|
| ProgramTrackSettings.$UnknownMember;
|
|
572
590
|
export declare namespace ProgramTrackSettings {
|
|
573
591
|
interface AzElMember {
|
|
574
592
|
azEl: AzElProgramTrackSettings;
|
|
593
|
+
oem?: never;
|
|
594
|
+
tle?: never;
|
|
595
|
+
$unknown?: never;
|
|
596
|
+
}
|
|
597
|
+
interface OemMember {
|
|
598
|
+
azEl?: never;
|
|
599
|
+
oem: OemProgramTrackSettings;
|
|
600
|
+
tle?: never;
|
|
601
|
+
$unknown?: never;
|
|
602
|
+
}
|
|
603
|
+
interface TleMember {
|
|
604
|
+
azEl?: never;
|
|
605
|
+
oem?: never;
|
|
606
|
+
tle: TleProgramTrackSettings;
|
|
575
607
|
$unknown?: never;
|
|
576
608
|
}
|
|
577
609
|
interface $UnknownMember {
|
|
578
610
|
azEl?: never;
|
|
611
|
+
oem?: never;
|
|
612
|
+
tle?: never;
|
|
579
613
|
$unknown: [string, any];
|
|
580
614
|
}
|
|
581
615
|
interface Visitor<T> {
|
|
582
616
|
azEl: (value: AzElProgramTrackSettings) => T;
|
|
617
|
+
oem: (value: OemProgramTrackSettings) => T;
|
|
618
|
+
tle: (value: TleProgramTrackSettings) => T;
|
|
583
619
|
_: (name: string, value: any) => T;
|
|
584
620
|
}
|
|
585
621
|
}
|
|
586
622
|
export interface TrackingOverrides {
|
|
587
|
-
programTrackSettings
|
|
623
|
+
programTrackSettings?: ProgramTrackSettings | undefined;
|
|
624
|
+
}
|
|
625
|
+
export interface ContactVersion {
|
|
626
|
+
versionId?: number | undefined;
|
|
627
|
+
created?: Date | undefined;
|
|
628
|
+
activated?: Date | undefined;
|
|
629
|
+
superseded?: Date | undefined;
|
|
630
|
+
lastUpdated?: Date | undefined;
|
|
631
|
+
status?: VersionStatus | undefined;
|
|
632
|
+
failureCodes?: VersionFailureReasonCode[] | undefined;
|
|
633
|
+
failureMessage?: string | undefined;
|
|
588
634
|
}
|
|
589
635
|
export interface DescribeContactResponse {
|
|
590
636
|
contactId?: string | undefined;
|
|
@@ -605,6 +651,32 @@ export interface DescribeContactResponse {
|
|
|
605
651
|
visibilityEndTime?: Date | undefined;
|
|
606
652
|
trackingOverrides?: TrackingOverrides | undefined;
|
|
607
653
|
ephemeris?: EphemerisResponseData | undefined;
|
|
654
|
+
version?: ContactVersion | undefined;
|
|
655
|
+
}
|
|
656
|
+
export interface DescribeContactVersionRequest {
|
|
657
|
+
contactId: string | undefined;
|
|
658
|
+
versionId: number | undefined;
|
|
659
|
+
}
|
|
660
|
+
export interface DescribeContactVersionResponse {
|
|
661
|
+
contactId?: string | undefined;
|
|
662
|
+
missionProfileArn?: string | undefined;
|
|
663
|
+
satelliteArn?: string | undefined;
|
|
664
|
+
startTime?: Date | undefined;
|
|
665
|
+
endTime?: Date | undefined;
|
|
666
|
+
prePassStartTime?: Date | undefined;
|
|
667
|
+
postPassEndTime?: Date | undefined;
|
|
668
|
+
groundStation?: string | undefined;
|
|
669
|
+
contactStatus?: ContactStatus | undefined;
|
|
670
|
+
errorMessage?: string | undefined;
|
|
671
|
+
maximumElevation?: Elevation | undefined;
|
|
672
|
+
tags?: Record<string, string> | undefined;
|
|
673
|
+
region?: string | undefined;
|
|
674
|
+
dataflowList?: DataflowDetail[] | undefined;
|
|
675
|
+
visibilityStartTime?: Date | undefined;
|
|
676
|
+
visibilityEndTime?: Date | undefined;
|
|
677
|
+
trackingOverrides?: TrackingOverrides | undefined;
|
|
678
|
+
ephemeris?: EphemerisResponseData | undefined;
|
|
679
|
+
version?: ContactVersion | undefined;
|
|
608
680
|
}
|
|
609
681
|
export type EphemerisFilter =
|
|
610
682
|
| EphemerisFilter.AzElMember
|
|
@@ -651,11 +723,21 @@ export interface ContactData {
|
|
|
651
723
|
visibilityStartTime?: Date | undefined;
|
|
652
724
|
visibilityEndTime?: Date | undefined;
|
|
653
725
|
ephemeris?: EphemerisResponseData | undefined;
|
|
726
|
+
version?: ContactVersion | undefined;
|
|
654
727
|
}
|
|
655
728
|
export interface ListContactsResponse {
|
|
656
729
|
nextToken?: string | undefined;
|
|
657
730
|
contactList?: ContactData[] | undefined;
|
|
658
731
|
}
|
|
732
|
+
export interface ListContactVersionsRequest {
|
|
733
|
+
contactId: string | undefined;
|
|
734
|
+
maxResults?: number | undefined;
|
|
735
|
+
nextToken?: string | undefined;
|
|
736
|
+
}
|
|
737
|
+
export interface ListContactVersionsResponse {
|
|
738
|
+
nextToken?: string | undefined;
|
|
739
|
+
contactVersionsList?: ContactVersion[] | undefined;
|
|
740
|
+
}
|
|
659
741
|
export interface ReserveContactRequest {
|
|
660
742
|
missionProfileArn: string | undefined;
|
|
661
743
|
satelliteArn?: string | undefined;
|
|
@@ -665,6 +747,19 @@ export interface ReserveContactRequest {
|
|
|
665
747
|
tags?: Record<string, string> | undefined;
|
|
666
748
|
trackingOverrides?: TrackingOverrides | undefined;
|
|
667
749
|
}
|
|
750
|
+
export interface UpdateContactRequest {
|
|
751
|
+
contactId: string | undefined;
|
|
752
|
+
clientToken?: string | undefined;
|
|
753
|
+
trackingOverrides?: TrackingOverrides | undefined;
|
|
754
|
+
satelliteArn?: string | undefined;
|
|
755
|
+
}
|
|
756
|
+
export interface UpdateContactResponse {
|
|
757
|
+
contactId?: string | undefined;
|
|
758
|
+
versionId?: number | undefined;
|
|
759
|
+
}
|
|
760
|
+
export interface ContactReservationDetails {
|
|
761
|
+
contactId?: string | undefined;
|
|
762
|
+
}
|
|
668
763
|
export interface CreateDataflowEndpointGroupRequest {
|
|
669
764
|
endpointDetails: EndpointDetails[] | undefined;
|
|
670
765
|
tags?: Record<string, string> | undefined;
|
|
@@ -1016,6 +1111,64 @@ export interface GetSatelliteResponse {
|
|
|
1016
1111
|
groundStations?: string[] | undefined;
|
|
1017
1112
|
currentEphemeris?: EphemerisMetaData | undefined;
|
|
1018
1113
|
}
|
|
1114
|
+
export interface ListAntennasRequest {
|
|
1115
|
+
groundStationId: string | undefined;
|
|
1116
|
+
maxResults?: number | undefined;
|
|
1117
|
+
nextToken?: string | undefined;
|
|
1118
|
+
}
|
|
1119
|
+
export interface ListAntennasResponse {
|
|
1120
|
+
antennaList: AntennaListItem[] | undefined;
|
|
1121
|
+
nextToken?: string | undefined;
|
|
1122
|
+
}
|
|
1123
|
+
export interface ListGroundStationReservationsRequest {
|
|
1124
|
+
groundStationId: string | undefined;
|
|
1125
|
+
startTime: Date | undefined;
|
|
1126
|
+
endTime: Date | undefined;
|
|
1127
|
+
reservationTypes?: ReservationType[] | undefined;
|
|
1128
|
+
maxResults?: number | undefined;
|
|
1129
|
+
nextToken?: string | undefined;
|
|
1130
|
+
}
|
|
1131
|
+
export interface MaintenanceReservationDetails {
|
|
1132
|
+
maintenanceType: MaintenanceType | undefined;
|
|
1133
|
+
}
|
|
1134
|
+
export type ReservationDetails =
|
|
1135
|
+
| ReservationDetails.ContactMember
|
|
1136
|
+
| ReservationDetails.MaintenanceMember
|
|
1137
|
+
| ReservationDetails.$UnknownMember;
|
|
1138
|
+
export declare namespace ReservationDetails {
|
|
1139
|
+
interface MaintenanceMember {
|
|
1140
|
+
maintenance: MaintenanceReservationDetails;
|
|
1141
|
+
contact?: never;
|
|
1142
|
+
$unknown?: never;
|
|
1143
|
+
}
|
|
1144
|
+
interface ContactMember {
|
|
1145
|
+
maintenance?: never;
|
|
1146
|
+
contact: ContactReservationDetails;
|
|
1147
|
+
$unknown?: never;
|
|
1148
|
+
}
|
|
1149
|
+
interface $UnknownMember {
|
|
1150
|
+
maintenance?: never;
|
|
1151
|
+
contact?: never;
|
|
1152
|
+
$unknown: [string, any];
|
|
1153
|
+
}
|
|
1154
|
+
interface Visitor<T> {
|
|
1155
|
+
maintenance: (value: MaintenanceReservationDetails) => T;
|
|
1156
|
+
contact: (value: ContactReservationDetails) => T;
|
|
1157
|
+
_: (name: string, value: any) => T;
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
export interface GroundStationReservationListItem {
|
|
1161
|
+
reservationType: ReservationType | undefined;
|
|
1162
|
+
groundStationId: string | undefined;
|
|
1163
|
+
antennaName: string | undefined;
|
|
1164
|
+
startTime: Date | undefined;
|
|
1165
|
+
endTime: Date | undefined;
|
|
1166
|
+
reservationDetails: ReservationDetails | undefined;
|
|
1167
|
+
}
|
|
1168
|
+
export interface ListGroundStationReservationsResponse {
|
|
1169
|
+
reservationList: GroundStationReservationListItem[] | undefined;
|
|
1170
|
+
nextToken?: string | undefined;
|
|
1171
|
+
}
|
|
1019
1172
|
export interface ListGroundStationsRequest {
|
|
1020
1173
|
satelliteId?: string | undefined;
|
|
1021
1174
|
maxResults?: number | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAntennasCommandInput,
|
|
4
|
+
ListAntennasCommandOutput,
|
|
5
|
+
} from "../commands/ListAntennasCommand";
|
|
6
|
+
import { GroundStationPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAntennas: (
|
|
8
|
+
config: GroundStationPaginationConfiguration,
|
|
9
|
+
input: ListAntennasCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAntennasCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListContactVersionsCommandInput,
|
|
4
|
+
ListContactVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListContactVersionsCommand";
|
|
6
|
+
import { GroundStationPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListContactVersions: (
|
|
8
|
+
config: GroundStationPaginationConfiguration,
|
|
9
|
+
input: ListContactVersionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListContactVersionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGroundStationReservationsCommandInput,
|
|
4
|
+
ListGroundStationReservationsCommandOutput,
|
|
5
|
+
} from "../commands/ListGroundStationReservationsCommand";
|
|
6
|
+
import { GroundStationPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListGroundStationReservations: (
|
|
8
|
+
config: GroundStationPaginationConfiguration,
|
|
9
|
+
input: ListGroundStationReservationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListGroundStationReservationsCommandOutput>;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAntennasPaginator";
|
|
2
3
|
export * from "./ListConfigsPaginator";
|
|
3
4
|
export * from "./ListContactsPaginator";
|
|
5
|
+
export * from "./ListContactVersionsPaginator";
|
|
4
6
|
export * from "./ListDataflowEndpointGroupsPaginator";
|
|
5
7
|
export * from "./ListEphemeridesPaginator";
|
|
8
|
+
export * from "./ListGroundStationReservationsPaginator";
|
|
6
9
|
export * from "./ListGroundStationsPaginator";
|
|
7
10
|
export * from "./ListMissionProfilesPaginator";
|
|
8
11
|
export * from "./ListSatellitesPaginator";
|
|
@@ -18,6 +18,7 @@ export declare var AggregateStatus$: StaticStructureSchema;
|
|
|
18
18
|
export declare var AntennaDemodDecodeDetails$: StaticStructureSchema;
|
|
19
19
|
export declare var AntennaDownlinkConfig$: StaticStructureSchema;
|
|
20
20
|
export declare var AntennaDownlinkDemodDecodeConfig$: StaticStructureSchema;
|
|
21
|
+
export declare var AntennaListItem$: StaticStructureSchema;
|
|
21
22
|
export declare var AntennaUplinkConfig$: StaticStructureSchema;
|
|
22
23
|
export declare var AwsGroundStationAgentEndpoint$: StaticStructureSchema;
|
|
23
24
|
export declare var AzElEphemeris$: StaticStructureSchema;
|
|
@@ -33,6 +34,8 @@ export declare var ConfigListItem$: StaticStructureSchema;
|
|
|
33
34
|
export declare var ConnectionDetails$: StaticStructureSchema;
|
|
34
35
|
export declare var ContactData$: StaticStructureSchema;
|
|
35
36
|
export declare var ContactIdResponse$: StaticStructureSchema;
|
|
37
|
+
export declare var ContactReservationDetails$: StaticStructureSchema;
|
|
38
|
+
export declare var ContactVersion$: StaticStructureSchema;
|
|
36
39
|
export declare var CreateConfigRequest$: StaticStructureSchema;
|
|
37
40
|
export declare var CreateDataflowEndpointGroupRequest$: StaticStructureSchema;
|
|
38
41
|
export declare var CreateDataflowEndpointGroupV2Request$: StaticStructureSchema;
|
|
@@ -52,6 +55,8 @@ export declare var DeleteMissionProfileRequest$: StaticStructureSchema;
|
|
|
52
55
|
export declare var DemodulationConfig$: StaticStructureSchema;
|
|
53
56
|
export declare var DescribeContactRequest$: StaticStructureSchema;
|
|
54
57
|
export declare var DescribeContactResponse$: StaticStructureSchema;
|
|
58
|
+
export declare var DescribeContactVersionRequest$: StaticStructureSchema;
|
|
59
|
+
export declare var DescribeContactVersionResponse$: StaticStructureSchema;
|
|
55
60
|
export declare var DescribeEphemerisRequest$: StaticStructureSchema;
|
|
56
61
|
export declare var DescribeEphemerisResponse$: StaticStructureSchema;
|
|
57
62
|
export declare var Destination$: StaticStructureSchema;
|
|
@@ -85,17 +90,24 @@ export declare var GetMissionProfileResponse$: StaticStructureSchema;
|
|
|
85
90
|
export declare var GetSatelliteRequest$: StaticStructureSchema;
|
|
86
91
|
export declare var GetSatelliteResponse$: StaticStructureSchema;
|
|
87
92
|
export declare var GroundStationData$: StaticStructureSchema;
|
|
93
|
+
export declare var GroundStationReservationListItem$: StaticStructureSchema;
|
|
88
94
|
export declare var IntegerRange$: StaticStructureSchema;
|
|
89
95
|
export declare var ISO8601TimeRange$: StaticStructureSchema;
|
|
90
96
|
export declare var KinesisDataStreamData$: StaticStructureSchema;
|
|
97
|
+
export declare var ListAntennasRequest$: StaticStructureSchema;
|
|
98
|
+
export declare var ListAntennasResponse$: StaticStructureSchema;
|
|
91
99
|
export declare var ListConfigsRequest$: StaticStructureSchema;
|
|
92
100
|
export declare var ListConfigsResponse$: StaticStructureSchema;
|
|
93
101
|
export declare var ListContactsRequest$: StaticStructureSchema;
|
|
94
102
|
export declare var ListContactsResponse$: StaticStructureSchema;
|
|
103
|
+
export declare var ListContactVersionsRequest$: StaticStructureSchema;
|
|
104
|
+
export declare var ListContactVersionsResponse$: StaticStructureSchema;
|
|
95
105
|
export declare var ListDataflowEndpointGroupsRequest$: StaticStructureSchema;
|
|
96
106
|
export declare var ListDataflowEndpointGroupsResponse$: StaticStructureSchema;
|
|
97
107
|
export declare var ListEphemeridesRequest$: StaticStructureSchema;
|
|
98
108
|
export declare var ListEphemeridesResponse$: StaticStructureSchema;
|
|
109
|
+
export declare var ListGroundStationReservationsRequest$: StaticStructureSchema;
|
|
110
|
+
export declare var ListGroundStationReservationsResponse$: StaticStructureSchema;
|
|
99
111
|
export declare var ListGroundStationsRequest$: StaticStructureSchema;
|
|
100
112
|
export declare var ListGroundStationsResponse$: StaticStructureSchema;
|
|
101
113
|
export declare var ListMissionProfilesRequest$: StaticStructureSchema;
|
|
@@ -104,9 +116,11 @@ export declare var ListSatellitesRequest$: StaticStructureSchema;
|
|
|
104
116
|
export declare var ListSatellitesResponse$: StaticStructureSchema;
|
|
105
117
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
106
118
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
119
|
+
export declare var MaintenanceReservationDetails$: StaticStructureSchema;
|
|
107
120
|
export declare var MissionProfileIdResponse$: StaticStructureSchema;
|
|
108
121
|
export declare var MissionProfileListItem$: StaticStructureSchema;
|
|
109
122
|
export declare var OEMEphemeris$: StaticStructureSchema;
|
|
123
|
+
export declare var OemProgramTrackSettings$: StaticStructureSchema;
|
|
110
124
|
export declare var RangedConnectionDetails$: StaticStructureSchema;
|
|
111
125
|
export declare var RangedSocketAddress$: StaticStructureSchema;
|
|
112
126
|
export declare var RegisterAgentRequest$: StaticStructureSchema;
|
|
@@ -127,6 +141,7 @@ export declare var TimeAzEl$: StaticStructureSchema;
|
|
|
127
141
|
export declare var TimeRange$: StaticStructureSchema;
|
|
128
142
|
export declare var TLEData$: StaticStructureSchema;
|
|
129
143
|
export declare var TLEEphemeris$: StaticStructureSchema;
|
|
144
|
+
export declare var TleProgramTrackSettings$: StaticStructureSchema;
|
|
130
145
|
export declare var TrackingConfig$: StaticStructureSchema;
|
|
131
146
|
export declare var TrackingOverrides$: StaticStructureSchema;
|
|
132
147
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
@@ -134,6 +149,8 @@ export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
|
134
149
|
export declare var UpdateAgentStatusRequest$: StaticStructureSchema;
|
|
135
150
|
export declare var UpdateAgentStatusResponse$: StaticStructureSchema;
|
|
136
151
|
export declare var UpdateConfigRequest$: StaticStructureSchema;
|
|
152
|
+
export declare var UpdateContactRequest$: StaticStructureSchema;
|
|
153
|
+
export declare var UpdateContactResponse$: StaticStructureSchema;
|
|
137
154
|
export declare var UpdateEphemerisRequest$: StaticStructureSchema;
|
|
138
155
|
export declare var UpdateMissionProfileRequest$: StaticStructureSchema;
|
|
139
156
|
export declare var UplinkAwsGroundStationAgentEndpoint$: StaticStructureSchema;
|
|
@@ -151,6 +168,7 @@ export declare var EphemerisFilter$: StaticUnionSchema;
|
|
|
151
168
|
export declare var EphemerisTypeDescription$: StaticUnionSchema;
|
|
152
169
|
export declare var KmsKey$: StaticUnionSchema;
|
|
153
170
|
export declare var ProgramTrackSettings$: StaticUnionSchema;
|
|
171
|
+
export declare var ReservationDetails$: StaticUnionSchema;
|
|
154
172
|
export declare var TelemetrySinkData$: StaticUnionSchema;
|
|
155
173
|
export declare var UplinkDataflowDetails$: StaticUnionSchema;
|
|
156
174
|
export declare var CancelContact$: StaticOperationSchema;
|
|
@@ -164,6 +182,7 @@ export declare var DeleteDataflowEndpointGroup$: StaticOperationSchema;
|
|
|
164
182
|
export declare var DeleteEphemeris$: StaticOperationSchema;
|
|
165
183
|
export declare var DeleteMissionProfile$: StaticOperationSchema;
|
|
166
184
|
export declare var DescribeContact$: StaticOperationSchema;
|
|
185
|
+
export declare var DescribeContactVersion$: StaticOperationSchema;
|
|
167
186
|
export declare var DescribeEphemeris$: StaticOperationSchema;
|
|
168
187
|
export declare var GetAgentConfiguration$: StaticOperationSchema;
|
|
169
188
|
export declare var GetAgentTaskResponseUrl$: StaticOperationSchema;
|
|
@@ -172,10 +191,13 @@ export declare var GetDataflowEndpointGroup$: StaticOperationSchema;
|
|
|
172
191
|
export declare var GetMinuteUsage$: StaticOperationSchema;
|
|
173
192
|
export declare var GetMissionProfile$: StaticOperationSchema;
|
|
174
193
|
export declare var GetSatellite$: StaticOperationSchema;
|
|
194
|
+
export declare var ListAntennas$: StaticOperationSchema;
|
|
175
195
|
export declare var ListConfigs$: StaticOperationSchema;
|
|
176
196
|
export declare var ListContacts$: StaticOperationSchema;
|
|
197
|
+
export declare var ListContactVersions$: StaticOperationSchema;
|
|
177
198
|
export declare var ListDataflowEndpointGroups$: StaticOperationSchema;
|
|
178
199
|
export declare var ListEphemerides$: StaticOperationSchema;
|
|
200
|
+
export declare var ListGroundStationReservations$: StaticOperationSchema;
|
|
179
201
|
export declare var ListGroundStations$: StaticOperationSchema;
|
|
180
202
|
export declare var ListMissionProfiles$: StaticOperationSchema;
|
|
181
203
|
export declare var ListSatellites$: StaticOperationSchema;
|
|
@@ -186,5 +208,6 @@ export declare var TagResource$: StaticOperationSchema;
|
|
|
186
208
|
export declare var UntagResource$: StaticOperationSchema;
|
|
187
209
|
export declare var UpdateAgentStatus$: StaticOperationSchema;
|
|
188
210
|
export declare var UpdateConfig$: StaticOperationSchema;
|
|
211
|
+
export declare var UpdateContact$: StaticOperationSchema;
|
|
189
212
|
export declare var UpdateEphemeris$: StaticOperationSchema;
|
|
190
213
|
export declare var UpdateMissionProfile$: StaticOperationSchema;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { DescribeContactVersionCommandInput } from "../commands/DescribeContactVersionCommand";
|
|
3
|
+
import { GroundStationClient } from "../GroundStationClient";
|
|
4
|
+
export declare const waitForContactUpdated: (
|
|
5
|
+
params: WaiterConfiguration<GroundStationClient>,
|
|
6
|
+
input: DescribeContactVersionCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilContactUpdated: (
|
|
9
|
+
params: WaiterConfiguration<GroundStationClient>,
|
|
10
|
+
input: DescribeContactVersionCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeContactVersionCommandInput } from "../commands/DescribeContactVersionCommand";
|
|
3
|
+
import type { GroundStationClient } from "../GroundStationClient";
|
|
4
|
+
/**
|
|
5
|
+
* Waits until a contact has been updated
|
|
6
|
+
* @deprecated Use waitUntilContactUpdated instead. waitForContactUpdated does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForContactUpdated: (params: WaiterConfiguration<GroundStationClient>, input: DescribeContactVersionCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Waits until a contact has been updated
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeContactVersionCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilContactUpdated: (params: WaiterConfiguration<GroundStationClient>, input: DescribeContactVersionCommandInput) => Promise<WaiterResult>;
|
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.1032.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-groundstation",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
49
|
-
"@smithy/types": "^4.14.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "^3.974.1",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.32",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.31",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.12",
|
|
31
|
+
"@aws-sdk/types": "^3.973.8",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.7",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.17",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.16",
|
|
36
|
+
"@smithy/core": "^3.23.15",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.17",
|
|
38
|
+
"@smithy/hash-node": "^4.2.14",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.30",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.3",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.18",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.14",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.14",
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.3",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.14",
|
|
48
|
+
"@smithy/smithy-client": "^4.12.11",
|
|
49
|
+
"@smithy/types": "^4.14.1",
|
|
50
|
+
"@smithy/url-parser": "^4.2.14",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.47",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.52",
|
|
56
|
+
"@smithy/util-endpoints": "^3.4.1",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
+
"@smithy/util-retry": "^4.3.2",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
-
"@smithy/util-waiter": "^4.2.
|
|
60
|
+
"@smithy/util-waiter": "^4.2.16",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|