@aws-sdk/client-groundstation 3.987.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +54 -1605
- package/dist-cjs/models/GroundStationServiceException.js +12 -0
- package/dist-cjs/models/errors.js +90 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1324 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +68 -62
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var GroundStationServiceException = require('./models/GroundStationServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,1387 +114,6 @@ class GroundStationClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class GroundStationServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, GroundStationServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class DependencyException extends GroundStationServiceException {
|
|
122
|
-
name = "DependencyException";
|
|
123
|
-
$fault = "server";
|
|
124
|
-
parameterName;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "DependencyException",
|
|
128
|
-
$fault: "server",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
132
|
-
this.parameterName = opts.parameterName;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
class InvalidParameterException extends GroundStationServiceException {
|
|
136
|
-
name = "InvalidParameterException";
|
|
137
|
-
$fault = "client";
|
|
138
|
-
parameterName;
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "InvalidParameterException",
|
|
142
|
-
$fault: "client",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
146
|
-
this.parameterName = opts.parameterName;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
class ResourceNotFoundException extends GroundStationServiceException {
|
|
150
|
-
name = "ResourceNotFoundException";
|
|
151
|
-
$fault = "client";
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ResourceNotFoundException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
class ResourceLimitExceededException extends GroundStationServiceException {
|
|
162
|
-
name = "ResourceLimitExceededException";
|
|
163
|
-
$fault = "client";
|
|
164
|
-
parameterName;
|
|
165
|
-
constructor(opts) {
|
|
166
|
-
super({
|
|
167
|
-
name: "ResourceLimitExceededException",
|
|
168
|
-
$fault: "client",
|
|
169
|
-
...opts,
|
|
170
|
-
});
|
|
171
|
-
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
172
|
-
this.parameterName = opts.parameterName;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
class ServiceQuotaExceededException extends GroundStationServiceException {
|
|
176
|
-
name = "ServiceQuotaExceededException";
|
|
177
|
-
$fault = "client";
|
|
178
|
-
parameterName;
|
|
179
|
-
constructor(opts) {
|
|
180
|
-
super({
|
|
181
|
-
name: "ServiceQuotaExceededException",
|
|
182
|
-
$fault: "client",
|
|
183
|
-
...opts,
|
|
184
|
-
});
|
|
185
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
186
|
-
this.parameterName = opts.parameterName;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
class ResourceInUseException extends GroundStationServiceException {
|
|
190
|
-
name = "ResourceInUseException";
|
|
191
|
-
$fault = "client";
|
|
192
|
-
constructor(opts) {
|
|
193
|
-
super({
|
|
194
|
-
name: "ResourceInUseException",
|
|
195
|
-
$fault: "client",
|
|
196
|
-
...opts,
|
|
197
|
-
});
|
|
198
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
const _AD = "AgentDetails";
|
|
203
|
-
const _ADC = "AntennaDownlinkConfig";
|
|
204
|
-
const _ADDD = "AntennaDemodDecodeDetails";
|
|
205
|
-
const _ADDDC = "AntennaDownlinkDemodDecodeConfig";
|
|
206
|
-
const _AEE = "AzElEphemeris";
|
|
207
|
-
const _AEEF = "AzElEphemerisFilter";
|
|
208
|
-
const _AEPTS = "AzElProgramTrackSettings";
|
|
209
|
-
const _AES = "AzElSegment";
|
|
210
|
-
const _AESD = "AzElSegmentsData";
|
|
211
|
-
const _AESL = "AzElSegmentList";
|
|
212
|
-
const _AESz = "AzElSegments";
|
|
213
|
-
const _AGSAE = "AwsGroundStationAgentEndpoint";
|
|
214
|
-
const _AS = "AggregateStatus";
|
|
215
|
-
const _AUC = "AntennaUplinkConfig";
|
|
216
|
-
const _CC = "CancelContact";
|
|
217
|
-
const _CCR = "CancelContactRequest";
|
|
218
|
-
const _CCRr = "CreateConfigRequest";
|
|
219
|
-
const _CCr = "CreateConfig";
|
|
220
|
-
const _CD = "ConnectionDetails";
|
|
221
|
-
const _CDEG = "CreateDataflowEndpointGroup";
|
|
222
|
-
const _CDEGR = "CreateDataflowEndpointGroupRequest";
|
|
223
|
-
const _CDEGV = "CreateDataflowEndpointGroupV2";
|
|
224
|
-
const _CDEGVR = "CreateDataflowEndpointGroupV2Request";
|
|
225
|
-
const _CDEGVRr = "CreateDataflowEndpointGroupV2Response";
|
|
226
|
-
const _CDo = "ContactData";
|
|
227
|
-
const _CDon = "ConfigDetails";
|
|
228
|
-
const _CE = "CreateEphemeris";
|
|
229
|
-
const _CED = "CreateEndpointDetails";
|
|
230
|
-
const _CEDL = "CreateEndpointDetailsList";
|
|
231
|
-
const _CER = "CreateEphemerisRequest";
|
|
232
|
-
const _CIR = "ConfigIdResponse";
|
|
233
|
-
const _CIRo = "ContactIdResponse";
|
|
234
|
-
const _CL = "ConfigList";
|
|
235
|
-
const _CLI = "ConfigListItem";
|
|
236
|
-
const _CLo = "ContactList";
|
|
237
|
-
const _CMP = "CreateMissionProfile";
|
|
238
|
-
const _CMPR = "CreateMissionProfileRequest";
|
|
239
|
-
const _CSD = "ComponentStatusData";
|
|
240
|
-
const _CSL = "ComponentStatusList";
|
|
241
|
-
const _CTD = "ConfigTypeData";
|
|
242
|
-
const _CV = "ComponentVersion";
|
|
243
|
-
const _CVL = "ComponentVersionList";
|
|
244
|
-
const _D = "Destination";
|
|
245
|
-
const _DAGSAE = "DownlinkAwsGroundStationAgentEndpoint";
|
|
246
|
-
const _DAGSAED = "DownlinkAwsGroundStationAgentEndpointDetails";
|
|
247
|
-
const _DC = "DecodeConfig";
|
|
248
|
-
const _DCD = "DownlinkConnectionDetails";
|
|
249
|
-
const _DCR = "DeleteConfigRequest";
|
|
250
|
-
const _DCRe = "DescribeContactRequest";
|
|
251
|
-
const _DCRes = "DescribeContactResponse";
|
|
252
|
-
const _DCe = "DemodulationConfig";
|
|
253
|
-
const _DCel = "DeleteConfig";
|
|
254
|
-
const _DCes = "DescribeContact";
|
|
255
|
-
const _DD = "DataflowDetail";
|
|
256
|
-
const _DDD = "DownlinkDataflowDetails";
|
|
257
|
-
const _DDEG = "DeleteDataflowEndpointGroup";
|
|
258
|
-
const _DDEGR = "DeleteDataflowEndpointGroupRequest";
|
|
259
|
-
const _DDi = "DiscoveryData";
|
|
260
|
-
const _DE = "DataflowEndpoint";
|
|
261
|
-
const _DEC = "DataflowEndpointConfig";
|
|
262
|
-
const _DEGIR = "DataflowEndpointGroupIdResponse";
|
|
263
|
-
const _DEGL = "DataflowEndpointGroupList";
|
|
264
|
-
const _DEL = "DataflowEdgeList";
|
|
265
|
-
const _DELI = "DataflowEndpointListItem";
|
|
266
|
-
const _DER = "DeleteEphemerisRequest";
|
|
267
|
-
const _DERe = "DescribeEphemerisRequest";
|
|
268
|
-
const _DERes = "DescribeEphemerisResponse";
|
|
269
|
-
const _DEe = "DependencyException";
|
|
270
|
-
const _DEel = "DeleteEphemeris";
|
|
271
|
-
const _DEes = "DescribeEphemeris";
|
|
272
|
-
const _DL = "DataflowList";
|
|
273
|
-
const _DMP = "DeleteMissionProfile";
|
|
274
|
-
const _DMPR = "DeleteMissionProfileRequest";
|
|
275
|
-
const _E = "Eirp";
|
|
276
|
-
const _ED = "EndpointDetails";
|
|
277
|
-
const _EDL = "EndpointDetailsList";
|
|
278
|
-
const _EDp = "EphemerisDescription";
|
|
279
|
-
const _EDph = "EphemerisData";
|
|
280
|
-
const _EER = "EphemerisErrorReason";
|
|
281
|
-
const _EERL = "EphemerisErrorReasonList";
|
|
282
|
-
const _EF = "EphemerisFilter";
|
|
283
|
-
const _EI = "EphemerisItem";
|
|
284
|
-
const _EIR = "EphemerisIdResponse";
|
|
285
|
-
const _EL = "EphemeridesList";
|
|
286
|
-
const _EMD = "EphemerisMetaData";
|
|
287
|
-
const _ERD = "EphemerisResponseData";
|
|
288
|
-
const _ETD = "EphemerisTypeDescription";
|
|
289
|
-
const _El = "Elevation";
|
|
290
|
-
const _F = "Frequency";
|
|
291
|
-
const _FB = "FrequencyBandwidth";
|
|
292
|
-
const _GAC = "GetAgentConfiguration";
|
|
293
|
-
const _GACR = "GetAgentConfigurationRequest";
|
|
294
|
-
const _GACRe = "GetAgentConfigurationResponse";
|
|
295
|
-
const _GATRU = "GetAgentTaskResponseUrl";
|
|
296
|
-
const _GATRUR = "GetAgentTaskResponseUrlRequest";
|
|
297
|
-
const _GATRURe = "GetAgentTaskResponseUrlResponse";
|
|
298
|
-
const _GC = "GetConfig";
|
|
299
|
-
const _GCR = "GetConfigRequest";
|
|
300
|
-
const _GCRe = "GetConfigResponse";
|
|
301
|
-
const _GDEG = "GetDataflowEndpointGroup";
|
|
302
|
-
const _GDEGR = "GetDataflowEndpointGroupRequest";
|
|
303
|
-
const _GDEGRe = "GetDataflowEndpointGroupResponse";
|
|
304
|
-
const _GMP = "GetMissionProfile";
|
|
305
|
-
const _GMPR = "GetMissionProfileRequest";
|
|
306
|
-
const _GMPRe = "GetMissionProfileResponse";
|
|
307
|
-
const _GMU = "GetMinuteUsage";
|
|
308
|
-
const _GMUR = "GetMinuteUsageRequest";
|
|
309
|
-
const _GMURe = "GetMinuteUsageResponse";
|
|
310
|
-
const _GS = "GetSatellite";
|
|
311
|
-
const _GSD = "GroundStationData";
|
|
312
|
-
const _GSL = "GroundStationList";
|
|
313
|
-
const _GSR = "GetSatelliteRequest";
|
|
314
|
-
const _GSRe = "GetSatelliteResponse";
|
|
315
|
-
const _IPE = "InvalidParameterException";
|
|
316
|
-
const _IR = "IntegerRange";
|
|
317
|
-
const _ISOTR = "ISO8601TimeRange";
|
|
318
|
-
const _KDSD = "KinesisDataStreamData";
|
|
319
|
-
const _KK = "KmsKey";
|
|
320
|
-
const _LC = "ListConfigs";
|
|
321
|
-
const _LCR = "ListConfigsRequest";
|
|
322
|
-
const _LCRi = "ListConfigsResponse";
|
|
323
|
-
const _LCRis = "ListContactsRequest";
|
|
324
|
-
const _LCRist = "ListContactsResponse";
|
|
325
|
-
const _LCi = "ListContacts";
|
|
326
|
-
const _LDEG = "ListDataflowEndpointGroups";
|
|
327
|
-
const _LDEGR = "ListDataflowEndpointGroupsRequest";
|
|
328
|
-
const _LDEGRi = "ListDataflowEndpointGroupsResponse";
|
|
329
|
-
const _LE = "ListEphemerides";
|
|
330
|
-
const _LER = "ListEphemeridesRequest";
|
|
331
|
-
const _LERi = "ListEphemeridesResponse";
|
|
332
|
-
const _LGS = "ListGroundStations";
|
|
333
|
-
const _LGSR = "ListGroundStationsRequest";
|
|
334
|
-
const _LGSRi = "ListGroundStationsResponse";
|
|
335
|
-
const _LMP = "ListMissionProfiles";
|
|
336
|
-
const _LMPR = "ListMissionProfilesRequest";
|
|
337
|
-
const _LMPRi = "ListMissionProfilesResponse";
|
|
338
|
-
const _LS = "ListSatellites";
|
|
339
|
-
const _LSR = "ListSatellitesRequest";
|
|
340
|
-
const _LSRi = "ListSatellitesResponse";
|
|
341
|
-
const _LTFR = "ListTagsForResource";
|
|
342
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
343
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
344
|
-
const _MPIR = "MissionProfileIdResponse";
|
|
345
|
-
const _MPL = "MissionProfileList";
|
|
346
|
-
const _MPLI = "MissionProfileListItem";
|
|
347
|
-
const _OEME = "OEMEphemeris";
|
|
348
|
-
const _PTS = "ProgramTrackSettings";
|
|
349
|
-
const _RA = "RegisterAgent";
|
|
350
|
-
const _RAR = "RegisterAgentRequest";
|
|
351
|
-
const _RARe = "RegisterAgentResponse";
|
|
352
|
-
const _RC = "ReserveContact";
|
|
353
|
-
const _RCD = "RangedConnectionDetails";
|
|
354
|
-
const _RCR = "ReserveContactRequest";
|
|
355
|
-
const _RIUE = "ResourceInUseException";
|
|
356
|
-
const _RLEE = "ResourceLimitExceededException";
|
|
357
|
-
const _RNFE = "ResourceNotFoundException";
|
|
358
|
-
const _RSA = "RangedSocketAddress";
|
|
359
|
-
const _S = "Source";
|
|
360
|
-
const _SA = "SocketAddress";
|
|
361
|
-
const _SC = "SpectrumConfig";
|
|
362
|
-
const _SD = "SecurityDetails";
|
|
363
|
-
const _SL = "SatelliteList";
|
|
364
|
-
const _SLI = "SatelliteListItem";
|
|
365
|
-
const _SO = "S3Object";
|
|
366
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
367
|
-
const _SRC = "S3RecordingConfig";
|
|
368
|
-
const _SRD = "S3RecordingDetails";
|
|
369
|
-
const _TAE = "TimeAzEl";
|
|
370
|
-
const _TAEL = "TimeAzElList";
|
|
371
|
-
const _TC = "TrackingConfig";
|
|
372
|
-
const _TLED = "TLEData";
|
|
373
|
-
const _TLEDL = "TLEDataList";
|
|
374
|
-
const _TLEE = "TLEEphemeris";
|
|
375
|
-
const _TO = "TrackingOverrides";
|
|
376
|
-
const _TR = "TimeRange";
|
|
377
|
-
const _TRR = "TagResourceRequest";
|
|
378
|
-
const _TRRa = "TagResourceResponse";
|
|
379
|
-
const _TRa = "TagResource";
|
|
380
|
-
const _TSC = "TelemetrySinkConfig";
|
|
381
|
-
const _TSD = "TelemetrySinkData";
|
|
382
|
-
const _UAGSAE = "UplinkAwsGroundStationAgentEndpoint";
|
|
383
|
-
const _UAGSAED = "UplinkAwsGroundStationAgentEndpointDetails";
|
|
384
|
-
const _UAS = "UpdateAgentStatus";
|
|
385
|
-
const _UASR = "UpdateAgentStatusRequest";
|
|
386
|
-
const _UASRp = "UpdateAgentStatusResponse";
|
|
387
|
-
const _UC = "UpdateConfig";
|
|
388
|
-
const _UCD = "UplinkConnectionDetails";
|
|
389
|
-
const _UCR = "UpdateConfigRequest";
|
|
390
|
-
const _UDD = "UplinkDataflowDetails";
|
|
391
|
-
const _UE = "UpdateEphemeris";
|
|
392
|
-
const _UEC = "UplinkEchoConfig";
|
|
393
|
-
const _UER = "UpdateEphemerisRequest";
|
|
394
|
-
const _UMP = "UpdateMissionProfile";
|
|
395
|
-
const _UMPR = "UpdateMissionProfileRequest";
|
|
396
|
-
const _UR = "UntagResource";
|
|
397
|
-
const _URR = "UntagResourceRequest";
|
|
398
|
-
const _URRn = "UntagResourceResponse";
|
|
399
|
-
const _USC = "UplinkSpectrumConfig";
|
|
400
|
-
const _a = "address";
|
|
401
|
-
const _aCC = "agentCpuCores";
|
|
402
|
-
const _aCD = "agentConnectionDetails";
|
|
403
|
-
const _aD = "agentDetails";
|
|
404
|
-
const _aDC = "antennaDownlinkConfig";
|
|
405
|
-
const _aDDD = "antennaDemodDecodeDetails";
|
|
406
|
-
const _aDDDC = "antennaDownlinkDemodDecodeConfig";
|
|
407
|
-
const _aE = "azEl";
|
|
408
|
-
const _aED = "azElData";
|
|
409
|
-
const _aEL = "azElList";
|
|
410
|
-
const _aESL = "azElSegmentList";
|
|
411
|
-
const _aGSAE = "awsGroundStationAgentEndpoint";
|
|
412
|
-
const _aI = "agentId";
|
|
413
|
-
const _aIAPA = "agentIpAndPortAddress";
|
|
414
|
-
const _aR = "auditResults";
|
|
415
|
-
const _aS = "agentStatus";
|
|
416
|
-
const _aSg = "aggregateStatus";
|
|
417
|
-
const _aU = "angleUnit";
|
|
418
|
-
const _aUC = "antennaUplinkConfig";
|
|
419
|
-
const _aUCA = "antennaUplinkConfigArn";
|
|
420
|
-
const _aV = "agentVersion";
|
|
421
|
-
const _au = "autotrack";
|
|
422
|
-
const _az = "az";
|
|
423
|
-
const _b = "bucket";
|
|
424
|
-
const _bA = "bucketArn";
|
|
425
|
-
const _bR = "bytesReceived";
|
|
426
|
-
const _bS = "bytesSent";
|
|
427
|
-
const _ba = "bandwidth";
|
|
428
|
-
const _c = "client";
|
|
429
|
-
const _cA = "capabilityArn";
|
|
430
|
-
const _cAa = "capabilityArns";
|
|
431
|
-
const _cAo = "configArn";
|
|
432
|
-
const _cD = "configData";
|
|
433
|
-
const _cDo = "configDetails";
|
|
434
|
-
const _cE = "currentEphemeris";
|
|
435
|
-
const _cF = "centerFrequency";
|
|
436
|
-
const _cI = "contactId";
|
|
437
|
-
const _cIo = "configId";
|
|
438
|
-
const _cL = "configList";
|
|
439
|
-
const _cLo = "contactList";
|
|
440
|
-
const _cPPDS = "contactPrePassDurationSeconds";
|
|
441
|
-
const _cPPDSo = "contactPostPassDurationSeconds";
|
|
442
|
-
const _cS = "contactStatus";
|
|
443
|
-
const _cSo = "componentStatuses";
|
|
444
|
-
const _cT = "componentType";
|
|
445
|
-
const _cTo = "configType";
|
|
446
|
-
const _cTr = "creationTime";
|
|
447
|
-
const _cV = "componentVersions";
|
|
448
|
-
const _d = "data";
|
|
449
|
-
const _dAGSAE = "downlinkAwsGroundStationAgentEndpoint";
|
|
450
|
-
const _dC = "demodulationConfig";
|
|
451
|
-
const _dCe = "decodeConfig";
|
|
452
|
-
const _dD = "dataflowDetails";
|
|
453
|
-
const _dDR = "dataflowDestinationRegion";
|
|
454
|
-
const _dDi = "discoveryData";
|
|
455
|
-
const _dE = "dataflowEdges";
|
|
456
|
-
const _dEC = "dataflowEndpointConfig";
|
|
457
|
-
const _dEGA = "dataflowEndpointGroupArn";
|
|
458
|
-
const _dEGI = "dataflowEndpointGroupId";
|
|
459
|
-
const _dEGL = "dataflowEndpointGroupList";
|
|
460
|
-
const _dEN = "dataflowEndpointName";
|
|
461
|
-
const _dER = "dataflowEndpointRegion";
|
|
462
|
-
const _dI = "dataflowId";
|
|
463
|
-
const _dL = "dataflowList";
|
|
464
|
-
const _dSR = "dataflowSourceRegion";
|
|
465
|
-
const _de = "destination";
|
|
466
|
-
const _dt = "dt";
|
|
467
|
-
const _e = "ephemeris";
|
|
468
|
-
const _eA = "egressAddress";
|
|
469
|
-
const _eAAP = "egressAddressAndPort";
|
|
470
|
-
const _eC = "errorCode";
|
|
471
|
-
const _eD = "endpointDetails";
|
|
472
|
-
const _eDn = "endpointsDetails";
|
|
473
|
-
const _eDp = "ephemerisData";
|
|
474
|
-
const _eI = "ephemerisId";
|
|
475
|
-
const _eM = "errorMessage";
|
|
476
|
-
const _eMR = "estimatedMinutesRemaining";
|
|
477
|
-
const _eR = "errorReasons";
|
|
478
|
-
const _eT = "endTime";
|
|
479
|
-
const _eTp = "ephemerisType";
|
|
480
|
-
const _eTx = "expirationTime";
|
|
481
|
-
const _el = "el";
|
|
482
|
-
const _en = "endpoints";
|
|
483
|
-
const _ena = "enabled";
|
|
484
|
-
const _end = "endpoint";
|
|
485
|
-
const _ep = "epoch";
|
|
486
|
-
const _eph = "ephemerides";
|
|
487
|
-
const _er = "error";
|
|
488
|
-
const _gS = "groundStation";
|
|
489
|
-
const _gSI = "groundStationId";
|
|
490
|
-
const _gSL = "groundStationList";
|
|
491
|
-
const _gSN = "groundStationName";
|
|
492
|
-
const _gSr = "groundStations";
|
|
493
|
-
const _h = "http";
|
|
494
|
-
const _hE = "httpError";
|
|
495
|
-
const _hQ = "httpQuery";
|
|
496
|
-
const _hR = "healthReasons";
|
|
497
|
-
const _hS = "healthStatus";
|
|
498
|
-
const _i = "id";
|
|
499
|
-
const _iA = "ingressAddress";
|
|
500
|
-
const _iAAP = "ingressAddressAndPort";
|
|
501
|
-
const _iI = "instanceId";
|
|
502
|
-
const _iR = "invalidReason";
|
|
503
|
-
const _iRMC = "isReservedMinutesCustomer";
|
|
504
|
-
const _iT = "instanceType";
|
|
505
|
-
const _k = "key";
|
|
506
|
-
const _kAA = "kmsAliasArn";
|
|
507
|
-
const _kAN = "kmsAliasName";
|
|
508
|
-
const _kDSA = "kinesisDataStreamArn";
|
|
509
|
-
const _kDSD = "kinesisDataStreamData";
|
|
510
|
-
const _kKA = "kmsKeyArn";
|
|
511
|
-
const _kRA = "kinesisRoleArn";
|
|
512
|
-
const _kT = "keyTemplate";
|
|
513
|
-
const _m = "mtu";
|
|
514
|
-
const _mE = "maximumElevation";
|
|
515
|
-
const _mPA = "missionProfileArn";
|
|
516
|
-
const _mPI = "missionProfileId";
|
|
517
|
-
const _mPL = "missionProfileList";
|
|
518
|
-
const _mR = "maxResults";
|
|
519
|
-
const _mVCDS = "minimumViableContactDurationSeconds";
|
|
520
|
-
const _ma = "maximum";
|
|
521
|
-
const _me = "message";
|
|
522
|
-
const _mi = "minimum";
|
|
523
|
-
const _mo = "month";
|
|
524
|
-
const _n = "name";
|
|
525
|
-
const _nSID = "noradSatelliteID";
|
|
526
|
-
const _nT = "nextToken";
|
|
527
|
-
const _o = "oem";
|
|
528
|
-
const _oD = "oemData";
|
|
529
|
-
const _oN = "outputNode";
|
|
530
|
-
const _p = "priority";
|
|
531
|
-
const _pD = "packetsDropped";
|
|
532
|
-
const _pIA = "publicIpAddresses";
|
|
533
|
-
const _pIAr = "privateIpAddresses";
|
|
534
|
-
const _pLU = "presignedLogUrl";
|
|
535
|
-
const _pN = "parameterName";
|
|
536
|
-
const _pPET = "postPassEndTime";
|
|
537
|
-
const _pPST = "prePassStartTime";
|
|
538
|
-
const _pR = "portRange";
|
|
539
|
-
const _pTS = "programTrackSettings";
|
|
540
|
-
const _po = "port";
|
|
541
|
-
const _pol = "polarization";
|
|
542
|
-
const _pr = "prefix";
|
|
543
|
-
const _r = "region";
|
|
544
|
-
const _rA = "resourceArn";
|
|
545
|
-
const _rAo = "roleArn";
|
|
546
|
-
const _rCC = "reservedCpuCores";
|
|
547
|
-
const _rE = "referenceEpoch";
|
|
548
|
-
const _s = "status";
|
|
549
|
-
const _sA = "socketAddress";
|
|
550
|
-
const _sAa = "satelliteArn";
|
|
551
|
-
const _sC = "spectrumConfig";
|
|
552
|
-
const _sD = "suppliedData";
|
|
553
|
-
const _sDe = "securityDetails";
|
|
554
|
-
const _sGI = "securityGroupIds";
|
|
555
|
-
const _sI = "satelliteId";
|
|
556
|
-
const _sIu = "subnetIds";
|
|
557
|
-
const _sKK = "streamsKmsKey";
|
|
558
|
-
const _sKR = "streamsKmsRole";
|
|
559
|
-
const _sL = "statusList";
|
|
560
|
-
const _sM = "signatureMap";
|
|
561
|
-
const _sO = "s3Object";
|
|
562
|
-
const _sRC = "s3RecordingConfig";
|
|
563
|
-
const _sRD = "s3RecordingDetails";
|
|
564
|
-
const _sSO = "sourceS3Object";
|
|
565
|
-
const _sT = "startTime";
|
|
566
|
-
const _sa = "satellites";
|
|
567
|
-
const _se = "server";
|
|
568
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.groundstation";
|
|
569
|
-
const _so = "source";
|
|
570
|
-
const _t = "tags";
|
|
571
|
-
const _tC = "trackingConfig";
|
|
572
|
-
const _tCA = "trackingConfigArn";
|
|
573
|
-
const _tD = "transmitDisabled";
|
|
574
|
-
const _tDa = "taskingDocument";
|
|
575
|
-
const _tDl = "tleData";
|
|
576
|
-
const _tE = "targetEirp";
|
|
577
|
-
const _tI = "taskId";
|
|
578
|
-
const _tK = "tagKeys";
|
|
579
|
-
const _tL = "tleLine1";
|
|
580
|
-
const _tLl = "tleLine2";
|
|
581
|
-
const _tO = "trackingOverrides";
|
|
582
|
-
const _tRMA = "totalReservedMinuteAllocation";
|
|
583
|
-
const _tSC = "telemetrySinkConfig";
|
|
584
|
-
const _tSCA = "telemetrySinkConfigArn";
|
|
585
|
-
const _tSD = "telemetrySinkData";
|
|
586
|
-
const _tSM = "totalScheduledMinutes";
|
|
587
|
-
const _tST = "telemetrySinkType";
|
|
588
|
-
const _tl = "tle";
|
|
589
|
-
const _u = "units";
|
|
590
|
-
const _uAGSAE = "uplinkAwsGroundStationAgentEndpoint";
|
|
591
|
-
const _uEC = "uplinkEchoConfig";
|
|
592
|
-
const _uJSON = "unvalidatedJSON";
|
|
593
|
-
const _uMS = "upcomingMinutesScheduled";
|
|
594
|
-
const _un = "unit";
|
|
595
|
-
const _v = "versions";
|
|
596
|
-
const _vET = "visibilityEndTime";
|
|
597
|
-
const _vST = "visibilityStartTime";
|
|
598
|
-
const _vTR = "validTimeRange";
|
|
599
|
-
const _va = "value";
|
|
600
|
-
const _ve = "version";
|
|
601
|
-
const _y = "year";
|
|
602
|
-
const n0 = "com.amazonaws.groundstation";
|
|
603
|
-
var AgentDetails$ = [3, n0, _AD,
|
|
604
|
-
0,
|
|
605
|
-
[_aV, _iI, _iT, _cV, _rCC, _aCC],
|
|
606
|
-
[0, 0, 0, () => ComponentVersionList, 64 | 1, 64 | 1], 4
|
|
607
|
-
];
|
|
608
|
-
var AggregateStatus$ = [3, n0, _AS,
|
|
609
|
-
0,
|
|
610
|
-
[_s, _sM],
|
|
611
|
-
[0, 128 | 2], 1
|
|
612
|
-
];
|
|
613
|
-
var AntennaDemodDecodeDetails$ = [3, n0, _ADDD,
|
|
614
|
-
0,
|
|
615
|
-
[_oN],
|
|
616
|
-
[0]
|
|
617
|
-
];
|
|
618
|
-
var AntennaDownlinkConfig$ = [3, n0, _ADC,
|
|
619
|
-
0,
|
|
620
|
-
[_sC],
|
|
621
|
-
[() => SpectrumConfig$], 1
|
|
622
|
-
];
|
|
623
|
-
var AntennaDownlinkDemodDecodeConfig$ = [3, n0, _ADDDC,
|
|
624
|
-
0,
|
|
625
|
-
[_sC, _dC, _dCe],
|
|
626
|
-
[() => SpectrumConfig$, () => DemodulationConfig$, () => DecodeConfig$], 3
|
|
627
|
-
];
|
|
628
|
-
var AntennaUplinkConfig$ = [3, n0, _AUC,
|
|
629
|
-
0,
|
|
630
|
-
[_sC, _tE, _tD],
|
|
631
|
-
[() => UplinkSpectrumConfig$, () => Eirp$, 2], 2
|
|
632
|
-
];
|
|
633
|
-
var AwsGroundStationAgentEndpoint$ = [3, n0, _AGSAE,
|
|
634
|
-
0,
|
|
635
|
-
[_n, _eA, _iA, _aS, _aR],
|
|
636
|
-
[0, () => ConnectionDetails$, () => RangedConnectionDetails$, 0, 0], 3
|
|
637
|
-
];
|
|
638
|
-
var AzElEphemeris$ = [3, n0, _AEE,
|
|
639
|
-
0,
|
|
640
|
-
[_gS, _d],
|
|
641
|
-
[0, () => AzElSegmentsData$], 2
|
|
642
|
-
];
|
|
643
|
-
var AzElEphemerisFilter$ = [3, n0, _AEEF,
|
|
644
|
-
0,
|
|
645
|
-
[_i],
|
|
646
|
-
[0], 1
|
|
647
|
-
];
|
|
648
|
-
var AzElProgramTrackSettings$ = [3, n0, _AEPTS,
|
|
649
|
-
0,
|
|
650
|
-
[_eI],
|
|
651
|
-
[0], 1
|
|
652
|
-
];
|
|
653
|
-
var AzElSegment$ = [3, n0, _AES,
|
|
654
|
-
0,
|
|
655
|
-
[_rE, _vTR, _aEL],
|
|
656
|
-
[5, () => ISO8601TimeRange$, () => TimeAzElList], 3
|
|
657
|
-
];
|
|
658
|
-
var AzElSegments$ = [3, n0, _AESz,
|
|
659
|
-
0,
|
|
660
|
-
[_aU, _aESL],
|
|
661
|
-
[0, () => AzElSegmentList], 2
|
|
662
|
-
];
|
|
663
|
-
var CancelContactRequest$ = [3, n0, _CCR,
|
|
664
|
-
0,
|
|
665
|
-
[_cI],
|
|
666
|
-
[[0, 1]], 1
|
|
667
|
-
];
|
|
668
|
-
var ComponentStatusData$ = [3, n0, _CSD,
|
|
669
|
-
0,
|
|
670
|
-
[_cT, _cA, _s, _dI, _bS, _bR, _pD],
|
|
671
|
-
[0, 0, 0, 0, 1, 1, 1], 4
|
|
672
|
-
];
|
|
673
|
-
var ComponentVersion$ = [3, n0, _CV,
|
|
674
|
-
0,
|
|
675
|
-
[_cT, _v],
|
|
676
|
-
[0, 64 | 0], 2
|
|
677
|
-
];
|
|
678
|
-
var ConfigIdResponse$ = [3, n0, _CIR,
|
|
679
|
-
0,
|
|
680
|
-
[_cIo, _cTo, _cAo],
|
|
681
|
-
[0, 0, 0]
|
|
682
|
-
];
|
|
683
|
-
var ConfigListItem$ = [3, n0, _CLI,
|
|
684
|
-
0,
|
|
685
|
-
[_cIo, _cTo, _cAo, _n],
|
|
686
|
-
[0, 0, 0, 0]
|
|
687
|
-
];
|
|
688
|
-
var ConnectionDetails$ = [3, n0, _CD,
|
|
689
|
-
0,
|
|
690
|
-
[_sA, _m],
|
|
691
|
-
[() => SocketAddress$, 1], 1
|
|
692
|
-
];
|
|
693
|
-
var ContactData$ = [3, n0, _CDo,
|
|
694
|
-
0,
|
|
695
|
-
[_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _r, _t, _vST, _vET, _e],
|
|
696
|
-
[0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 0, 128 | 0, 4, 4, () => EphemerisResponseData$]
|
|
697
|
-
];
|
|
698
|
-
var ContactIdResponse$ = [3, n0, _CIRo,
|
|
699
|
-
0,
|
|
700
|
-
[_cI],
|
|
701
|
-
[0]
|
|
702
|
-
];
|
|
703
|
-
var CreateConfigRequest$ = [3, n0, _CCRr,
|
|
704
|
-
0,
|
|
705
|
-
[_n, _cD, _t],
|
|
706
|
-
[0, () => ConfigTypeData$, 128 | 0], 2
|
|
707
|
-
];
|
|
708
|
-
var CreateDataflowEndpointGroupRequest$ = [3, n0, _CDEGR,
|
|
709
|
-
0,
|
|
710
|
-
[_eD, _t, _cPPDS, _cPPDSo],
|
|
711
|
-
[() => EndpointDetailsList, 128 | 0, 1, 1], 1
|
|
712
|
-
];
|
|
713
|
-
var CreateDataflowEndpointGroupV2Request$ = [3, n0, _CDEGVR,
|
|
714
|
-
0,
|
|
715
|
-
[_en, _cPPDS, _cPPDSo, _t],
|
|
716
|
-
[() => CreateEndpointDetailsList, 1, 1, 128 | 0], 1
|
|
717
|
-
];
|
|
718
|
-
var CreateDataflowEndpointGroupV2Response$ = [3, n0, _CDEGVRr,
|
|
719
|
-
0,
|
|
720
|
-
[_dEGI],
|
|
721
|
-
[0]
|
|
722
|
-
];
|
|
723
|
-
var CreateEphemerisRequest$ = [3, n0, _CER,
|
|
724
|
-
0,
|
|
725
|
-
[_n, _sI, _ena, _p, _eTx, _kKA, _e, _t],
|
|
726
|
-
[0, 0, 2, 1, 4, 0, () => EphemerisData$, 128 | 0], 1
|
|
727
|
-
];
|
|
728
|
-
var CreateMissionProfileRequest$ = [3, n0, _CMPR,
|
|
729
|
-
0,
|
|
730
|
-
[_n, _mVCDS, _dE, _tCA, _cPPDS, _cPPDSo, _tSCA, _t, _sKK, _sKR],
|
|
731
|
-
[0, 1, [1, n0, _DEL, 0, 64 | 0], 0, 1, 1, 0, 128 | 0, () => KmsKey$, 0], 4
|
|
732
|
-
];
|
|
733
|
-
var DataflowDetail$ = [3, n0, _DD,
|
|
734
|
-
0,
|
|
735
|
-
[_so, _de, _eM],
|
|
736
|
-
[() => Source$, () => Destination$, 0]
|
|
737
|
-
];
|
|
738
|
-
var DataflowEndpoint$ = [3, n0, _DE,
|
|
739
|
-
0,
|
|
740
|
-
[_n, _a, _s, _m],
|
|
741
|
-
[0, () => SocketAddress$, 0, 1]
|
|
742
|
-
];
|
|
743
|
-
var DataflowEndpointConfig$ = [3, n0, _DEC,
|
|
744
|
-
0,
|
|
745
|
-
[_dEN, _dER],
|
|
746
|
-
[0, 0], 1
|
|
747
|
-
];
|
|
748
|
-
var DataflowEndpointGroupIdResponse$ = [3, n0, _DEGIR,
|
|
749
|
-
0,
|
|
750
|
-
[_dEGI],
|
|
751
|
-
[0]
|
|
752
|
-
];
|
|
753
|
-
var DataflowEndpointListItem$ = [3, n0, _DELI,
|
|
754
|
-
0,
|
|
755
|
-
[_dEGI, _dEGA],
|
|
756
|
-
[0, 0]
|
|
757
|
-
];
|
|
758
|
-
var DecodeConfig$ = [3, n0, _DC,
|
|
759
|
-
0,
|
|
760
|
-
[_uJSON],
|
|
761
|
-
[0], 1
|
|
762
|
-
];
|
|
763
|
-
var DeleteConfigRequest$ = [3, n0, _DCR,
|
|
764
|
-
0,
|
|
765
|
-
[_cIo, _cTo],
|
|
766
|
-
[[0, 1], [0, 1]], 2
|
|
767
|
-
];
|
|
768
|
-
var DeleteDataflowEndpointGroupRequest$ = [3, n0, _DDEGR,
|
|
769
|
-
0,
|
|
770
|
-
[_dEGI],
|
|
771
|
-
[[0, 1]], 1
|
|
772
|
-
];
|
|
773
|
-
var DeleteEphemerisRequest$ = [3, n0, _DER,
|
|
774
|
-
0,
|
|
775
|
-
[_eI],
|
|
776
|
-
[[0, 1]], 1
|
|
777
|
-
];
|
|
778
|
-
var DeleteMissionProfileRequest$ = [3, n0, _DMPR,
|
|
779
|
-
0,
|
|
780
|
-
[_mPI],
|
|
781
|
-
[[0, 1]], 1
|
|
782
|
-
];
|
|
783
|
-
var DemodulationConfig$ = [3, n0, _DCe,
|
|
784
|
-
0,
|
|
785
|
-
[_uJSON],
|
|
786
|
-
[0], 1
|
|
787
|
-
];
|
|
788
|
-
var DependencyException$ = [-3, n0, _DEe,
|
|
789
|
-
{ [_er]: _se, [_hE]: 531 },
|
|
790
|
-
[_me, _pN],
|
|
791
|
-
[0, 0]
|
|
792
|
-
];
|
|
793
|
-
schema.TypeRegistry.for(n0).registerError(DependencyException$, DependencyException);
|
|
794
|
-
var DescribeContactRequest$ = [3, n0, _DCRe,
|
|
795
|
-
0,
|
|
796
|
-
[_cI],
|
|
797
|
-
[[0, 1]], 1
|
|
798
|
-
];
|
|
799
|
-
var DescribeContactResponse$ = [3, n0, _DCRes,
|
|
800
|
-
0,
|
|
801
|
-
[_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _t, _r, _dL, _vST, _vET, _tO, _e],
|
|
802
|
-
[0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 128 | 0, 0, () => DataflowList, 4, 4, () => TrackingOverrides$, () => EphemerisResponseData$]
|
|
803
|
-
];
|
|
804
|
-
var DescribeEphemerisRequest$ = [3, n0, _DERe,
|
|
805
|
-
0,
|
|
806
|
-
[_eI],
|
|
807
|
-
[[0, 1]], 1
|
|
808
|
-
];
|
|
809
|
-
var DescribeEphemerisResponse$ = [3, n0, _DERes,
|
|
810
|
-
0,
|
|
811
|
-
[_eI, _sI, _s, _p, _cTr, _ena, _n, _t, _sD, _iR, _eR],
|
|
812
|
-
[0, 0, 0, 1, 4, 2, 0, 128 | 0, () => EphemerisTypeDescription$, 0, () => EphemerisErrorReasonList]
|
|
813
|
-
];
|
|
814
|
-
var Destination$ = [3, n0, _D,
|
|
815
|
-
0,
|
|
816
|
-
[_cTo, _cIo, _cDo, _dDR],
|
|
817
|
-
[0, 0, () => ConfigDetails$, 0]
|
|
818
|
-
];
|
|
819
|
-
var DiscoveryData$ = [3, n0, _DDi,
|
|
820
|
-
0,
|
|
821
|
-
[_pIA, _pIAr, _cAa],
|
|
822
|
-
[64 | 0, 64 | 0, 64 | 0], 3
|
|
823
|
-
];
|
|
824
|
-
var DownlinkAwsGroundStationAgentEndpoint$ = [3, n0, _DAGSAE,
|
|
825
|
-
0,
|
|
826
|
-
[_n, _dD],
|
|
827
|
-
[0, () => DownlinkDataflowDetails$], 2
|
|
828
|
-
];
|
|
829
|
-
var DownlinkAwsGroundStationAgentEndpointDetails$ = [3, n0, _DAGSAED,
|
|
830
|
-
0,
|
|
831
|
-
[_n, _dD, _aS, _aR],
|
|
832
|
-
[0, () => DownlinkDataflowDetails$, 0, 0], 2
|
|
833
|
-
];
|
|
834
|
-
var DownlinkConnectionDetails$ = [3, n0, _DCD,
|
|
835
|
-
0,
|
|
836
|
-
[_aIAPA, _eAAP],
|
|
837
|
-
[() => RangedConnectionDetails$, () => ConnectionDetails$], 2
|
|
838
|
-
];
|
|
839
|
-
var Eirp$ = [3, n0, _E,
|
|
840
|
-
0,
|
|
841
|
-
[_va, _u],
|
|
842
|
-
[1, 0], 2
|
|
843
|
-
];
|
|
844
|
-
var Elevation$ = [3, n0, _El,
|
|
845
|
-
0,
|
|
846
|
-
[_va, _un],
|
|
847
|
-
[1, 0], 2
|
|
848
|
-
];
|
|
849
|
-
var EndpointDetails$ = [3, n0, _ED,
|
|
850
|
-
0,
|
|
851
|
-
[_sDe, _end, _aGSAE, _uAGSAE, _dAGSAE, _hS, _hR],
|
|
852
|
-
[() => SecurityDetails$, () => DataflowEndpoint$, () => AwsGroundStationAgentEndpoint$, () => UplinkAwsGroundStationAgentEndpointDetails$, () => DownlinkAwsGroundStationAgentEndpointDetails$, 0, 64 | 0]
|
|
853
|
-
];
|
|
854
|
-
var EphemerisDescription$ = [3, n0, _EDp,
|
|
855
|
-
0,
|
|
856
|
-
[_sSO, _eDp],
|
|
857
|
-
[() => S3Object$, 0]
|
|
858
|
-
];
|
|
859
|
-
var EphemerisErrorReason$ = [3, n0, _EER,
|
|
860
|
-
0,
|
|
861
|
-
[_eC, _eM],
|
|
862
|
-
[0, 0], 2
|
|
863
|
-
];
|
|
864
|
-
var EphemerisIdResponse$ = [3, n0, _EIR,
|
|
865
|
-
0,
|
|
866
|
-
[_eI],
|
|
867
|
-
[0]
|
|
868
|
-
];
|
|
869
|
-
var EphemerisItem$ = [3, n0, _EI,
|
|
870
|
-
0,
|
|
871
|
-
[_eI, _eTp, _s, _p, _ena, _cTr, _n, _sSO],
|
|
872
|
-
[0, 0, 0, 1, 2, 4, 0, () => S3Object$]
|
|
873
|
-
];
|
|
874
|
-
var EphemerisMetaData$ = [3, n0, _EMD,
|
|
875
|
-
0,
|
|
876
|
-
[_so, _eI, _ep, _n],
|
|
877
|
-
[0, 0, 4, 0], 1
|
|
878
|
-
];
|
|
879
|
-
var EphemerisResponseData$ = [3, n0, _ERD,
|
|
880
|
-
0,
|
|
881
|
-
[_eTp, _eI],
|
|
882
|
-
[0, 0], 1
|
|
883
|
-
];
|
|
884
|
-
var Frequency$ = [3, n0, _F,
|
|
885
|
-
0,
|
|
886
|
-
[_va, _u],
|
|
887
|
-
[1, 0], 2
|
|
888
|
-
];
|
|
889
|
-
var FrequencyBandwidth$ = [3, n0, _FB,
|
|
890
|
-
0,
|
|
891
|
-
[_va, _u],
|
|
892
|
-
[1, 0], 2
|
|
893
|
-
];
|
|
894
|
-
var GetAgentConfigurationRequest$ = [3, n0, _GACR,
|
|
895
|
-
0,
|
|
896
|
-
[_aI],
|
|
897
|
-
[[0, 1]], 1
|
|
898
|
-
];
|
|
899
|
-
var GetAgentConfigurationResponse$ = [3, n0, _GACRe,
|
|
900
|
-
0,
|
|
901
|
-
[_aI, _tDa],
|
|
902
|
-
[0, 0]
|
|
903
|
-
];
|
|
904
|
-
var GetAgentTaskResponseUrlRequest$ = [3, n0, _GATRUR,
|
|
905
|
-
0,
|
|
906
|
-
[_aI, _tI],
|
|
907
|
-
[[0, 1], [0, 1]], 2
|
|
908
|
-
];
|
|
909
|
-
var GetAgentTaskResponseUrlResponse$ = [3, n0, _GATRURe,
|
|
910
|
-
0,
|
|
911
|
-
[_aI, _tI, _pLU],
|
|
912
|
-
[0, 0, 0], 3
|
|
913
|
-
];
|
|
914
|
-
var GetConfigRequest$ = [3, n0, _GCR,
|
|
915
|
-
0,
|
|
916
|
-
[_cIo, _cTo],
|
|
917
|
-
[[0, 1], [0, 1]], 2
|
|
918
|
-
];
|
|
919
|
-
var GetConfigResponse$ = [3, n0, _GCRe,
|
|
920
|
-
0,
|
|
921
|
-
[_cIo, _cAo, _n, _cD, _cTo, _t],
|
|
922
|
-
[0, 0, 0, () => ConfigTypeData$, 0, 128 | 0], 4
|
|
923
|
-
];
|
|
924
|
-
var GetDataflowEndpointGroupRequest$ = [3, n0, _GDEGR,
|
|
925
|
-
0,
|
|
926
|
-
[_dEGI],
|
|
927
|
-
[[0, 1]], 1
|
|
928
|
-
];
|
|
929
|
-
var GetDataflowEndpointGroupResponse$ = [3, n0, _GDEGRe,
|
|
930
|
-
0,
|
|
931
|
-
[_dEGI, _dEGA, _eDn, _t, _cPPDS, _cPPDSo],
|
|
932
|
-
[0, 0, () => EndpointDetailsList, 128 | 0, 1, 1]
|
|
933
|
-
];
|
|
934
|
-
var GetMinuteUsageRequest$ = [3, n0, _GMUR,
|
|
935
|
-
0,
|
|
936
|
-
[_mo, _y],
|
|
937
|
-
[1, 1], 2
|
|
938
|
-
];
|
|
939
|
-
var GetMinuteUsageResponse$ = [3, n0, _GMURe,
|
|
940
|
-
0,
|
|
941
|
-
[_iRMC, _tRMA, _uMS, _tSM, _eMR],
|
|
942
|
-
[2, 1, 1, 1, 1]
|
|
943
|
-
];
|
|
944
|
-
var GetMissionProfileRequest$ = [3, n0, _GMPR,
|
|
945
|
-
0,
|
|
946
|
-
[_mPI],
|
|
947
|
-
[[0, 1]], 1
|
|
948
|
-
];
|
|
949
|
-
var GetMissionProfileResponse$ = [3, n0, _GMPRe,
|
|
950
|
-
0,
|
|
951
|
-
[_mPI, _mPA, _n, _r, _cPPDS, _cPPDSo, _mVCDS, _dE, _tCA, _tSCA, _t, _sKK, _sKR],
|
|
952
|
-
[0, 0, 0, 0, 1, 1, 1, [1, n0, _DEL, 0, 64 | 0], 0, 0, 128 | 0, () => KmsKey$, 0]
|
|
953
|
-
];
|
|
954
|
-
var GetSatelliteRequest$ = [3, n0, _GSR,
|
|
955
|
-
0,
|
|
956
|
-
[_sI],
|
|
957
|
-
[[0, 1]], 1
|
|
958
|
-
];
|
|
959
|
-
var GetSatelliteResponse$ = [3, n0, _GSRe,
|
|
960
|
-
0,
|
|
961
|
-
[_sI, _sAa, _nSID, _gSr, _cE],
|
|
962
|
-
[0, 0, 1, 64 | 0, () => EphemerisMetaData$]
|
|
963
|
-
];
|
|
964
|
-
var GroundStationData$ = [3, n0, _GSD,
|
|
965
|
-
0,
|
|
966
|
-
[_gSI, _gSN, _r],
|
|
967
|
-
[0, 0, 0]
|
|
968
|
-
];
|
|
969
|
-
var IntegerRange$ = [3, n0, _IR,
|
|
970
|
-
0,
|
|
971
|
-
[_mi, _ma],
|
|
972
|
-
[1, 1], 2
|
|
973
|
-
];
|
|
974
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
975
|
-
{ [_er]: _c, [_hE]: 431 },
|
|
976
|
-
[_me, _pN],
|
|
977
|
-
[0, 0]
|
|
978
|
-
];
|
|
979
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
980
|
-
var ISO8601TimeRange$ = [3, n0, _ISOTR,
|
|
981
|
-
0,
|
|
982
|
-
[_sT, _eT],
|
|
983
|
-
[5, 5], 2
|
|
984
|
-
];
|
|
985
|
-
var KinesisDataStreamData$ = [3, n0, _KDSD,
|
|
986
|
-
0,
|
|
987
|
-
[_kRA, _kDSA],
|
|
988
|
-
[0, 0], 2
|
|
989
|
-
];
|
|
990
|
-
var ListConfigsRequest$ = [3, n0, _LCR,
|
|
991
|
-
0,
|
|
992
|
-
[_mR, _nT],
|
|
993
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
994
|
-
];
|
|
995
|
-
var ListConfigsResponse$ = [3, n0, _LCRi,
|
|
996
|
-
0,
|
|
997
|
-
[_nT, _cL],
|
|
998
|
-
[0, () => ConfigList]
|
|
999
|
-
];
|
|
1000
|
-
var ListContactsRequest$ = [3, n0, _LCRis,
|
|
1001
|
-
0,
|
|
1002
|
-
[_sL, _sT, _eT, _mR, _nT, _gS, _sAa, _mPA, _e],
|
|
1003
|
-
[64 | 0, 4, 4, 1, 0, 0, 0, 0, () => EphemerisFilter$], 3
|
|
1004
|
-
];
|
|
1005
|
-
var ListContactsResponse$ = [3, n0, _LCRist,
|
|
1006
|
-
0,
|
|
1007
|
-
[_nT, _cLo],
|
|
1008
|
-
[0, () => ContactList]
|
|
1009
|
-
];
|
|
1010
|
-
var ListDataflowEndpointGroupsRequest$ = [3, n0, _LDEGR,
|
|
1011
|
-
0,
|
|
1012
|
-
[_mR, _nT],
|
|
1013
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1014
|
-
];
|
|
1015
|
-
var ListDataflowEndpointGroupsResponse$ = [3, n0, _LDEGRi,
|
|
1016
|
-
0,
|
|
1017
|
-
[_nT, _dEGL],
|
|
1018
|
-
[0, () => DataflowEndpointGroupList]
|
|
1019
|
-
];
|
|
1020
|
-
var ListEphemeridesRequest$ = [3, n0, _LER,
|
|
1021
|
-
0,
|
|
1022
|
-
[_sT, _eT, _sI, _eTp, _sL, _mR, _nT],
|
|
1023
|
-
[4, 4, 0, 0, 64 | 0, [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1024
|
-
];
|
|
1025
|
-
var ListEphemeridesResponse$ = [3, n0, _LERi,
|
|
1026
|
-
0,
|
|
1027
|
-
[_nT, _eph],
|
|
1028
|
-
[0, () => EphemeridesList]
|
|
1029
|
-
];
|
|
1030
|
-
var ListGroundStationsRequest$ = [3, n0, _LGSR,
|
|
1031
|
-
0,
|
|
1032
|
-
[_sI, _mR, _nT],
|
|
1033
|
-
[[0, { [_hQ]: _sI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1034
|
-
];
|
|
1035
|
-
var ListGroundStationsResponse$ = [3, n0, _LGSRi,
|
|
1036
|
-
0,
|
|
1037
|
-
[_nT, _gSL],
|
|
1038
|
-
[0, () => GroundStationList]
|
|
1039
|
-
];
|
|
1040
|
-
var ListMissionProfilesRequest$ = [3, n0, _LMPR,
|
|
1041
|
-
0,
|
|
1042
|
-
[_mR, _nT],
|
|
1043
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1044
|
-
];
|
|
1045
|
-
var ListMissionProfilesResponse$ = [3, n0, _LMPRi,
|
|
1046
|
-
0,
|
|
1047
|
-
[_nT, _mPL],
|
|
1048
|
-
[0, () => MissionProfileList]
|
|
1049
|
-
];
|
|
1050
|
-
var ListSatellitesRequest$ = [3, n0, _LSR,
|
|
1051
|
-
0,
|
|
1052
|
-
[_mR, _nT],
|
|
1053
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1054
|
-
];
|
|
1055
|
-
var ListSatellitesResponse$ = [3, n0, _LSRi,
|
|
1056
|
-
0,
|
|
1057
|
-
[_nT, _sa],
|
|
1058
|
-
[0, () => SatelliteList]
|
|
1059
|
-
];
|
|
1060
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1061
|
-
0,
|
|
1062
|
-
[_rA],
|
|
1063
|
-
[[0, 1]], 1
|
|
1064
|
-
];
|
|
1065
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1066
|
-
0,
|
|
1067
|
-
[_t],
|
|
1068
|
-
[128 | 0]
|
|
1069
|
-
];
|
|
1070
|
-
var MissionProfileIdResponse$ = [3, n0, _MPIR,
|
|
1071
|
-
0,
|
|
1072
|
-
[_mPI],
|
|
1073
|
-
[0]
|
|
1074
|
-
];
|
|
1075
|
-
var MissionProfileListItem$ = [3, n0, _MPLI,
|
|
1076
|
-
0,
|
|
1077
|
-
[_mPI, _mPA, _r, _n],
|
|
1078
|
-
[0, 0, 0, 0]
|
|
1079
|
-
];
|
|
1080
|
-
var OEMEphemeris$ = [3, n0, _OEME,
|
|
1081
|
-
0,
|
|
1082
|
-
[_sO, _oD],
|
|
1083
|
-
[() => S3Object$, 0]
|
|
1084
|
-
];
|
|
1085
|
-
var RangedConnectionDetails$ = [3, n0, _RCD,
|
|
1086
|
-
0,
|
|
1087
|
-
[_sA, _m],
|
|
1088
|
-
[() => RangedSocketAddress$, 1], 1
|
|
1089
|
-
];
|
|
1090
|
-
var RangedSocketAddress$ = [3, n0, _RSA,
|
|
1091
|
-
0,
|
|
1092
|
-
[_n, _pR],
|
|
1093
|
-
[0, () => IntegerRange$], 2
|
|
1094
|
-
];
|
|
1095
|
-
var RegisterAgentRequest$ = [3, n0, _RAR,
|
|
1096
|
-
0,
|
|
1097
|
-
[_dDi, _aD, _t],
|
|
1098
|
-
[() => DiscoveryData$, () => AgentDetails$, 128 | 0], 2
|
|
1099
|
-
];
|
|
1100
|
-
var RegisterAgentResponse$ = [3, n0, _RARe,
|
|
1101
|
-
0,
|
|
1102
|
-
[_aI],
|
|
1103
|
-
[0]
|
|
1104
|
-
];
|
|
1105
|
-
var ReserveContactRequest$ = [3, n0, _RCR,
|
|
1106
|
-
0,
|
|
1107
|
-
[_mPA, _sT, _eT, _gS, _sAa, _t, _tO],
|
|
1108
|
-
[0, 4, 4, 0, 0, 128 | 0, () => TrackingOverrides$], 4
|
|
1109
|
-
];
|
|
1110
|
-
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
1111
|
-
{ [_er]: _c, [_hE]: 409 },
|
|
1112
|
-
[_me],
|
|
1113
|
-
[0]
|
|
1114
|
-
];
|
|
1115
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
1116
|
-
var ResourceLimitExceededException$ = [-3, n0, _RLEE,
|
|
1117
|
-
{ [_er]: _c, [_hE]: 429 },
|
|
1118
|
-
[_me, _pN],
|
|
1119
|
-
[0, 0]
|
|
1120
|
-
];
|
|
1121
|
-
schema.TypeRegistry.for(n0).registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
1122
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1123
|
-
{ [_er]: _c, [_hE]: 434 },
|
|
1124
|
-
[_me],
|
|
1125
|
-
[0]
|
|
1126
|
-
];
|
|
1127
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1128
|
-
var S3Object$ = [3, n0, _SO,
|
|
1129
|
-
0,
|
|
1130
|
-
[_b, _k, _ve],
|
|
1131
|
-
[0, 0, 0]
|
|
1132
|
-
];
|
|
1133
|
-
var S3RecordingConfig$ = [3, n0, _SRC,
|
|
1134
|
-
0,
|
|
1135
|
-
[_bA, _rAo, _pr],
|
|
1136
|
-
[0, 0, 0], 2
|
|
1137
|
-
];
|
|
1138
|
-
var S3RecordingDetails$ = [3, n0, _SRD,
|
|
1139
|
-
0,
|
|
1140
|
-
[_bA, _kT],
|
|
1141
|
-
[0, 0]
|
|
1142
|
-
];
|
|
1143
|
-
var SatelliteListItem$ = [3, n0, _SLI,
|
|
1144
|
-
0,
|
|
1145
|
-
[_sI, _sAa, _nSID, _gSr, _cE],
|
|
1146
|
-
[0, 0, 1, 64 | 0, () => EphemerisMetaData$]
|
|
1147
|
-
];
|
|
1148
|
-
var SecurityDetails$ = [3, n0, _SD,
|
|
1149
|
-
0,
|
|
1150
|
-
[_sIu, _sGI, _rAo],
|
|
1151
|
-
[64 | 0, 64 | 0, 0], 3
|
|
1152
|
-
];
|
|
1153
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1154
|
-
{ [_er]: _c, [_hE]: 402 },
|
|
1155
|
-
[_me, _pN],
|
|
1156
|
-
[0, 0]
|
|
1157
|
-
];
|
|
1158
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1159
|
-
var SocketAddress$ = [3, n0, _SA,
|
|
1160
|
-
0,
|
|
1161
|
-
[_n, _po],
|
|
1162
|
-
[0, 1], 2
|
|
1163
|
-
];
|
|
1164
|
-
var Source$ = [3, n0, _S,
|
|
1165
|
-
0,
|
|
1166
|
-
[_cTo, _cIo, _cDo, _dSR],
|
|
1167
|
-
[0, 0, () => ConfigDetails$, 0]
|
|
1168
|
-
];
|
|
1169
|
-
var SpectrumConfig$ = [3, n0, _SC,
|
|
1170
|
-
0,
|
|
1171
|
-
[_cF, _ba, _pol],
|
|
1172
|
-
[() => Frequency$, () => FrequencyBandwidth$, 0], 2
|
|
1173
|
-
];
|
|
1174
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1175
|
-
0,
|
|
1176
|
-
[_rA, _t],
|
|
1177
|
-
[[0, 1], 128 | 0], 2
|
|
1178
|
-
];
|
|
1179
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1180
|
-
0,
|
|
1181
|
-
[],
|
|
1182
|
-
[]
|
|
1183
|
-
];
|
|
1184
|
-
var TelemetrySinkConfig$ = [3, n0, _TSC,
|
|
1185
|
-
0,
|
|
1186
|
-
[_tST, _tSD],
|
|
1187
|
-
[0, () => TelemetrySinkData$], 2
|
|
1188
|
-
];
|
|
1189
|
-
var TimeAzEl$ = [3, n0, _TAE,
|
|
1190
|
-
0,
|
|
1191
|
-
[_dt, _az, _el],
|
|
1192
|
-
[1, 1, 1], 3
|
|
1193
|
-
];
|
|
1194
|
-
var TimeRange$ = [3, n0, _TR,
|
|
1195
|
-
0,
|
|
1196
|
-
[_sT, _eT],
|
|
1197
|
-
[4, 4], 2
|
|
1198
|
-
];
|
|
1199
|
-
var TLEData$ = [3, n0, _TLED,
|
|
1200
|
-
0,
|
|
1201
|
-
[_tL, _tLl, _vTR],
|
|
1202
|
-
[0, 0, () => TimeRange$], 3
|
|
1203
|
-
];
|
|
1204
|
-
var TLEEphemeris$ = [3, n0, _TLEE,
|
|
1205
|
-
0,
|
|
1206
|
-
[_sO, _tDl],
|
|
1207
|
-
[() => S3Object$, () => TLEDataList]
|
|
1208
|
-
];
|
|
1209
|
-
var TrackingConfig$ = [3, n0, _TC,
|
|
1210
|
-
0,
|
|
1211
|
-
[_au],
|
|
1212
|
-
[0], 1
|
|
1213
|
-
];
|
|
1214
|
-
var TrackingOverrides$ = [3, n0, _TO,
|
|
1215
|
-
0,
|
|
1216
|
-
[_pTS],
|
|
1217
|
-
[() => ProgramTrackSettings$], 1
|
|
1218
|
-
];
|
|
1219
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1220
|
-
0,
|
|
1221
|
-
[_rA, _tK],
|
|
1222
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1223
|
-
];
|
|
1224
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1225
|
-
0,
|
|
1226
|
-
[],
|
|
1227
|
-
[]
|
|
1228
|
-
];
|
|
1229
|
-
var UpdateAgentStatusRequest$ = [3, n0, _UASR,
|
|
1230
|
-
0,
|
|
1231
|
-
[_aI, _tI, _aSg, _cSo],
|
|
1232
|
-
[[0, 1], 0, () => AggregateStatus$, () => ComponentStatusList], 4
|
|
1233
|
-
];
|
|
1234
|
-
var UpdateAgentStatusResponse$ = [3, n0, _UASRp,
|
|
1235
|
-
0,
|
|
1236
|
-
[_aI],
|
|
1237
|
-
[0], 1
|
|
1238
|
-
];
|
|
1239
|
-
var UpdateConfigRequest$ = [3, n0, _UCR,
|
|
1240
|
-
0,
|
|
1241
|
-
[_cIo, _n, _cTo, _cD],
|
|
1242
|
-
[[0, 1], 0, [0, 1], () => ConfigTypeData$], 4
|
|
1243
|
-
];
|
|
1244
|
-
var UpdateEphemerisRequest$ = [3, n0, _UER,
|
|
1245
|
-
0,
|
|
1246
|
-
[_eI, _ena, _n, _p],
|
|
1247
|
-
[[0, 1], 2, 0, 1], 2
|
|
1248
|
-
];
|
|
1249
|
-
var UpdateMissionProfileRequest$ = [3, n0, _UMPR,
|
|
1250
|
-
0,
|
|
1251
|
-
[_mPI, _n, _cPPDS, _cPPDSo, _mVCDS, _dE, _tCA, _tSCA, _sKK, _sKR],
|
|
1252
|
-
[[0, 1], 0, 1, 1, 1, [1, n0, _DEL, 0, 64 | 0], 0, 0, () => KmsKey$, 0], 1
|
|
1253
|
-
];
|
|
1254
|
-
var UplinkAwsGroundStationAgentEndpoint$ = [3, n0, _UAGSAE,
|
|
1255
|
-
0,
|
|
1256
|
-
[_n, _dD],
|
|
1257
|
-
[0, () => UplinkDataflowDetails$], 2
|
|
1258
|
-
];
|
|
1259
|
-
var UplinkAwsGroundStationAgentEndpointDetails$ = [3, n0, _UAGSAED,
|
|
1260
|
-
0,
|
|
1261
|
-
[_n, _dD, _aS, _aR],
|
|
1262
|
-
[0, () => UplinkDataflowDetails$, 0, 0], 2
|
|
1263
|
-
];
|
|
1264
|
-
var UplinkConnectionDetails$ = [3, n0, _UCD,
|
|
1265
|
-
0,
|
|
1266
|
-
[_iAAP, _aIAPA],
|
|
1267
|
-
[() => ConnectionDetails$, () => RangedConnectionDetails$], 2
|
|
1268
|
-
];
|
|
1269
|
-
var UplinkEchoConfig$ = [3, n0, _UEC,
|
|
1270
|
-
0,
|
|
1271
|
-
[_ena, _aUCA],
|
|
1272
|
-
[2, 0], 2
|
|
1273
|
-
];
|
|
1274
|
-
var UplinkSpectrumConfig$ = [3, n0, _USC,
|
|
1275
|
-
0,
|
|
1276
|
-
[_cF, _pol],
|
|
1277
|
-
[() => Frequency$, 0], 1
|
|
1278
|
-
];
|
|
1279
|
-
var GroundStationServiceException$ = [-3, _sm, "GroundStationServiceException", 0, [], []];
|
|
1280
|
-
schema.TypeRegistry.for(_sm).registerError(GroundStationServiceException$, GroundStationServiceException);
|
|
1281
|
-
var AzElSegmentList = [1, n0, _AESL,
|
|
1282
|
-
0, () => AzElSegment$
|
|
1283
|
-
];
|
|
1284
|
-
var ComponentStatusList = [1, n0, _CSL,
|
|
1285
|
-
0, () => ComponentStatusData$
|
|
1286
|
-
];
|
|
1287
|
-
var ComponentVersionList = [1, n0, _CVL,
|
|
1288
|
-
0, () => ComponentVersion$
|
|
1289
|
-
];
|
|
1290
|
-
var ConfigList = [1, n0, _CL,
|
|
1291
|
-
0, () => ConfigListItem$
|
|
1292
|
-
];
|
|
1293
|
-
var ContactList = [1, n0, _CLo,
|
|
1294
|
-
0, () => ContactData$
|
|
1295
|
-
];
|
|
1296
|
-
var CreateEndpointDetailsList = [1, n0, _CEDL,
|
|
1297
|
-
0, () => CreateEndpointDetails$
|
|
1298
|
-
];
|
|
1299
|
-
var DataflowEndpointGroupList = [1, n0, _DEGL,
|
|
1300
|
-
0, () => DataflowEndpointListItem$
|
|
1301
|
-
];
|
|
1302
|
-
var DataflowList = [1, n0, _DL,
|
|
1303
|
-
0, () => DataflowDetail$
|
|
1304
|
-
];
|
|
1305
|
-
var EndpointDetailsList = [1, n0, _EDL,
|
|
1306
|
-
0, () => EndpointDetails$
|
|
1307
|
-
];
|
|
1308
|
-
var EphemeridesList = [1, n0, _EL,
|
|
1309
|
-
0, () => EphemerisItem$
|
|
1310
|
-
];
|
|
1311
|
-
var EphemerisErrorReasonList = [1, n0, _EERL,
|
|
1312
|
-
0, () => EphemerisErrorReason$
|
|
1313
|
-
];
|
|
1314
|
-
var GroundStationList = [1, n0, _GSL,
|
|
1315
|
-
0, () => GroundStationData$
|
|
1316
|
-
];
|
|
1317
|
-
var MissionProfileList = [1, n0, _MPL,
|
|
1318
|
-
0, () => MissionProfileListItem$
|
|
1319
|
-
];
|
|
1320
|
-
var SatelliteList = [1, n0, _SL,
|
|
1321
|
-
0, () => SatelliteListItem$
|
|
1322
|
-
];
|
|
1323
|
-
var TimeAzElList = [1, n0, _TAEL,
|
|
1324
|
-
0, () => TimeAzEl$
|
|
1325
|
-
];
|
|
1326
|
-
var TLEDataList = [1, n0, _TLEDL,
|
|
1327
|
-
0, () => TLEData$
|
|
1328
|
-
];
|
|
1329
|
-
var AzElSegmentsData$ = [4, n0, _AESD,
|
|
1330
|
-
0,
|
|
1331
|
-
[_sO, _aED],
|
|
1332
|
-
[() => S3Object$, () => AzElSegments$]
|
|
1333
|
-
];
|
|
1334
|
-
var ConfigDetails$ = [4, n0, _CDon,
|
|
1335
|
-
0,
|
|
1336
|
-
[_eD, _aDDD, _sRD],
|
|
1337
|
-
[() => EndpointDetails$, () => AntennaDemodDecodeDetails$, () => S3RecordingDetails$]
|
|
1338
|
-
];
|
|
1339
|
-
var ConfigTypeData$ = [4, n0, _CTD,
|
|
1340
|
-
0,
|
|
1341
|
-
[_aDC, _tC, _dEC, _aDDDC, _aUC, _uEC, _sRC, _tSC],
|
|
1342
|
-
[() => AntennaDownlinkConfig$, () => TrackingConfig$, () => DataflowEndpointConfig$, () => AntennaDownlinkDemodDecodeConfig$, () => AntennaUplinkConfig$, () => UplinkEchoConfig$, () => S3RecordingConfig$, () => TelemetrySinkConfig$]
|
|
1343
|
-
];
|
|
1344
|
-
var CreateEndpointDetails$ = [4, n0, _CED,
|
|
1345
|
-
0,
|
|
1346
|
-
[_uAGSAE, _dAGSAE],
|
|
1347
|
-
[() => UplinkAwsGroundStationAgentEndpoint$, () => DownlinkAwsGroundStationAgentEndpoint$]
|
|
1348
|
-
];
|
|
1349
|
-
var DownlinkDataflowDetails$ = [4, n0, _DDD,
|
|
1350
|
-
0,
|
|
1351
|
-
[_aCD],
|
|
1352
|
-
[() => DownlinkConnectionDetails$]
|
|
1353
|
-
];
|
|
1354
|
-
var EphemerisData$ = [4, n0, _EDph,
|
|
1355
|
-
0,
|
|
1356
|
-
[_tl, _o, _aE],
|
|
1357
|
-
[() => TLEEphemeris$, () => OEMEphemeris$, () => AzElEphemeris$]
|
|
1358
|
-
];
|
|
1359
|
-
var EphemerisFilter$ = [4, n0, _EF,
|
|
1360
|
-
0,
|
|
1361
|
-
[_aE],
|
|
1362
|
-
[() => AzElEphemerisFilter$]
|
|
1363
|
-
];
|
|
1364
|
-
var EphemerisTypeDescription$ = [4, n0, _ETD,
|
|
1365
|
-
0,
|
|
1366
|
-
[_tl, _o, _aE],
|
|
1367
|
-
[() => EphemerisDescription$, () => EphemerisDescription$, () => EphemerisDescription$]
|
|
1368
|
-
];
|
|
1369
|
-
var KmsKey$ = [4, n0, _KK,
|
|
1370
|
-
0,
|
|
1371
|
-
[_kKA, _kAA, _kAN],
|
|
1372
|
-
[0, 0, 0]
|
|
1373
|
-
];
|
|
1374
|
-
var ProgramTrackSettings$ = [4, n0, _PTS,
|
|
1375
|
-
0,
|
|
1376
|
-
[_aE],
|
|
1377
|
-
[() => AzElProgramTrackSettings$]
|
|
1378
|
-
];
|
|
1379
|
-
var TelemetrySinkData$ = [4, n0, _TSD,
|
|
1380
|
-
0,
|
|
1381
|
-
[_kDSD],
|
|
1382
|
-
[() => KinesisDataStreamData$]
|
|
1383
|
-
];
|
|
1384
|
-
var UplinkDataflowDetails$ = [4, n0, _UDD,
|
|
1385
|
-
0,
|
|
1386
|
-
[_aCD],
|
|
1387
|
-
[() => UplinkConnectionDetails$]
|
|
1388
|
-
];
|
|
1389
|
-
var CancelContact$ = [9, n0, _CC,
|
|
1390
|
-
{ [_h]: ["DELETE", "/contact/{contactId}", 200] }, () => CancelContactRequest$, () => ContactIdResponse$
|
|
1391
|
-
];
|
|
1392
|
-
var CreateConfig$ = [9, n0, _CCr,
|
|
1393
|
-
{ [_h]: ["POST", "/config", 200] }, () => CreateConfigRequest$, () => ConfigIdResponse$
|
|
1394
|
-
];
|
|
1395
|
-
var CreateDataflowEndpointGroup$ = [9, n0, _CDEG,
|
|
1396
|
-
{ [_h]: ["POST", "/dataflowEndpointGroup", 200] }, () => CreateDataflowEndpointGroupRequest$, () => DataflowEndpointGroupIdResponse$
|
|
1397
|
-
];
|
|
1398
|
-
var CreateDataflowEndpointGroupV2$ = [9, n0, _CDEGV,
|
|
1399
|
-
{ [_h]: ["POST", "/dataflowEndpointGroupV2", 200] }, () => CreateDataflowEndpointGroupV2Request$, () => CreateDataflowEndpointGroupV2Response$
|
|
1400
|
-
];
|
|
1401
|
-
var CreateEphemeris$ = [9, n0, _CE,
|
|
1402
|
-
{ [_h]: ["POST", "/ephemeris", 200] }, () => CreateEphemerisRequest$, () => EphemerisIdResponse$
|
|
1403
|
-
];
|
|
1404
|
-
var CreateMissionProfile$ = [9, n0, _CMP,
|
|
1405
|
-
{ [_h]: ["POST", "/missionprofile", 200] }, () => CreateMissionProfileRequest$, () => MissionProfileIdResponse$
|
|
1406
|
-
];
|
|
1407
|
-
var DeleteConfig$ = [9, n0, _DCel,
|
|
1408
|
-
{ [_h]: ["DELETE", "/config/{configType}/{configId}", 200] }, () => DeleteConfigRequest$, () => ConfigIdResponse$
|
|
1409
|
-
];
|
|
1410
|
-
var DeleteDataflowEndpointGroup$ = [9, n0, _DDEG,
|
|
1411
|
-
{ [_h]: ["DELETE", "/dataflowEndpointGroup/{dataflowEndpointGroupId}", 200] }, () => DeleteDataflowEndpointGroupRequest$, () => DataflowEndpointGroupIdResponse$
|
|
1412
|
-
];
|
|
1413
|
-
var DeleteEphemeris$ = [9, n0, _DEel,
|
|
1414
|
-
{ [_h]: ["DELETE", "/ephemeris/{ephemerisId}", 200] }, () => DeleteEphemerisRequest$, () => EphemerisIdResponse$
|
|
1415
|
-
];
|
|
1416
|
-
var DeleteMissionProfile$ = [9, n0, _DMP,
|
|
1417
|
-
{ [_h]: ["DELETE", "/missionprofile/{missionProfileId}", 200] }, () => DeleteMissionProfileRequest$, () => MissionProfileIdResponse$
|
|
1418
|
-
];
|
|
1419
|
-
var DescribeContact$ = [9, n0, _DCes,
|
|
1420
|
-
{ [_h]: ["GET", "/contact/{contactId}", 200] }, () => DescribeContactRequest$, () => DescribeContactResponse$
|
|
1421
|
-
];
|
|
1422
|
-
var DescribeEphemeris$ = [9, n0, _DEes,
|
|
1423
|
-
{ [_h]: ["GET", "/ephemeris/{ephemerisId}", 200] }, () => DescribeEphemerisRequest$, () => DescribeEphemerisResponse$
|
|
1424
|
-
];
|
|
1425
|
-
var GetAgentConfiguration$ = [9, n0, _GAC,
|
|
1426
|
-
{ [_h]: ["GET", "/agent/{agentId}/configuration", 200] }, () => GetAgentConfigurationRequest$, () => GetAgentConfigurationResponse$
|
|
1427
|
-
];
|
|
1428
|
-
var GetAgentTaskResponseUrl$ = [9, n0, _GATRU,
|
|
1429
|
-
{ [_h]: ["GET", "/agentResponseUrl/{agentId}/{taskId}", 200] }, () => GetAgentTaskResponseUrlRequest$, () => GetAgentTaskResponseUrlResponse$
|
|
1430
|
-
];
|
|
1431
|
-
var GetConfig$ = [9, n0, _GC,
|
|
1432
|
-
{ [_h]: ["GET", "/config/{configType}/{configId}", 200] }, () => GetConfigRequest$, () => GetConfigResponse$
|
|
1433
|
-
];
|
|
1434
|
-
var GetDataflowEndpointGroup$ = [9, n0, _GDEG,
|
|
1435
|
-
{ [_h]: ["GET", "/dataflowEndpointGroup/{dataflowEndpointGroupId}", 200] }, () => GetDataflowEndpointGroupRequest$, () => GetDataflowEndpointGroupResponse$
|
|
1436
|
-
];
|
|
1437
|
-
var GetMinuteUsage$ = [9, n0, _GMU,
|
|
1438
|
-
{ [_h]: ["POST", "/minute-usage", 200] }, () => GetMinuteUsageRequest$, () => GetMinuteUsageResponse$
|
|
1439
|
-
];
|
|
1440
|
-
var GetMissionProfile$ = [9, n0, _GMP,
|
|
1441
|
-
{ [_h]: ["GET", "/missionprofile/{missionProfileId}", 200] }, () => GetMissionProfileRequest$, () => GetMissionProfileResponse$
|
|
1442
|
-
];
|
|
1443
|
-
var GetSatellite$ = [9, n0, _GS,
|
|
1444
|
-
{ [_h]: ["GET", "/satellite/{satelliteId}", 200] }, () => GetSatelliteRequest$, () => GetSatelliteResponse$
|
|
1445
|
-
];
|
|
1446
|
-
var ListConfigs$ = [9, n0, _LC,
|
|
1447
|
-
{ [_h]: ["GET", "/config", 200] }, () => ListConfigsRequest$, () => ListConfigsResponse$
|
|
1448
|
-
];
|
|
1449
|
-
var ListContacts$ = [9, n0, _LCi,
|
|
1450
|
-
{ [_h]: ["POST", "/contacts", 200] }, () => ListContactsRequest$, () => ListContactsResponse$
|
|
1451
|
-
];
|
|
1452
|
-
var ListDataflowEndpointGroups$ = [9, n0, _LDEG,
|
|
1453
|
-
{ [_h]: ["GET", "/dataflowEndpointGroup", 200] }, () => ListDataflowEndpointGroupsRequest$, () => ListDataflowEndpointGroupsResponse$
|
|
1454
|
-
];
|
|
1455
|
-
var ListEphemerides$ = [9, n0, _LE,
|
|
1456
|
-
{ [_h]: ["POST", "/ephemerides", 200] }, () => ListEphemeridesRequest$, () => ListEphemeridesResponse$
|
|
1457
|
-
];
|
|
1458
|
-
var ListGroundStations$ = [9, n0, _LGS,
|
|
1459
|
-
{ [_h]: ["GET", "/groundstation", 200] }, () => ListGroundStationsRequest$, () => ListGroundStationsResponse$
|
|
1460
|
-
];
|
|
1461
|
-
var ListMissionProfiles$ = [9, n0, _LMP,
|
|
1462
|
-
{ [_h]: ["GET", "/missionprofile", 200] }, () => ListMissionProfilesRequest$, () => ListMissionProfilesResponse$
|
|
1463
|
-
];
|
|
1464
|
-
var ListSatellites$ = [9, n0, _LS,
|
|
1465
|
-
{ [_h]: ["GET", "/satellite", 200] }, () => ListSatellitesRequest$, () => ListSatellitesResponse$
|
|
1466
|
-
];
|
|
1467
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1468
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1469
|
-
];
|
|
1470
|
-
var RegisterAgent$ = [9, n0, _RA,
|
|
1471
|
-
{ [_h]: ["POST", "/agent", 200] }, () => RegisterAgentRequest$, () => RegisterAgentResponse$
|
|
1472
|
-
];
|
|
1473
|
-
var ReserveContact$ = [9, n0, _RC,
|
|
1474
|
-
{ [_h]: ["POST", "/contact", 200] }, () => ReserveContactRequest$, () => ContactIdResponse$
|
|
1475
|
-
];
|
|
1476
|
-
var TagResource$ = [9, n0, _TRa,
|
|
1477
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1478
|
-
];
|
|
1479
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1480
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1481
|
-
];
|
|
1482
|
-
var UpdateAgentStatus$ = [9, n0, _UAS,
|
|
1483
|
-
{ [_h]: ["PUT", "/agent/{agentId}", 200] }, () => UpdateAgentStatusRequest$, () => UpdateAgentStatusResponse$
|
|
1484
|
-
];
|
|
1485
|
-
var UpdateConfig$ = [9, n0, _UC,
|
|
1486
|
-
{ [_h]: ["PUT", "/config/{configType}/{configId}", 200] }, () => UpdateConfigRequest$, () => ConfigIdResponse$
|
|
1487
|
-
];
|
|
1488
|
-
var UpdateEphemeris$ = [9, n0, _UE,
|
|
1489
|
-
{ [_h]: ["PUT", "/ephemeris/{ephemerisId}", 200] }, () => UpdateEphemerisRequest$, () => EphemerisIdResponse$
|
|
1490
|
-
];
|
|
1491
|
-
var UpdateMissionProfile$ = [9, n0, _UMP,
|
|
1492
|
-
{ [_h]: ["PUT", "/missionprofile/{missionProfileId}", 200] }, () => UpdateMissionProfileRequest$, () => MissionProfileIdResponse$
|
|
1493
|
-
];
|
|
1494
|
-
|
|
1495
117
|
class CancelContactCommand extends smithyClient.Command
|
|
1496
118
|
.classBuilder()
|
|
1497
119
|
.ep(commonParams)
|
|
@@ -1500,7 +122,7 @@ class CancelContactCommand extends smithyClient.Command
|
|
|
1500
122
|
})
|
|
1501
123
|
.s("GroundStation", "CancelContact", {})
|
|
1502
124
|
.n("GroundStationClient", "CancelContactCommand")
|
|
1503
|
-
.sc(CancelContact$)
|
|
125
|
+
.sc(schemas_0.CancelContact$)
|
|
1504
126
|
.build() {
|
|
1505
127
|
}
|
|
1506
128
|
|
|
@@ -1512,7 +134,7 @@ class CreateConfigCommand extends smithyClient.Command
|
|
|
1512
134
|
})
|
|
1513
135
|
.s("GroundStation", "CreateConfig", {})
|
|
1514
136
|
.n("GroundStationClient", "CreateConfigCommand")
|
|
1515
|
-
.sc(CreateConfig$)
|
|
137
|
+
.sc(schemas_0.CreateConfig$)
|
|
1516
138
|
.build() {
|
|
1517
139
|
}
|
|
1518
140
|
|
|
@@ -1524,7 +146,7 @@ class CreateDataflowEndpointGroupCommand extends smithyClient.Command
|
|
|
1524
146
|
})
|
|
1525
147
|
.s("GroundStation", "CreateDataflowEndpointGroup", {})
|
|
1526
148
|
.n("GroundStationClient", "CreateDataflowEndpointGroupCommand")
|
|
1527
|
-
.sc(CreateDataflowEndpointGroup$)
|
|
149
|
+
.sc(schemas_0.CreateDataflowEndpointGroup$)
|
|
1528
150
|
.build() {
|
|
1529
151
|
}
|
|
1530
152
|
|
|
@@ -1536,7 +158,7 @@ class CreateDataflowEndpointGroupV2Command extends smithyClient.Command
|
|
|
1536
158
|
})
|
|
1537
159
|
.s("GroundStation", "CreateDataflowEndpointGroupV2", {})
|
|
1538
160
|
.n("GroundStationClient", "CreateDataflowEndpointGroupV2Command")
|
|
1539
|
-
.sc(CreateDataflowEndpointGroupV2$)
|
|
161
|
+
.sc(schemas_0.CreateDataflowEndpointGroupV2$)
|
|
1540
162
|
.build() {
|
|
1541
163
|
}
|
|
1542
164
|
|
|
@@ -1548,7 +170,7 @@ class CreateEphemerisCommand extends smithyClient.Command
|
|
|
1548
170
|
})
|
|
1549
171
|
.s("GroundStation", "CreateEphemeris", {})
|
|
1550
172
|
.n("GroundStationClient", "CreateEphemerisCommand")
|
|
1551
|
-
.sc(CreateEphemeris$)
|
|
173
|
+
.sc(schemas_0.CreateEphemeris$)
|
|
1552
174
|
.build() {
|
|
1553
175
|
}
|
|
1554
176
|
|
|
@@ -1560,7 +182,7 @@ class CreateMissionProfileCommand extends smithyClient.Command
|
|
|
1560
182
|
})
|
|
1561
183
|
.s("GroundStation", "CreateMissionProfile", {})
|
|
1562
184
|
.n("GroundStationClient", "CreateMissionProfileCommand")
|
|
1563
|
-
.sc(CreateMissionProfile$)
|
|
185
|
+
.sc(schemas_0.CreateMissionProfile$)
|
|
1564
186
|
.build() {
|
|
1565
187
|
}
|
|
1566
188
|
|
|
@@ -1572,7 +194,7 @@ class DeleteConfigCommand extends smithyClient.Command
|
|
|
1572
194
|
})
|
|
1573
195
|
.s("GroundStation", "DeleteConfig", {})
|
|
1574
196
|
.n("GroundStationClient", "DeleteConfigCommand")
|
|
1575
|
-
.sc(DeleteConfig$)
|
|
197
|
+
.sc(schemas_0.DeleteConfig$)
|
|
1576
198
|
.build() {
|
|
1577
199
|
}
|
|
1578
200
|
|
|
@@ -1584,7 +206,7 @@ class DeleteDataflowEndpointGroupCommand extends smithyClient.Command
|
|
|
1584
206
|
})
|
|
1585
207
|
.s("GroundStation", "DeleteDataflowEndpointGroup", {})
|
|
1586
208
|
.n("GroundStationClient", "DeleteDataflowEndpointGroupCommand")
|
|
1587
|
-
.sc(DeleteDataflowEndpointGroup$)
|
|
209
|
+
.sc(schemas_0.DeleteDataflowEndpointGroup$)
|
|
1588
210
|
.build() {
|
|
1589
211
|
}
|
|
1590
212
|
|
|
@@ -1596,7 +218,7 @@ class DeleteEphemerisCommand extends smithyClient.Command
|
|
|
1596
218
|
})
|
|
1597
219
|
.s("GroundStation", "DeleteEphemeris", {})
|
|
1598
220
|
.n("GroundStationClient", "DeleteEphemerisCommand")
|
|
1599
|
-
.sc(DeleteEphemeris$)
|
|
221
|
+
.sc(schemas_0.DeleteEphemeris$)
|
|
1600
222
|
.build() {
|
|
1601
223
|
}
|
|
1602
224
|
|
|
@@ -1608,7 +230,7 @@ class DeleteMissionProfileCommand extends smithyClient.Command
|
|
|
1608
230
|
})
|
|
1609
231
|
.s("GroundStation", "DeleteMissionProfile", {})
|
|
1610
232
|
.n("GroundStationClient", "DeleteMissionProfileCommand")
|
|
1611
|
-
.sc(DeleteMissionProfile$)
|
|
233
|
+
.sc(schemas_0.DeleteMissionProfile$)
|
|
1612
234
|
.build() {
|
|
1613
235
|
}
|
|
1614
236
|
|
|
@@ -1620,7 +242,7 @@ class DescribeContactCommand extends smithyClient.Command
|
|
|
1620
242
|
})
|
|
1621
243
|
.s("GroundStation", "DescribeContact", {})
|
|
1622
244
|
.n("GroundStationClient", "DescribeContactCommand")
|
|
1623
|
-
.sc(DescribeContact$)
|
|
245
|
+
.sc(schemas_0.DescribeContact$)
|
|
1624
246
|
.build() {
|
|
1625
247
|
}
|
|
1626
248
|
|
|
@@ -1632,7 +254,7 @@ class DescribeEphemerisCommand extends smithyClient.Command
|
|
|
1632
254
|
})
|
|
1633
255
|
.s("GroundStation", "DescribeEphemeris", {})
|
|
1634
256
|
.n("GroundStationClient", "DescribeEphemerisCommand")
|
|
1635
|
-
.sc(DescribeEphemeris$)
|
|
257
|
+
.sc(schemas_0.DescribeEphemeris$)
|
|
1636
258
|
.build() {
|
|
1637
259
|
}
|
|
1638
260
|
|
|
@@ -1644,7 +266,7 @@ class GetAgentConfigurationCommand extends smithyClient.Command
|
|
|
1644
266
|
})
|
|
1645
267
|
.s("GroundStation", "GetAgentConfiguration", {})
|
|
1646
268
|
.n("GroundStationClient", "GetAgentConfigurationCommand")
|
|
1647
|
-
.sc(GetAgentConfiguration$)
|
|
269
|
+
.sc(schemas_0.GetAgentConfiguration$)
|
|
1648
270
|
.build() {
|
|
1649
271
|
}
|
|
1650
272
|
|
|
@@ -1656,7 +278,7 @@ class GetAgentTaskResponseUrlCommand extends smithyClient.Command
|
|
|
1656
278
|
})
|
|
1657
279
|
.s("GroundStation", "GetAgentTaskResponseUrl", {})
|
|
1658
280
|
.n("GroundStationClient", "GetAgentTaskResponseUrlCommand")
|
|
1659
|
-
.sc(GetAgentTaskResponseUrl$)
|
|
281
|
+
.sc(schemas_0.GetAgentTaskResponseUrl$)
|
|
1660
282
|
.build() {
|
|
1661
283
|
}
|
|
1662
284
|
|
|
@@ -1668,7 +290,7 @@ class GetConfigCommand extends smithyClient.Command
|
|
|
1668
290
|
})
|
|
1669
291
|
.s("GroundStation", "GetConfig", {})
|
|
1670
292
|
.n("GroundStationClient", "GetConfigCommand")
|
|
1671
|
-
.sc(GetConfig$)
|
|
293
|
+
.sc(schemas_0.GetConfig$)
|
|
1672
294
|
.build() {
|
|
1673
295
|
}
|
|
1674
296
|
|
|
@@ -1680,7 +302,7 @@ class GetDataflowEndpointGroupCommand extends smithyClient.Command
|
|
|
1680
302
|
})
|
|
1681
303
|
.s("GroundStation", "GetDataflowEndpointGroup", {})
|
|
1682
304
|
.n("GroundStationClient", "GetDataflowEndpointGroupCommand")
|
|
1683
|
-
.sc(GetDataflowEndpointGroup$)
|
|
305
|
+
.sc(schemas_0.GetDataflowEndpointGroup$)
|
|
1684
306
|
.build() {
|
|
1685
307
|
}
|
|
1686
308
|
|
|
@@ -1692,7 +314,7 @@ class GetMinuteUsageCommand extends smithyClient.Command
|
|
|
1692
314
|
})
|
|
1693
315
|
.s("GroundStation", "GetMinuteUsage", {})
|
|
1694
316
|
.n("GroundStationClient", "GetMinuteUsageCommand")
|
|
1695
|
-
.sc(GetMinuteUsage$)
|
|
317
|
+
.sc(schemas_0.GetMinuteUsage$)
|
|
1696
318
|
.build() {
|
|
1697
319
|
}
|
|
1698
320
|
|
|
@@ -1704,7 +326,7 @@ class GetMissionProfileCommand extends smithyClient.Command
|
|
|
1704
326
|
})
|
|
1705
327
|
.s("GroundStation", "GetMissionProfile", {})
|
|
1706
328
|
.n("GroundStationClient", "GetMissionProfileCommand")
|
|
1707
|
-
.sc(GetMissionProfile$)
|
|
329
|
+
.sc(schemas_0.GetMissionProfile$)
|
|
1708
330
|
.build() {
|
|
1709
331
|
}
|
|
1710
332
|
|
|
@@ -1716,7 +338,7 @@ class GetSatelliteCommand extends smithyClient.Command
|
|
|
1716
338
|
})
|
|
1717
339
|
.s("GroundStation", "GetSatellite", {})
|
|
1718
340
|
.n("GroundStationClient", "GetSatelliteCommand")
|
|
1719
|
-
.sc(GetSatellite$)
|
|
341
|
+
.sc(schemas_0.GetSatellite$)
|
|
1720
342
|
.build() {
|
|
1721
343
|
}
|
|
1722
344
|
|
|
@@ -1728,7 +350,7 @@ class ListConfigsCommand extends smithyClient.Command
|
|
|
1728
350
|
})
|
|
1729
351
|
.s("GroundStation", "ListConfigs", {})
|
|
1730
352
|
.n("GroundStationClient", "ListConfigsCommand")
|
|
1731
|
-
.sc(ListConfigs$)
|
|
353
|
+
.sc(schemas_0.ListConfigs$)
|
|
1732
354
|
.build() {
|
|
1733
355
|
}
|
|
1734
356
|
|
|
@@ -1740,7 +362,7 @@ class ListContactsCommand extends smithyClient.Command
|
|
|
1740
362
|
})
|
|
1741
363
|
.s("GroundStation", "ListContacts", {})
|
|
1742
364
|
.n("GroundStationClient", "ListContactsCommand")
|
|
1743
|
-
.sc(ListContacts$)
|
|
365
|
+
.sc(schemas_0.ListContacts$)
|
|
1744
366
|
.build() {
|
|
1745
367
|
}
|
|
1746
368
|
|
|
@@ -1752,7 +374,7 @@ class ListDataflowEndpointGroupsCommand extends smithyClient.Command
|
|
|
1752
374
|
})
|
|
1753
375
|
.s("GroundStation", "ListDataflowEndpointGroups", {})
|
|
1754
376
|
.n("GroundStationClient", "ListDataflowEndpointGroupsCommand")
|
|
1755
|
-
.sc(ListDataflowEndpointGroups$)
|
|
377
|
+
.sc(schemas_0.ListDataflowEndpointGroups$)
|
|
1756
378
|
.build() {
|
|
1757
379
|
}
|
|
1758
380
|
|
|
@@ -1764,7 +386,7 @@ class ListEphemeridesCommand extends smithyClient.Command
|
|
|
1764
386
|
})
|
|
1765
387
|
.s("GroundStation", "ListEphemerides", {})
|
|
1766
388
|
.n("GroundStationClient", "ListEphemeridesCommand")
|
|
1767
|
-
.sc(ListEphemerides$)
|
|
389
|
+
.sc(schemas_0.ListEphemerides$)
|
|
1768
390
|
.build() {
|
|
1769
391
|
}
|
|
1770
392
|
|
|
@@ -1776,7 +398,7 @@ class ListGroundStationsCommand extends smithyClient.Command
|
|
|
1776
398
|
})
|
|
1777
399
|
.s("GroundStation", "ListGroundStations", {})
|
|
1778
400
|
.n("GroundStationClient", "ListGroundStationsCommand")
|
|
1779
|
-
.sc(ListGroundStations$)
|
|
401
|
+
.sc(schemas_0.ListGroundStations$)
|
|
1780
402
|
.build() {
|
|
1781
403
|
}
|
|
1782
404
|
|
|
@@ -1788,7 +410,7 @@ class ListMissionProfilesCommand extends smithyClient.Command
|
|
|
1788
410
|
})
|
|
1789
411
|
.s("GroundStation", "ListMissionProfiles", {})
|
|
1790
412
|
.n("GroundStationClient", "ListMissionProfilesCommand")
|
|
1791
|
-
.sc(ListMissionProfiles$)
|
|
413
|
+
.sc(schemas_0.ListMissionProfiles$)
|
|
1792
414
|
.build() {
|
|
1793
415
|
}
|
|
1794
416
|
|
|
@@ -1800,7 +422,7 @@ class ListSatellitesCommand extends smithyClient.Command
|
|
|
1800
422
|
})
|
|
1801
423
|
.s("GroundStation", "ListSatellites", {})
|
|
1802
424
|
.n("GroundStationClient", "ListSatellitesCommand")
|
|
1803
|
-
.sc(ListSatellites$)
|
|
425
|
+
.sc(schemas_0.ListSatellites$)
|
|
1804
426
|
.build() {
|
|
1805
427
|
}
|
|
1806
428
|
|
|
@@ -1812,7 +434,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1812
434
|
})
|
|
1813
435
|
.s("GroundStation", "ListTagsForResource", {})
|
|
1814
436
|
.n("GroundStationClient", "ListTagsForResourceCommand")
|
|
1815
|
-
.sc(ListTagsForResource$)
|
|
437
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1816
438
|
.build() {
|
|
1817
439
|
}
|
|
1818
440
|
|
|
@@ -1824,7 +446,7 @@ class RegisterAgentCommand extends smithyClient.Command
|
|
|
1824
446
|
})
|
|
1825
447
|
.s("GroundStation", "RegisterAgent", {})
|
|
1826
448
|
.n("GroundStationClient", "RegisterAgentCommand")
|
|
1827
|
-
.sc(RegisterAgent$)
|
|
449
|
+
.sc(schemas_0.RegisterAgent$)
|
|
1828
450
|
.build() {
|
|
1829
451
|
}
|
|
1830
452
|
|
|
@@ -1836,7 +458,7 @@ class ReserveContactCommand extends smithyClient.Command
|
|
|
1836
458
|
})
|
|
1837
459
|
.s("GroundStation", "ReserveContact", {})
|
|
1838
460
|
.n("GroundStationClient", "ReserveContactCommand")
|
|
1839
|
-
.sc(ReserveContact$)
|
|
461
|
+
.sc(schemas_0.ReserveContact$)
|
|
1840
462
|
.build() {
|
|
1841
463
|
}
|
|
1842
464
|
|
|
@@ -1848,7 +470,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1848
470
|
})
|
|
1849
471
|
.s("GroundStation", "TagResource", {})
|
|
1850
472
|
.n("GroundStationClient", "TagResourceCommand")
|
|
1851
|
-
.sc(TagResource$)
|
|
473
|
+
.sc(schemas_0.TagResource$)
|
|
1852
474
|
.build() {
|
|
1853
475
|
}
|
|
1854
476
|
|
|
@@ -1860,7 +482,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1860
482
|
})
|
|
1861
483
|
.s("GroundStation", "UntagResource", {})
|
|
1862
484
|
.n("GroundStationClient", "UntagResourceCommand")
|
|
1863
|
-
.sc(UntagResource$)
|
|
485
|
+
.sc(schemas_0.UntagResource$)
|
|
1864
486
|
.build() {
|
|
1865
487
|
}
|
|
1866
488
|
|
|
@@ -1872,7 +494,7 @@ class UpdateAgentStatusCommand extends smithyClient.Command
|
|
|
1872
494
|
})
|
|
1873
495
|
.s("GroundStation", "UpdateAgentStatus", {})
|
|
1874
496
|
.n("GroundStationClient", "UpdateAgentStatusCommand")
|
|
1875
|
-
.sc(UpdateAgentStatus$)
|
|
497
|
+
.sc(schemas_0.UpdateAgentStatus$)
|
|
1876
498
|
.build() {
|
|
1877
499
|
}
|
|
1878
500
|
|
|
@@ -1884,7 +506,7 @@ class UpdateConfigCommand extends smithyClient.Command
|
|
|
1884
506
|
})
|
|
1885
507
|
.s("GroundStation", "UpdateConfig", {})
|
|
1886
508
|
.n("GroundStationClient", "UpdateConfigCommand")
|
|
1887
|
-
.sc(UpdateConfig$)
|
|
509
|
+
.sc(schemas_0.UpdateConfig$)
|
|
1888
510
|
.build() {
|
|
1889
511
|
}
|
|
1890
512
|
|
|
@@ -1896,7 +518,7 @@ class UpdateEphemerisCommand extends smithyClient.Command
|
|
|
1896
518
|
})
|
|
1897
519
|
.s("GroundStation", "UpdateEphemeris", {})
|
|
1898
520
|
.n("GroundStationClient", "UpdateEphemerisCommand")
|
|
1899
|
-
.sc(UpdateEphemeris$)
|
|
521
|
+
.sc(schemas_0.UpdateEphemeris$)
|
|
1900
522
|
.build() {
|
|
1901
523
|
}
|
|
1902
524
|
|
|
@@ -1908,7 +530,7 @@ class UpdateMissionProfileCommand extends smithyClient.Command
|
|
|
1908
530
|
})
|
|
1909
531
|
.s("GroundStation", "UpdateMissionProfile", {})
|
|
1910
532
|
.n("GroundStationClient", "UpdateMissionProfileCommand")
|
|
1911
|
-
.sc(UpdateMissionProfile$)
|
|
533
|
+
.sc(schemas_0.UpdateMissionProfile$)
|
|
1912
534
|
.build() {
|
|
1913
535
|
}
|
|
1914
536
|
|
|
@@ -2177,251 +799,66 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2177
799
|
enumerable: true,
|
|
2178
800
|
get: function () { return smithyClient.Client; }
|
|
2179
801
|
});
|
|
2180
|
-
exports
|
|
802
|
+
Object.defineProperty(exports, "GroundStationServiceException", {
|
|
803
|
+
enumerable: true,
|
|
804
|
+
get: function () { return GroundStationServiceException.GroundStationServiceException; }
|
|
805
|
+
});
|
|
2181
806
|
exports.AgentStatus = AgentStatus;
|
|
2182
|
-
exports.AggregateStatus$ = AggregateStatus$;
|
|
2183
807
|
exports.AngleUnits = AngleUnits;
|
|
2184
|
-
exports.AntennaDemodDecodeDetails$ = AntennaDemodDecodeDetails$;
|
|
2185
|
-
exports.AntennaDownlinkConfig$ = AntennaDownlinkConfig$;
|
|
2186
|
-
exports.AntennaDownlinkDemodDecodeConfig$ = AntennaDownlinkDemodDecodeConfig$;
|
|
2187
|
-
exports.AntennaUplinkConfig$ = AntennaUplinkConfig$;
|
|
2188
808
|
exports.AuditResults = AuditResults;
|
|
2189
|
-
exports.AwsGroundStationAgentEndpoint$ = AwsGroundStationAgentEndpoint$;
|
|
2190
|
-
exports.AzElEphemeris$ = AzElEphemeris$;
|
|
2191
|
-
exports.AzElEphemerisFilter$ = AzElEphemerisFilter$;
|
|
2192
|
-
exports.AzElProgramTrackSettings$ = AzElProgramTrackSettings$;
|
|
2193
|
-
exports.AzElSegment$ = AzElSegment$;
|
|
2194
|
-
exports.AzElSegments$ = AzElSegments$;
|
|
2195
|
-
exports.AzElSegmentsData$ = AzElSegmentsData$;
|
|
2196
809
|
exports.BandwidthUnits = BandwidthUnits;
|
|
2197
|
-
exports.CancelContact$ = CancelContact$;
|
|
2198
810
|
exports.CancelContactCommand = CancelContactCommand;
|
|
2199
|
-
exports.CancelContactRequest$ = CancelContactRequest$;
|
|
2200
811
|
exports.CapabilityHealth = CapabilityHealth;
|
|
2201
812
|
exports.CapabilityHealthReason = CapabilityHealthReason;
|
|
2202
|
-
exports.ComponentStatusData$ = ComponentStatusData$;
|
|
2203
|
-
exports.ComponentVersion$ = ComponentVersion$;
|
|
2204
813
|
exports.ConfigCapabilityType = ConfigCapabilityType;
|
|
2205
|
-
exports.ConfigDetails$ = ConfigDetails$;
|
|
2206
|
-
exports.ConfigIdResponse$ = ConfigIdResponse$;
|
|
2207
|
-
exports.ConfigListItem$ = ConfigListItem$;
|
|
2208
|
-
exports.ConfigTypeData$ = ConfigTypeData$;
|
|
2209
|
-
exports.ConnectionDetails$ = ConnectionDetails$;
|
|
2210
|
-
exports.ContactData$ = ContactData$;
|
|
2211
|
-
exports.ContactIdResponse$ = ContactIdResponse$;
|
|
2212
814
|
exports.ContactStatus = ContactStatus;
|
|
2213
|
-
exports.CreateConfig$ = CreateConfig$;
|
|
2214
815
|
exports.CreateConfigCommand = CreateConfigCommand;
|
|
2215
|
-
exports.CreateConfigRequest$ = CreateConfigRequest$;
|
|
2216
|
-
exports.CreateDataflowEndpointGroup$ = CreateDataflowEndpointGroup$;
|
|
2217
816
|
exports.CreateDataflowEndpointGroupCommand = CreateDataflowEndpointGroupCommand;
|
|
2218
|
-
exports.CreateDataflowEndpointGroupRequest$ = CreateDataflowEndpointGroupRequest$;
|
|
2219
|
-
exports.CreateDataflowEndpointGroupV2$ = CreateDataflowEndpointGroupV2$;
|
|
2220
817
|
exports.CreateDataflowEndpointGroupV2Command = CreateDataflowEndpointGroupV2Command;
|
|
2221
|
-
exports.CreateDataflowEndpointGroupV2Request$ = CreateDataflowEndpointGroupV2Request$;
|
|
2222
|
-
exports.CreateDataflowEndpointGroupV2Response$ = CreateDataflowEndpointGroupV2Response$;
|
|
2223
|
-
exports.CreateEndpointDetails$ = CreateEndpointDetails$;
|
|
2224
|
-
exports.CreateEphemeris$ = CreateEphemeris$;
|
|
2225
818
|
exports.CreateEphemerisCommand = CreateEphemerisCommand;
|
|
2226
|
-
exports.CreateEphemerisRequest$ = CreateEphemerisRequest$;
|
|
2227
|
-
exports.CreateMissionProfile$ = CreateMissionProfile$;
|
|
2228
819
|
exports.CreateMissionProfileCommand = CreateMissionProfileCommand;
|
|
2229
|
-
exports.CreateMissionProfileRequest$ = CreateMissionProfileRequest$;
|
|
2230
820
|
exports.Criticality = Criticality;
|
|
2231
|
-
exports.DataflowDetail$ = DataflowDetail$;
|
|
2232
|
-
exports.DataflowEndpoint$ = DataflowEndpoint$;
|
|
2233
|
-
exports.DataflowEndpointConfig$ = DataflowEndpointConfig$;
|
|
2234
|
-
exports.DataflowEndpointGroupIdResponse$ = DataflowEndpointGroupIdResponse$;
|
|
2235
|
-
exports.DataflowEndpointListItem$ = DataflowEndpointListItem$;
|
|
2236
|
-
exports.DecodeConfig$ = DecodeConfig$;
|
|
2237
|
-
exports.DeleteConfig$ = DeleteConfig$;
|
|
2238
821
|
exports.DeleteConfigCommand = DeleteConfigCommand;
|
|
2239
|
-
exports.DeleteConfigRequest$ = DeleteConfigRequest$;
|
|
2240
|
-
exports.DeleteDataflowEndpointGroup$ = DeleteDataflowEndpointGroup$;
|
|
2241
822
|
exports.DeleteDataflowEndpointGroupCommand = DeleteDataflowEndpointGroupCommand;
|
|
2242
|
-
exports.DeleteDataflowEndpointGroupRequest$ = DeleteDataflowEndpointGroupRequest$;
|
|
2243
|
-
exports.DeleteEphemeris$ = DeleteEphemeris$;
|
|
2244
823
|
exports.DeleteEphemerisCommand = DeleteEphemerisCommand;
|
|
2245
|
-
exports.DeleteEphemerisRequest$ = DeleteEphemerisRequest$;
|
|
2246
|
-
exports.DeleteMissionProfile$ = DeleteMissionProfile$;
|
|
2247
824
|
exports.DeleteMissionProfileCommand = DeleteMissionProfileCommand;
|
|
2248
|
-
exports.DeleteMissionProfileRequest$ = DeleteMissionProfileRequest$;
|
|
2249
|
-
exports.DemodulationConfig$ = DemodulationConfig$;
|
|
2250
|
-
exports.DependencyException = DependencyException;
|
|
2251
|
-
exports.DependencyException$ = DependencyException$;
|
|
2252
|
-
exports.DescribeContact$ = DescribeContact$;
|
|
2253
825
|
exports.DescribeContactCommand = DescribeContactCommand;
|
|
2254
|
-
exports.DescribeContactRequest$ = DescribeContactRequest$;
|
|
2255
|
-
exports.DescribeContactResponse$ = DescribeContactResponse$;
|
|
2256
|
-
exports.DescribeEphemeris$ = DescribeEphemeris$;
|
|
2257
826
|
exports.DescribeEphemerisCommand = DescribeEphemerisCommand;
|
|
2258
|
-
exports.DescribeEphemerisRequest$ = DescribeEphemerisRequest$;
|
|
2259
|
-
exports.DescribeEphemerisResponse$ = DescribeEphemerisResponse$;
|
|
2260
|
-
exports.Destination$ = Destination$;
|
|
2261
|
-
exports.DiscoveryData$ = DiscoveryData$;
|
|
2262
|
-
exports.DownlinkAwsGroundStationAgentEndpoint$ = DownlinkAwsGroundStationAgentEndpoint$;
|
|
2263
|
-
exports.DownlinkAwsGroundStationAgentEndpointDetails$ = DownlinkAwsGroundStationAgentEndpointDetails$;
|
|
2264
|
-
exports.DownlinkConnectionDetails$ = DownlinkConnectionDetails$;
|
|
2265
|
-
exports.DownlinkDataflowDetails$ = DownlinkDataflowDetails$;
|
|
2266
|
-
exports.Eirp$ = Eirp$;
|
|
2267
827
|
exports.EirpUnits = EirpUnits;
|
|
2268
|
-
exports.Elevation$ = Elevation$;
|
|
2269
|
-
exports.EndpointDetails$ = EndpointDetails$;
|
|
2270
828
|
exports.EndpointStatus = EndpointStatus;
|
|
2271
|
-
exports.EphemerisData$ = EphemerisData$;
|
|
2272
|
-
exports.EphemerisDescription$ = EphemerisDescription$;
|
|
2273
829
|
exports.EphemerisErrorCode = EphemerisErrorCode;
|
|
2274
|
-
exports.EphemerisErrorReason$ = EphemerisErrorReason$;
|
|
2275
|
-
exports.EphemerisFilter$ = EphemerisFilter$;
|
|
2276
|
-
exports.EphemerisIdResponse$ = EphemerisIdResponse$;
|
|
2277
830
|
exports.EphemerisInvalidReason = EphemerisInvalidReason;
|
|
2278
|
-
exports.EphemerisItem$ = EphemerisItem$;
|
|
2279
|
-
exports.EphemerisMetaData$ = EphemerisMetaData$;
|
|
2280
|
-
exports.EphemerisResponseData$ = EphemerisResponseData$;
|
|
2281
831
|
exports.EphemerisSource = EphemerisSource;
|
|
2282
832
|
exports.EphemerisStatus = EphemerisStatus;
|
|
2283
833
|
exports.EphemerisType = EphemerisType;
|
|
2284
|
-
exports.EphemerisTypeDescription$ = EphemerisTypeDescription$;
|
|
2285
|
-
exports.Frequency$ = Frequency$;
|
|
2286
|
-
exports.FrequencyBandwidth$ = FrequencyBandwidth$;
|
|
2287
834
|
exports.FrequencyUnits = FrequencyUnits;
|
|
2288
|
-
exports.GetAgentConfiguration$ = GetAgentConfiguration$;
|
|
2289
835
|
exports.GetAgentConfigurationCommand = GetAgentConfigurationCommand;
|
|
2290
|
-
exports.GetAgentConfigurationRequest$ = GetAgentConfigurationRequest$;
|
|
2291
|
-
exports.GetAgentConfigurationResponse$ = GetAgentConfigurationResponse$;
|
|
2292
|
-
exports.GetAgentTaskResponseUrl$ = GetAgentTaskResponseUrl$;
|
|
2293
836
|
exports.GetAgentTaskResponseUrlCommand = GetAgentTaskResponseUrlCommand;
|
|
2294
|
-
exports.GetAgentTaskResponseUrlRequest$ = GetAgentTaskResponseUrlRequest$;
|
|
2295
|
-
exports.GetAgentTaskResponseUrlResponse$ = GetAgentTaskResponseUrlResponse$;
|
|
2296
|
-
exports.GetConfig$ = GetConfig$;
|
|
2297
837
|
exports.GetConfigCommand = GetConfigCommand;
|
|
2298
|
-
exports.GetConfigRequest$ = GetConfigRequest$;
|
|
2299
|
-
exports.GetConfigResponse$ = GetConfigResponse$;
|
|
2300
|
-
exports.GetDataflowEndpointGroup$ = GetDataflowEndpointGroup$;
|
|
2301
838
|
exports.GetDataflowEndpointGroupCommand = GetDataflowEndpointGroupCommand;
|
|
2302
|
-
exports.GetDataflowEndpointGroupRequest$ = GetDataflowEndpointGroupRequest$;
|
|
2303
|
-
exports.GetDataflowEndpointGroupResponse$ = GetDataflowEndpointGroupResponse$;
|
|
2304
|
-
exports.GetMinuteUsage$ = GetMinuteUsage$;
|
|
2305
839
|
exports.GetMinuteUsageCommand = GetMinuteUsageCommand;
|
|
2306
|
-
exports.GetMinuteUsageRequest$ = GetMinuteUsageRequest$;
|
|
2307
|
-
exports.GetMinuteUsageResponse$ = GetMinuteUsageResponse$;
|
|
2308
|
-
exports.GetMissionProfile$ = GetMissionProfile$;
|
|
2309
840
|
exports.GetMissionProfileCommand = GetMissionProfileCommand;
|
|
2310
|
-
exports.GetMissionProfileRequest$ = GetMissionProfileRequest$;
|
|
2311
|
-
exports.GetMissionProfileResponse$ = GetMissionProfileResponse$;
|
|
2312
|
-
exports.GetSatellite$ = GetSatellite$;
|
|
2313
841
|
exports.GetSatelliteCommand = GetSatelliteCommand;
|
|
2314
|
-
exports.GetSatelliteRequest$ = GetSatelliteRequest$;
|
|
2315
|
-
exports.GetSatelliteResponse$ = GetSatelliteResponse$;
|
|
2316
842
|
exports.GroundStation = GroundStation;
|
|
2317
843
|
exports.GroundStationClient = GroundStationClient;
|
|
2318
|
-
exports.GroundStationData$ = GroundStationData$;
|
|
2319
|
-
exports.GroundStationServiceException = GroundStationServiceException;
|
|
2320
|
-
exports.GroundStationServiceException$ = GroundStationServiceException$;
|
|
2321
|
-
exports.ISO8601TimeRange$ = ISO8601TimeRange$;
|
|
2322
|
-
exports.IntegerRange$ = IntegerRange$;
|
|
2323
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
2324
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2325
|
-
exports.KinesisDataStreamData$ = KinesisDataStreamData$;
|
|
2326
|
-
exports.KmsKey$ = KmsKey$;
|
|
2327
|
-
exports.ListConfigs$ = ListConfigs$;
|
|
2328
844
|
exports.ListConfigsCommand = ListConfigsCommand;
|
|
2329
|
-
exports.ListConfigsRequest$ = ListConfigsRequest$;
|
|
2330
|
-
exports.ListConfigsResponse$ = ListConfigsResponse$;
|
|
2331
|
-
exports.ListContacts$ = ListContacts$;
|
|
2332
845
|
exports.ListContactsCommand = ListContactsCommand;
|
|
2333
|
-
exports.ListContactsRequest$ = ListContactsRequest$;
|
|
2334
|
-
exports.ListContactsResponse$ = ListContactsResponse$;
|
|
2335
|
-
exports.ListDataflowEndpointGroups$ = ListDataflowEndpointGroups$;
|
|
2336
846
|
exports.ListDataflowEndpointGroupsCommand = ListDataflowEndpointGroupsCommand;
|
|
2337
|
-
exports.ListDataflowEndpointGroupsRequest$ = ListDataflowEndpointGroupsRequest$;
|
|
2338
|
-
exports.ListDataflowEndpointGroupsResponse$ = ListDataflowEndpointGroupsResponse$;
|
|
2339
|
-
exports.ListEphemerides$ = ListEphemerides$;
|
|
2340
847
|
exports.ListEphemeridesCommand = ListEphemeridesCommand;
|
|
2341
|
-
exports.ListEphemeridesRequest$ = ListEphemeridesRequest$;
|
|
2342
|
-
exports.ListEphemeridesResponse$ = ListEphemeridesResponse$;
|
|
2343
|
-
exports.ListGroundStations$ = ListGroundStations$;
|
|
2344
848
|
exports.ListGroundStationsCommand = ListGroundStationsCommand;
|
|
2345
|
-
exports.ListGroundStationsRequest$ = ListGroundStationsRequest$;
|
|
2346
|
-
exports.ListGroundStationsResponse$ = ListGroundStationsResponse$;
|
|
2347
|
-
exports.ListMissionProfiles$ = ListMissionProfiles$;
|
|
2348
849
|
exports.ListMissionProfilesCommand = ListMissionProfilesCommand;
|
|
2349
|
-
exports.ListMissionProfilesRequest$ = ListMissionProfilesRequest$;
|
|
2350
|
-
exports.ListMissionProfilesResponse$ = ListMissionProfilesResponse$;
|
|
2351
|
-
exports.ListSatellites$ = ListSatellites$;
|
|
2352
850
|
exports.ListSatellitesCommand = ListSatellitesCommand;
|
|
2353
|
-
exports.ListSatellitesRequest$ = ListSatellitesRequest$;
|
|
2354
|
-
exports.ListSatellitesResponse$ = ListSatellitesResponse$;
|
|
2355
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2356
851
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2357
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2358
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2359
|
-
exports.MissionProfileIdResponse$ = MissionProfileIdResponse$;
|
|
2360
|
-
exports.MissionProfileListItem$ = MissionProfileListItem$;
|
|
2361
|
-
exports.OEMEphemeris$ = OEMEphemeris$;
|
|
2362
852
|
exports.Polarization = Polarization;
|
|
2363
|
-
exports.ProgramTrackSettings$ = ProgramTrackSettings$;
|
|
2364
|
-
exports.RangedConnectionDetails$ = RangedConnectionDetails$;
|
|
2365
|
-
exports.RangedSocketAddress$ = RangedSocketAddress$;
|
|
2366
|
-
exports.RegisterAgent$ = RegisterAgent$;
|
|
2367
853
|
exports.RegisterAgentCommand = RegisterAgentCommand;
|
|
2368
|
-
exports.RegisterAgentRequest$ = RegisterAgentRequest$;
|
|
2369
|
-
exports.RegisterAgentResponse$ = RegisterAgentResponse$;
|
|
2370
|
-
exports.ReserveContact$ = ReserveContact$;
|
|
2371
854
|
exports.ReserveContactCommand = ReserveContactCommand;
|
|
2372
|
-
exports.ReserveContactRequest$ = ReserveContactRequest$;
|
|
2373
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
2374
|
-
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
2375
|
-
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
2376
|
-
exports.ResourceLimitExceededException$ = ResourceLimitExceededException$;
|
|
2377
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2378
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2379
|
-
exports.S3Object$ = S3Object$;
|
|
2380
|
-
exports.S3RecordingConfig$ = S3RecordingConfig$;
|
|
2381
|
-
exports.S3RecordingDetails$ = S3RecordingDetails$;
|
|
2382
|
-
exports.SatelliteListItem$ = SatelliteListItem$;
|
|
2383
|
-
exports.SecurityDetails$ = SecurityDetails$;
|
|
2384
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2385
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2386
|
-
exports.SocketAddress$ = SocketAddress$;
|
|
2387
|
-
exports.Source$ = Source$;
|
|
2388
|
-
exports.SpectrumConfig$ = SpectrumConfig$;
|
|
2389
|
-
exports.TLEData$ = TLEData$;
|
|
2390
|
-
exports.TLEEphemeris$ = TLEEphemeris$;
|
|
2391
|
-
exports.TagResource$ = TagResource$;
|
|
2392
855
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2393
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2394
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2395
|
-
exports.TelemetrySinkConfig$ = TelemetrySinkConfig$;
|
|
2396
|
-
exports.TelemetrySinkData$ = TelemetrySinkData$;
|
|
2397
856
|
exports.TelemetrySinkType = TelemetrySinkType;
|
|
2398
|
-
exports.TimeAzEl$ = TimeAzEl$;
|
|
2399
|
-
exports.TimeRange$ = TimeRange$;
|
|
2400
|
-
exports.TrackingConfig$ = TrackingConfig$;
|
|
2401
|
-
exports.TrackingOverrides$ = TrackingOverrides$;
|
|
2402
|
-
exports.UntagResource$ = UntagResource$;
|
|
2403
857
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2404
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2405
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2406
|
-
exports.UpdateAgentStatus$ = UpdateAgentStatus$;
|
|
2407
858
|
exports.UpdateAgentStatusCommand = UpdateAgentStatusCommand;
|
|
2408
|
-
exports.UpdateAgentStatusRequest$ = UpdateAgentStatusRequest$;
|
|
2409
|
-
exports.UpdateAgentStatusResponse$ = UpdateAgentStatusResponse$;
|
|
2410
|
-
exports.UpdateConfig$ = UpdateConfig$;
|
|
2411
859
|
exports.UpdateConfigCommand = UpdateConfigCommand;
|
|
2412
|
-
exports.UpdateConfigRequest$ = UpdateConfigRequest$;
|
|
2413
|
-
exports.UpdateEphemeris$ = UpdateEphemeris$;
|
|
2414
860
|
exports.UpdateEphemerisCommand = UpdateEphemerisCommand;
|
|
2415
|
-
exports.UpdateEphemerisRequest$ = UpdateEphemerisRequest$;
|
|
2416
|
-
exports.UpdateMissionProfile$ = UpdateMissionProfile$;
|
|
2417
861
|
exports.UpdateMissionProfileCommand = UpdateMissionProfileCommand;
|
|
2418
|
-
exports.UpdateMissionProfileRequest$ = UpdateMissionProfileRequest$;
|
|
2419
|
-
exports.UplinkAwsGroundStationAgentEndpoint$ = UplinkAwsGroundStationAgentEndpoint$;
|
|
2420
|
-
exports.UplinkAwsGroundStationAgentEndpointDetails$ = UplinkAwsGroundStationAgentEndpointDetails$;
|
|
2421
|
-
exports.UplinkConnectionDetails$ = UplinkConnectionDetails$;
|
|
2422
|
-
exports.UplinkDataflowDetails$ = UplinkDataflowDetails$;
|
|
2423
|
-
exports.UplinkEchoConfig$ = UplinkEchoConfig$;
|
|
2424
|
-
exports.UplinkSpectrumConfig$ = UplinkSpectrumConfig$;
|
|
2425
862
|
exports.paginateListConfigs = paginateListConfigs;
|
|
2426
863
|
exports.paginateListContacts = paginateListContacts;
|
|
2427
864
|
exports.paginateListDataflowEndpointGroups = paginateListDataflowEndpointGroups;
|
|
@@ -2431,3 +868,15 @@ exports.paginateListMissionProfiles = paginateListMissionProfiles;
|
|
|
2431
868
|
exports.paginateListSatellites = paginateListSatellites;
|
|
2432
869
|
exports.waitForContactScheduled = waitForContactScheduled;
|
|
2433
870
|
exports.waitUntilContactScheduled = waitUntilContactScheduled;
|
|
871
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
872
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
873
|
+
enumerable: true,
|
|
874
|
+
get: function () { return schemas_0[k]; }
|
|
875
|
+
});
|
|
876
|
+
});
|
|
877
|
+
Object.keys(errors).forEach(function (k) {
|
|
878
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
879
|
+
enumerable: true,
|
|
880
|
+
get: function () { return errors[k]; }
|
|
881
|
+
});
|
|
882
|
+
});
|