@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.
Files changed (58) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +158 -2
  3. package/dist-cjs/schemas/schemas_0.js +174 -13
  4. package/dist-es/GroundStation.js +18 -0
  5. package/dist-es/commands/DescribeContactVersionCommand.js +16 -0
  6. package/dist-es/commands/ListAntennasCommand.js +16 -0
  7. package/dist-es/commands/ListContactVersionsCommand.js +16 -0
  8. package/dist-es/commands/ListGroundStationReservationsCommand.js +16 -0
  9. package/dist-es/commands/UpdateContactCommand.js +16 -0
  10. package/dist-es/commands/index.js +5 -0
  11. package/dist-es/models/enums.js +28 -0
  12. package/dist-es/pagination/ListAntennasPaginator.js +4 -0
  13. package/dist-es/pagination/ListContactVersionsPaginator.js +4 -0
  14. package/dist-es/pagination/ListGroundStationReservationsPaginator.js +4 -0
  15. package/dist-es/pagination/index.js +3 -0
  16. package/dist-es/schemas/schemas_0.js +169 -9
  17. package/dist-es/waiters/index.js +1 -0
  18. package/dist-es/waiters/waitForContactUpdated.js +40 -0
  19. package/dist-types/GroundStation.d.ts +62 -0
  20. package/dist-types/GroundStationClient.d.ts +7 -2
  21. package/dist-types/commands/CancelContactCommand.d.ts +1 -0
  22. package/dist-types/commands/DescribeContactCommand.d.ts +18 -0
  23. package/dist-types/commands/DescribeContactVersionCommand.d.ts +331 -0
  24. package/dist-types/commands/ListAntennasCommand.d.ts +89 -0
  25. package/dist-types/commands/ListContactVersionsCommand.d.ts +99 -0
  26. package/dist-types/commands/ListContactsCommand.d.ts +12 -0
  27. package/dist-types/commands/ListGroundStationReservationsCommand.d.ts +104 -0
  28. package/dist-types/commands/ReserveContactCommand.d.ts +7 -0
  29. package/dist-types/commands/UpdateContactCommand.d.ts +102 -0
  30. package/dist-types/commands/index.d.ts +5 -0
  31. package/dist-types/models/enums.d.ts +77 -5
  32. package/dist-types/models/errors.d.ts +3 -3
  33. package/dist-types/models/models_0.d.ts +572 -64
  34. package/dist-types/pagination/ListAntennasPaginator.d.ts +7 -0
  35. package/dist-types/pagination/ListContactVersionsPaginator.d.ts +7 -0
  36. package/dist-types/pagination/ListGroundStationReservationsPaginator.d.ts +7 -0
  37. package/dist-types/pagination/index.d.ts +3 -0
  38. package/dist-types/schemas/schemas_0.d.ts +23 -0
  39. package/dist-types/ts3.4/GroundStation.d.ts +115 -0
  40. package/dist-types/ts3.4/GroundStationClient.d.ts +30 -0
  41. package/dist-types/ts3.4/commands/DescribeContactVersionCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/ListAntennasCommand.d.ts +47 -0
  43. package/dist-types/ts3.4/commands/ListContactVersionsCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/ListGroundStationReservationsCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +50 -0
  46. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  47. package/dist-types/ts3.4/models/enums.d.ts +35 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +154 -1
  49. package/dist-types/ts3.4/pagination/ListAntennasPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/ListContactVersionsPaginator.d.ts +11 -0
  51. package/dist-types/ts3.4/pagination/ListGroundStationReservationsPaginator.d.ts +11 -0
  52. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  53. package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
  54. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  55. package/dist-types/ts3.4/waiters/waitForContactUpdated.d.ts +11 -0
  56. package/dist-types/waiters/index.d.ts +1 -0
  57. package/dist-types/waiters/waitForContactUpdated.d.ts +14 -0
  58. package/package.json +34 -34
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListGroundStationReservations$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListGroundStationReservationsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("GroundStation", "ListGroundStationReservations", {})
13
+ .n("GroundStationClient", "ListGroundStationReservationsCommand")
14
+ .sc(ListGroundStationReservations$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateContact$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateContactCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("GroundStation", "UpdateContact", {})
13
+ .n("GroundStationClient", "UpdateContactCommand")
14
+ .sc(UpdateContact$)
15
+ .build() {
16
+ }
@@ -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";
@@ -89,6 +89,26 @@ export const EphemerisType = {
89
89
  SERVICE_MANAGED: "SERVICE_MANAGED",
90
90
  TLE: "TLE",
91
91
  };
92
+ export const VersionFailureReasonCode = {
93
+ AZEL_EPHEMERIS_INVALID_STATUS: "AZEL_EPHEMERIS_INVALID_STATUS",
94
+ AZEL_EPHEMERIS_NOT_FOUND: "AZEL_EPHEMERIS_NOT_FOUND",
95
+ AZEL_EPHEMERIS_TIME_RANGE_INVALID: "AZEL_EPHEMERIS_TIME_RANGE_INVALID",
96
+ AZEL_EPHEMERIS_WRONG_GROUND_STATION: "AZEL_EPHEMERIS_WRONG_GROUND_STATION",
97
+ EPHEMERIS_NOT_ENABLED: "EPHEMERIS_NOT_ENABLED",
98
+ EPHEMERIS_NOT_FOUND: "EPHEMERIS_NOT_FOUND",
99
+ EPHEMERIS_TIME_RANGE_INVALID: "EPHEMERIS_TIME_RANGE_INVALID",
100
+ INTERNAL_ERROR: "INTERNAL_ERROR",
101
+ INVALID_SATELLITE_ARN: "INVALID_SATELLITE_ARN",
102
+ INVALID_UPDATE_CONTACT_REQUEST: "INVALID_UPDATE_CONTACT_REQUEST",
103
+ NOT_ONBOARDED_TO_AZEL_EPHEMERIS: "NOT_ONBOARDED_TO_AZEL_EPHEMERIS",
104
+ SATELLITE_DOES_NOT_MATCH_EPHEMERIS: "SATELLITE_DOES_NOT_MATCH_EPHEMERIS",
105
+ };
106
+ export const VersionStatus = {
107
+ ACTIVE: "ACTIVE",
108
+ FAILED_TO_UPDATE: "FAILED_TO_UPDATE",
109
+ SUPERSEDED: "SUPERSEDED",
110
+ UPDATING: "UPDATING",
111
+ };
92
112
  export const EphemerisErrorCode = {
93
113
  AZ_EL_SEGMENTS_OUT_OF_ORDER: "AZ_EL_SEGMENTS_OUT_OF_ORDER",
94
114
  AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME: "AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME",
@@ -148,3 +168,11 @@ export const EphemerisSource = {
148
168
  CUSTOMER_PROVIDED: "CUSTOMER_PROVIDED",
149
169
  SPACE_TRACK: "SPACE_TRACK",
150
170
  };
171
+ export const ReservationType = {
172
+ CONTACT: "CONTACT",
173
+ MAINTENANCE: "MAINTENANCE",
174
+ };
175
+ export const MaintenanceType = {
176
+ PLANNED: "PLANNED",
177
+ UNPLANNED: "UNPLANNED",
178
+ };
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListAntennasCommand, } from "../commands/ListAntennasCommand";
3
+ import { GroundStationClient } from "../GroundStationClient";
4
+ export const paginateListAntennas = createPaginator(GroundStationClient, ListAntennasCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListContactVersionsCommand, } from "../commands/ListContactVersionsCommand";
3
+ import { GroundStationClient } from "../GroundStationClient";
4
+ export const paginateListContactVersions = createPaginator(GroundStationClient, ListContactVersionsCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListGroundStationReservationsCommand, } from "../commands/ListGroundStationReservationsCommand";
3
+ import { GroundStationClient } from "../GroundStationClient";
4
+ export const paginateListGroundStationReservations = createPaginator(GroundStationClient, ListGroundStationReservationsCommand, "nextToken", "nextToken", "maxResults");
@@ -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";
@@ -10,6 +10,8 @@ const _AESD = "AzElSegmentsData";
10
10
  const _AESL = "AzElSegmentList";
11
11
  const _AESz = "AzElSegments";
12
12
  const _AGSAE = "AwsGroundStationAgentEndpoint";
13
+ const _AL = "AntennaList";
14
+ const _ALI = "AntennaListItem";
13
15
  const _AS = "AggregateStatus";
14
16
  const _AUC = "AntennaUplinkConfig";
15
17
  const _CC = "CancelContact";
@@ -35,11 +37,14 @@ const _CLI = "ConfigListItem";
35
37
  const _CLo = "ContactList";
36
38
  const _CMP = "CreateMissionProfile";
37
39
  const _CMPR = "CreateMissionProfileRequest";
40
+ const _CRD = "ContactReservationDetails";
38
41
  const _CSD = "ComponentStatusData";
39
42
  const _CSL = "ComponentStatusList";
40
43
  const _CTD = "ConfigTypeData";
41
44
  const _CV = "ComponentVersion";
42
45
  const _CVL = "ComponentVersionList";
46
+ const _CVLo = "ContactVersionsList";
47
+ const _CVo = "ContactVersion";
43
48
  const _D = "Destination";
44
49
  const _DAGSAE = "DownlinkAwsGroundStationAgentEndpoint";
45
50
  const _DAGSAED = "DownlinkAwsGroundStationAgentEndpointDetails";
@@ -48,6 +53,9 @@ const _DCD = "DownlinkConnectionDetails";
48
53
  const _DCR = "DeleteConfigRequest";
49
54
  const _DCRe = "DescribeContactRequest";
50
55
  const _DCRes = "DescribeContactResponse";
56
+ const _DCV = "DescribeContactVersion";
57
+ const _DCVR = "DescribeContactVersionRequest";
58
+ const _DCVRe = "DescribeContactVersionResponse";
51
59
  const _DCe = "DemodulationConfig";
52
60
  const _DCel = "DeleteConfig";
53
61
  const _DCes = "DescribeContact";
@@ -110,17 +118,25 @@ const _GS = "GetSatellite";
110
118
  const _GSD = "GroundStationData";
111
119
  const _GSL = "GroundStationList";
112
120
  const _GSR = "GetSatelliteRequest";
121
+ const _GSRL = "GroundStationReservationList";
122
+ const _GSRLI = "GroundStationReservationListItem";
113
123
  const _GSRe = "GetSatelliteResponse";
114
124
  const _IPE = "InvalidParameterException";
115
125
  const _IR = "IntegerRange";
116
126
  const _ISOTR = "ISO8601TimeRange";
117
127
  const _KDSD = "KinesisDataStreamData";
118
128
  const _KK = "KmsKey";
129
+ const _LA = "ListAntennas";
130
+ const _LAR = "ListAntennasRequest";
131
+ const _LARi = "ListAntennasResponse";
119
132
  const _LC = "ListConfigs";
120
133
  const _LCR = "ListConfigsRequest";
121
134
  const _LCRi = "ListConfigsResponse";
122
135
  const _LCRis = "ListContactsRequest";
123
136
  const _LCRist = "ListContactsResponse";
137
+ const _LCV = "ListContactVersions";
138
+ const _LCVR = "ListContactVersionsRequest";
139
+ const _LCVRi = "ListContactVersionsResponse";
124
140
  const _LCi = "ListContacts";
125
141
  const _LDEG = "ListDataflowEndpointGroups";
126
142
  const _LDEGR = "ListDataflowEndpointGroupsRequest";
@@ -130,7 +146,10 @@ const _LER = "ListEphemeridesRequest";
130
146
  const _LERi = "ListEphemeridesResponse";
131
147
  const _LGS = "ListGroundStations";
132
148
  const _LGSR = "ListGroundStationsRequest";
149
+ const _LGSRR = "ListGroundStationReservationsRequest";
150
+ const _LGSRRi = "ListGroundStationReservationsResponse";
133
151
  const _LGSRi = "ListGroundStationsResponse";
152
+ const _LGSRis = "ListGroundStationReservations";
134
153
  const _LMP = "ListMissionProfiles";
135
154
  const _LMPR = "ListMissionProfilesRequest";
136
155
  const _LMPRi = "ListMissionProfilesResponse";
@@ -143,7 +162,9 @@ const _LTFRRi = "ListTagsForResourceResponse";
143
162
  const _MPIR = "MissionProfileIdResponse";
144
163
  const _MPL = "MissionProfileList";
145
164
  const _MPLI = "MissionProfileListItem";
165
+ const _MRD = "MaintenanceReservationDetails";
146
166
  const _OEME = "OEMEphemeris";
167
+ const _OPTS = "OemProgramTrackSettings";
147
168
  const _PTS = "ProgramTrackSettings";
148
169
  const _RA = "RegisterAgent";
149
170
  const _RAR = "RegisterAgentRequest";
@@ -151,6 +172,7 @@ const _RARe = "RegisterAgentResponse";
151
172
  const _RC = "ReserveContact";
152
173
  const _RCD = "RangedConnectionDetails";
153
174
  const _RCR = "ReserveContactRequest";
175
+ const _RD = "ReservationDetails";
154
176
  const _RIUE = "ResourceInUseException";
155
177
  const _RLEE = "ResourceLimitExceededException";
156
178
  const _RNFE = "ResourceNotFoundException";
@@ -172,6 +194,7 @@ const _TLED = "TLEData";
172
194
  const _TLEDL = "TLEDataList";
173
195
  const _TLEE = "TLEEphemeris";
174
196
  const _TO = "TrackingOverrides";
197
+ const _TPTS = "TleProgramTrackSettings";
175
198
  const _TR = "TimeRange";
176
199
  const _TRR = "TagResourceRequest";
177
200
  const _TRRa = "TagResourceResponse";
@@ -186,6 +209,9 @@ const _UASRp = "UpdateAgentStatusResponse";
186
209
  const _UC = "UpdateConfig";
187
210
  const _UCD = "UplinkConnectionDetails";
188
211
  const _UCR = "UpdateConfigRequest";
212
+ const _UCRp = "UpdateContactRequest";
213
+ const _UCRpd = "UpdateContactResponse";
214
+ const _UCp = "UpdateContact";
189
215
  const _UDD = "UplinkDataflowDetails";
190
216
  const _UE = "UpdateEphemeris";
191
217
  const _UEC = "UplinkEchoConfig";
@@ -196,7 +222,7 @@ const _UR = "UntagResource";
196
222
  const _URR = "UntagResourceRequest";
197
223
  const _URRn = "UntagResourceResponse";
198
224
  const _USC = "UplinkSpectrumConfig";
199
- const _a = "address";
225
+ const _a = "activated";
200
226
  const _aCC = "agentCpuCores";
201
227
  const _aCD = "agentConnectionDetails";
202
228
  const _aD = "agentDetails";
@@ -210,6 +236,8 @@ const _aESL = "azElSegmentList";
210
236
  const _aGSAE = "awsGroundStationAgentEndpoint";
211
237
  const _aI = "agentId";
212
238
  const _aIAPA = "agentIpAndPortAddress";
239
+ const _aL = "antennaList";
240
+ const _aN = "antennaName";
213
241
  const _aR = "auditResults";
214
242
  const _aS = "agentStatus";
215
243
  const _aSg = "aggregateStatus";
@@ -217,6 +245,7 @@ const _aU = "angleUnit";
217
245
  const _aUC = "antennaUplinkConfig";
218
246
  const _aUCA = "antennaUplinkConfigArn";
219
247
  const _aV = "agentVersion";
248
+ const _ad = "address";
220
249
  const _au = "autotrack";
221
250
  const _az = "az";
222
251
  const _b = "bucket";
@@ -241,9 +270,13 @@ const _cPPDSo = "contactPostPassDurationSeconds";
241
270
  const _cS = "contactStatus";
242
271
  const _cSo = "componentStatuses";
243
272
  const _cT = "componentType";
273
+ const _cTl = "clientToken";
244
274
  const _cTo = "configType";
245
275
  const _cTr = "creationTime";
246
276
  const _cV = "componentVersions";
277
+ const _cVL = "contactVersionsList";
278
+ const _co = "contact";
279
+ const _cr = "created";
247
280
  const _d = "data";
248
281
  const _dAGSAE = "downlinkAwsGroundStationAgentEndpoint";
249
282
  const _dC = "demodulationConfig";
@@ -284,6 +317,8 @@ const _end = "endpoint";
284
317
  const _ep = "ephemeris";
285
318
  const _eph = "ephemerides";
286
319
  const _epo = "epoch";
320
+ const _fC = "failureCodes";
321
+ const _fM = "failureMessage";
287
322
  const _gS = "groundStation";
288
323
  const _gSI = "groundStationId";
289
324
  const _gSL = "groundStationList";
@@ -309,14 +344,17 @@ const _kDSD = "kinesisDataStreamData";
309
344
  const _kKA = "kmsKeyArn";
310
345
  const _kRA = "kinesisRoleArn";
311
346
  const _kT = "keyTemplate";
347
+ const _lU = "lastUpdated";
312
348
  const _m = "message";
313
349
  const _mE = "maximumElevation";
314
350
  const _mPA = "missionProfileArn";
315
351
  const _mPI = "missionProfileId";
316
352
  const _mPL = "missionProfileList";
317
353
  const _mR = "maxResults";
354
+ const _mT = "maintenanceType";
318
355
  const _mVCDS = "minimumViableContactDurationSeconds";
319
356
  const _ma = "maximum";
357
+ const _mai = "maintenance";
320
358
  const _mi = "minimum";
321
359
  const _mo = "month";
322
360
  const _mt = "mtu";
@@ -343,7 +381,11 @@ const _r = "region";
343
381
  const _rA = "resourceArn";
344
382
  const _rAo = "roleArn";
345
383
  const _rCC = "reservedCpuCores";
384
+ const _rD = "reservationDetails";
346
385
  const _rE = "referenceEpoch";
386
+ const _rL = "reservationList";
387
+ const _rT = "reservationType";
388
+ const _rTe = "reservationTypes";
347
389
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.groundstation";
348
390
  const _sA = "socketAddress";
349
391
  const _sAa = "satelliteArn";
@@ -366,6 +408,7 @@ const _sa = "satellites";
366
408
  const _se = "server";
367
409
  const _so = "source";
368
410
  const _st = "status";
411
+ const _su = "superseded";
369
412
  const _t = "tags";
370
413
  const _tC = "trackingConfig";
371
414
  const _tCA = "trackingConfigArn";
@@ -393,6 +436,7 @@ const _uMS = "upcomingMinutesScheduled";
393
436
  const _un = "unit";
394
437
  const _v = "versions";
395
438
  const _vET = "visibilityEndTime";
439
+ const _vI = "versionId";
396
440
  const _vST = "visibilityStartTime";
397
441
  const _vTR = "validTimeRange";
398
442
  const _va = "value";
@@ -471,6 +515,11 @@ export var AntennaDownlinkDemodDecodeConfig$ = [3, n0, _ADDDC,
471
515
  [_sC, _dC, _dCe],
472
516
  [() => SpectrumConfig$, () => DemodulationConfig$, () => DecodeConfig$], 3
473
517
  ];
518
+ export var AntennaListItem$ = [3, n0, _ALI,
519
+ 0,
520
+ [_gSN, _aN, _r],
521
+ [0, 0, 0], 3
522
+ ];
474
523
  export var AntennaUplinkConfig$ = [3, n0, _AUC,
475
524
  0,
476
525
  [_sC, _tE, _tD],
@@ -538,14 +587,24 @@ export var ConnectionDetails$ = [3, n0, _CD,
538
587
  ];
539
588
  export var ContactData$ = [3, n0, _CDo,
540
589
  0,
541
- [_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _r, _t, _vST, _vET, _ep],
542
- [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 0, 128 | 0, 4, 4, () => EphemerisResponseData$]
590
+ [_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _r, _t, _vST, _vET, _ep, _ve],
591
+ [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 0, 128 | 0, 4, 4, () => EphemerisResponseData$, () => ContactVersion$]
543
592
  ];
544
593
  export var ContactIdResponse$ = [3, n0, _CIRo,
594
+ 0,
595
+ [_cI, _vI],
596
+ [0, 1]
597
+ ];
598
+ export var ContactReservationDetails$ = [3, n0, _CRD,
545
599
  0,
546
600
  [_cI],
547
601
  [0]
548
602
  ];
603
+ export var ContactVersion$ = [3, n0, _CVo,
604
+ 0,
605
+ [_vI, _cr, _a, _su, _lU, _st, _fC, _fM],
606
+ [1, 4, 4, 4, 4, 0, 64 | 0, 0]
607
+ ];
549
608
  export var CreateConfigRequest$ = [3, n0, _CCRr,
550
609
  0,
551
610
  [_n, _cD, _t],
@@ -583,7 +642,7 @@ export var DataflowDetail$ = [3, n0, _DD,
583
642
  ];
584
643
  export var DataflowEndpoint$ = [3, n0, _DEa,
585
644
  0,
586
- [_n, _a, _st, _mt],
645
+ [_n, _ad, _st, _mt],
587
646
  [0, () => SocketAddress$, 0, 1]
588
647
  ];
589
648
  export var DataflowEndpointConfig$ = [3, n0, _DEC,
@@ -638,8 +697,18 @@ export var DescribeContactRequest$ = [3, n0, _DCRe,
638
697
  ];
639
698
  export var DescribeContactResponse$ = [3, n0, _DCRes,
640
699
  0,
641
- [_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _t, _r, _dL, _vST, _vET, _tO, _ep],
642
- [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 128 | 0, 0, () => DataflowList, 4, 4, () => TrackingOverrides$, () => EphemerisResponseData$]
700
+ [_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _t, _r, _dL, _vST, _vET, _tO, _ep, _ve],
701
+ [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 128 | 0, 0, () => DataflowList, 4, 4, () => TrackingOverrides$, () => EphemerisResponseData$, () => ContactVersion$]
702
+ ];
703
+ export var DescribeContactVersionRequest$ = [3, n0, _DCVR,
704
+ 0,
705
+ [_cI, _vI],
706
+ [[0, 1], [1, 1]], 2
707
+ ];
708
+ export var DescribeContactVersionResponse$ = [3, n0, _DCVRe,
709
+ 0,
710
+ [_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _t, _r, _dL, _vST, _vET, _tO, _ep, _ve],
711
+ [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 128 | 0, 0, () => DataflowList, 4, 4, () => TrackingOverrides$, () => EphemerisResponseData$, () => ContactVersion$]
643
712
  ];
644
713
  export var DescribeEphemerisRequest$ = [3, n0, _DERe,
645
714
  0,
@@ -806,6 +875,11 @@ export var GroundStationData$ = [3, n0, _GSD,
806
875
  [_gSI, _gSN, _r],
807
876
  [0, 0, 0]
808
877
  ];
878
+ export var GroundStationReservationListItem$ = [3, n0, _GSRLI,
879
+ 0,
880
+ [_rT, _gSI, _aN, _sT, _eT, _rD],
881
+ [0, 0, 0, 4, 4, () => ReservationDetails$], 6
882
+ ];
809
883
  export var IntegerRange$ = [3, n0, _IR,
810
884
  0,
811
885
  [_mi, _ma],
@@ -821,6 +895,16 @@ export var KinesisDataStreamData$ = [3, n0, _KDSD,
821
895
  [_kRA, _kDSA],
822
896
  [0, 0], 2
823
897
  ];
898
+ export var ListAntennasRequest$ = [3, n0, _LAR,
899
+ 0,
900
+ [_gSI, _mR, _nT],
901
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
902
+ ];
903
+ export var ListAntennasResponse$ = [3, n0, _LARi,
904
+ 0,
905
+ [_aL, _nT],
906
+ [() => AntennaList, 0], 1
907
+ ];
824
908
  export var ListConfigsRequest$ = [3, n0, _LCR,
825
909
  0,
826
910
  [_mR, _nT],
@@ -841,6 +925,16 @@ export var ListContactsResponse$ = [3, n0, _LCRist,
841
925
  [_nT, _cLo],
842
926
  [0, () => ContactList]
843
927
  ];
928
+ export var ListContactVersionsRequest$ = [3, n0, _LCVR,
929
+ 0,
930
+ [_cI, _mR, _nT],
931
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
932
+ ];
933
+ export var ListContactVersionsResponse$ = [3, n0, _LCVRi,
934
+ 0,
935
+ [_nT, _cVL],
936
+ [0, () => ContactVersionsList]
937
+ ];
844
938
  export var ListDataflowEndpointGroupsRequest$ = [3, n0, _LDEGR,
845
939
  0,
846
940
  [_mR, _nT],
@@ -861,6 +955,16 @@ export var ListEphemeridesResponse$ = [3, n0, _LERi,
861
955
  [_nT, _eph],
862
956
  [0, () => EphemeridesList]
863
957
  ];
958
+ export var ListGroundStationReservationsRequest$ = [3, n0, _LGSRR,
959
+ 0,
960
+ [_gSI, _sT, _eT, _rTe, _mR, _nT],
961
+ [[0, 1], [7, { [_hQ]: _sT }], [7, { [_hQ]: _eT }], [64 | 0, { [_hQ]: _rTe }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 3
962
+ ];
963
+ export var ListGroundStationReservationsResponse$ = [3, n0, _LGSRRi,
964
+ 0,
965
+ [_rL, _nT],
966
+ [() => GroundStationReservationList, 0], 1
967
+ ];
864
968
  export var ListGroundStationsRequest$ = [3, n0, _LGSR,
865
969
  0,
866
970
  [_sI, _mR, _nT],
@@ -901,6 +1005,11 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
901
1005
  [_t],
902
1006
  [128 | 0]
903
1007
  ];
1008
+ export var MaintenanceReservationDetails$ = [3, n0, _MRD,
1009
+ 0,
1010
+ [_mT],
1011
+ [0], 1
1012
+ ];
904
1013
  export var MissionProfileIdResponse$ = [3, n0, _MPIR,
905
1014
  0,
906
1015
  [_mPI],
@@ -916,6 +1025,11 @@ export var OEMEphemeris$ = [3, n0, _OEME,
916
1025
  [_sO, _oD],
917
1026
  [() => S3Object$, 0]
918
1027
  ];
1028
+ export var OemProgramTrackSettings$ = [3, n0, _OPTS,
1029
+ 0,
1030
+ [_eI],
1031
+ [0], 1
1032
+ ];
919
1033
  export var RangedConnectionDetails$ = [3, n0, _RCD,
920
1034
  0,
921
1035
  [_sA, _mt],
@@ -1016,6 +1130,11 @@ export var TLEEphemeris$ = [3, n0, _TLEE,
1016
1130
  [_sO, _tDl],
1017
1131
  [() => S3Object$, () => TLEDataList]
1018
1132
  ];
1133
+ export var TleProgramTrackSettings$ = [3, n0, _TPTS,
1134
+ 0,
1135
+ [_eI],
1136
+ [0], 1
1137
+ ];
1019
1138
  export var TrackingConfig$ = [3, n0, _TC,
1020
1139
  0,
1021
1140
  [_au],
@@ -1024,7 +1143,7 @@ export var TrackingConfig$ = [3, n0, _TC,
1024
1143
  export var TrackingOverrides$ = [3, n0, _TO,
1025
1144
  0,
1026
1145
  [_pTS],
1027
- [() => ProgramTrackSettings$], 1
1146
+ [() => ProgramTrackSettings$]
1028
1147
  ];
1029
1148
  export var UntagResourceRequest$ = [3, n0, _URR,
1030
1149
  0,
@@ -1051,6 +1170,16 @@ export var UpdateConfigRequest$ = [3, n0, _UCR,
1051
1170
  [_cIo, _n, _cTo, _cD],
1052
1171
  [[0, 1], 0, [0, 1], () => ConfigTypeData$], 4
1053
1172
  ];
1173
+ export var UpdateContactRequest$ = [3, n0, _UCRp,
1174
+ 0,
1175
+ [_cI, _cTl, _tO, _sAa],
1176
+ [[0, 1], [0, 4], () => TrackingOverrides$, 0], 1
1177
+ ];
1178
+ export var UpdateContactResponse$ = [3, n0, _UCRpd,
1179
+ 0,
1180
+ [_cI, _vI],
1181
+ [0, 1]
1182
+ ];
1054
1183
  export var UpdateEphemerisRequest$ = [3, n0, _UER,
1055
1184
  0,
1056
1185
  [_eI, _ena, _n, _p],
@@ -1087,6 +1216,9 @@ export var UplinkSpectrumConfig$ = [3, n0, _USC,
1087
1216
  [() => Frequency$, 0], 1
1088
1217
  ];
1089
1218
  var AgentCpuCoresList = 64 | 1;
1219
+ var AntennaList = [1, n0, _AL,
1220
+ 0, () => AntennaListItem$
1221
+ ];
1090
1222
  var AzElSegmentList = [1, n0, _AESL,
1091
1223
  0, () => AzElSegment$
1092
1224
  ];
@@ -1104,6 +1236,9 @@ var ConfigList = [1, n0, _CL,
1104
1236
  var ContactList = [1, n0, _CLo,
1105
1237
  0, () => ContactData$
1106
1238
  ];
1239
+ var ContactVersionsList = [1, n0, _CVLo,
1240
+ 0, () => ContactVersion$
1241
+ ];
1107
1242
  var CreateEndpointDetailsList = [1, n0, _CEDL,
1108
1243
  0, () => CreateEndpointDetails$
1109
1244
  ];
@@ -1131,10 +1266,14 @@ var GroundStationIdList = 64 | 0;
1131
1266
  var GroundStationList = [1, n0, _GSL,
1132
1267
  0, () => GroundStationData$
1133
1268
  ];
1269
+ var GroundStationReservationList = [1, n0, _GSRL,
1270
+ 0, () => GroundStationReservationListItem$
1271
+ ];
1134
1272
  var IpAddressList = 64 | 0;
1135
1273
  var MissionProfileList = [1, n0, _MPL,
1136
1274
  0, () => MissionProfileListItem$
1137
1275
  ];
1276
+ var ReservationTypeFilterList = 64 | 0;
1138
1277
  var SatelliteList = [1, n0, _SL,
1139
1278
  0, () => SatelliteListItem$
1140
1279
  ];
@@ -1148,6 +1287,7 @@ var TimeAzElList = [1, n0, _TAEL,
1148
1287
  var TLEDataList = [1, n0, _TLEDL,
1149
1288
  0, () => TLEData$
1150
1289
  ];
1290
+ var VersionFailureReasonCodes = 64 | 0;
1151
1291
  var VersionStringList = 64 | 0;
1152
1292
  var SignatureMap = 128 | 2;
1153
1293
  var TagsMap = 128 | 0;
@@ -1198,8 +1338,13 @@ export var KmsKey$ = [4, n0, _KK,
1198
1338
  ];
1199
1339
  export var ProgramTrackSettings$ = [4, n0, _PTS,
1200
1340
  0,
1201
- [_aE],
1202
- [() => AzElProgramTrackSettings$]
1341
+ [_aE, _o, _tl],
1342
+ [() => AzElProgramTrackSettings$, () => OemProgramTrackSettings$, () => TleProgramTrackSettings$]
1343
+ ];
1344
+ export var ReservationDetails$ = [4, n0, _RD,
1345
+ 0,
1346
+ [_mai, _co],
1347
+ [() => MaintenanceReservationDetails$, () => ContactReservationDetails$]
1203
1348
  ];
1204
1349
  export var TelemetrySinkData$ = [4, n0, _TSD,
1205
1350
  0,
@@ -1244,6 +1389,9 @@ export var DeleteMissionProfile$ = [9, n0, _DMP,
1244
1389
  export var DescribeContact$ = [9, n0, _DCes,
1245
1390
  { [_h]: ["GET", "/contact/{contactId}", 200] }, () => DescribeContactRequest$, () => DescribeContactResponse$
1246
1391
  ];
1392
+ export var DescribeContactVersion$ = [9, n0, _DCV,
1393
+ { [_h]: ["GET", "/contact/{contactId}/versions/{versionId}", 200] }, () => DescribeContactVersionRequest$, () => DescribeContactVersionResponse$
1394
+ ];
1247
1395
  export var DescribeEphemeris$ = [9, n0, _DEes,
1248
1396
  { [_h]: ["GET", "/ephemeris/{ephemerisId}", 200] }, () => DescribeEphemerisRequest$, () => DescribeEphemerisResponse$
1249
1397
  ];
@@ -1268,18 +1416,27 @@ export var GetMissionProfile$ = [9, n0, _GMP,
1268
1416
  export var GetSatellite$ = [9, n0, _GS,
1269
1417
  { [_h]: ["GET", "/satellite/{satelliteId}", 200] }, () => GetSatelliteRequest$, () => GetSatelliteResponse$
1270
1418
  ];
1419
+ export var ListAntennas$ = [9, n0, _LA,
1420
+ { [_h]: ["GET", "/groundstation/{groundStationId}/antenna", 200] }, () => ListAntennasRequest$, () => ListAntennasResponse$
1421
+ ];
1271
1422
  export var ListConfigs$ = [9, n0, _LC,
1272
1423
  { [_h]: ["GET", "/config", 200] }, () => ListConfigsRequest$, () => ListConfigsResponse$
1273
1424
  ];
1274
1425
  export var ListContacts$ = [9, n0, _LCi,
1275
1426
  { [_h]: ["POST", "/contacts", 200] }, () => ListContactsRequest$, () => ListContactsResponse$
1276
1427
  ];
1428
+ export var ListContactVersions$ = [9, n0, _LCV,
1429
+ { [_h]: ["GET", "/contact/{contactId}/versions", 200] }, () => ListContactVersionsRequest$, () => ListContactVersionsResponse$
1430
+ ];
1277
1431
  export var ListDataflowEndpointGroups$ = [9, n0, _LDEG,
1278
1432
  { [_h]: ["GET", "/dataflowEndpointGroup", 200] }, () => ListDataflowEndpointGroupsRequest$, () => ListDataflowEndpointGroupsResponse$
1279
1433
  ];
1280
1434
  export var ListEphemerides$ = [9, n0, _LE,
1281
1435
  { [_h]: ["POST", "/ephemerides", 200] }, () => ListEphemeridesRequest$, () => ListEphemeridesResponse$
1282
1436
  ];
1437
+ export var ListGroundStationReservations$ = [9, n0, _LGSRis,
1438
+ { [_h]: ["GET", "/groundstation/{groundStationId}/reservation", 200] }, () => ListGroundStationReservationsRequest$, () => ListGroundStationReservationsResponse$
1439
+ ];
1283
1440
  export var ListGroundStations$ = [9, n0, _LGS,
1284
1441
  { [_h]: ["GET", "/groundstation", 200] }, () => ListGroundStationsRequest$, () => ListGroundStationsResponse$
1285
1442
  ];
@@ -1310,6 +1467,9 @@ export var UpdateAgentStatus$ = [9, n0, _UAS,
1310
1467
  export var UpdateConfig$ = [9, n0, _UC,
1311
1468
  { [_h]: ["PUT", "/config/{configType}/{configId}", 200] }, () => UpdateConfigRequest$, () => ConfigIdResponse$
1312
1469
  ];
1470
+ export var UpdateContact$ = [9, n0, _UCp,
1471
+ { [_h]: ["POST", "/contact/{contactId}/versions", 200] }, () => UpdateContactRequest$, () => UpdateContactResponse$
1472
+ ];
1313
1473
  export var UpdateEphemeris$ = [9, n0, _UE,
1314
1474
  { [_h]: ["PUT", "/ephemeris/{ephemerisId}", 200] }, () => UpdateEphemerisRequest$, () => EphemerisIdResponse$
1315
1475
  ];
@@ -1 +1,2 @@
1
1
  export * from "./waitForContactScheduled";
2
+ export * from "./waitForContactUpdated";
@@ -0,0 +1,40 @@
1
+ import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
+ import { DescribeContactVersionCommand, } from "../commands/DescribeContactVersionCommand";
3
+ const checkState = async (client, input) => {
4
+ let reason;
5
+ try {
6
+ let result = await client.send(new DescribeContactVersionCommand(input));
7
+ reason = result;
8
+ try {
9
+ const returnComparator = () => {
10
+ return result.version.status;
11
+ };
12
+ if (returnComparator() === "FAILED_TO_UPDATE") {
13
+ return { state: WaiterState.FAILURE, reason };
14
+ }
15
+ }
16
+ catch (e) { }
17
+ try {
18
+ const returnComparator = () => {
19
+ return result.version.status;
20
+ };
21
+ if (returnComparator() === "ACTIVE") {
22
+ return { state: WaiterState.SUCCESS, reason };
23
+ }
24
+ }
25
+ catch (e) { }
26
+ }
27
+ catch (exception) {
28
+ reason = exception;
29
+ }
30
+ return { state: WaiterState.RETRY, reason };
31
+ };
32
+ export const waitForContactUpdated = async (params, input) => {
33
+ const serviceDefaults = { minDelay: 5, maxDelay: 900 };
34
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
35
+ };
36
+ export const waitUntilContactUpdated = async (params, input) => {
37
+ const serviceDefaults = { minDelay: 5, maxDelay: 900 };
38
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
39
+ return checkExceptions(result);
40
+ };