@aws-sdk/client-groundstation 3.1075.0 → 3.1076.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 +1937 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/GroundStationServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -81
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1643
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultGroundStationHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "groundstation",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultGroundStationHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1679 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://groundstation-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://groundstation-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://groundstation.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://groundstation.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class GroundStationServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, GroundStationServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class DependencyException extends GroundStationServiceException {
|
|
140
|
+
name = "DependencyException";
|
|
141
|
+
$fault = "server";
|
|
142
|
+
parameterName;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "DependencyException",
|
|
146
|
+
$fault: "server",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
150
|
+
this.parameterName = opts.parameterName;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InvalidParameterException extends GroundStationServiceException {
|
|
154
|
+
name = "InvalidParameterException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
parameterName;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "InvalidParameterException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
164
|
+
this.parameterName = opts.parameterName;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class ResourceNotFoundException extends GroundStationServiceException {
|
|
168
|
+
name = "ResourceNotFoundException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "ResourceNotFoundException",
|
|
173
|
+
$fault: "client",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
class ResourceLimitExceededException extends GroundStationServiceException {
|
|
180
|
+
name = "ResourceLimitExceededException";
|
|
181
|
+
$fault = "client";
|
|
182
|
+
parameterName;
|
|
183
|
+
constructor(opts) {
|
|
184
|
+
super({
|
|
185
|
+
name: "ResourceLimitExceededException",
|
|
186
|
+
$fault: "client",
|
|
187
|
+
...opts,
|
|
188
|
+
});
|
|
189
|
+
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
190
|
+
this.parameterName = opts.parameterName;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
class ServiceQuotaExceededException extends GroundStationServiceException {
|
|
194
|
+
name = "ServiceQuotaExceededException";
|
|
195
|
+
$fault = "client";
|
|
196
|
+
parameterName;
|
|
197
|
+
constructor(opts) {
|
|
198
|
+
super({
|
|
199
|
+
name: "ServiceQuotaExceededException",
|
|
200
|
+
$fault: "client",
|
|
201
|
+
...opts,
|
|
202
|
+
});
|
|
203
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
204
|
+
this.parameterName = opts.parameterName;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
class ResourceInUseException extends GroundStationServiceException {
|
|
208
|
+
name = "ResourceInUseException";
|
|
209
|
+
$fault = "client";
|
|
210
|
+
constructor(opts) {
|
|
211
|
+
super({
|
|
212
|
+
name: "ResourceInUseException",
|
|
213
|
+
$fault: "client",
|
|
214
|
+
...opts,
|
|
215
|
+
});
|
|
216
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
const _AD = "AgentDetails";
|
|
221
|
+
const _ADC = "AntennaDownlinkConfig";
|
|
222
|
+
const _ADDD = "AntennaDemodDecodeDetails";
|
|
223
|
+
const _ADDDC = "AntennaDownlinkDemodDecodeConfig";
|
|
224
|
+
const _AEE = "AzElEphemeris";
|
|
225
|
+
const _AEEF = "AzElEphemerisFilter";
|
|
226
|
+
const _AEPTS = "AzElProgramTrackSettings";
|
|
227
|
+
const _AES = "AzElSegment";
|
|
228
|
+
const _AESD = "AzElSegmentsData";
|
|
229
|
+
const _AESL = "AzElSegmentList";
|
|
230
|
+
const _AESz = "AzElSegments";
|
|
231
|
+
const _AGSAE = "AwsGroundStationAgentEndpoint";
|
|
232
|
+
const _AL = "AntennaList";
|
|
233
|
+
const _ALI = "AntennaListItem";
|
|
234
|
+
const _AS = "AggregateStatus";
|
|
235
|
+
const _AUC = "AntennaUplinkConfig";
|
|
236
|
+
const _CC = "CancelContact";
|
|
237
|
+
const _CCR = "CancelContactRequest";
|
|
238
|
+
const _CCRr = "CreateConfigRequest";
|
|
239
|
+
const _CCr = "CreateConfig";
|
|
240
|
+
const _CD = "ConnectionDetails";
|
|
241
|
+
const _CDEG = "CreateDataflowEndpointGroup";
|
|
242
|
+
const _CDEGR = "CreateDataflowEndpointGroupRequest";
|
|
243
|
+
const _CDEGV = "CreateDataflowEndpointGroupV2";
|
|
244
|
+
const _CDEGVR = "CreateDataflowEndpointGroupV2Request";
|
|
245
|
+
const _CDEGVRr = "CreateDataflowEndpointGroupV2Response";
|
|
246
|
+
const _CDo = "ContactData";
|
|
247
|
+
const _CDon = "ConfigDetails";
|
|
248
|
+
const _CE = "CreateEphemeris";
|
|
249
|
+
const _CED = "CreateEndpointDetails";
|
|
250
|
+
const _CEDL = "CreateEndpointDetailsList";
|
|
251
|
+
const _CER = "CreateEphemerisRequest";
|
|
252
|
+
const _CIR = "ConfigIdResponse";
|
|
253
|
+
const _CIRo = "ContactIdResponse";
|
|
254
|
+
const _CL = "ConfigList";
|
|
255
|
+
const _CLI = "ConfigListItem";
|
|
256
|
+
const _CLo = "ContactList";
|
|
257
|
+
const _CMP = "CreateMissionProfile";
|
|
258
|
+
const _CMPR = "CreateMissionProfileRequest";
|
|
259
|
+
const _CRD = "ContactReservationDetails";
|
|
260
|
+
const _CSD = "ComponentStatusData";
|
|
261
|
+
const _CSL = "ComponentStatusList";
|
|
262
|
+
const _CTD = "ConfigTypeData";
|
|
263
|
+
const _CV = "ComponentVersion";
|
|
264
|
+
const _CVL = "ComponentVersionList";
|
|
265
|
+
const _CVLo = "ContactVersionsList";
|
|
266
|
+
const _CVo = "ContactVersion";
|
|
267
|
+
const _D = "Destination";
|
|
268
|
+
const _DAGSAE = "DownlinkAwsGroundStationAgentEndpoint";
|
|
269
|
+
const _DAGSAED = "DownlinkAwsGroundStationAgentEndpointDetails";
|
|
270
|
+
const _DC = "DecodeConfig";
|
|
271
|
+
const _DCD = "DownlinkConnectionDetails";
|
|
272
|
+
const _DCR = "DeleteConfigRequest";
|
|
273
|
+
const _DCRe = "DescribeContactRequest";
|
|
274
|
+
const _DCRes = "DescribeContactResponse";
|
|
275
|
+
const _DCV = "DescribeContactVersion";
|
|
276
|
+
const _DCVR = "DescribeContactVersionRequest";
|
|
277
|
+
const _DCVRe = "DescribeContactVersionResponse";
|
|
278
|
+
const _DCe = "DemodulationConfig";
|
|
279
|
+
const _DCel = "DeleteConfig";
|
|
280
|
+
const _DCes = "DescribeContact";
|
|
281
|
+
const _DD = "DataflowDetail";
|
|
282
|
+
const _DDD = "DownlinkDataflowDetails";
|
|
283
|
+
const _DDEG = "DeleteDataflowEndpointGroup";
|
|
284
|
+
const _DDEGR = "DeleteDataflowEndpointGroupRequest";
|
|
285
|
+
const _DDi = "DiscoveryData";
|
|
286
|
+
const _DE = "DependencyException";
|
|
287
|
+
const _DEC = "DataflowEndpointConfig";
|
|
288
|
+
const _DEGIR = "DataflowEndpointGroupIdResponse";
|
|
289
|
+
const _DEGL = "DataflowEndpointGroupList";
|
|
290
|
+
const _DEL = "DataflowEdgeList";
|
|
291
|
+
const _DELI = "DataflowEndpointListItem";
|
|
292
|
+
const _DER = "DeleteEphemerisRequest";
|
|
293
|
+
const _DERe = "DescribeEphemerisRequest";
|
|
294
|
+
const _DERes = "DescribeEphemerisResponse";
|
|
295
|
+
const _DEa = "DataflowEndpoint";
|
|
296
|
+
const _DEe = "DeleteEphemeris";
|
|
297
|
+
const _DEes = "DescribeEphemeris";
|
|
298
|
+
const _DL = "DataflowList";
|
|
299
|
+
const _DMP = "DeleteMissionProfile";
|
|
300
|
+
const _DMPR = "DeleteMissionProfileRequest";
|
|
301
|
+
const _E = "Eirp";
|
|
302
|
+
const _ED = "EndpointDetails";
|
|
303
|
+
const _EDL = "EndpointDetailsList";
|
|
304
|
+
const _EDp = "EphemerisDescription";
|
|
305
|
+
const _EDph = "EphemerisData";
|
|
306
|
+
const _EER = "EphemerisErrorReason";
|
|
307
|
+
const _EERL = "EphemerisErrorReasonList";
|
|
308
|
+
const _EF = "EphemerisFilter";
|
|
309
|
+
const _EI = "EphemerisItem";
|
|
310
|
+
const _EIR = "EphemerisIdResponse";
|
|
311
|
+
const _EL = "EphemeridesList";
|
|
312
|
+
const _EMD = "EphemerisMetaData";
|
|
313
|
+
const _ERD = "EphemerisResponseData";
|
|
314
|
+
const _ETD = "EphemerisTypeDescription";
|
|
315
|
+
const _El = "Elevation";
|
|
316
|
+
const _F = "Frequency";
|
|
317
|
+
const _FB = "FrequencyBandwidth";
|
|
318
|
+
const _GAC = "GetAgentConfiguration";
|
|
319
|
+
const _GACR = "GetAgentConfigurationRequest";
|
|
320
|
+
const _GACRe = "GetAgentConfigurationResponse";
|
|
321
|
+
const _GATRU = "GetAgentTaskResponseUrl";
|
|
322
|
+
const _GATRUR = "GetAgentTaskResponseUrlRequest";
|
|
323
|
+
const _GATRURe = "GetAgentTaskResponseUrlResponse";
|
|
324
|
+
const _GC = "GetConfig";
|
|
325
|
+
const _GCR = "GetConfigRequest";
|
|
326
|
+
const _GCRe = "GetConfigResponse";
|
|
327
|
+
const _GDEG = "GetDataflowEndpointGroup";
|
|
328
|
+
const _GDEGR = "GetDataflowEndpointGroupRequest";
|
|
329
|
+
const _GDEGRe = "GetDataflowEndpointGroupResponse";
|
|
330
|
+
const _GMP = "GetMissionProfile";
|
|
331
|
+
const _GMPR = "GetMissionProfileRequest";
|
|
332
|
+
const _GMPRe = "GetMissionProfileResponse";
|
|
333
|
+
const _GMU = "GetMinuteUsage";
|
|
334
|
+
const _GMUR = "GetMinuteUsageRequest";
|
|
335
|
+
const _GMURe = "GetMinuteUsageResponse";
|
|
336
|
+
const _GS = "GetSatellite";
|
|
337
|
+
const _GSD = "GroundStationData";
|
|
338
|
+
const _GSL = "GroundStationList";
|
|
339
|
+
const _GSR = "GetSatelliteRequest";
|
|
340
|
+
const _GSRL = "GroundStationReservationList";
|
|
341
|
+
const _GSRLI = "GroundStationReservationListItem";
|
|
342
|
+
const _GSRe = "GetSatelliteResponse";
|
|
343
|
+
const _IPE = "InvalidParameterException";
|
|
344
|
+
const _IR = "IntegerRange";
|
|
345
|
+
const _ISOTR = "ISO8601TimeRange";
|
|
346
|
+
const _KDSD = "KinesisDataStreamData";
|
|
347
|
+
const _KK = "KmsKey";
|
|
348
|
+
const _LA = "ListAntennas";
|
|
349
|
+
const _LAR = "ListAntennasRequest";
|
|
350
|
+
const _LARi = "ListAntennasResponse";
|
|
351
|
+
const _LC = "ListConfigs";
|
|
352
|
+
const _LCR = "ListConfigsRequest";
|
|
353
|
+
const _LCRi = "ListConfigsResponse";
|
|
354
|
+
const _LCRis = "ListContactsRequest";
|
|
355
|
+
const _LCRist = "ListContactsResponse";
|
|
356
|
+
const _LCV = "ListContactVersions";
|
|
357
|
+
const _LCVR = "ListContactVersionsRequest";
|
|
358
|
+
const _LCVRi = "ListContactVersionsResponse";
|
|
359
|
+
const _LCi = "ListContacts";
|
|
360
|
+
const _LDEG = "ListDataflowEndpointGroups";
|
|
361
|
+
const _LDEGR = "ListDataflowEndpointGroupsRequest";
|
|
362
|
+
const _LDEGRi = "ListDataflowEndpointGroupsResponse";
|
|
363
|
+
const _LE = "ListEphemerides";
|
|
364
|
+
const _LER = "ListEphemeridesRequest";
|
|
365
|
+
const _LERi = "ListEphemeridesResponse";
|
|
366
|
+
const _LGS = "ListGroundStations";
|
|
367
|
+
const _LGSR = "ListGroundStationsRequest";
|
|
368
|
+
const _LGSRR = "ListGroundStationReservationsRequest";
|
|
369
|
+
const _LGSRRi = "ListGroundStationReservationsResponse";
|
|
370
|
+
const _LGSRi = "ListGroundStationsResponse";
|
|
371
|
+
const _LGSRis = "ListGroundStationReservations";
|
|
372
|
+
const _LMP = "ListMissionProfiles";
|
|
373
|
+
const _LMPR = "ListMissionProfilesRequest";
|
|
374
|
+
const _LMPRi = "ListMissionProfilesResponse";
|
|
375
|
+
const _LS = "ListSatellites";
|
|
376
|
+
const _LSR = "ListSatellitesRequest";
|
|
377
|
+
const _LSRi = "ListSatellitesResponse";
|
|
378
|
+
const _LTFR = "ListTagsForResource";
|
|
379
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
380
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
381
|
+
const _MPIR = "MissionProfileIdResponse";
|
|
382
|
+
const _MPL = "MissionProfileList";
|
|
383
|
+
const _MPLI = "MissionProfileListItem";
|
|
384
|
+
const _MRD = "MaintenanceReservationDetails";
|
|
385
|
+
const _OEME = "OEMEphemeris";
|
|
386
|
+
const _OPTS = "OemProgramTrackSettings";
|
|
387
|
+
const _PTS = "ProgramTrackSettings";
|
|
388
|
+
const _RA = "RegisterAgent";
|
|
389
|
+
const _RAR = "RegisterAgentRequest";
|
|
390
|
+
const _RARe = "RegisterAgentResponse";
|
|
391
|
+
const _RC = "ReserveContact";
|
|
392
|
+
const _RCD = "RangedConnectionDetails";
|
|
393
|
+
const _RCR = "ReserveContactRequest";
|
|
394
|
+
const _RD = "ReservationDetails";
|
|
395
|
+
const _RIUE = "ResourceInUseException";
|
|
396
|
+
const _RLEE = "ResourceLimitExceededException";
|
|
397
|
+
const _RNFE = "ResourceNotFoundException";
|
|
398
|
+
const _RSA = "RangedSocketAddress";
|
|
399
|
+
const _S = "Source";
|
|
400
|
+
const _SA = "SocketAddress";
|
|
401
|
+
const _SC = "SpectrumConfig";
|
|
402
|
+
const _SD = "SecurityDetails";
|
|
403
|
+
const _SL = "SatelliteList";
|
|
404
|
+
const _SLI = "SatelliteListItem";
|
|
405
|
+
const _SO = "S3Object";
|
|
406
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
407
|
+
const _SRC = "S3RecordingConfig";
|
|
408
|
+
const _SRD = "S3RecordingDetails";
|
|
409
|
+
const _TAE = "TimeAzEl";
|
|
410
|
+
const _TAEL = "TimeAzElList";
|
|
411
|
+
const _TC = "TrackingConfig";
|
|
412
|
+
const _TLED = "TLEData";
|
|
413
|
+
const _TLEDL = "TLEDataList";
|
|
414
|
+
const _TLEE = "TLEEphemeris";
|
|
415
|
+
const _TO = "TrackingOverrides";
|
|
416
|
+
const _TPTS = "TleProgramTrackSettings";
|
|
417
|
+
const _TR = "TimeRange";
|
|
418
|
+
const _TRR = "TagResourceRequest";
|
|
419
|
+
const _TRRa = "TagResourceResponse";
|
|
420
|
+
const _TRa = "TagResource";
|
|
421
|
+
const _TSC = "TelemetrySinkConfig";
|
|
422
|
+
const _TSD = "TelemetrySinkData";
|
|
423
|
+
const _UAGSAE = "UplinkAwsGroundStationAgentEndpoint";
|
|
424
|
+
const _UAGSAED = "UplinkAwsGroundStationAgentEndpointDetails";
|
|
425
|
+
const _UAS = "UpdateAgentStatus";
|
|
426
|
+
const _UASR = "UpdateAgentStatusRequest";
|
|
427
|
+
const _UASRp = "UpdateAgentStatusResponse";
|
|
428
|
+
const _UC = "UpdateConfig";
|
|
429
|
+
const _UCD = "UplinkConnectionDetails";
|
|
430
|
+
const _UCR = "UpdateConfigRequest";
|
|
431
|
+
const _UCRp = "UpdateContactRequest";
|
|
432
|
+
const _UCRpd = "UpdateContactResponse";
|
|
433
|
+
const _UCp = "UpdateContact";
|
|
434
|
+
const _UDD = "UplinkDataflowDetails";
|
|
435
|
+
const _UE = "UpdateEphemeris";
|
|
436
|
+
const _UEC = "UplinkEchoConfig";
|
|
437
|
+
const _UER = "UpdateEphemerisRequest";
|
|
438
|
+
const _UMP = "UpdateMissionProfile";
|
|
439
|
+
const _UMPR = "UpdateMissionProfileRequest";
|
|
440
|
+
const _UR = "UntagResource";
|
|
441
|
+
const _URR = "UntagResourceRequest";
|
|
442
|
+
const _URRn = "UntagResourceResponse";
|
|
443
|
+
const _USC = "UplinkSpectrumConfig";
|
|
444
|
+
const _a = "activated";
|
|
445
|
+
const _aCC = "agentCpuCores";
|
|
446
|
+
const _aCD = "agentConnectionDetails";
|
|
447
|
+
const _aD = "agentDetails";
|
|
448
|
+
const _aDC = "antennaDownlinkConfig";
|
|
449
|
+
const _aDDD = "antennaDemodDecodeDetails";
|
|
450
|
+
const _aDDDC = "antennaDownlinkDemodDecodeConfig";
|
|
451
|
+
const _aE = "azEl";
|
|
452
|
+
const _aED = "azElData";
|
|
453
|
+
const _aEL = "azElList";
|
|
454
|
+
const _aESL = "azElSegmentList";
|
|
455
|
+
const _aGSAE = "awsGroundStationAgentEndpoint";
|
|
456
|
+
const _aI = "agentId";
|
|
457
|
+
const _aIAPA = "agentIpAndPortAddress";
|
|
458
|
+
const _aL = "antennaList";
|
|
459
|
+
const _aN = "antennaName";
|
|
460
|
+
const _aR = "auditResults";
|
|
461
|
+
const _aS = "agentStatus";
|
|
462
|
+
const _aSg = "aggregateStatus";
|
|
463
|
+
const _aU = "angleUnit";
|
|
464
|
+
const _aUC = "antennaUplinkConfig";
|
|
465
|
+
const _aUCA = "antennaUplinkConfigArn";
|
|
466
|
+
const _aV = "agentVersion";
|
|
467
|
+
const _ad = "address";
|
|
468
|
+
const _au = "autotrack";
|
|
469
|
+
const _az = "az";
|
|
470
|
+
const _b = "bucket";
|
|
471
|
+
const _bA = "bucketArn";
|
|
472
|
+
const _bR = "bytesReceived";
|
|
473
|
+
const _bS = "bytesSent";
|
|
474
|
+
const _ba = "bandwidth";
|
|
475
|
+
const _c = "client";
|
|
476
|
+
const _cA = "capabilityArn";
|
|
477
|
+
const _cAa = "capabilityArns";
|
|
478
|
+
const _cAo = "configArn";
|
|
479
|
+
const _cD = "configData";
|
|
480
|
+
const _cDo = "configDetails";
|
|
481
|
+
const _cE = "currentEphemeris";
|
|
482
|
+
const _cF = "centerFrequency";
|
|
483
|
+
const _cI = "contactId";
|
|
484
|
+
const _cIo = "configId";
|
|
485
|
+
const _cL = "configList";
|
|
486
|
+
const _cLo = "contactList";
|
|
487
|
+
const _cPPDS = "contactPrePassDurationSeconds";
|
|
488
|
+
const _cPPDSo = "contactPostPassDurationSeconds";
|
|
489
|
+
const _cS = "contactStatus";
|
|
490
|
+
const _cSo = "componentStatuses";
|
|
491
|
+
const _cT = "componentType";
|
|
492
|
+
const _cTl = "clientToken";
|
|
493
|
+
const _cTo = "configType";
|
|
494
|
+
const _cTr = "creationTime";
|
|
495
|
+
const _cV = "componentVersions";
|
|
496
|
+
const _cVL = "contactVersionsList";
|
|
497
|
+
const _co = "contact";
|
|
498
|
+
const _cr = "created";
|
|
499
|
+
const _d = "data";
|
|
500
|
+
const _dAGSAE = "downlinkAwsGroundStationAgentEndpoint";
|
|
501
|
+
const _dC = "demodulationConfig";
|
|
502
|
+
const _dCe = "decodeConfig";
|
|
503
|
+
const _dD = "dataflowDetails";
|
|
504
|
+
const _dDR = "dataflowDestinationRegion";
|
|
505
|
+
const _dDi = "discoveryData";
|
|
506
|
+
const _dE = "dataflowEdges";
|
|
507
|
+
const _dEC = "dataflowEndpointConfig";
|
|
508
|
+
const _dEGA = "dataflowEndpointGroupArn";
|
|
509
|
+
const _dEGI = "dataflowEndpointGroupId";
|
|
510
|
+
const _dEGL = "dataflowEndpointGroupList";
|
|
511
|
+
const _dEN = "dataflowEndpointName";
|
|
512
|
+
const _dER = "dataflowEndpointRegion";
|
|
513
|
+
const _dI = "dataflowId";
|
|
514
|
+
const _dL = "dataflowList";
|
|
515
|
+
const _dSR = "dataflowSourceRegion";
|
|
516
|
+
const _de = "destination";
|
|
517
|
+
const _dt = "dt";
|
|
518
|
+
const _e = "error";
|
|
519
|
+
const _eA = "egressAddress";
|
|
520
|
+
const _eAAP = "egressAddressAndPort";
|
|
521
|
+
const _eC = "errorCode";
|
|
522
|
+
const _eD = "endpointDetails";
|
|
523
|
+
const _eDn = "endpointsDetails";
|
|
524
|
+
const _eDp = "ephemerisData";
|
|
525
|
+
const _eI = "ephemerisId";
|
|
526
|
+
const _eM = "errorMessage";
|
|
527
|
+
const _eMR = "estimatedMinutesRemaining";
|
|
528
|
+
const _eR = "errorReasons";
|
|
529
|
+
const _eT = "endTime";
|
|
530
|
+
const _eTp = "ephemerisType";
|
|
531
|
+
const _eTx = "expirationTime";
|
|
532
|
+
const _el = "el";
|
|
533
|
+
const _en = "endpoints";
|
|
534
|
+
const _ena = "enabled";
|
|
535
|
+
const _end = "endpoint";
|
|
536
|
+
const _ep = "ephemeris";
|
|
537
|
+
const _eph = "ephemerides";
|
|
538
|
+
const _epo = "epoch";
|
|
539
|
+
const _fC = "failureCodes";
|
|
540
|
+
const _fM = "failureMessage";
|
|
541
|
+
const _gS = "groundStation";
|
|
542
|
+
const _gSI = "groundStationId";
|
|
543
|
+
const _gSL = "groundStationList";
|
|
544
|
+
const _gSN = "groundStationName";
|
|
545
|
+
const _gSr = "groundStations";
|
|
546
|
+
const _h = "http";
|
|
547
|
+
const _hE = "httpError";
|
|
548
|
+
const _hQ = "httpQuery";
|
|
549
|
+
const _hR = "healthReasons";
|
|
550
|
+
const _hS = "healthStatus";
|
|
551
|
+
const _i = "id";
|
|
552
|
+
const _iA = "ingressAddress";
|
|
553
|
+
const _iAAP = "ingressAddressAndPort";
|
|
554
|
+
const _iI = "instanceId";
|
|
555
|
+
const _iR = "invalidReason";
|
|
556
|
+
const _iRMC = "isReservedMinutesCustomer";
|
|
557
|
+
const _iT = "instanceType";
|
|
558
|
+
const _k = "key";
|
|
559
|
+
const _kAA = "kmsAliasArn";
|
|
560
|
+
const _kAN = "kmsAliasName";
|
|
561
|
+
const _kDSA = "kinesisDataStreamArn";
|
|
562
|
+
const _kDSD = "kinesisDataStreamData";
|
|
563
|
+
const _kKA = "kmsKeyArn";
|
|
564
|
+
const _kRA = "kinesisRoleArn";
|
|
565
|
+
const _kT = "keyTemplate";
|
|
566
|
+
const _lU = "lastUpdated";
|
|
567
|
+
const _m = "message";
|
|
568
|
+
const _mE = "maximumElevation";
|
|
569
|
+
const _mPA = "missionProfileArn";
|
|
570
|
+
const _mPI = "missionProfileId";
|
|
571
|
+
const _mPL = "missionProfileList";
|
|
572
|
+
const _mR = "maxResults";
|
|
573
|
+
const _mT = "maintenanceType";
|
|
574
|
+
const _mVCDS = "minimumViableContactDurationSeconds";
|
|
575
|
+
const _ma = "maximum";
|
|
576
|
+
const _mai = "maintenance";
|
|
577
|
+
const _mi = "minimum";
|
|
578
|
+
const _mo = "month";
|
|
579
|
+
const _mt = "mtu";
|
|
580
|
+
const _n = "name";
|
|
581
|
+
const _nSID = "noradSatelliteID";
|
|
582
|
+
const _nT = "nextToken";
|
|
583
|
+
const _o = "oem";
|
|
584
|
+
const _oD = "oemData";
|
|
585
|
+
const _oN = "outputNode";
|
|
586
|
+
const _p = "priority";
|
|
587
|
+
const _pD = "packetsDropped";
|
|
588
|
+
const _pIA = "publicIpAddresses";
|
|
589
|
+
const _pIAr = "privateIpAddresses";
|
|
590
|
+
const _pLU = "presignedLogUrl";
|
|
591
|
+
const _pN = "parameterName";
|
|
592
|
+
const _pPET = "postPassEndTime";
|
|
593
|
+
const _pPST = "prePassStartTime";
|
|
594
|
+
const _pR = "portRange";
|
|
595
|
+
const _pTS = "programTrackSettings";
|
|
596
|
+
const _po = "port";
|
|
597
|
+
const _pol = "polarization";
|
|
598
|
+
const _pr = "prefix";
|
|
599
|
+
const _r = "region";
|
|
600
|
+
const _rA = "resourceArn";
|
|
601
|
+
const _rAo = "roleArn";
|
|
602
|
+
const _rCC = "reservedCpuCores";
|
|
603
|
+
const _rD = "reservationDetails";
|
|
604
|
+
const _rE = "referenceEpoch";
|
|
605
|
+
const _rL = "reservationList";
|
|
606
|
+
const _rT = "reservationType";
|
|
607
|
+
const _rTe = "reservationTypes";
|
|
608
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.groundstation";
|
|
609
|
+
const _sA = "socketAddress";
|
|
610
|
+
const _sAa = "satelliteArn";
|
|
611
|
+
const _sC = "spectrumConfig";
|
|
612
|
+
const _sD = "suppliedData";
|
|
613
|
+
const _sDe = "securityDetails";
|
|
614
|
+
const _sGI = "securityGroupIds";
|
|
615
|
+
const _sI = "satelliteId";
|
|
616
|
+
const _sIu = "subnetIds";
|
|
617
|
+
const _sKK = "streamsKmsKey";
|
|
618
|
+
const _sKR = "streamsKmsRole";
|
|
619
|
+
const _sL = "statusList";
|
|
620
|
+
const _sM = "signatureMap";
|
|
621
|
+
const _sO = "s3Object";
|
|
622
|
+
const _sRC = "s3RecordingConfig";
|
|
623
|
+
const _sRD = "s3RecordingDetails";
|
|
624
|
+
const _sSO = "sourceS3Object";
|
|
625
|
+
const _sT = "startTime";
|
|
626
|
+
const _sa = "satellites";
|
|
627
|
+
const _se = "server";
|
|
628
|
+
const _so = "source";
|
|
629
|
+
const _st = "status";
|
|
630
|
+
const _su = "superseded";
|
|
631
|
+
const _t = "tags";
|
|
632
|
+
const _tC = "trackingConfig";
|
|
633
|
+
const _tCA = "trackingConfigArn";
|
|
634
|
+
const _tD = "transmitDisabled";
|
|
635
|
+
const _tDa = "taskingDocument";
|
|
636
|
+
const _tDl = "tleData";
|
|
637
|
+
const _tE = "targetEirp";
|
|
638
|
+
const _tI = "taskId";
|
|
639
|
+
const _tK = "tagKeys";
|
|
640
|
+
const _tL = "tleLine1";
|
|
641
|
+
const _tLl = "tleLine2";
|
|
642
|
+
const _tO = "trackingOverrides";
|
|
643
|
+
const _tRMA = "totalReservedMinuteAllocation";
|
|
644
|
+
const _tSC = "telemetrySinkConfig";
|
|
645
|
+
const _tSCA = "telemetrySinkConfigArn";
|
|
646
|
+
const _tSD = "telemetrySinkData";
|
|
647
|
+
const _tSM = "totalScheduledMinutes";
|
|
648
|
+
const _tST = "telemetrySinkType";
|
|
649
|
+
const _tl = "tle";
|
|
650
|
+
const _u = "units";
|
|
651
|
+
const _uAGSAE = "uplinkAwsGroundStationAgentEndpoint";
|
|
652
|
+
const _uEC = "uplinkEchoConfig";
|
|
653
|
+
const _uJSON = "unvalidatedJSON";
|
|
654
|
+
const _uMS = "upcomingMinutesScheduled";
|
|
655
|
+
const _un = "unit";
|
|
656
|
+
const _v = "versions";
|
|
657
|
+
const _vET = "visibilityEndTime";
|
|
658
|
+
const _vI = "versionId";
|
|
659
|
+
const _vST = "visibilityStartTime";
|
|
660
|
+
const _vTR = "validTimeRange";
|
|
661
|
+
const _va = "value";
|
|
662
|
+
const _ve = "version";
|
|
663
|
+
const _y = "year";
|
|
664
|
+
const n0 = "com.amazonaws.groundstation";
|
|
665
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
666
|
+
var GroundStationServiceException$ = [-3, _s, "GroundStationServiceException", 0, [], []];
|
|
667
|
+
_s_registry.registerError(GroundStationServiceException$, GroundStationServiceException);
|
|
668
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
669
|
+
var DependencyException$ = [-3, n0, _DE,
|
|
670
|
+
{ [_e]: _se, [_hE]: 531 },
|
|
671
|
+
[_m, _pN],
|
|
672
|
+
[0, 0]
|
|
673
|
+
];
|
|
674
|
+
n0_registry.registerError(DependencyException$, DependencyException);
|
|
675
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
676
|
+
{ [_e]: _c, [_hE]: 431 },
|
|
677
|
+
[_m, _pN],
|
|
678
|
+
[0, 0]
|
|
679
|
+
];
|
|
680
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
681
|
+
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
682
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
683
|
+
[_m],
|
|
684
|
+
[0]
|
|
685
|
+
];
|
|
686
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
687
|
+
var ResourceLimitExceededException$ = [-3, n0, _RLEE,
|
|
688
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
689
|
+
[_m, _pN],
|
|
690
|
+
[0, 0]
|
|
691
|
+
];
|
|
692
|
+
n0_registry.registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
693
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
694
|
+
{ [_e]: _c, [_hE]: 434 },
|
|
695
|
+
[_m],
|
|
696
|
+
[0]
|
|
697
|
+
];
|
|
698
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
699
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
700
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
701
|
+
[_m, _pN],
|
|
702
|
+
[0, 0]
|
|
703
|
+
];
|
|
704
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
705
|
+
const errorTypeRegistries = [
|
|
706
|
+
_s_registry,
|
|
707
|
+
n0_registry,
|
|
708
|
+
];
|
|
709
|
+
var AgentDetails$ = [3, n0, _AD,
|
|
710
|
+
0,
|
|
711
|
+
[_aV, _iI, _iT, _cV, _rCC, _aCC],
|
|
712
|
+
[0, 0, 0, () => ComponentVersionList, 64 | 1, 64 | 1], 4
|
|
713
|
+
];
|
|
714
|
+
var AggregateStatus$ = [3, n0, _AS,
|
|
715
|
+
0,
|
|
716
|
+
[_st, _sM],
|
|
717
|
+
[0, 128 | 2], 1
|
|
718
|
+
];
|
|
719
|
+
var AntennaDemodDecodeDetails$ = [3, n0, _ADDD,
|
|
720
|
+
0,
|
|
721
|
+
[_oN],
|
|
722
|
+
[0]
|
|
723
|
+
];
|
|
724
|
+
var AntennaDownlinkConfig$ = [3, n0, _ADC,
|
|
725
|
+
0,
|
|
726
|
+
[_sC],
|
|
727
|
+
[() => SpectrumConfig$], 1
|
|
728
|
+
];
|
|
729
|
+
var AntennaDownlinkDemodDecodeConfig$ = [3, n0, _ADDDC,
|
|
730
|
+
0,
|
|
731
|
+
[_sC, _dC, _dCe],
|
|
732
|
+
[() => SpectrumConfig$, () => DemodulationConfig$, () => DecodeConfig$], 3
|
|
733
|
+
];
|
|
734
|
+
var AntennaListItem$ = [3, n0, _ALI,
|
|
735
|
+
0,
|
|
736
|
+
[_gSN, _aN, _r],
|
|
737
|
+
[0, 0, 0], 3
|
|
738
|
+
];
|
|
739
|
+
var AntennaUplinkConfig$ = [3, n0, _AUC,
|
|
740
|
+
0,
|
|
741
|
+
[_sC, _tE, _tD],
|
|
742
|
+
[() => UplinkSpectrumConfig$, () => Eirp$, 2], 2
|
|
743
|
+
];
|
|
744
|
+
var AwsGroundStationAgentEndpoint$ = [3, n0, _AGSAE,
|
|
745
|
+
0,
|
|
746
|
+
[_n, _eA, _iA, _aS, _aR],
|
|
747
|
+
[0, () => ConnectionDetails$, () => RangedConnectionDetails$, 0, 0], 3
|
|
748
|
+
];
|
|
749
|
+
var AzElEphemeris$ = [3, n0, _AEE,
|
|
750
|
+
0,
|
|
751
|
+
[_gS, _d],
|
|
752
|
+
[0, () => AzElSegmentsData$], 2
|
|
753
|
+
];
|
|
754
|
+
var AzElEphemerisFilter$ = [3, n0, _AEEF,
|
|
755
|
+
0,
|
|
756
|
+
[_i],
|
|
757
|
+
[0], 1
|
|
758
|
+
];
|
|
759
|
+
var AzElProgramTrackSettings$ = [3, n0, _AEPTS,
|
|
760
|
+
0,
|
|
761
|
+
[_eI],
|
|
762
|
+
[0], 1
|
|
763
|
+
];
|
|
764
|
+
var AzElSegment$ = [3, n0, _AES,
|
|
765
|
+
0,
|
|
766
|
+
[_rE, _vTR, _aEL],
|
|
767
|
+
[5, () => ISO8601TimeRange$, () => TimeAzElList], 3
|
|
768
|
+
];
|
|
769
|
+
var AzElSegments$ = [3, n0, _AESz,
|
|
770
|
+
0,
|
|
771
|
+
[_aU, _aESL],
|
|
772
|
+
[0, () => AzElSegmentList], 2
|
|
773
|
+
];
|
|
774
|
+
var CancelContactRequest$ = [3, n0, _CCR,
|
|
775
|
+
0,
|
|
776
|
+
[_cI],
|
|
777
|
+
[[0, 1]], 1
|
|
778
|
+
];
|
|
779
|
+
var ComponentStatusData$ = [3, n0, _CSD,
|
|
780
|
+
0,
|
|
781
|
+
[_cT, _cA, _st, _dI, _bS, _bR, _pD],
|
|
782
|
+
[0, 0, 0, 0, 1, 1, 1], 4
|
|
783
|
+
];
|
|
784
|
+
var ComponentVersion$ = [3, n0, _CV,
|
|
785
|
+
0,
|
|
786
|
+
[_cT, _v],
|
|
787
|
+
[0, 64 | 0], 2
|
|
788
|
+
];
|
|
789
|
+
var ConfigIdResponse$ = [3, n0, _CIR,
|
|
790
|
+
0,
|
|
791
|
+
[_cIo, _cTo, _cAo],
|
|
792
|
+
[0, 0, 0]
|
|
793
|
+
];
|
|
794
|
+
var ConfigListItem$ = [3, n0, _CLI,
|
|
795
|
+
0,
|
|
796
|
+
[_cIo, _cTo, _cAo, _n],
|
|
797
|
+
[0, 0, 0, 0]
|
|
798
|
+
];
|
|
799
|
+
var ConnectionDetails$ = [3, n0, _CD,
|
|
800
|
+
0,
|
|
801
|
+
[_sA, _mt],
|
|
802
|
+
[() => SocketAddress$, 1], 1
|
|
803
|
+
];
|
|
804
|
+
var ContactData$ = [3, n0, _CDo,
|
|
805
|
+
0,
|
|
806
|
+
[_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _r, _t, _vST, _vET, _ep, _ve],
|
|
807
|
+
[0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 0, 128 | 0, 4, 4, () => EphemerisResponseData$, () => ContactVersion$]
|
|
808
|
+
];
|
|
809
|
+
var ContactIdResponse$ = [3, n0, _CIRo,
|
|
810
|
+
0,
|
|
811
|
+
[_cI, _vI],
|
|
812
|
+
[0, 1]
|
|
813
|
+
];
|
|
814
|
+
var ContactReservationDetails$ = [3, n0, _CRD,
|
|
815
|
+
0,
|
|
816
|
+
[_cI],
|
|
817
|
+
[0]
|
|
818
|
+
];
|
|
819
|
+
var ContactVersion$ = [3, n0, _CVo,
|
|
820
|
+
0,
|
|
821
|
+
[_vI, _cr, _a, _su, _lU, _st, _fC, _fM],
|
|
822
|
+
[1, 4, 4, 4, 4, 0, 64 | 0, 0]
|
|
823
|
+
];
|
|
824
|
+
var CreateConfigRequest$ = [3, n0, _CCRr,
|
|
825
|
+
0,
|
|
826
|
+
[_n, _cD, _t],
|
|
827
|
+
[0, () => ConfigTypeData$, 128 | 0], 2
|
|
828
|
+
];
|
|
829
|
+
var CreateDataflowEndpointGroupRequest$ = [3, n0, _CDEGR,
|
|
830
|
+
0,
|
|
831
|
+
[_eD, _t, _cPPDS, _cPPDSo],
|
|
832
|
+
[() => EndpointDetailsList, 128 | 0, 1, 1], 1
|
|
833
|
+
];
|
|
834
|
+
var CreateDataflowEndpointGroupV2Request$ = [3, n0, _CDEGVR,
|
|
835
|
+
0,
|
|
836
|
+
[_en, _cPPDS, _cPPDSo, _t],
|
|
837
|
+
[() => CreateEndpointDetailsList, 1, 1, 128 | 0], 1
|
|
838
|
+
];
|
|
839
|
+
var CreateDataflowEndpointGroupV2Response$ = [3, n0, _CDEGVRr,
|
|
840
|
+
0,
|
|
841
|
+
[_dEGI],
|
|
842
|
+
[0]
|
|
843
|
+
];
|
|
844
|
+
var CreateEphemerisRequest$ = [3, n0, _CER,
|
|
845
|
+
0,
|
|
846
|
+
[_n, _sI, _ena, _p, _eTx, _kKA, _ep, _t],
|
|
847
|
+
[0, 0, 2, 1, 4, 0, () => EphemerisData$, 128 | 0], 1
|
|
848
|
+
];
|
|
849
|
+
var CreateMissionProfileRequest$ = [3, n0, _CMPR,
|
|
850
|
+
0,
|
|
851
|
+
[_n, _mVCDS, _dE, _tCA, _cPPDS, _cPPDSo, _tSCA, _t, _sKK, _sKR],
|
|
852
|
+
[0, 1, [1, n0, _DEL, 0, 64 | 0], 0, 1, 1, 0, 128 | 0, () => KmsKey$, 0], 4
|
|
853
|
+
];
|
|
854
|
+
var DataflowDetail$ = [3, n0, _DD,
|
|
855
|
+
0,
|
|
856
|
+
[_so, _de, _eM],
|
|
857
|
+
[() => Source$, () => Destination$, 0]
|
|
858
|
+
];
|
|
859
|
+
var DataflowEndpoint$ = [3, n0, _DEa,
|
|
860
|
+
0,
|
|
861
|
+
[_n, _ad, _st, _mt],
|
|
862
|
+
[0, () => SocketAddress$, 0, 1]
|
|
863
|
+
];
|
|
864
|
+
var DataflowEndpointConfig$ = [3, n0, _DEC,
|
|
865
|
+
0,
|
|
866
|
+
[_dEN, _dER],
|
|
867
|
+
[0, 0], 1
|
|
868
|
+
];
|
|
869
|
+
var DataflowEndpointGroupIdResponse$ = [3, n0, _DEGIR,
|
|
870
|
+
0,
|
|
871
|
+
[_dEGI],
|
|
872
|
+
[0]
|
|
873
|
+
];
|
|
874
|
+
var DataflowEndpointListItem$ = [3, n0, _DELI,
|
|
875
|
+
0,
|
|
876
|
+
[_dEGI, _dEGA],
|
|
877
|
+
[0, 0]
|
|
878
|
+
];
|
|
879
|
+
var DecodeConfig$ = [3, n0, _DC,
|
|
880
|
+
0,
|
|
881
|
+
[_uJSON],
|
|
882
|
+
[0], 1
|
|
883
|
+
];
|
|
884
|
+
var DeleteConfigRequest$ = [3, n0, _DCR,
|
|
885
|
+
0,
|
|
886
|
+
[_cIo, _cTo],
|
|
887
|
+
[[0, 1], [0, 1]], 2
|
|
888
|
+
];
|
|
889
|
+
var DeleteDataflowEndpointGroupRequest$ = [3, n0, _DDEGR,
|
|
890
|
+
0,
|
|
891
|
+
[_dEGI],
|
|
892
|
+
[[0, 1]], 1
|
|
893
|
+
];
|
|
894
|
+
var DeleteEphemerisRequest$ = [3, n0, _DER,
|
|
895
|
+
0,
|
|
896
|
+
[_eI],
|
|
897
|
+
[[0, 1]], 1
|
|
898
|
+
];
|
|
899
|
+
var DeleteMissionProfileRequest$ = [3, n0, _DMPR,
|
|
900
|
+
0,
|
|
901
|
+
[_mPI],
|
|
902
|
+
[[0, 1]], 1
|
|
903
|
+
];
|
|
904
|
+
var DemodulationConfig$ = [3, n0, _DCe,
|
|
905
|
+
0,
|
|
906
|
+
[_uJSON],
|
|
907
|
+
[0], 1
|
|
908
|
+
];
|
|
909
|
+
var DescribeContactRequest$ = [3, n0, _DCRe,
|
|
910
|
+
0,
|
|
911
|
+
[_cI],
|
|
912
|
+
[[0, 1]], 1
|
|
913
|
+
];
|
|
914
|
+
var DescribeContactResponse$ = [3, n0, _DCRes,
|
|
915
|
+
0,
|
|
916
|
+
[_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _t, _r, _dL, _vST, _vET, _tO, _ep, _ve],
|
|
917
|
+
[0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 128 | 0, 0, () => DataflowList, 4, 4, () => TrackingOverrides$, () => EphemerisResponseData$, () => ContactVersion$]
|
|
918
|
+
];
|
|
919
|
+
var DescribeContactVersionRequest$ = [3, n0, _DCVR,
|
|
920
|
+
0,
|
|
921
|
+
[_cI, _vI],
|
|
922
|
+
[[0, 1], [1, 1]], 2
|
|
923
|
+
];
|
|
924
|
+
var DescribeContactVersionResponse$ = [3, n0, _DCVRe,
|
|
925
|
+
0,
|
|
926
|
+
[_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _t, _r, _dL, _vST, _vET, _tO, _ep, _ve],
|
|
927
|
+
[0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation$, 128 | 0, 0, () => DataflowList, 4, 4, () => TrackingOverrides$, () => EphemerisResponseData$, () => ContactVersion$]
|
|
928
|
+
];
|
|
929
|
+
var DescribeEphemerisRequest$ = [3, n0, _DERe,
|
|
930
|
+
0,
|
|
931
|
+
[_eI],
|
|
932
|
+
[[0, 1]], 1
|
|
933
|
+
];
|
|
934
|
+
var DescribeEphemerisResponse$ = [3, n0, _DERes,
|
|
935
|
+
0,
|
|
936
|
+
[_eI, _sI, _st, _p, _cTr, _ena, _n, _t, _sD, _iR, _eR],
|
|
937
|
+
[0, 0, 0, 1, 4, 2, 0, 128 | 0, () => EphemerisTypeDescription$, 0, () => EphemerisErrorReasonList]
|
|
938
|
+
];
|
|
939
|
+
var Destination$ = [3, n0, _D,
|
|
940
|
+
0,
|
|
941
|
+
[_cTo, _cIo, _cDo, _dDR],
|
|
942
|
+
[0, 0, () => ConfigDetails$, 0]
|
|
943
|
+
];
|
|
944
|
+
var DiscoveryData$ = [3, n0, _DDi,
|
|
945
|
+
0,
|
|
946
|
+
[_pIA, _pIAr, _cAa],
|
|
947
|
+
[64 | 0, 64 | 0, 64 | 0], 3
|
|
948
|
+
];
|
|
949
|
+
var DownlinkAwsGroundStationAgentEndpoint$ = [3, n0, _DAGSAE,
|
|
950
|
+
0,
|
|
951
|
+
[_n, _dD],
|
|
952
|
+
[0, () => DownlinkDataflowDetails$], 2
|
|
953
|
+
];
|
|
954
|
+
var DownlinkAwsGroundStationAgentEndpointDetails$ = [3, n0, _DAGSAED,
|
|
955
|
+
0,
|
|
956
|
+
[_n, _dD, _aS, _aR],
|
|
957
|
+
[0, () => DownlinkDataflowDetails$, 0, 0], 2
|
|
958
|
+
];
|
|
959
|
+
var DownlinkConnectionDetails$ = [3, n0, _DCD,
|
|
960
|
+
0,
|
|
961
|
+
[_aIAPA, _eAAP],
|
|
962
|
+
[() => RangedConnectionDetails$, () => ConnectionDetails$], 2
|
|
963
|
+
];
|
|
964
|
+
var Eirp$ = [3, n0, _E,
|
|
965
|
+
0,
|
|
966
|
+
[_va, _u],
|
|
967
|
+
[1, 0], 2
|
|
968
|
+
];
|
|
969
|
+
var Elevation$ = [3, n0, _El,
|
|
970
|
+
0,
|
|
971
|
+
[_va, _un],
|
|
972
|
+
[1, 0], 2
|
|
973
|
+
];
|
|
974
|
+
var EndpointDetails$ = [3, n0, _ED,
|
|
975
|
+
0,
|
|
976
|
+
[_sDe, _end, _aGSAE, _uAGSAE, _dAGSAE, _hS, _hR],
|
|
977
|
+
[() => SecurityDetails$, () => DataflowEndpoint$, () => AwsGroundStationAgentEndpoint$, () => UplinkAwsGroundStationAgentEndpointDetails$, () => DownlinkAwsGroundStationAgentEndpointDetails$, 0, 64 | 0]
|
|
978
|
+
];
|
|
979
|
+
var EphemerisDescription$ = [3, n0, _EDp,
|
|
980
|
+
0,
|
|
981
|
+
[_sSO, _eDp],
|
|
982
|
+
[() => S3Object$, 0]
|
|
983
|
+
];
|
|
984
|
+
var EphemerisErrorReason$ = [3, n0, _EER,
|
|
985
|
+
0,
|
|
986
|
+
[_eC, _eM],
|
|
987
|
+
[0, 0], 2
|
|
988
|
+
];
|
|
989
|
+
var EphemerisIdResponse$ = [3, n0, _EIR,
|
|
990
|
+
0,
|
|
991
|
+
[_eI],
|
|
992
|
+
[0]
|
|
993
|
+
];
|
|
994
|
+
var EphemerisItem$ = [3, n0, _EI,
|
|
995
|
+
0,
|
|
996
|
+
[_eI, _eTp, _st, _p, _ena, _cTr, _n, _sSO],
|
|
997
|
+
[0, 0, 0, 1, 2, 4, 0, () => S3Object$]
|
|
998
|
+
];
|
|
999
|
+
var EphemerisMetaData$ = [3, n0, _EMD,
|
|
1000
|
+
0,
|
|
1001
|
+
[_so, _eI, _epo, _n],
|
|
1002
|
+
[0, 0, 4, 0], 1
|
|
1003
|
+
];
|
|
1004
|
+
var EphemerisResponseData$ = [3, n0, _ERD,
|
|
1005
|
+
0,
|
|
1006
|
+
[_eTp, _eI],
|
|
1007
|
+
[0, 0], 1
|
|
1008
|
+
];
|
|
1009
|
+
var Frequency$ = [3, n0, _F,
|
|
1010
|
+
0,
|
|
1011
|
+
[_va, _u],
|
|
1012
|
+
[1, 0], 2
|
|
1013
|
+
];
|
|
1014
|
+
var FrequencyBandwidth$ = [3, n0, _FB,
|
|
1015
|
+
0,
|
|
1016
|
+
[_va, _u],
|
|
1017
|
+
[1, 0], 2
|
|
1018
|
+
];
|
|
1019
|
+
var GetAgentConfigurationRequest$ = [3, n0, _GACR,
|
|
1020
|
+
0,
|
|
1021
|
+
[_aI],
|
|
1022
|
+
[[0, 1]], 1
|
|
1023
|
+
];
|
|
1024
|
+
var GetAgentConfigurationResponse$ = [3, n0, _GACRe,
|
|
1025
|
+
0,
|
|
1026
|
+
[_aI, _tDa],
|
|
1027
|
+
[0, 0]
|
|
1028
|
+
];
|
|
1029
|
+
var GetAgentTaskResponseUrlRequest$ = [3, n0, _GATRUR,
|
|
1030
|
+
0,
|
|
1031
|
+
[_aI, _tI],
|
|
1032
|
+
[[0, 1], [0, 1]], 2
|
|
1033
|
+
];
|
|
1034
|
+
var GetAgentTaskResponseUrlResponse$ = [3, n0, _GATRURe,
|
|
1035
|
+
0,
|
|
1036
|
+
[_aI, _tI, _pLU],
|
|
1037
|
+
[0, 0, 0], 3
|
|
1038
|
+
];
|
|
1039
|
+
var GetConfigRequest$ = [3, n0, _GCR,
|
|
1040
|
+
0,
|
|
1041
|
+
[_cIo, _cTo],
|
|
1042
|
+
[[0, 1], [0, 1]], 2
|
|
1043
|
+
];
|
|
1044
|
+
var GetConfigResponse$ = [3, n0, _GCRe,
|
|
1045
|
+
0,
|
|
1046
|
+
[_cIo, _cAo, _n, _cD, _cTo, _t],
|
|
1047
|
+
[0, 0, 0, () => ConfigTypeData$, 0, 128 | 0], 4
|
|
1048
|
+
];
|
|
1049
|
+
var GetDataflowEndpointGroupRequest$ = [3, n0, _GDEGR,
|
|
1050
|
+
0,
|
|
1051
|
+
[_dEGI],
|
|
1052
|
+
[[0, 1]], 1
|
|
1053
|
+
];
|
|
1054
|
+
var GetDataflowEndpointGroupResponse$ = [3, n0, _GDEGRe,
|
|
1055
|
+
0,
|
|
1056
|
+
[_dEGI, _dEGA, _eDn, _t, _cPPDS, _cPPDSo],
|
|
1057
|
+
[0, 0, () => EndpointDetailsList, 128 | 0, 1, 1]
|
|
1058
|
+
];
|
|
1059
|
+
var GetMinuteUsageRequest$ = [3, n0, _GMUR,
|
|
1060
|
+
0,
|
|
1061
|
+
[_mo, _y],
|
|
1062
|
+
[1, 1], 2
|
|
1063
|
+
];
|
|
1064
|
+
var GetMinuteUsageResponse$ = [3, n0, _GMURe,
|
|
1065
|
+
0,
|
|
1066
|
+
[_iRMC, _tRMA, _uMS, _tSM, _eMR],
|
|
1067
|
+
[2, 1, 1, 1, 1]
|
|
1068
|
+
];
|
|
1069
|
+
var GetMissionProfileRequest$ = [3, n0, _GMPR,
|
|
1070
|
+
0,
|
|
1071
|
+
[_mPI],
|
|
1072
|
+
[[0, 1]], 1
|
|
1073
|
+
];
|
|
1074
|
+
var GetMissionProfileResponse$ = [3, n0, _GMPRe,
|
|
1075
|
+
0,
|
|
1076
|
+
[_mPI, _mPA, _n, _r, _cPPDS, _cPPDSo, _mVCDS, _dE, _tCA, _tSCA, _t, _sKK, _sKR],
|
|
1077
|
+
[0, 0, 0, 0, 1, 1, 1, [1, n0, _DEL, 0, 64 | 0], 0, 0, 128 | 0, () => KmsKey$, 0]
|
|
1078
|
+
];
|
|
1079
|
+
var GetSatelliteRequest$ = [3, n0, _GSR,
|
|
1080
|
+
0,
|
|
1081
|
+
[_sI],
|
|
1082
|
+
[[0, 1]], 1
|
|
1083
|
+
];
|
|
1084
|
+
var GetSatelliteResponse$ = [3, n0, _GSRe,
|
|
1085
|
+
0,
|
|
1086
|
+
[_sI, _sAa, _nSID, _gSr, _cE],
|
|
1087
|
+
[0, 0, 1, 64 | 0, () => EphemerisMetaData$]
|
|
1088
|
+
];
|
|
1089
|
+
var GroundStationData$ = [3, n0, _GSD,
|
|
1090
|
+
0,
|
|
1091
|
+
[_gSI, _gSN, _r],
|
|
1092
|
+
[0, 0, 0]
|
|
1093
|
+
];
|
|
1094
|
+
var GroundStationReservationListItem$ = [3, n0, _GSRLI,
|
|
1095
|
+
0,
|
|
1096
|
+
[_rT, _gSI, _aN, _sT, _eT, _rD],
|
|
1097
|
+
[0, 0, 0, 4, 4, () => ReservationDetails$], 6
|
|
1098
|
+
];
|
|
1099
|
+
var IntegerRange$ = [3, n0, _IR,
|
|
1100
|
+
0,
|
|
1101
|
+
[_mi, _ma],
|
|
1102
|
+
[1, 1], 2
|
|
1103
|
+
];
|
|
1104
|
+
var ISO8601TimeRange$ = [3, n0, _ISOTR,
|
|
1105
|
+
0,
|
|
1106
|
+
[_sT, _eT],
|
|
1107
|
+
[5, 5], 2
|
|
1108
|
+
];
|
|
1109
|
+
var KinesisDataStreamData$ = [3, n0, _KDSD,
|
|
1110
|
+
0,
|
|
1111
|
+
[_kRA, _kDSA],
|
|
1112
|
+
[0, 0], 2
|
|
1113
|
+
];
|
|
1114
|
+
var ListAntennasRequest$ = [3, n0, _LAR,
|
|
1115
|
+
0,
|
|
1116
|
+
[_gSI, _mR, _nT],
|
|
1117
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1118
|
+
];
|
|
1119
|
+
var ListAntennasResponse$ = [3, n0, _LARi,
|
|
1120
|
+
0,
|
|
1121
|
+
[_aL, _nT],
|
|
1122
|
+
[() => AntennaList, 0], 1
|
|
1123
|
+
];
|
|
1124
|
+
var ListConfigsRequest$ = [3, n0, _LCR,
|
|
1125
|
+
0,
|
|
1126
|
+
[_mR, _nT],
|
|
1127
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1128
|
+
];
|
|
1129
|
+
var ListConfigsResponse$ = [3, n0, _LCRi,
|
|
1130
|
+
0,
|
|
1131
|
+
[_nT, _cL],
|
|
1132
|
+
[0, () => ConfigList]
|
|
1133
|
+
];
|
|
1134
|
+
var ListContactsRequest$ = [3, n0, _LCRis,
|
|
1135
|
+
0,
|
|
1136
|
+
[_sL, _sT, _eT, _mR, _nT, _gS, _sAa, _mPA, _ep],
|
|
1137
|
+
[64 | 0, 4, 4, 1, 0, 0, 0, 0, () => EphemerisFilter$], 3
|
|
1138
|
+
];
|
|
1139
|
+
var ListContactsResponse$ = [3, n0, _LCRist,
|
|
1140
|
+
0,
|
|
1141
|
+
[_nT, _cLo],
|
|
1142
|
+
[0, () => ContactList]
|
|
1143
|
+
];
|
|
1144
|
+
var ListContactVersionsRequest$ = [3, n0, _LCVR,
|
|
1145
|
+
0,
|
|
1146
|
+
[_cI, _mR, _nT],
|
|
1147
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1148
|
+
];
|
|
1149
|
+
var ListContactVersionsResponse$ = [3, n0, _LCVRi,
|
|
1150
|
+
0,
|
|
1151
|
+
[_nT, _cVL],
|
|
1152
|
+
[0, () => ContactVersionsList]
|
|
1153
|
+
];
|
|
1154
|
+
var ListDataflowEndpointGroupsRequest$ = [3, n0, _LDEGR,
|
|
1155
|
+
0,
|
|
1156
|
+
[_mR, _nT],
|
|
1157
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1158
|
+
];
|
|
1159
|
+
var ListDataflowEndpointGroupsResponse$ = [3, n0, _LDEGRi,
|
|
1160
|
+
0,
|
|
1161
|
+
[_nT, _dEGL],
|
|
1162
|
+
[0, () => DataflowEndpointGroupList]
|
|
1163
|
+
];
|
|
1164
|
+
var ListEphemeridesRequest$ = [3, n0, _LER,
|
|
1165
|
+
0,
|
|
1166
|
+
[_sT, _eT, _sI, _eTp, _sL, _mR, _nT],
|
|
1167
|
+
[4, 4, 0, 0, 64 | 0, [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1168
|
+
];
|
|
1169
|
+
var ListEphemeridesResponse$ = [3, n0, _LERi,
|
|
1170
|
+
0,
|
|
1171
|
+
[_nT, _eph],
|
|
1172
|
+
[0, () => EphemeridesList]
|
|
1173
|
+
];
|
|
1174
|
+
var ListGroundStationReservationsRequest$ = [3, n0, _LGSRR,
|
|
1175
|
+
0,
|
|
1176
|
+
[_gSI, _sT, _eT, _rTe, _mR, _nT],
|
|
1177
|
+
[[0, 1], [7, { [_hQ]: _sT }], [7, { [_hQ]: _eT }], [64 | 0, { [_hQ]: _rTe }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 3
|
|
1178
|
+
];
|
|
1179
|
+
var ListGroundStationReservationsResponse$ = [3, n0, _LGSRRi,
|
|
1180
|
+
0,
|
|
1181
|
+
[_rL, _nT],
|
|
1182
|
+
[() => GroundStationReservationList, 0], 1
|
|
1183
|
+
];
|
|
1184
|
+
var ListGroundStationsRequest$ = [3, n0, _LGSR,
|
|
1185
|
+
0,
|
|
1186
|
+
[_sI, _mR, _nT],
|
|
1187
|
+
[[0, { [_hQ]: _sI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1188
|
+
];
|
|
1189
|
+
var ListGroundStationsResponse$ = [3, n0, _LGSRi,
|
|
1190
|
+
0,
|
|
1191
|
+
[_nT, _gSL],
|
|
1192
|
+
[0, () => GroundStationList]
|
|
1193
|
+
];
|
|
1194
|
+
var ListMissionProfilesRequest$ = [3, n0, _LMPR,
|
|
1195
|
+
0,
|
|
1196
|
+
[_mR, _nT],
|
|
1197
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1198
|
+
];
|
|
1199
|
+
var ListMissionProfilesResponse$ = [3, n0, _LMPRi,
|
|
1200
|
+
0,
|
|
1201
|
+
[_nT, _mPL],
|
|
1202
|
+
[0, () => MissionProfileList]
|
|
1203
|
+
];
|
|
1204
|
+
var ListSatellitesRequest$ = [3, n0, _LSR,
|
|
1205
|
+
0,
|
|
1206
|
+
[_mR, _nT],
|
|
1207
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1208
|
+
];
|
|
1209
|
+
var ListSatellitesResponse$ = [3, n0, _LSRi,
|
|
1210
|
+
0,
|
|
1211
|
+
[_nT, _sa],
|
|
1212
|
+
[0, () => SatelliteList]
|
|
1213
|
+
];
|
|
1214
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1215
|
+
0,
|
|
1216
|
+
[_rA],
|
|
1217
|
+
[[0, 1]], 1
|
|
1218
|
+
];
|
|
1219
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1220
|
+
0,
|
|
1221
|
+
[_t],
|
|
1222
|
+
[128 | 0]
|
|
1223
|
+
];
|
|
1224
|
+
var MaintenanceReservationDetails$ = [3, n0, _MRD,
|
|
1225
|
+
0,
|
|
1226
|
+
[_mT],
|
|
1227
|
+
[0], 1
|
|
1228
|
+
];
|
|
1229
|
+
var MissionProfileIdResponse$ = [3, n0, _MPIR,
|
|
1230
|
+
0,
|
|
1231
|
+
[_mPI],
|
|
1232
|
+
[0]
|
|
1233
|
+
];
|
|
1234
|
+
var MissionProfileListItem$ = [3, n0, _MPLI,
|
|
1235
|
+
0,
|
|
1236
|
+
[_mPI, _mPA, _r, _n],
|
|
1237
|
+
[0, 0, 0, 0]
|
|
1238
|
+
];
|
|
1239
|
+
var OEMEphemeris$ = [3, n0, _OEME,
|
|
1240
|
+
0,
|
|
1241
|
+
[_sO, _oD],
|
|
1242
|
+
[() => S3Object$, 0]
|
|
1243
|
+
];
|
|
1244
|
+
var OemProgramTrackSettings$ = [3, n0, _OPTS,
|
|
1245
|
+
0,
|
|
1246
|
+
[_eI],
|
|
1247
|
+
[0], 1
|
|
1248
|
+
];
|
|
1249
|
+
var RangedConnectionDetails$ = [3, n0, _RCD,
|
|
1250
|
+
0,
|
|
1251
|
+
[_sA, _mt],
|
|
1252
|
+
[() => RangedSocketAddress$, 1], 1
|
|
1253
|
+
];
|
|
1254
|
+
var RangedSocketAddress$ = [3, n0, _RSA,
|
|
1255
|
+
0,
|
|
1256
|
+
[_n, _pR],
|
|
1257
|
+
[0, () => IntegerRange$], 2
|
|
1258
|
+
];
|
|
1259
|
+
var RegisterAgentRequest$ = [3, n0, _RAR,
|
|
1260
|
+
0,
|
|
1261
|
+
[_dDi, _aD, _t],
|
|
1262
|
+
[() => DiscoveryData$, () => AgentDetails$, 128 | 0], 2
|
|
1263
|
+
];
|
|
1264
|
+
var RegisterAgentResponse$ = [3, n0, _RARe,
|
|
1265
|
+
0,
|
|
1266
|
+
[_aI],
|
|
1267
|
+
[0]
|
|
1268
|
+
];
|
|
1269
|
+
var ReserveContactRequest$ = [3, n0, _RCR,
|
|
1270
|
+
0,
|
|
1271
|
+
[_mPA, _sT, _eT, _gS, _sAa, _t, _tO],
|
|
1272
|
+
[0, 4, 4, 0, 0, 128 | 0, () => TrackingOverrides$], 4
|
|
1273
|
+
];
|
|
1274
|
+
var S3Object$ = [3, n0, _SO,
|
|
1275
|
+
0,
|
|
1276
|
+
[_b, _k, _ve],
|
|
1277
|
+
[0, 0, 0]
|
|
1278
|
+
];
|
|
1279
|
+
var S3RecordingConfig$ = [3, n0, _SRC,
|
|
1280
|
+
0,
|
|
1281
|
+
[_bA, _rAo, _pr],
|
|
1282
|
+
[0, 0, 0], 2
|
|
1283
|
+
];
|
|
1284
|
+
var S3RecordingDetails$ = [3, n0, _SRD,
|
|
1285
|
+
0,
|
|
1286
|
+
[_bA, _kT],
|
|
1287
|
+
[0, 0]
|
|
1288
|
+
];
|
|
1289
|
+
var SatelliteListItem$ = [3, n0, _SLI,
|
|
1290
|
+
0,
|
|
1291
|
+
[_sI, _sAa, _nSID, _gSr, _cE],
|
|
1292
|
+
[0, 0, 1, 64 | 0, () => EphemerisMetaData$]
|
|
1293
|
+
];
|
|
1294
|
+
var SecurityDetails$ = [3, n0, _SD,
|
|
1295
|
+
0,
|
|
1296
|
+
[_sIu, _sGI, _rAo],
|
|
1297
|
+
[64 | 0, 64 | 0, 0], 3
|
|
1298
|
+
];
|
|
1299
|
+
var SocketAddress$ = [3, n0, _SA,
|
|
1300
|
+
0,
|
|
1301
|
+
[_n, _po],
|
|
1302
|
+
[0, 1], 2
|
|
1303
|
+
];
|
|
1304
|
+
var Source$ = [3, n0, _S,
|
|
1305
|
+
0,
|
|
1306
|
+
[_cTo, _cIo, _cDo, _dSR],
|
|
1307
|
+
[0, 0, () => ConfigDetails$, 0]
|
|
1308
|
+
];
|
|
1309
|
+
var SpectrumConfig$ = [3, n0, _SC,
|
|
1310
|
+
0,
|
|
1311
|
+
[_cF, _ba, _pol],
|
|
1312
|
+
[() => Frequency$, () => FrequencyBandwidth$, 0], 2
|
|
1313
|
+
];
|
|
1314
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1315
|
+
0,
|
|
1316
|
+
[_rA, _t],
|
|
1317
|
+
[[0, 1], 128 | 0], 2
|
|
1318
|
+
];
|
|
1319
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1320
|
+
0,
|
|
1321
|
+
[],
|
|
1322
|
+
[]
|
|
1323
|
+
];
|
|
1324
|
+
var TelemetrySinkConfig$ = [3, n0, _TSC,
|
|
1325
|
+
0,
|
|
1326
|
+
[_tST, _tSD],
|
|
1327
|
+
[0, () => TelemetrySinkData$], 2
|
|
1328
|
+
];
|
|
1329
|
+
var TimeAzEl$ = [3, n0, _TAE,
|
|
1330
|
+
0,
|
|
1331
|
+
[_dt, _az, _el],
|
|
1332
|
+
[1, 1, 1], 3
|
|
1333
|
+
];
|
|
1334
|
+
var TimeRange$ = [3, n0, _TR,
|
|
1335
|
+
0,
|
|
1336
|
+
[_sT, _eT],
|
|
1337
|
+
[4, 4], 2
|
|
1338
|
+
];
|
|
1339
|
+
var TLEData$ = [3, n0, _TLED,
|
|
1340
|
+
0,
|
|
1341
|
+
[_tL, _tLl, _vTR],
|
|
1342
|
+
[0, 0, () => TimeRange$], 3
|
|
1343
|
+
];
|
|
1344
|
+
var TLEEphemeris$ = [3, n0, _TLEE,
|
|
1345
|
+
0,
|
|
1346
|
+
[_sO, _tDl],
|
|
1347
|
+
[() => S3Object$, () => TLEDataList]
|
|
1348
|
+
];
|
|
1349
|
+
var TleProgramTrackSettings$ = [3, n0, _TPTS,
|
|
1350
|
+
0,
|
|
1351
|
+
[_eI],
|
|
1352
|
+
[0], 1
|
|
1353
|
+
];
|
|
1354
|
+
var TrackingConfig$ = [3, n0, _TC,
|
|
1355
|
+
0,
|
|
1356
|
+
[_au],
|
|
1357
|
+
[0], 1
|
|
1358
|
+
];
|
|
1359
|
+
var TrackingOverrides$ = [3, n0, _TO,
|
|
1360
|
+
0,
|
|
1361
|
+
[_pTS],
|
|
1362
|
+
[() => ProgramTrackSettings$]
|
|
1363
|
+
];
|
|
1364
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1365
|
+
0,
|
|
1366
|
+
[_rA, _tK],
|
|
1367
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1368
|
+
];
|
|
1369
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1370
|
+
0,
|
|
1371
|
+
[],
|
|
1372
|
+
[]
|
|
1373
|
+
];
|
|
1374
|
+
var UpdateAgentStatusRequest$ = [3, n0, _UASR,
|
|
1375
|
+
0,
|
|
1376
|
+
[_aI, _tI, _aSg, _cSo],
|
|
1377
|
+
[[0, 1], 0, () => AggregateStatus$, () => ComponentStatusList], 4
|
|
1378
|
+
];
|
|
1379
|
+
var UpdateAgentStatusResponse$ = [3, n0, _UASRp,
|
|
1380
|
+
0,
|
|
1381
|
+
[_aI],
|
|
1382
|
+
[0], 1
|
|
1383
|
+
];
|
|
1384
|
+
var UpdateConfigRequest$ = [3, n0, _UCR,
|
|
1385
|
+
0,
|
|
1386
|
+
[_cIo, _n, _cTo, _cD],
|
|
1387
|
+
[[0, 1], 0, [0, 1], () => ConfigTypeData$], 4
|
|
1388
|
+
];
|
|
1389
|
+
var UpdateContactRequest$ = [3, n0, _UCRp,
|
|
1390
|
+
0,
|
|
1391
|
+
[_cI, _cTl, _tO, _sAa],
|
|
1392
|
+
[[0, 1], [0, 4], () => TrackingOverrides$, 0], 1
|
|
1393
|
+
];
|
|
1394
|
+
var UpdateContactResponse$ = [3, n0, _UCRpd,
|
|
1395
|
+
0,
|
|
1396
|
+
[_cI, _vI],
|
|
1397
|
+
[0, 1]
|
|
1398
|
+
];
|
|
1399
|
+
var UpdateEphemerisRequest$ = [3, n0, _UER,
|
|
1400
|
+
0,
|
|
1401
|
+
[_eI, _ena, _n, _p],
|
|
1402
|
+
[[0, 1], 2, 0, 1], 2
|
|
1403
|
+
];
|
|
1404
|
+
var UpdateMissionProfileRequest$ = [3, n0, _UMPR,
|
|
1405
|
+
0,
|
|
1406
|
+
[_mPI, _n, _cPPDS, _cPPDSo, _mVCDS, _dE, _tCA, _tSCA, _sKK, _sKR],
|
|
1407
|
+
[[0, 1], 0, 1, 1, 1, [1, n0, _DEL, 0, 64 | 0], 0, 0, () => KmsKey$, 0], 1
|
|
1408
|
+
];
|
|
1409
|
+
var UplinkAwsGroundStationAgentEndpoint$ = [3, n0, _UAGSAE,
|
|
1410
|
+
0,
|
|
1411
|
+
[_n, _dD],
|
|
1412
|
+
[0, () => UplinkDataflowDetails$], 2
|
|
1413
|
+
];
|
|
1414
|
+
var UplinkAwsGroundStationAgentEndpointDetails$ = [3, n0, _UAGSAED,
|
|
1415
|
+
0,
|
|
1416
|
+
[_n, _dD, _aS, _aR],
|
|
1417
|
+
[0, () => UplinkDataflowDetails$, 0, 0], 2
|
|
1418
|
+
];
|
|
1419
|
+
var UplinkConnectionDetails$ = [3, n0, _UCD,
|
|
1420
|
+
0,
|
|
1421
|
+
[_iAAP, _aIAPA],
|
|
1422
|
+
[() => ConnectionDetails$, () => RangedConnectionDetails$], 2
|
|
1423
|
+
];
|
|
1424
|
+
var UplinkEchoConfig$ = [3, n0, _UEC,
|
|
1425
|
+
0,
|
|
1426
|
+
[_ena, _aUCA],
|
|
1427
|
+
[2, 0], 2
|
|
1428
|
+
];
|
|
1429
|
+
var UplinkSpectrumConfig$ = [3, n0, _USC,
|
|
1430
|
+
0,
|
|
1431
|
+
[_cF, _pol],
|
|
1432
|
+
[() => Frequency$, 0], 1
|
|
1433
|
+
];
|
|
1434
|
+
var AntennaList = [1, n0, _AL,
|
|
1435
|
+
0, () => AntennaListItem$
|
|
1436
|
+
];
|
|
1437
|
+
var AzElSegmentList = [1, n0, _AESL,
|
|
1438
|
+
0, () => AzElSegment$
|
|
1439
|
+
];
|
|
1440
|
+
var ComponentStatusList = [1, n0, _CSL,
|
|
1441
|
+
0, () => ComponentStatusData$
|
|
1442
|
+
];
|
|
1443
|
+
var ComponentVersionList = [1, n0, _CVL,
|
|
1444
|
+
0, () => ComponentVersion$
|
|
1445
|
+
];
|
|
1446
|
+
var ConfigList = [1, n0, _CL,
|
|
1447
|
+
0, () => ConfigListItem$
|
|
1448
|
+
];
|
|
1449
|
+
var ContactList = [1, n0, _CLo,
|
|
1450
|
+
0, () => ContactData$
|
|
1451
|
+
];
|
|
1452
|
+
var ContactVersionsList = [1, n0, _CVLo,
|
|
1453
|
+
0, () => ContactVersion$
|
|
1454
|
+
];
|
|
1455
|
+
var CreateEndpointDetailsList = [1, n0, _CEDL,
|
|
1456
|
+
0, () => CreateEndpointDetails$
|
|
1457
|
+
];
|
|
1458
|
+
var DataflowEndpointGroupList = [1, n0, _DEGL,
|
|
1459
|
+
0, () => DataflowEndpointListItem$
|
|
1460
|
+
];
|
|
1461
|
+
var DataflowList = [1, n0, _DL,
|
|
1462
|
+
0, () => DataflowDetail$
|
|
1463
|
+
];
|
|
1464
|
+
var EndpointDetailsList = [1, n0, _EDL,
|
|
1465
|
+
0, () => EndpointDetails$
|
|
1466
|
+
];
|
|
1467
|
+
var EphemeridesList = [1, n0, _EL,
|
|
1468
|
+
0, () => EphemerisItem$
|
|
1469
|
+
];
|
|
1470
|
+
var EphemerisErrorReasonList = [1, n0, _EERL,
|
|
1471
|
+
0, () => EphemerisErrorReason$
|
|
1472
|
+
];
|
|
1473
|
+
var GroundStationList = [1, n0, _GSL,
|
|
1474
|
+
0, () => GroundStationData$
|
|
1475
|
+
];
|
|
1476
|
+
var GroundStationReservationList = [1, n0, _GSRL,
|
|
1477
|
+
0, () => GroundStationReservationListItem$
|
|
1478
|
+
];
|
|
1479
|
+
var MissionProfileList = [1, n0, _MPL,
|
|
1480
|
+
0, () => MissionProfileListItem$
|
|
1481
|
+
];
|
|
1482
|
+
var SatelliteList = [1, n0, _SL,
|
|
1483
|
+
0, () => SatelliteListItem$
|
|
1484
|
+
];
|
|
1485
|
+
var TimeAzElList = [1, n0, _TAEL,
|
|
1486
|
+
0, () => TimeAzEl$
|
|
1487
|
+
];
|
|
1488
|
+
var TLEDataList = [1, n0, _TLEDL,
|
|
1489
|
+
0, () => TLEData$
|
|
1490
|
+
];
|
|
1491
|
+
var AzElSegmentsData$ = [4, n0, _AESD,
|
|
1492
|
+
0,
|
|
1493
|
+
[_sO, _aED],
|
|
1494
|
+
[() => S3Object$, () => AzElSegments$]
|
|
1495
|
+
];
|
|
1496
|
+
var ConfigDetails$ = [4, n0, _CDon,
|
|
1497
|
+
0,
|
|
1498
|
+
[_eD, _aDDD, _sRD],
|
|
1499
|
+
[() => EndpointDetails$, () => AntennaDemodDecodeDetails$, () => S3RecordingDetails$]
|
|
1500
|
+
];
|
|
1501
|
+
var ConfigTypeData$ = [4, n0, _CTD,
|
|
1502
|
+
0,
|
|
1503
|
+
[_aDC, _tC, _dEC, _aDDDC, _aUC, _uEC, _sRC, _tSC],
|
|
1504
|
+
[() => AntennaDownlinkConfig$, () => TrackingConfig$, () => DataflowEndpointConfig$, () => AntennaDownlinkDemodDecodeConfig$, () => AntennaUplinkConfig$, () => UplinkEchoConfig$, () => S3RecordingConfig$, () => TelemetrySinkConfig$]
|
|
1505
|
+
];
|
|
1506
|
+
var CreateEndpointDetails$ = [4, n0, _CED,
|
|
1507
|
+
0,
|
|
1508
|
+
[_uAGSAE, _dAGSAE],
|
|
1509
|
+
[() => UplinkAwsGroundStationAgentEndpoint$, () => DownlinkAwsGroundStationAgentEndpoint$]
|
|
1510
|
+
];
|
|
1511
|
+
var DownlinkDataflowDetails$ = [4, n0, _DDD,
|
|
1512
|
+
0,
|
|
1513
|
+
[_aCD],
|
|
1514
|
+
[() => DownlinkConnectionDetails$]
|
|
1515
|
+
];
|
|
1516
|
+
var EphemerisData$ = [4, n0, _EDph,
|
|
1517
|
+
0,
|
|
1518
|
+
[_tl, _o, _aE],
|
|
1519
|
+
[() => TLEEphemeris$, () => OEMEphemeris$, () => AzElEphemeris$]
|
|
1520
|
+
];
|
|
1521
|
+
var EphemerisFilter$ = [4, n0, _EF,
|
|
1522
|
+
0,
|
|
1523
|
+
[_aE],
|
|
1524
|
+
[() => AzElEphemerisFilter$]
|
|
1525
|
+
];
|
|
1526
|
+
var EphemerisTypeDescription$ = [4, n0, _ETD,
|
|
1527
|
+
0,
|
|
1528
|
+
[_tl, _o, _aE],
|
|
1529
|
+
[() => EphemerisDescription$, () => EphemerisDescription$, () => EphemerisDescription$]
|
|
1530
|
+
];
|
|
1531
|
+
var KmsKey$ = [4, n0, _KK,
|
|
1532
|
+
0,
|
|
1533
|
+
[_kKA, _kAA, _kAN],
|
|
1534
|
+
[0, 0, 0]
|
|
1535
|
+
];
|
|
1536
|
+
var ProgramTrackSettings$ = [4, n0, _PTS,
|
|
1537
|
+
0,
|
|
1538
|
+
[_aE, _o, _tl],
|
|
1539
|
+
[() => AzElProgramTrackSettings$, () => OemProgramTrackSettings$, () => TleProgramTrackSettings$]
|
|
1540
|
+
];
|
|
1541
|
+
var ReservationDetails$ = [4, n0, _RD,
|
|
1542
|
+
0,
|
|
1543
|
+
[_mai, _co],
|
|
1544
|
+
[() => MaintenanceReservationDetails$, () => ContactReservationDetails$]
|
|
1545
|
+
];
|
|
1546
|
+
var TelemetrySinkData$ = [4, n0, _TSD,
|
|
1547
|
+
0,
|
|
1548
|
+
[_kDSD],
|
|
1549
|
+
[() => KinesisDataStreamData$]
|
|
1550
|
+
];
|
|
1551
|
+
var UplinkDataflowDetails$ = [4, n0, _UDD,
|
|
1552
|
+
0,
|
|
1553
|
+
[_aCD],
|
|
1554
|
+
[() => UplinkConnectionDetails$]
|
|
1555
|
+
];
|
|
1556
|
+
var CancelContact$ = [9, n0, _CC,
|
|
1557
|
+
{ [_h]: ["DELETE", "/contact/{contactId}", 200] }, () => CancelContactRequest$, () => ContactIdResponse$
|
|
1558
|
+
];
|
|
1559
|
+
var CreateConfig$ = [9, n0, _CCr,
|
|
1560
|
+
{ [_h]: ["POST", "/config", 200] }, () => CreateConfigRequest$, () => ConfigIdResponse$
|
|
1561
|
+
];
|
|
1562
|
+
var CreateDataflowEndpointGroup$ = [9, n0, _CDEG,
|
|
1563
|
+
{ [_h]: ["POST", "/dataflowEndpointGroup", 200] }, () => CreateDataflowEndpointGroupRequest$, () => DataflowEndpointGroupIdResponse$
|
|
1564
|
+
];
|
|
1565
|
+
var CreateDataflowEndpointGroupV2$ = [9, n0, _CDEGV,
|
|
1566
|
+
{ [_h]: ["POST", "/dataflowEndpointGroupV2", 200] }, () => CreateDataflowEndpointGroupV2Request$, () => CreateDataflowEndpointGroupV2Response$
|
|
1567
|
+
];
|
|
1568
|
+
var CreateEphemeris$ = [9, n0, _CE,
|
|
1569
|
+
{ [_h]: ["POST", "/ephemeris", 200] }, () => CreateEphemerisRequest$, () => EphemerisIdResponse$
|
|
1570
|
+
];
|
|
1571
|
+
var CreateMissionProfile$ = [9, n0, _CMP,
|
|
1572
|
+
{ [_h]: ["POST", "/missionprofile", 200] }, () => CreateMissionProfileRequest$, () => MissionProfileIdResponse$
|
|
1573
|
+
];
|
|
1574
|
+
var DeleteConfig$ = [9, n0, _DCel,
|
|
1575
|
+
{ [_h]: ["DELETE", "/config/{configType}/{configId}", 200] }, () => DeleteConfigRequest$, () => ConfigIdResponse$
|
|
1576
|
+
];
|
|
1577
|
+
var DeleteDataflowEndpointGroup$ = [9, n0, _DDEG,
|
|
1578
|
+
{ [_h]: ["DELETE", "/dataflowEndpointGroup/{dataflowEndpointGroupId}", 200] }, () => DeleteDataflowEndpointGroupRequest$, () => DataflowEndpointGroupIdResponse$
|
|
1579
|
+
];
|
|
1580
|
+
var DeleteEphemeris$ = [9, n0, _DEe,
|
|
1581
|
+
{ [_h]: ["DELETE", "/ephemeris/{ephemerisId}", 200] }, () => DeleteEphemerisRequest$, () => EphemerisIdResponse$
|
|
1582
|
+
];
|
|
1583
|
+
var DeleteMissionProfile$ = [9, n0, _DMP,
|
|
1584
|
+
{ [_h]: ["DELETE", "/missionprofile/{missionProfileId}", 200] }, () => DeleteMissionProfileRequest$, () => MissionProfileIdResponse$
|
|
1585
|
+
];
|
|
1586
|
+
var DescribeContact$ = [9, n0, _DCes,
|
|
1587
|
+
{ [_h]: ["GET", "/contact/{contactId}", 200] }, () => DescribeContactRequest$, () => DescribeContactResponse$
|
|
1588
|
+
];
|
|
1589
|
+
var DescribeContactVersion$ = [9, n0, _DCV,
|
|
1590
|
+
{ [_h]: ["GET", "/contact/{contactId}/versions/{versionId}", 200] }, () => DescribeContactVersionRequest$, () => DescribeContactVersionResponse$
|
|
1591
|
+
];
|
|
1592
|
+
var DescribeEphemeris$ = [9, n0, _DEes,
|
|
1593
|
+
{ [_h]: ["GET", "/ephemeris/{ephemerisId}", 200] }, () => DescribeEphemerisRequest$, () => DescribeEphemerisResponse$
|
|
1594
|
+
];
|
|
1595
|
+
var GetAgentConfiguration$ = [9, n0, _GAC,
|
|
1596
|
+
{ [_h]: ["GET", "/agent/{agentId}/configuration", 200] }, () => GetAgentConfigurationRequest$, () => GetAgentConfigurationResponse$
|
|
1597
|
+
];
|
|
1598
|
+
var GetAgentTaskResponseUrl$ = [9, n0, _GATRU,
|
|
1599
|
+
{ [_h]: ["GET", "/agentResponseUrl/{agentId}/{taskId}", 200] }, () => GetAgentTaskResponseUrlRequest$, () => GetAgentTaskResponseUrlResponse$
|
|
1600
|
+
];
|
|
1601
|
+
var GetConfig$ = [9, n0, _GC,
|
|
1602
|
+
{ [_h]: ["GET", "/config/{configType}/{configId}", 200] }, () => GetConfigRequest$, () => GetConfigResponse$
|
|
1603
|
+
];
|
|
1604
|
+
var GetDataflowEndpointGroup$ = [9, n0, _GDEG,
|
|
1605
|
+
{ [_h]: ["GET", "/dataflowEndpointGroup/{dataflowEndpointGroupId}", 200] }, () => GetDataflowEndpointGroupRequest$, () => GetDataflowEndpointGroupResponse$
|
|
1606
|
+
];
|
|
1607
|
+
var GetMinuteUsage$ = [9, n0, _GMU,
|
|
1608
|
+
{ [_h]: ["POST", "/minute-usage", 200] }, () => GetMinuteUsageRequest$, () => GetMinuteUsageResponse$
|
|
1609
|
+
];
|
|
1610
|
+
var GetMissionProfile$ = [9, n0, _GMP,
|
|
1611
|
+
{ [_h]: ["GET", "/missionprofile/{missionProfileId}", 200] }, () => GetMissionProfileRequest$, () => GetMissionProfileResponse$
|
|
1612
|
+
];
|
|
1613
|
+
var GetSatellite$ = [9, n0, _GS,
|
|
1614
|
+
{ [_h]: ["GET", "/satellite/{satelliteId}", 200] }, () => GetSatelliteRequest$, () => GetSatelliteResponse$
|
|
1615
|
+
];
|
|
1616
|
+
var ListAntennas$ = [9, n0, _LA,
|
|
1617
|
+
{ [_h]: ["GET", "/groundstation/{groundStationId}/antenna", 200] }, () => ListAntennasRequest$, () => ListAntennasResponse$
|
|
1618
|
+
];
|
|
1619
|
+
var ListConfigs$ = [9, n0, _LC,
|
|
1620
|
+
{ [_h]: ["GET", "/config", 200] }, () => ListConfigsRequest$, () => ListConfigsResponse$
|
|
1621
|
+
];
|
|
1622
|
+
var ListContacts$ = [9, n0, _LCi,
|
|
1623
|
+
{ [_h]: ["POST", "/contacts", 200] }, () => ListContactsRequest$, () => ListContactsResponse$
|
|
1624
|
+
];
|
|
1625
|
+
var ListContactVersions$ = [9, n0, _LCV,
|
|
1626
|
+
{ [_h]: ["GET", "/contact/{contactId}/versions", 200] }, () => ListContactVersionsRequest$, () => ListContactVersionsResponse$
|
|
1627
|
+
];
|
|
1628
|
+
var ListDataflowEndpointGroups$ = [9, n0, _LDEG,
|
|
1629
|
+
{ [_h]: ["GET", "/dataflowEndpointGroup", 200] }, () => ListDataflowEndpointGroupsRequest$, () => ListDataflowEndpointGroupsResponse$
|
|
1630
|
+
];
|
|
1631
|
+
var ListEphemerides$ = [9, n0, _LE,
|
|
1632
|
+
{ [_h]: ["POST", "/ephemerides", 200] }, () => ListEphemeridesRequest$, () => ListEphemeridesResponse$
|
|
1633
|
+
];
|
|
1634
|
+
var ListGroundStationReservations$ = [9, n0, _LGSRis,
|
|
1635
|
+
{ [_h]: ["GET", "/groundstation/{groundStationId}/reservation", 200] }, () => ListGroundStationReservationsRequest$, () => ListGroundStationReservationsResponse$
|
|
1636
|
+
];
|
|
1637
|
+
var ListGroundStations$ = [9, n0, _LGS,
|
|
1638
|
+
{ [_h]: ["GET", "/groundstation", 200] }, () => ListGroundStationsRequest$, () => ListGroundStationsResponse$
|
|
1639
|
+
];
|
|
1640
|
+
var ListMissionProfiles$ = [9, n0, _LMP,
|
|
1641
|
+
{ [_h]: ["GET", "/missionprofile", 200] }, () => ListMissionProfilesRequest$, () => ListMissionProfilesResponse$
|
|
1642
|
+
];
|
|
1643
|
+
var ListSatellites$ = [9, n0, _LS,
|
|
1644
|
+
{ [_h]: ["GET", "/satellite", 200] }, () => ListSatellitesRequest$, () => ListSatellitesResponse$
|
|
1645
|
+
];
|
|
1646
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1647
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1648
|
+
];
|
|
1649
|
+
var RegisterAgent$ = [9, n0, _RA,
|
|
1650
|
+
{ [_h]: ["POST", "/agent", 200] }, () => RegisterAgentRequest$, () => RegisterAgentResponse$
|
|
1651
|
+
];
|
|
1652
|
+
var ReserveContact$ = [9, n0, _RC,
|
|
1653
|
+
{ [_h]: ["POST", "/contact", 200] }, () => ReserveContactRequest$, () => ContactIdResponse$
|
|
1654
|
+
];
|
|
1655
|
+
var TagResource$ = [9, n0, _TRa,
|
|
1656
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1657
|
+
];
|
|
1658
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1659
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1660
|
+
];
|
|
1661
|
+
var UpdateAgentStatus$ = [9, n0, _UAS,
|
|
1662
|
+
{ [_h]: ["PUT", "/agent/{agentId}", 200] }, () => UpdateAgentStatusRequest$, () => UpdateAgentStatusResponse$
|
|
1663
|
+
];
|
|
1664
|
+
var UpdateConfig$ = [9, n0, _UC,
|
|
1665
|
+
{ [_h]: ["PUT", "/config/{configType}/{configId}", 200] }, () => UpdateConfigRequest$, () => ConfigIdResponse$
|
|
1666
|
+
];
|
|
1667
|
+
var UpdateContact$ = [9, n0, _UCp,
|
|
1668
|
+
{ [_h]: ["POST", "/contact/{contactId}/versions", 200] }, () => UpdateContactRequest$, () => UpdateContactResponse$
|
|
1669
|
+
];
|
|
1670
|
+
var UpdateEphemeris$ = [9, n0, _UE,
|
|
1671
|
+
{ [_h]: ["PUT", "/ephemeris/{ephemerisId}", 200] }, () => UpdateEphemerisRequest$, () => EphemerisIdResponse$
|
|
1672
|
+
];
|
|
1673
|
+
var UpdateMissionProfile$ = [9, n0, _UMP,
|
|
1674
|
+
{ [_h]: ["PUT", "/missionprofile/{missionProfileId}", 200] }, () => UpdateMissionProfileRequest$, () => MissionProfileIdResponse$
|
|
1675
|
+
];
|
|
1676
|
+
|
|
1677
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1678
|
+
return {
|
|
1679
|
+
apiVersion: "2019-05-23",
|
|
1680
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1681
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1682
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1683
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1684
|
+
extensions: config?.extensions ?? [],
|
|
1685
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultGroundStationHttpAuthSchemeProvider,
|
|
1686
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1687
|
+
{
|
|
1688
|
+
schemeId: "aws.auth#sigv4",
|
|
1689
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1690
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1691
|
+
},
|
|
1692
|
+
],
|
|
1693
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1694
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1695
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1696
|
+
defaultNamespace: "com.amazonaws.groundstation",
|
|
1697
|
+
errorTypeRegistries,
|
|
1698
|
+
version: "2019-05-23",
|
|
1699
|
+
serviceTarget: "GroundStation",
|
|
1700
|
+
},
|
|
1701
|
+
serviceId: config?.serviceId ?? "GroundStation",
|
|
1702
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1703
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1704
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1705
|
+
};
|
|
1706
|
+
};
|
|
1707
|
+
|
|
1708
|
+
const getRuntimeConfig = (config) => {
|
|
1709
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1710
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1711
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1712
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1713
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1714
|
+
const loaderConfig = {
|
|
1715
|
+
profile: config?.profile,
|
|
1716
|
+
logger: clientSharedValues.logger,
|
|
1717
|
+
};
|
|
1718
|
+
return {
|
|
1719
|
+
...clientSharedValues,
|
|
1720
|
+
...config,
|
|
1721
|
+
runtime: "node",
|
|
1722
|
+
defaultsMode,
|
|
1723
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1724
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1725
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1726
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1727
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1728
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1729
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1730
|
+
retryMode: config?.retryMode ??
|
|
1731
|
+
loadConfig({
|
|
1732
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1733
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1734
|
+
}, config),
|
|
1735
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1736
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1737
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1738
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1739
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1740
|
+
};
|
|
1741
|
+
};
|
|
1742
|
+
|
|
34
1743
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1744
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1745
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -930,71 +2639,284 @@ const MaintenanceType = {
|
|
|
930
2639
|
UNPLANNED: "UNPLANNED",
|
|
931
2640
|
};
|
|
932
2641
|
|
|
2642
|
+
exports.AgentDetails$ = AgentDetails$;
|
|
933
2643
|
exports.AgentStatus = AgentStatus;
|
|
2644
|
+
exports.AggregateStatus$ = AggregateStatus$;
|
|
934
2645
|
exports.AngleUnits = AngleUnits;
|
|
2646
|
+
exports.AntennaDemodDecodeDetails$ = AntennaDemodDecodeDetails$;
|
|
2647
|
+
exports.AntennaDownlinkConfig$ = AntennaDownlinkConfig$;
|
|
2648
|
+
exports.AntennaDownlinkDemodDecodeConfig$ = AntennaDownlinkDemodDecodeConfig$;
|
|
2649
|
+
exports.AntennaListItem$ = AntennaListItem$;
|
|
2650
|
+
exports.AntennaUplinkConfig$ = AntennaUplinkConfig$;
|
|
935
2651
|
exports.AuditResults = AuditResults;
|
|
2652
|
+
exports.AwsGroundStationAgentEndpoint$ = AwsGroundStationAgentEndpoint$;
|
|
2653
|
+
exports.AzElEphemeris$ = AzElEphemeris$;
|
|
2654
|
+
exports.AzElEphemerisFilter$ = AzElEphemerisFilter$;
|
|
2655
|
+
exports.AzElProgramTrackSettings$ = AzElProgramTrackSettings$;
|
|
2656
|
+
exports.AzElSegment$ = AzElSegment$;
|
|
2657
|
+
exports.AzElSegments$ = AzElSegments$;
|
|
2658
|
+
exports.AzElSegmentsData$ = AzElSegmentsData$;
|
|
936
2659
|
exports.BandwidthUnits = BandwidthUnits;
|
|
2660
|
+
exports.CancelContact$ = CancelContact$;
|
|
937
2661
|
exports.CancelContactCommand = CancelContactCommand;
|
|
2662
|
+
exports.CancelContactRequest$ = CancelContactRequest$;
|
|
938
2663
|
exports.CapabilityHealth = CapabilityHealth;
|
|
939
2664
|
exports.CapabilityHealthReason = CapabilityHealthReason;
|
|
2665
|
+
exports.ComponentStatusData$ = ComponentStatusData$;
|
|
2666
|
+
exports.ComponentVersion$ = ComponentVersion$;
|
|
940
2667
|
exports.ConfigCapabilityType = ConfigCapabilityType;
|
|
2668
|
+
exports.ConfigDetails$ = ConfigDetails$;
|
|
2669
|
+
exports.ConfigIdResponse$ = ConfigIdResponse$;
|
|
2670
|
+
exports.ConfigListItem$ = ConfigListItem$;
|
|
2671
|
+
exports.ConfigTypeData$ = ConfigTypeData$;
|
|
2672
|
+
exports.ConnectionDetails$ = ConnectionDetails$;
|
|
2673
|
+
exports.ContactData$ = ContactData$;
|
|
2674
|
+
exports.ContactIdResponse$ = ContactIdResponse$;
|
|
2675
|
+
exports.ContactReservationDetails$ = ContactReservationDetails$;
|
|
941
2676
|
exports.ContactStatus = ContactStatus;
|
|
2677
|
+
exports.ContactVersion$ = ContactVersion$;
|
|
2678
|
+
exports.CreateConfig$ = CreateConfig$;
|
|
942
2679
|
exports.CreateConfigCommand = CreateConfigCommand;
|
|
2680
|
+
exports.CreateConfigRequest$ = CreateConfigRequest$;
|
|
2681
|
+
exports.CreateDataflowEndpointGroup$ = CreateDataflowEndpointGroup$;
|
|
943
2682
|
exports.CreateDataflowEndpointGroupCommand = CreateDataflowEndpointGroupCommand;
|
|
2683
|
+
exports.CreateDataflowEndpointGroupRequest$ = CreateDataflowEndpointGroupRequest$;
|
|
2684
|
+
exports.CreateDataflowEndpointGroupV2$ = CreateDataflowEndpointGroupV2$;
|
|
944
2685
|
exports.CreateDataflowEndpointGroupV2Command = CreateDataflowEndpointGroupV2Command;
|
|
2686
|
+
exports.CreateDataflowEndpointGroupV2Request$ = CreateDataflowEndpointGroupV2Request$;
|
|
2687
|
+
exports.CreateDataflowEndpointGroupV2Response$ = CreateDataflowEndpointGroupV2Response$;
|
|
2688
|
+
exports.CreateEndpointDetails$ = CreateEndpointDetails$;
|
|
2689
|
+
exports.CreateEphemeris$ = CreateEphemeris$;
|
|
945
2690
|
exports.CreateEphemerisCommand = CreateEphemerisCommand;
|
|
2691
|
+
exports.CreateEphemerisRequest$ = CreateEphemerisRequest$;
|
|
2692
|
+
exports.CreateMissionProfile$ = CreateMissionProfile$;
|
|
946
2693
|
exports.CreateMissionProfileCommand = CreateMissionProfileCommand;
|
|
2694
|
+
exports.CreateMissionProfileRequest$ = CreateMissionProfileRequest$;
|
|
947
2695
|
exports.Criticality = Criticality;
|
|
2696
|
+
exports.DataflowDetail$ = DataflowDetail$;
|
|
2697
|
+
exports.DataflowEndpoint$ = DataflowEndpoint$;
|
|
2698
|
+
exports.DataflowEndpointConfig$ = DataflowEndpointConfig$;
|
|
2699
|
+
exports.DataflowEndpointGroupIdResponse$ = DataflowEndpointGroupIdResponse$;
|
|
2700
|
+
exports.DataflowEndpointListItem$ = DataflowEndpointListItem$;
|
|
2701
|
+
exports.DecodeConfig$ = DecodeConfig$;
|
|
2702
|
+
exports.DeleteConfig$ = DeleteConfig$;
|
|
948
2703
|
exports.DeleteConfigCommand = DeleteConfigCommand;
|
|
2704
|
+
exports.DeleteConfigRequest$ = DeleteConfigRequest$;
|
|
2705
|
+
exports.DeleteDataflowEndpointGroup$ = DeleteDataflowEndpointGroup$;
|
|
949
2706
|
exports.DeleteDataflowEndpointGroupCommand = DeleteDataflowEndpointGroupCommand;
|
|
2707
|
+
exports.DeleteDataflowEndpointGroupRequest$ = DeleteDataflowEndpointGroupRequest$;
|
|
2708
|
+
exports.DeleteEphemeris$ = DeleteEphemeris$;
|
|
950
2709
|
exports.DeleteEphemerisCommand = DeleteEphemerisCommand;
|
|
2710
|
+
exports.DeleteEphemerisRequest$ = DeleteEphemerisRequest$;
|
|
2711
|
+
exports.DeleteMissionProfile$ = DeleteMissionProfile$;
|
|
951
2712
|
exports.DeleteMissionProfileCommand = DeleteMissionProfileCommand;
|
|
2713
|
+
exports.DeleteMissionProfileRequest$ = DeleteMissionProfileRequest$;
|
|
2714
|
+
exports.DemodulationConfig$ = DemodulationConfig$;
|
|
2715
|
+
exports.DependencyException = DependencyException;
|
|
2716
|
+
exports.DependencyException$ = DependencyException$;
|
|
2717
|
+
exports.DescribeContact$ = DescribeContact$;
|
|
952
2718
|
exports.DescribeContactCommand = DescribeContactCommand;
|
|
2719
|
+
exports.DescribeContactRequest$ = DescribeContactRequest$;
|
|
2720
|
+
exports.DescribeContactResponse$ = DescribeContactResponse$;
|
|
2721
|
+
exports.DescribeContactVersion$ = DescribeContactVersion$;
|
|
953
2722
|
exports.DescribeContactVersionCommand = DescribeContactVersionCommand;
|
|
2723
|
+
exports.DescribeContactVersionRequest$ = DescribeContactVersionRequest$;
|
|
2724
|
+
exports.DescribeContactVersionResponse$ = DescribeContactVersionResponse$;
|
|
2725
|
+
exports.DescribeEphemeris$ = DescribeEphemeris$;
|
|
954
2726
|
exports.DescribeEphemerisCommand = DescribeEphemerisCommand;
|
|
2727
|
+
exports.DescribeEphemerisRequest$ = DescribeEphemerisRequest$;
|
|
2728
|
+
exports.DescribeEphemerisResponse$ = DescribeEphemerisResponse$;
|
|
2729
|
+
exports.Destination$ = Destination$;
|
|
2730
|
+
exports.DiscoveryData$ = DiscoveryData$;
|
|
2731
|
+
exports.DownlinkAwsGroundStationAgentEndpoint$ = DownlinkAwsGroundStationAgentEndpoint$;
|
|
2732
|
+
exports.DownlinkAwsGroundStationAgentEndpointDetails$ = DownlinkAwsGroundStationAgentEndpointDetails$;
|
|
2733
|
+
exports.DownlinkConnectionDetails$ = DownlinkConnectionDetails$;
|
|
2734
|
+
exports.DownlinkDataflowDetails$ = DownlinkDataflowDetails$;
|
|
2735
|
+
exports.Eirp$ = Eirp$;
|
|
955
2736
|
exports.EirpUnits = EirpUnits;
|
|
2737
|
+
exports.Elevation$ = Elevation$;
|
|
2738
|
+
exports.EndpointDetails$ = EndpointDetails$;
|
|
956
2739
|
exports.EndpointStatus = EndpointStatus;
|
|
2740
|
+
exports.EphemerisData$ = EphemerisData$;
|
|
2741
|
+
exports.EphemerisDescription$ = EphemerisDescription$;
|
|
957
2742
|
exports.EphemerisErrorCode = EphemerisErrorCode;
|
|
2743
|
+
exports.EphemerisErrorReason$ = EphemerisErrorReason$;
|
|
2744
|
+
exports.EphemerisFilter$ = EphemerisFilter$;
|
|
2745
|
+
exports.EphemerisIdResponse$ = EphemerisIdResponse$;
|
|
958
2746
|
exports.EphemerisInvalidReason = EphemerisInvalidReason;
|
|
2747
|
+
exports.EphemerisItem$ = EphemerisItem$;
|
|
2748
|
+
exports.EphemerisMetaData$ = EphemerisMetaData$;
|
|
2749
|
+
exports.EphemerisResponseData$ = EphemerisResponseData$;
|
|
959
2750
|
exports.EphemerisSource = EphemerisSource;
|
|
960
2751
|
exports.EphemerisStatus = EphemerisStatus;
|
|
961
2752
|
exports.EphemerisType = EphemerisType;
|
|
2753
|
+
exports.EphemerisTypeDescription$ = EphemerisTypeDescription$;
|
|
2754
|
+
exports.Frequency$ = Frequency$;
|
|
2755
|
+
exports.FrequencyBandwidth$ = FrequencyBandwidth$;
|
|
962
2756
|
exports.FrequencyUnits = FrequencyUnits;
|
|
2757
|
+
exports.GetAgentConfiguration$ = GetAgentConfiguration$;
|
|
963
2758
|
exports.GetAgentConfigurationCommand = GetAgentConfigurationCommand;
|
|
2759
|
+
exports.GetAgentConfigurationRequest$ = GetAgentConfigurationRequest$;
|
|
2760
|
+
exports.GetAgentConfigurationResponse$ = GetAgentConfigurationResponse$;
|
|
2761
|
+
exports.GetAgentTaskResponseUrl$ = GetAgentTaskResponseUrl$;
|
|
964
2762
|
exports.GetAgentTaskResponseUrlCommand = GetAgentTaskResponseUrlCommand;
|
|
2763
|
+
exports.GetAgentTaskResponseUrlRequest$ = GetAgentTaskResponseUrlRequest$;
|
|
2764
|
+
exports.GetAgentTaskResponseUrlResponse$ = GetAgentTaskResponseUrlResponse$;
|
|
2765
|
+
exports.GetConfig$ = GetConfig$;
|
|
965
2766
|
exports.GetConfigCommand = GetConfigCommand;
|
|
2767
|
+
exports.GetConfigRequest$ = GetConfigRequest$;
|
|
2768
|
+
exports.GetConfigResponse$ = GetConfigResponse$;
|
|
2769
|
+
exports.GetDataflowEndpointGroup$ = GetDataflowEndpointGroup$;
|
|
966
2770
|
exports.GetDataflowEndpointGroupCommand = GetDataflowEndpointGroupCommand;
|
|
2771
|
+
exports.GetDataflowEndpointGroupRequest$ = GetDataflowEndpointGroupRequest$;
|
|
2772
|
+
exports.GetDataflowEndpointGroupResponse$ = GetDataflowEndpointGroupResponse$;
|
|
2773
|
+
exports.GetMinuteUsage$ = GetMinuteUsage$;
|
|
967
2774
|
exports.GetMinuteUsageCommand = GetMinuteUsageCommand;
|
|
2775
|
+
exports.GetMinuteUsageRequest$ = GetMinuteUsageRequest$;
|
|
2776
|
+
exports.GetMinuteUsageResponse$ = GetMinuteUsageResponse$;
|
|
2777
|
+
exports.GetMissionProfile$ = GetMissionProfile$;
|
|
968
2778
|
exports.GetMissionProfileCommand = GetMissionProfileCommand;
|
|
2779
|
+
exports.GetMissionProfileRequest$ = GetMissionProfileRequest$;
|
|
2780
|
+
exports.GetMissionProfileResponse$ = GetMissionProfileResponse$;
|
|
2781
|
+
exports.GetSatellite$ = GetSatellite$;
|
|
969
2782
|
exports.GetSatelliteCommand = GetSatelliteCommand;
|
|
2783
|
+
exports.GetSatelliteRequest$ = GetSatelliteRequest$;
|
|
2784
|
+
exports.GetSatelliteResponse$ = GetSatelliteResponse$;
|
|
970
2785
|
exports.GroundStation = GroundStation;
|
|
971
2786
|
exports.GroundStationClient = GroundStationClient;
|
|
2787
|
+
exports.GroundStationData$ = GroundStationData$;
|
|
2788
|
+
exports.GroundStationReservationListItem$ = GroundStationReservationListItem$;
|
|
2789
|
+
exports.GroundStationServiceException = GroundStationServiceException;
|
|
2790
|
+
exports.GroundStationServiceException$ = GroundStationServiceException$;
|
|
2791
|
+
exports.ISO8601TimeRange$ = ISO8601TimeRange$;
|
|
2792
|
+
exports.IntegerRange$ = IntegerRange$;
|
|
2793
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
2794
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2795
|
+
exports.KinesisDataStreamData$ = KinesisDataStreamData$;
|
|
2796
|
+
exports.KmsKey$ = KmsKey$;
|
|
2797
|
+
exports.ListAntennas$ = ListAntennas$;
|
|
972
2798
|
exports.ListAntennasCommand = ListAntennasCommand;
|
|
2799
|
+
exports.ListAntennasRequest$ = ListAntennasRequest$;
|
|
2800
|
+
exports.ListAntennasResponse$ = ListAntennasResponse$;
|
|
2801
|
+
exports.ListConfigs$ = ListConfigs$;
|
|
973
2802
|
exports.ListConfigsCommand = ListConfigsCommand;
|
|
2803
|
+
exports.ListConfigsRequest$ = ListConfigsRequest$;
|
|
2804
|
+
exports.ListConfigsResponse$ = ListConfigsResponse$;
|
|
2805
|
+
exports.ListContactVersions$ = ListContactVersions$;
|
|
974
2806
|
exports.ListContactVersionsCommand = ListContactVersionsCommand;
|
|
2807
|
+
exports.ListContactVersionsRequest$ = ListContactVersionsRequest$;
|
|
2808
|
+
exports.ListContactVersionsResponse$ = ListContactVersionsResponse$;
|
|
2809
|
+
exports.ListContacts$ = ListContacts$;
|
|
975
2810
|
exports.ListContactsCommand = ListContactsCommand;
|
|
2811
|
+
exports.ListContactsRequest$ = ListContactsRequest$;
|
|
2812
|
+
exports.ListContactsResponse$ = ListContactsResponse$;
|
|
2813
|
+
exports.ListDataflowEndpointGroups$ = ListDataflowEndpointGroups$;
|
|
976
2814
|
exports.ListDataflowEndpointGroupsCommand = ListDataflowEndpointGroupsCommand;
|
|
2815
|
+
exports.ListDataflowEndpointGroupsRequest$ = ListDataflowEndpointGroupsRequest$;
|
|
2816
|
+
exports.ListDataflowEndpointGroupsResponse$ = ListDataflowEndpointGroupsResponse$;
|
|
2817
|
+
exports.ListEphemerides$ = ListEphemerides$;
|
|
977
2818
|
exports.ListEphemeridesCommand = ListEphemeridesCommand;
|
|
2819
|
+
exports.ListEphemeridesRequest$ = ListEphemeridesRequest$;
|
|
2820
|
+
exports.ListEphemeridesResponse$ = ListEphemeridesResponse$;
|
|
2821
|
+
exports.ListGroundStationReservations$ = ListGroundStationReservations$;
|
|
978
2822
|
exports.ListGroundStationReservationsCommand = ListGroundStationReservationsCommand;
|
|
2823
|
+
exports.ListGroundStationReservationsRequest$ = ListGroundStationReservationsRequest$;
|
|
2824
|
+
exports.ListGroundStationReservationsResponse$ = ListGroundStationReservationsResponse$;
|
|
2825
|
+
exports.ListGroundStations$ = ListGroundStations$;
|
|
979
2826
|
exports.ListGroundStationsCommand = ListGroundStationsCommand;
|
|
2827
|
+
exports.ListGroundStationsRequest$ = ListGroundStationsRequest$;
|
|
2828
|
+
exports.ListGroundStationsResponse$ = ListGroundStationsResponse$;
|
|
2829
|
+
exports.ListMissionProfiles$ = ListMissionProfiles$;
|
|
980
2830
|
exports.ListMissionProfilesCommand = ListMissionProfilesCommand;
|
|
2831
|
+
exports.ListMissionProfilesRequest$ = ListMissionProfilesRequest$;
|
|
2832
|
+
exports.ListMissionProfilesResponse$ = ListMissionProfilesResponse$;
|
|
2833
|
+
exports.ListSatellites$ = ListSatellites$;
|
|
981
2834
|
exports.ListSatellitesCommand = ListSatellitesCommand;
|
|
2835
|
+
exports.ListSatellitesRequest$ = ListSatellitesRequest$;
|
|
2836
|
+
exports.ListSatellitesResponse$ = ListSatellitesResponse$;
|
|
2837
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
982
2838
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2839
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2840
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2841
|
+
exports.MaintenanceReservationDetails$ = MaintenanceReservationDetails$;
|
|
983
2842
|
exports.MaintenanceType = MaintenanceType;
|
|
2843
|
+
exports.MissionProfileIdResponse$ = MissionProfileIdResponse$;
|
|
2844
|
+
exports.MissionProfileListItem$ = MissionProfileListItem$;
|
|
2845
|
+
exports.OEMEphemeris$ = OEMEphemeris$;
|
|
2846
|
+
exports.OemProgramTrackSettings$ = OemProgramTrackSettings$;
|
|
984
2847
|
exports.Polarization = Polarization;
|
|
2848
|
+
exports.ProgramTrackSettings$ = ProgramTrackSettings$;
|
|
2849
|
+
exports.RangedConnectionDetails$ = RangedConnectionDetails$;
|
|
2850
|
+
exports.RangedSocketAddress$ = RangedSocketAddress$;
|
|
2851
|
+
exports.RegisterAgent$ = RegisterAgent$;
|
|
985
2852
|
exports.RegisterAgentCommand = RegisterAgentCommand;
|
|
2853
|
+
exports.RegisterAgentRequest$ = RegisterAgentRequest$;
|
|
2854
|
+
exports.RegisterAgentResponse$ = RegisterAgentResponse$;
|
|
2855
|
+
exports.ReservationDetails$ = ReservationDetails$;
|
|
986
2856
|
exports.ReservationType = ReservationType;
|
|
2857
|
+
exports.ReserveContact$ = ReserveContact$;
|
|
987
2858
|
exports.ReserveContactCommand = ReserveContactCommand;
|
|
2859
|
+
exports.ReserveContactRequest$ = ReserveContactRequest$;
|
|
2860
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
2861
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
2862
|
+
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
2863
|
+
exports.ResourceLimitExceededException$ = ResourceLimitExceededException$;
|
|
2864
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2865
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2866
|
+
exports.S3Object$ = S3Object$;
|
|
2867
|
+
exports.S3RecordingConfig$ = S3RecordingConfig$;
|
|
2868
|
+
exports.S3RecordingDetails$ = S3RecordingDetails$;
|
|
2869
|
+
exports.SatelliteListItem$ = SatelliteListItem$;
|
|
2870
|
+
exports.SecurityDetails$ = SecurityDetails$;
|
|
2871
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2872
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2873
|
+
exports.SocketAddress$ = SocketAddress$;
|
|
2874
|
+
exports.Source$ = Source$;
|
|
2875
|
+
exports.SpectrumConfig$ = SpectrumConfig$;
|
|
2876
|
+
exports.TLEData$ = TLEData$;
|
|
2877
|
+
exports.TLEEphemeris$ = TLEEphemeris$;
|
|
2878
|
+
exports.TagResource$ = TagResource$;
|
|
988
2879
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2880
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2881
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2882
|
+
exports.TelemetrySinkConfig$ = TelemetrySinkConfig$;
|
|
2883
|
+
exports.TelemetrySinkData$ = TelemetrySinkData$;
|
|
989
2884
|
exports.TelemetrySinkType = TelemetrySinkType;
|
|
2885
|
+
exports.TimeAzEl$ = TimeAzEl$;
|
|
2886
|
+
exports.TimeRange$ = TimeRange$;
|
|
2887
|
+
exports.TleProgramTrackSettings$ = TleProgramTrackSettings$;
|
|
2888
|
+
exports.TrackingConfig$ = TrackingConfig$;
|
|
2889
|
+
exports.TrackingOverrides$ = TrackingOverrides$;
|
|
2890
|
+
exports.UntagResource$ = UntagResource$;
|
|
990
2891
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2892
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2893
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2894
|
+
exports.UpdateAgentStatus$ = UpdateAgentStatus$;
|
|
991
2895
|
exports.UpdateAgentStatusCommand = UpdateAgentStatusCommand;
|
|
2896
|
+
exports.UpdateAgentStatusRequest$ = UpdateAgentStatusRequest$;
|
|
2897
|
+
exports.UpdateAgentStatusResponse$ = UpdateAgentStatusResponse$;
|
|
2898
|
+
exports.UpdateConfig$ = UpdateConfig$;
|
|
992
2899
|
exports.UpdateConfigCommand = UpdateConfigCommand;
|
|
2900
|
+
exports.UpdateConfigRequest$ = UpdateConfigRequest$;
|
|
2901
|
+
exports.UpdateContact$ = UpdateContact$;
|
|
993
2902
|
exports.UpdateContactCommand = UpdateContactCommand;
|
|
2903
|
+
exports.UpdateContactRequest$ = UpdateContactRequest$;
|
|
2904
|
+
exports.UpdateContactResponse$ = UpdateContactResponse$;
|
|
2905
|
+
exports.UpdateEphemeris$ = UpdateEphemeris$;
|
|
994
2906
|
exports.UpdateEphemerisCommand = UpdateEphemerisCommand;
|
|
2907
|
+
exports.UpdateEphemerisRequest$ = UpdateEphemerisRequest$;
|
|
2908
|
+
exports.UpdateMissionProfile$ = UpdateMissionProfile$;
|
|
995
2909
|
exports.UpdateMissionProfileCommand = UpdateMissionProfileCommand;
|
|
2910
|
+
exports.UpdateMissionProfileRequest$ = UpdateMissionProfileRequest$;
|
|
2911
|
+
exports.UplinkAwsGroundStationAgentEndpoint$ = UplinkAwsGroundStationAgentEndpoint$;
|
|
2912
|
+
exports.UplinkAwsGroundStationAgentEndpointDetails$ = UplinkAwsGroundStationAgentEndpointDetails$;
|
|
2913
|
+
exports.UplinkConnectionDetails$ = UplinkConnectionDetails$;
|
|
2914
|
+
exports.UplinkDataflowDetails$ = UplinkDataflowDetails$;
|
|
2915
|
+
exports.UplinkEchoConfig$ = UplinkEchoConfig$;
|
|
2916
|
+
exports.UplinkSpectrumConfig$ = UplinkSpectrumConfig$;
|
|
996
2917
|
exports.VersionFailureReasonCode = VersionFailureReasonCode;
|
|
997
2918
|
exports.VersionStatus = VersionStatus;
|
|
2919
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
998
2920
|
exports.paginateListAntennas = paginateListAntennas;
|
|
999
2921
|
exports.paginateListConfigs = paginateListConfigs;
|
|
1000
2922
|
exports.paginateListContactVersions = paginateListContactVersions;
|