@aws-sdk/client-groundstation 3.1031.0 → 3.1033.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/endpoint/bdd.js +49 -0
- package/dist-cjs/endpoint/endpointResolver.js +2 -2
- 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/endpoint/bdd.js +46 -0
- package/dist-es/endpoint/endpointResolver.js +3 -3
- 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/endpoint/bdd.d.ts +2 -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/endpoint/bdd.d.ts +2 -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 +5 -5
- package/dist-cjs/endpoint/ruleset.js +0 -7
- package/dist-es/endpoint/ruleset.js +0 -4
- package/dist-types/endpoint/ruleset.d.ts +0 -2
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
|
@@ -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 = "
|
|
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,
|
|
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$]
|
|
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
|
];
|
package/dist-es/waiters/index.js
CHANGED
|
@@ -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
|
+
};
|
|
@@ -11,6 +11,7 @@ import { type DeleteDataflowEndpointGroupCommandInput, type DeleteDataflowEndpoi
|
|
|
11
11
|
import { type DeleteEphemerisCommandInput, type DeleteEphemerisCommandOutput } from "./commands/DeleteEphemerisCommand";
|
|
12
12
|
import { type DeleteMissionProfileCommandInput, type DeleteMissionProfileCommandOutput } from "./commands/DeleteMissionProfileCommand";
|
|
13
13
|
import { type DescribeContactCommandInput, type DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
14
|
+
import { type DescribeContactVersionCommandInput, type DescribeContactVersionCommandOutput } from "./commands/DescribeContactVersionCommand";
|
|
14
15
|
import { type DescribeEphemerisCommandInput, type DescribeEphemerisCommandOutput } from "./commands/DescribeEphemerisCommand";
|
|
15
16
|
import { type GetAgentConfigurationCommandInput, type GetAgentConfigurationCommandOutput } from "./commands/GetAgentConfigurationCommand";
|
|
16
17
|
import { type GetAgentTaskResponseUrlCommandInput, type GetAgentTaskResponseUrlCommandOutput } from "./commands/GetAgentTaskResponseUrlCommand";
|
|
@@ -19,10 +20,13 @@ import { type GetDataflowEndpointGroupCommandInput, type GetDataflowEndpointGrou
|
|
|
19
20
|
import { type GetMinuteUsageCommandInput, type GetMinuteUsageCommandOutput } from "./commands/GetMinuteUsageCommand";
|
|
20
21
|
import { type GetMissionProfileCommandInput, type GetMissionProfileCommandOutput } from "./commands/GetMissionProfileCommand";
|
|
21
22
|
import { type GetSatelliteCommandInput, type GetSatelliteCommandOutput } from "./commands/GetSatelliteCommand";
|
|
23
|
+
import { type ListAntennasCommandInput, type ListAntennasCommandOutput } from "./commands/ListAntennasCommand";
|
|
22
24
|
import { type ListConfigsCommandInput, type ListConfigsCommandOutput } from "./commands/ListConfigsCommand";
|
|
23
25
|
import { type ListContactsCommandInput, type ListContactsCommandOutput } from "./commands/ListContactsCommand";
|
|
26
|
+
import { type ListContactVersionsCommandInput, type ListContactVersionsCommandOutput } from "./commands/ListContactVersionsCommand";
|
|
24
27
|
import { type ListDataflowEndpointGroupsCommandInput, type ListDataflowEndpointGroupsCommandOutput } from "./commands/ListDataflowEndpointGroupsCommand";
|
|
25
28
|
import { type ListEphemeridesCommandInput, type ListEphemeridesCommandOutput } from "./commands/ListEphemeridesCommand";
|
|
29
|
+
import { type ListGroundStationReservationsCommandInput, type ListGroundStationReservationsCommandOutput } from "./commands/ListGroundStationReservationsCommand";
|
|
26
30
|
import { type ListGroundStationsCommandInput, type ListGroundStationsCommandOutput } from "./commands/ListGroundStationsCommand";
|
|
27
31
|
import { type ListMissionProfilesCommandInput, type ListMissionProfilesCommandOutput } from "./commands/ListMissionProfilesCommand";
|
|
28
32
|
import { type ListSatellitesCommandInput, type ListSatellitesCommandOutput } from "./commands/ListSatellitesCommand";
|
|
@@ -33,6 +37,7 @@ import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./c
|
|
|
33
37
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
34
38
|
import { type UpdateAgentStatusCommandInput, type UpdateAgentStatusCommandOutput } from "./commands/UpdateAgentStatusCommand";
|
|
35
39
|
import { type UpdateConfigCommandInput, type UpdateConfigCommandOutput } from "./commands/UpdateConfigCommand";
|
|
40
|
+
import { type UpdateContactCommandInput, type UpdateContactCommandOutput } from "./commands/UpdateContactCommand";
|
|
36
41
|
import { type UpdateEphemerisCommandInput, type UpdateEphemerisCommandOutput } from "./commands/UpdateEphemerisCommand";
|
|
37
42
|
import { type UpdateMissionProfileCommandInput, type UpdateMissionProfileCommandOutput } from "./commands/UpdateMissionProfileCommand";
|
|
38
43
|
import { GroundStationClient } from "./GroundStationClient";
|
|
@@ -103,6 +108,12 @@ export interface GroundStation {
|
|
|
103
108
|
describeContact(args: DescribeContactCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactCommandOutput>;
|
|
104
109
|
describeContact(args: DescribeContactCommandInput, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
105
110
|
describeContact(args: DescribeContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
111
|
+
/**
|
|
112
|
+
* @see {@link DescribeContactVersionCommand}
|
|
113
|
+
*/
|
|
114
|
+
describeContactVersion(args: DescribeContactVersionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactVersionCommandOutput>;
|
|
115
|
+
describeContactVersion(args: DescribeContactVersionCommandInput, cb: (err: any, data?: DescribeContactVersionCommandOutput) => void): void;
|
|
116
|
+
describeContactVersion(args: DescribeContactVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactVersionCommandOutput) => void): void;
|
|
106
117
|
/**
|
|
107
118
|
* @see {@link DescribeEphemerisCommand}
|
|
108
119
|
*/
|
|
@@ -151,6 +162,12 @@ export interface GroundStation {
|
|
|
151
162
|
getSatellite(args: GetSatelliteCommandInput, options?: __HttpHandlerOptions): Promise<GetSatelliteCommandOutput>;
|
|
152
163
|
getSatellite(args: GetSatelliteCommandInput, cb: (err: any, data?: GetSatelliteCommandOutput) => void): void;
|
|
153
164
|
getSatellite(args: GetSatelliteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSatelliteCommandOutput) => void): void;
|
|
165
|
+
/**
|
|
166
|
+
* @see {@link ListAntennasCommand}
|
|
167
|
+
*/
|
|
168
|
+
listAntennas(args: ListAntennasCommandInput, options?: __HttpHandlerOptions): Promise<ListAntennasCommandOutput>;
|
|
169
|
+
listAntennas(args: ListAntennasCommandInput, cb: (err: any, data?: ListAntennasCommandOutput) => void): void;
|
|
170
|
+
listAntennas(args: ListAntennasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAntennasCommandOutput) => void): void;
|
|
154
171
|
/**
|
|
155
172
|
* @see {@link ListConfigsCommand}
|
|
156
173
|
*/
|
|
@@ -164,6 +181,12 @@ export interface GroundStation {
|
|
|
164
181
|
listContacts(args: ListContactsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactsCommandOutput>;
|
|
165
182
|
listContacts(args: ListContactsCommandInput, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
166
183
|
listContacts(args: ListContactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
184
|
+
/**
|
|
185
|
+
* @see {@link ListContactVersionsCommand}
|
|
186
|
+
*/
|
|
187
|
+
listContactVersions(args: ListContactVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactVersionsCommandOutput>;
|
|
188
|
+
listContactVersions(args: ListContactVersionsCommandInput, cb: (err: any, data?: ListContactVersionsCommandOutput) => void): void;
|
|
189
|
+
listContactVersions(args: ListContactVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactVersionsCommandOutput) => void): void;
|
|
167
190
|
/**
|
|
168
191
|
* @see {@link ListDataflowEndpointGroupsCommand}
|
|
169
192
|
*/
|
|
@@ -177,6 +200,12 @@ export interface GroundStation {
|
|
|
177
200
|
listEphemerides(args: ListEphemeridesCommandInput, options?: __HttpHandlerOptions): Promise<ListEphemeridesCommandOutput>;
|
|
178
201
|
listEphemerides(args: ListEphemeridesCommandInput, cb: (err: any, data?: ListEphemeridesCommandOutput) => void): void;
|
|
179
202
|
listEphemerides(args: ListEphemeridesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEphemeridesCommandOutput) => void): void;
|
|
203
|
+
/**
|
|
204
|
+
* @see {@link ListGroundStationReservationsCommand}
|
|
205
|
+
*/
|
|
206
|
+
listGroundStationReservations(args: ListGroundStationReservationsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroundStationReservationsCommandOutput>;
|
|
207
|
+
listGroundStationReservations(args: ListGroundStationReservationsCommandInput, cb: (err: any, data?: ListGroundStationReservationsCommandOutput) => void): void;
|
|
208
|
+
listGroundStationReservations(args: ListGroundStationReservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroundStationReservationsCommandOutput) => void): void;
|
|
180
209
|
/**
|
|
181
210
|
* @see {@link ListGroundStationsCommand}
|
|
182
211
|
*/
|
|
@@ -240,6 +269,12 @@ export interface GroundStation {
|
|
|
240
269
|
updateConfig(args: UpdateConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigCommandOutput>;
|
|
241
270
|
updateConfig(args: UpdateConfigCommandInput, cb: (err: any, data?: UpdateConfigCommandOutput) => void): void;
|
|
242
271
|
updateConfig(args: UpdateConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigCommandOutput) => void): void;
|
|
272
|
+
/**
|
|
273
|
+
* @see {@link UpdateContactCommand}
|
|
274
|
+
*/
|
|
275
|
+
updateContact(args: UpdateContactCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactCommandOutput>;
|
|
276
|
+
updateContact(args: UpdateContactCommandInput, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
277
|
+
updateContact(args: UpdateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
243
278
|
/**
|
|
244
279
|
* @see {@link UpdateEphemerisCommand}
|
|
245
280
|
*/
|
|
@@ -252,6 +287,13 @@ export interface GroundStation {
|
|
|
252
287
|
updateMissionProfile(args: UpdateMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMissionProfileCommandOutput>;
|
|
253
288
|
updateMissionProfile(args: UpdateMissionProfileCommandInput, cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void): void;
|
|
254
289
|
updateMissionProfile(args: UpdateMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void): void;
|
|
290
|
+
/**
|
|
291
|
+
* @see {@link ListAntennasCommand}
|
|
292
|
+
* @param args - command input.
|
|
293
|
+
* @param paginationConfig - optional pagination config.
|
|
294
|
+
* @returns AsyncIterable of {@link ListAntennasCommandOutput}.
|
|
295
|
+
*/
|
|
296
|
+
paginateListAntennas(args: ListAntennasCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAntennasCommandOutput>;
|
|
255
297
|
/**
|
|
256
298
|
* @see {@link ListConfigsCommand}
|
|
257
299
|
* @param args - command input.
|
|
@@ -266,6 +308,13 @@ export interface GroundStation {
|
|
|
266
308
|
* @returns AsyncIterable of {@link ListContactsCommandOutput}.
|
|
267
309
|
*/
|
|
268
310
|
paginateListContacts(args: ListContactsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactsCommandOutput>;
|
|
311
|
+
/**
|
|
312
|
+
* @see {@link ListContactVersionsCommand}
|
|
313
|
+
* @param args - command input.
|
|
314
|
+
* @param paginationConfig - optional pagination config.
|
|
315
|
+
* @returns AsyncIterable of {@link ListContactVersionsCommandOutput}.
|
|
316
|
+
*/
|
|
317
|
+
paginateListContactVersions(args: ListContactVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactVersionsCommandOutput>;
|
|
269
318
|
/**
|
|
270
319
|
* @see {@link ListDataflowEndpointGroupsCommand}
|
|
271
320
|
* @param args - command input.
|
|
@@ -280,6 +329,13 @@ export interface GroundStation {
|
|
|
280
329
|
* @returns AsyncIterable of {@link ListEphemeridesCommandOutput}.
|
|
281
330
|
*/
|
|
282
331
|
paginateListEphemerides(args: ListEphemeridesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEphemeridesCommandOutput>;
|
|
332
|
+
/**
|
|
333
|
+
* @see {@link ListGroundStationReservationsCommand}
|
|
334
|
+
* @param args - command input.
|
|
335
|
+
* @param paginationConfig - optional pagination config.
|
|
336
|
+
* @returns AsyncIterable of {@link ListGroundStationReservationsCommandOutput}.
|
|
337
|
+
*/
|
|
338
|
+
paginateListGroundStationReservations(args: ListGroundStationReservationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGroundStationReservationsCommandOutput>;
|
|
283
339
|
/**
|
|
284
340
|
* @see {@link ListGroundStationsCommand}
|
|
285
341
|
* @param args - command input.
|
|
@@ -307,6 +363,12 @@ export interface GroundStation {
|
|
|
307
363
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
308
364
|
*/
|
|
309
365
|
waitUntilContactScheduled(args: DescribeContactCommandInput, waiterConfig: number | Omit<WaiterConfiguration<GroundStation>, "client">): Promise<WaiterResult>;
|
|
366
|
+
/**
|
|
367
|
+
* @see {@link DescribeContactVersionCommand}
|
|
368
|
+
* @param args - command input.
|
|
369
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
370
|
+
*/
|
|
371
|
+
waitUntilContactUpdated(args: DescribeContactVersionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<GroundStation>, "client">): Promise<WaiterResult>;
|
|
310
372
|
}
|
|
311
373
|
/**
|
|
312
374
|
* <p>Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that enables you to control satellite communications, downlink and process satellite data, and scale your satellite operations efficiently and cost-effectively without having to build or manage your own ground station infrastructure.</p>
|