@aws-sdk/client-groundstation 3.261.0 → 3.264.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/GroundStation.js +45 -0
- package/dist-cjs/commands/GetAgentConfigurationCommand.js +46 -0
- package/dist-cjs/commands/RegisterAgentCommand.js +46 -0
- package/dist-cjs/commands/UpdateAgentStatusCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +138 -34
- package/dist-cjs/protocols/Aws_restJson1.js +410 -2
- package/dist-es/GroundStation.js +45 -0
- package/dist-es/commands/GetAgentConfigurationCommand.js +42 -0
- package/dist-es/commands/RegisterAgentCommand.js +42 -0
- package/dist-es/commands/UpdateAgentStatusCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +117 -30
- package/dist-es/protocols/Aws_restJson1.js +403 -1
- package/dist-types/GroundStation.d.ts +21 -0
- package/dist-types/GroundStationClient.d.ts +5 -2
- package/dist-types/commands/GetAgentConfigurationCommand.d.ts +37 -0
- package/dist-types/commands/RegisterAgentCommand.d.ts +37 -0
- package/dist-types/commands/UpdateAgentStatusCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +425 -47
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/GroundStation.d.ts +51 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetAgentConfigurationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/RegisterAgentCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateAgentStatusCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +199 -30
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +4 -4
|
@@ -12,6 +12,7 @@ const DeleteEphemerisCommand_1 = require("./commands/DeleteEphemerisCommand");
|
|
|
12
12
|
const DeleteMissionProfileCommand_1 = require("./commands/DeleteMissionProfileCommand");
|
|
13
13
|
const DescribeContactCommand_1 = require("./commands/DescribeContactCommand");
|
|
14
14
|
const DescribeEphemerisCommand_1 = require("./commands/DescribeEphemerisCommand");
|
|
15
|
+
const GetAgentConfigurationCommand_1 = require("./commands/GetAgentConfigurationCommand");
|
|
15
16
|
const GetConfigCommand_1 = require("./commands/GetConfigCommand");
|
|
16
17
|
const GetDataflowEndpointGroupCommand_1 = require("./commands/GetDataflowEndpointGroupCommand");
|
|
17
18
|
const GetMinuteUsageCommand_1 = require("./commands/GetMinuteUsageCommand");
|
|
@@ -25,9 +26,11 @@ const ListGroundStationsCommand_1 = require("./commands/ListGroundStationsComman
|
|
|
25
26
|
const ListMissionProfilesCommand_1 = require("./commands/ListMissionProfilesCommand");
|
|
26
27
|
const ListSatellitesCommand_1 = require("./commands/ListSatellitesCommand");
|
|
27
28
|
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
29
|
+
const RegisterAgentCommand_1 = require("./commands/RegisterAgentCommand");
|
|
28
30
|
const ReserveContactCommand_1 = require("./commands/ReserveContactCommand");
|
|
29
31
|
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
30
32
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
33
|
+
const UpdateAgentStatusCommand_1 = require("./commands/UpdateAgentStatusCommand");
|
|
31
34
|
const UpdateConfigCommand_1 = require("./commands/UpdateConfigCommand");
|
|
32
35
|
const UpdateEphemerisCommand_1 = require("./commands/UpdateEphemerisCommand");
|
|
33
36
|
const UpdateMissionProfileCommand_1 = require("./commands/UpdateMissionProfileCommand");
|
|
@@ -187,6 +190,20 @@ class GroundStation extends GroundStationClient_1.GroundStationClient {
|
|
|
187
190
|
return this.send(command, optionsOrCb);
|
|
188
191
|
}
|
|
189
192
|
}
|
|
193
|
+
getAgentConfiguration(args, optionsOrCb, cb) {
|
|
194
|
+
const command = new GetAgentConfigurationCommand_1.GetAgentConfigurationCommand(args);
|
|
195
|
+
if (typeof optionsOrCb === "function") {
|
|
196
|
+
this.send(command, optionsOrCb);
|
|
197
|
+
}
|
|
198
|
+
else if (typeof cb === "function") {
|
|
199
|
+
if (typeof optionsOrCb !== "object")
|
|
200
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
201
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
202
|
+
}
|
|
203
|
+
else {
|
|
204
|
+
return this.send(command, optionsOrCb);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
190
207
|
getConfig(args, optionsOrCb, cb) {
|
|
191
208
|
const command = new GetConfigCommand_1.GetConfigCommand(args);
|
|
192
209
|
if (typeof optionsOrCb === "function") {
|
|
@@ -369,6 +386,20 @@ class GroundStation extends GroundStationClient_1.GroundStationClient {
|
|
|
369
386
|
return this.send(command, optionsOrCb);
|
|
370
387
|
}
|
|
371
388
|
}
|
|
389
|
+
registerAgent(args, optionsOrCb, cb) {
|
|
390
|
+
const command = new RegisterAgentCommand_1.RegisterAgentCommand(args);
|
|
391
|
+
if (typeof optionsOrCb === "function") {
|
|
392
|
+
this.send(command, optionsOrCb);
|
|
393
|
+
}
|
|
394
|
+
else if (typeof cb === "function") {
|
|
395
|
+
if (typeof optionsOrCb !== "object")
|
|
396
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
397
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
398
|
+
}
|
|
399
|
+
else {
|
|
400
|
+
return this.send(command, optionsOrCb);
|
|
401
|
+
}
|
|
402
|
+
}
|
|
372
403
|
reserveContact(args, optionsOrCb, cb) {
|
|
373
404
|
const command = new ReserveContactCommand_1.ReserveContactCommand(args);
|
|
374
405
|
if (typeof optionsOrCb === "function") {
|
|
@@ -411,6 +442,20 @@ class GroundStation extends GroundStationClient_1.GroundStationClient {
|
|
|
411
442
|
return this.send(command, optionsOrCb);
|
|
412
443
|
}
|
|
413
444
|
}
|
|
445
|
+
updateAgentStatus(args, optionsOrCb, cb) {
|
|
446
|
+
const command = new UpdateAgentStatusCommand_1.UpdateAgentStatusCommand(args);
|
|
447
|
+
if (typeof optionsOrCb === "function") {
|
|
448
|
+
this.send(command, optionsOrCb);
|
|
449
|
+
}
|
|
450
|
+
else if (typeof cb === "function") {
|
|
451
|
+
if (typeof optionsOrCb !== "object")
|
|
452
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
453
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
454
|
+
}
|
|
455
|
+
else {
|
|
456
|
+
return this.send(command, optionsOrCb);
|
|
457
|
+
}
|
|
458
|
+
}
|
|
414
459
|
updateConfig(args, optionsOrCb, cb) {
|
|
415
460
|
const command = new UpdateConfigCommand_1.UpdateConfigCommand(args);
|
|
416
461
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetAgentConfigurationCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
|
+
class GetAgentConfigurationCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetAgentConfigurationCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "GroundStationClient";
|
|
28
|
+
const commandName = "GetAgentConfigurationCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.GetAgentConfigurationRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.GetAgentConfigurationResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1GetAgentConfigurationCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1GetAgentConfigurationCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.GetAgentConfigurationCommand = GetAgentConfigurationCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RegisterAgentCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
|
+
class RegisterAgentCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, RegisterAgentCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "GroundStationClient";
|
|
28
|
+
const commandName = "RegisterAgentCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.RegisterAgentRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.RegisterAgentResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1RegisterAgentCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1RegisterAgentCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.RegisterAgentCommand = RegisterAgentCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateAgentStatusCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
|
+
class UpdateAgentStatusCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UpdateAgentStatusCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "GroundStationClient";
|
|
28
|
+
const commandName = "UpdateAgentStatusCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.UpdateAgentStatusRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.UpdateAgentStatusResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1UpdateAgentStatusCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateAgentStatusCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.UpdateAgentStatusCommand = UpdateAgentStatusCommand;
|
|
@@ -12,6 +12,7 @@ tslib_1.__exportStar(require("./DeleteEphemerisCommand"), exports);
|
|
|
12
12
|
tslib_1.__exportStar(require("./DeleteMissionProfileCommand"), exports);
|
|
13
13
|
tslib_1.__exportStar(require("./DescribeContactCommand"), exports);
|
|
14
14
|
tslib_1.__exportStar(require("./DescribeEphemerisCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./GetAgentConfigurationCommand"), exports);
|
|
15
16
|
tslib_1.__exportStar(require("./GetConfigCommand"), exports);
|
|
16
17
|
tslib_1.__exportStar(require("./GetDataflowEndpointGroupCommand"), exports);
|
|
17
18
|
tslib_1.__exportStar(require("./GetMinuteUsageCommand"), exports);
|
|
@@ -25,9 +26,11 @@ tslib_1.__exportStar(require("./ListGroundStationsCommand"), exports);
|
|
|
25
26
|
tslib_1.__exportStar(require("./ListMissionProfilesCommand"), exports);
|
|
26
27
|
tslib_1.__exportStar(require("./ListSatellitesCommand"), exports);
|
|
27
28
|
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./RegisterAgentCommand"), exports);
|
|
28
30
|
tslib_1.__exportStar(require("./ReserveContactCommand"), exports);
|
|
29
31
|
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
30
32
|
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./UpdateAgentStatusCommand"), exports);
|
|
31
34
|
tslib_1.__exportStar(require("./UpdateConfigCommand"), exports);
|
|
32
35
|
tslib_1.__exportStar(require("./UpdateEphemerisCommand"), exports);
|
|
33
36
|
tslib_1.__exportStar(require("./UpdateMissionProfileCommand"), exports);
|
|
@@ -1,36 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.UntagResourceResponseFilterSensitiveLog = exports.UntagResourceRequestFilterSensitiveLog = exports.TagResourceResponseFilterSensitiveLog = exports.TagResourceRequestFilterSensitiveLog = exports.ListSatellitesResponseFilterSensitiveLog = exports.SatelliteListItemFilterSensitiveLog = exports.ListSatellitesRequestFilterSensitiveLog = exports.UpdateMissionProfileRequestFilterSensitiveLog = exports.ListMissionProfilesResponseFilterSensitiveLog = exports.MissionProfileListItemFilterSensitiveLog = exports.ListMissionProfilesRequestFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.ListTagsForResourceRequestFilterSensitiveLog = exports.ListGroundStationsResponseFilterSensitiveLog = void 0;
|
|
3
|
+
exports.RangedSocketAddressFilterSensitiveLog = exports.IntegerRangeFilterSensitiveLog = exports.ConnectionDetailsFilterSensitiveLog = exports.SocketAddressFilterSensitiveLog = exports.AntennaUplinkConfigFilterSensitiveLog = exports.EirpFilterSensitiveLog = exports.UplinkSpectrumConfigFilterSensitiveLog = exports.AntennaDownlinkDemodDecodeConfigFilterSensitiveLog = exports.DemodulationConfigFilterSensitiveLog = exports.DecodeConfigFilterSensitiveLog = exports.AntennaDownlinkConfigFilterSensitiveLog = exports.SpectrumConfigFilterSensitiveLog = exports.FrequencyFilterSensitiveLog = exports.FrequencyBandwidthFilterSensitiveLog = exports.AntennaDemodDecodeDetailsFilterSensitiveLog = exports.UpdateAgentStatusResponseFilterSensitiveLog = exports.UpdateAgentStatusRequestFilterSensitiveLog = exports.ComponentStatusDataFilterSensitiveLog = exports.AggregateStatusFilterSensitiveLog = exports.RegisterAgentResponseFilterSensitiveLog = exports.RegisterAgentRequestFilterSensitiveLog = exports.DiscoveryDataFilterSensitiveLog = exports.AgentDetailsFilterSensitiveLog = exports.ComponentVersionFilterSensitiveLog = exports.GetAgentConfigurationResponseFilterSensitiveLog = exports.GetAgentConfigurationRequestFilterSensitiveLog = exports.EphemerisSource = exports.EphemerisTypeDescription = exports.EphemerisStatus = exports.EphemerisInvalidReason = exports.KmsKey = exports.EphemerisData = exports.ContactStatus = exports.ConfigDetails = exports.EndpointStatus = exports.ResourceLimitExceededException = exports.ConfigTypeData = exports.Criticality = exports.ConfigCapabilityType = exports.AuditResults = exports.EirpUnits = exports.Polarization = exports.FrequencyUnits = exports.BandwidthUnits = exports.AngleUnits = exports.AgentStatus = exports.ComponentType = exports.ResourceNotFoundException = exports.InvalidParameterException = exports.DependencyException = void 0;
|
|
4
|
+
exports.ListDataflowEndpointGroupsRequestFilterSensitiveLog = exports.GetDataflowEndpointGroupResponseFilterSensitiveLog = exports.GetDataflowEndpointGroupRequestFilterSensitiveLog = exports.DeleteDataflowEndpointGroupRequestFilterSensitiveLog = exports.MissionProfileIdResponseFilterSensitiveLog = exports.CreateMissionProfileRequestFilterSensitiveLog = exports.KmsKeyFilterSensitiveLog = exports.EphemerisIdResponseFilterSensitiveLog = exports.CreateEphemerisRequestFilterSensitiveLog = exports.EphemerisDataFilterSensitiveLog = exports.TLEEphemerisFilterSensitiveLog = exports.TLEDataFilterSensitiveLog = exports.TimeRangeFilterSensitiveLog = exports.OEMEphemerisFilterSensitiveLog = exports.S3ObjectFilterSensitiveLog = exports.DataflowEndpointGroupIdResponseFilterSensitiveLog = exports.CreateDataflowEndpointGroupRequestFilterSensitiveLog = exports.ReserveContactRequestFilterSensitiveLog = exports.ListContactsResponseFilterSensitiveLog = exports.ContactDataFilterSensitiveLog = exports.ListContactsRequestFilterSensitiveLog = exports.DescribeContactResponseFilterSensitiveLog = exports.ElevationFilterSensitiveLog = exports.DataflowDetailFilterSensitiveLog = exports.SourceFilterSensitiveLog = exports.DestinationFilterSensitiveLog = exports.DescribeContactRequestFilterSensitiveLog = exports.ConfigDetailsFilterSensitiveLog = exports.S3RecordingDetailsFilterSensitiveLog = exports.EndpointDetailsFilterSensitiveLog = exports.SecurityDetailsFilterSensitiveLog = exports.DataflowEndpointFilterSensitiveLog = exports.UpdateConfigRequestFilterSensitiveLog = exports.ListConfigsResponseFilterSensitiveLog = exports.ConfigListItemFilterSensitiveLog = exports.ListConfigsRequestFilterSensitiveLog = exports.GetConfigResponseFilterSensitiveLog = exports.GetConfigRequestFilterSensitiveLog = exports.DeleteConfigRequestFilterSensitiveLog = exports.CreateConfigRequestFilterSensitiveLog = exports.ConfigTypeDataFilterSensitiveLog = exports.UplinkEchoConfigFilterSensitiveLog = exports.TrackingConfigFilterSensitiveLog = exports.S3RecordingConfigFilterSensitiveLog = exports.DataflowEndpointConfigFilterSensitiveLog = exports.ConfigIdResponseFilterSensitiveLog = exports.ContactIdResponseFilterSensitiveLog = exports.CancelContactRequestFilterSensitiveLog = exports.AwsGroundStationAgentEndpointFilterSensitiveLog = exports.RangedConnectionDetailsFilterSensitiveLog = void 0;
|
|
5
|
+
exports.UntagResourceResponseFilterSensitiveLog = exports.UntagResourceRequestFilterSensitiveLog = exports.TagResourceResponseFilterSensitiveLog = exports.TagResourceRequestFilterSensitiveLog = exports.ListSatellitesResponseFilterSensitiveLog = exports.SatelliteListItemFilterSensitiveLog = exports.ListSatellitesRequestFilterSensitiveLog = exports.UpdateMissionProfileRequestFilterSensitiveLog = exports.ListMissionProfilesResponseFilterSensitiveLog = exports.MissionProfileListItemFilterSensitiveLog = exports.ListMissionProfilesRequestFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.ListTagsForResourceRequestFilterSensitiveLog = exports.ListGroundStationsResponseFilterSensitiveLog = exports.GroundStationDataFilterSensitiveLog = exports.ListGroundStationsRequestFilterSensitiveLog = exports.GetSatelliteResponseFilterSensitiveLog = exports.GetSatelliteRequestFilterSensitiveLog = exports.GetMissionProfileResponseFilterSensitiveLog = exports.GetMissionProfileRequestFilterSensitiveLog = exports.GetMinuteUsageResponseFilterSensitiveLog = exports.GetMinuteUsageRequestFilterSensitiveLog = exports.EphemerisMetaDataFilterSensitiveLog = exports.UpdateEphemerisRequestFilterSensitiveLog = exports.ListEphemeridesResponseFilterSensitiveLog = exports.ListEphemeridesRequestFilterSensitiveLog = exports.EphemerisItemFilterSensitiveLog = exports.DescribeEphemerisResponseFilterSensitiveLog = exports.EphemerisTypeDescriptionFilterSensitiveLog = exports.EphemerisDescriptionFilterSensitiveLog = exports.DescribeEphemerisRequestFilterSensitiveLog = exports.DeleteMissionProfileRequestFilterSensitiveLog = exports.DeleteEphemerisRequestFilterSensitiveLog = exports.ListDataflowEndpointGroupsResponseFilterSensitiveLog = exports.DataflowEndpointListItemFilterSensitiveLog = void 0;
|
|
6
6
|
const GroundStationServiceException_1 = require("./GroundStationServiceException");
|
|
7
|
-
var AngleUnits;
|
|
8
|
-
(function (AngleUnits) {
|
|
9
|
-
AngleUnits["DEGREE_ANGLE"] = "DEGREE_ANGLE";
|
|
10
|
-
AngleUnits["RADIAN"] = "RADIAN";
|
|
11
|
-
})(AngleUnits = exports.AngleUnits || (exports.AngleUnits = {}));
|
|
12
|
-
var BandwidthUnits;
|
|
13
|
-
(function (BandwidthUnits) {
|
|
14
|
-
BandwidthUnits["GHZ"] = "GHz";
|
|
15
|
-
BandwidthUnits["KHZ"] = "kHz";
|
|
16
|
-
BandwidthUnits["MHZ"] = "MHz";
|
|
17
|
-
})(BandwidthUnits = exports.BandwidthUnits || (exports.BandwidthUnits = {}));
|
|
18
|
-
var FrequencyUnits;
|
|
19
|
-
(function (FrequencyUnits) {
|
|
20
|
-
FrequencyUnits["GHZ"] = "GHz";
|
|
21
|
-
FrequencyUnits["KHZ"] = "kHz";
|
|
22
|
-
FrequencyUnits["MHZ"] = "MHz";
|
|
23
|
-
})(FrequencyUnits = exports.FrequencyUnits || (exports.FrequencyUnits = {}));
|
|
24
|
-
var Polarization;
|
|
25
|
-
(function (Polarization) {
|
|
26
|
-
Polarization["LEFT_HAND"] = "LEFT_HAND";
|
|
27
|
-
Polarization["NONE"] = "NONE";
|
|
28
|
-
Polarization["RIGHT_HAND"] = "RIGHT_HAND";
|
|
29
|
-
})(Polarization = exports.Polarization || (exports.Polarization = {}));
|
|
30
|
-
var EirpUnits;
|
|
31
|
-
(function (EirpUnits) {
|
|
32
|
-
EirpUnits["DBW"] = "dBW";
|
|
33
|
-
})(EirpUnits = exports.EirpUnits || (exports.EirpUnits = {}));
|
|
34
7
|
class DependencyException extends GroundStationServiceException_1.GroundStationServiceException {
|
|
35
8
|
constructor(opts) {
|
|
36
9
|
super({
|
|
@@ -72,6 +45,51 @@ class ResourceNotFoundException extends GroundStationServiceException_1.GroundSt
|
|
|
72
45
|
}
|
|
73
46
|
}
|
|
74
47
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
48
|
+
var ComponentType;
|
|
49
|
+
(function (ComponentType) {
|
|
50
|
+
ComponentType["DIGITIZER"] = "DIGITIZER";
|
|
51
|
+
ComponentType["LAMINAR_FLOW"] = "LAMINAR_FLOW";
|
|
52
|
+
ComponentType["PRISM"] = "PRISM";
|
|
53
|
+
})(ComponentType = exports.ComponentType || (exports.ComponentType = {}));
|
|
54
|
+
var AgentStatus;
|
|
55
|
+
(function (AgentStatus) {
|
|
56
|
+
AgentStatus["ACTIVE"] = "ACTIVE";
|
|
57
|
+
AgentStatus["FAILED"] = "FAILED";
|
|
58
|
+
AgentStatus["INACTIVE"] = "INACTIVE";
|
|
59
|
+
AgentStatus["SUCCESS"] = "SUCCESS";
|
|
60
|
+
})(AgentStatus = exports.AgentStatus || (exports.AgentStatus = {}));
|
|
61
|
+
var AngleUnits;
|
|
62
|
+
(function (AngleUnits) {
|
|
63
|
+
AngleUnits["DEGREE_ANGLE"] = "DEGREE_ANGLE";
|
|
64
|
+
AngleUnits["RADIAN"] = "RADIAN";
|
|
65
|
+
})(AngleUnits = exports.AngleUnits || (exports.AngleUnits = {}));
|
|
66
|
+
var BandwidthUnits;
|
|
67
|
+
(function (BandwidthUnits) {
|
|
68
|
+
BandwidthUnits["GHZ"] = "GHz";
|
|
69
|
+
BandwidthUnits["KHZ"] = "kHz";
|
|
70
|
+
BandwidthUnits["MHZ"] = "MHz";
|
|
71
|
+
})(BandwidthUnits = exports.BandwidthUnits || (exports.BandwidthUnits = {}));
|
|
72
|
+
var FrequencyUnits;
|
|
73
|
+
(function (FrequencyUnits) {
|
|
74
|
+
FrequencyUnits["GHZ"] = "GHz";
|
|
75
|
+
FrequencyUnits["KHZ"] = "kHz";
|
|
76
|
+
FrequencyUnits["MHZ"] = "MHz";
|
|
77
|
+
})(FrequencyUnits = exports.FrequencyUnits || (exports.FrequencyUnits = {}));
|
|
78
|
+
var Polarization;
|
|
79
|
+
(function (Polarization) {
|
|
80
|
+
Polarization["LEFT_HAND"] = "LEFT_HAND";
|
|
81
|
+
Polarization["NONE"] = "NONE";
|
|
82
|
+
Polarization["RIGHT_HAND"] = "RIGHT_HAND";
|
|
83
|
+
})(Polarization = exports.Polarization || (exports.Polarization = {}));
|
|
84
|
+
var EirpUnits;
|
|
85
|
+
(function (EirpUnits) {
|
|
86
|
+
EirpUnits["DBW"] = "dBW";
|
|
87
|
+
})(EirpUnits = exports.EirpUnits || (exports.EirpUnits = {}));
|
|
88
|
+
var AuditResults;
|
|
89
|
+
(function (AuditResults) {
|
|
90
|
+
AuditResults["HEALTHY"] = "HEALTHY";
|
|
91
|
+
AuditResults["UNHEALTHY"] = "UNHEALTHY";
|
|
92
|
+
})(AuditResults = exports.AuditResults || (exports.AuditResults = {}));
|
|
75
93
|
var ConfigCapabilityType;
|
|
76
94
|
(function (ConfigCapabilityType) {
|
|
77
95
|
ConfigCapabilityType["ANTENNA_DOWNLINK"] = "antenna-downlink";
|
|
@@ -168,6 +186,16 @@ var EphemerisData;
|
|
|
168
186
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
169
187
|
};
|
|
170
188
|
})(EphemerisData = exports.EphemerisData || (exports.EphemerisData = {}));
|
|
189
|
+
var KmsKey;
|
|
190
|
+
(function (KmsKey) {
|
|
191
|
+
KmsKey.visit = (value, visitor) => {
|
|
192
|
+
if (value.kmsKeyArn !== undefined)
|
|
193
|
+
return visitor.kmsKeyArn(value.kmsKeyArn);
|
|
194
|
+
if (value.kmsAliasArn !== undefined)
|
|
195
|
+
return visitor.kmsAliasArn(value.kmsAliasArn);
|
|
196
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
197
|
+
};
|
|
198
|
+
})(KmsKey = exports.KmsKey || (exports.KmsKey = {}));
|
|
171
199
|
var EphemerisInvalidReason;
|
|
172
200
|
(function (EphemerisInvalidReason) {
|
|
173
201
|
EphemerisInvalidReason["KMS_KEY_INVALID"] = "KMS_KEY_INVALID";
|
|
@@ -200,6 +228,50 @@ var EphemerisSource;
|
|
|
200
228
|
EphemerisSource["CUSTOMER_PROVIDED"] = "CUSTOMER_PROVIDED";
|
|
201
229
|
EphemerisSource["SPACE_TRACK"] = "SPACE_TRACK";
|
|
202
230
|
})(EphemerisSource = exports.EphemerisSource || (exports.EphemerisSource = {}));
|
|
231
|
+
const GetAgentConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
232
|
+
...obj,
|
|
233
|
+
});
|
|
234
|
+
exports.GetAgentConfigurationRequestFilterSensitiveLog = GetAgentConfigurationRequestFilterSensitiveLog;
|
|
235
|
+
const GetAgentConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
236
|
+
...obj,
|
|
237
|
+
});
|
|
238
|
+
exports.GetAgentConfigurationResponseFilterSensitiveLog = GetAgentConfigurationResponseFilterSensitiveLog;
|
|
239
|
+
const ComponentVersionFilterSensitiveLog = (obj) => ({
|
|
240
|
+
...obj,
|
|
241
|
+
});
|
|
242
|
+
exports.ComponentVersionFilterSensitiveLog = ComponentVersionFilterSensitiveLog;
|
|
243
|
+
const AgentDetailsFilterSensitiveLog = (obj) => ({
|
|
244
|
+
...obj,
|
|
245
|
+
});
|
|
246
|
+
exports.AgentDetailsFilterSensitiveLog = AgentDetailsFilterSensitiveLog;
|
|
247
|
+
const DiscoveryDataFilterSensitiveLog = (obj) => ({
|
|
248
|
+
...obj,
|
|
249
|
+
});
|
|
250
|
+
exports.DiscoveryDataFilterSensitiveLog = DiscoveryDataFilterSensitiveLog;
|
|
251
|
+
const RegisterAgentRequestFilterSensitiveLog = (obj) => ({
|
|
252
|
+
...obj,
|
|
253
|
+
});
|
|
254
|
+
exports.RegisterAgentRequestFilterSensitiveLog = RegisterAgentRequestFilterSensitiveLog;
|
|
255
|
+
const RegisterAgentResponseFilterSensitiveLog = (obj) => ({
|
|
256
|
+
...obj,
|
|
257
|
+
});
|
|
258
|
+
exports.RegisterAgentResponseFilterSensitiveLog = RegisterAgentResponseFilterSensitiveLog;
|
|
259
|
+
const AggregateStatusFilterSensitiveLog = (obj) => ({
|
|
260
|
+
...obj,
|
|
261
|
+
});
|
|
262
|
+
exports.AggregateStatusFilterSensitiveLog = AggregateStatusFilterSensitiveLog;
|
|
263
|
+
const ComponentStatusDataFilterSensitiveLog = (obj) => ({
|
|
264
|
+
...obj,
|
|
265
|
+
});
|
|
266
|
+
exports.ComponentStatusDataFilterSensitiveLog = ComponentStatusDataFilterSensitiveLog;
|
|
267
|
+
const UpdateAgentStatusRequestFilterSensitiveLog = (obj) => ({
|
|
268
|
+
...obj,
|
|
269
|
+
});
|
|
270
|
+
exports.UpdateAgentStatusRequestFilterSensitiveLog = UpdateAgentStatusRequestFilterSensitiveLog;
|
|
271
|
+
const UpdateAgentStatusResponseFilterSensitiveLog = (obj) => ({
|
|
272
|
+
...obj,
|
|
273
|
+
});
|
|
274
|
+
exports.UpdateAgentStatusResponseFilterSensitiveLog = UpdateAgentStatusResponseFilterSensitiveLog;
|
|
203
275
|
const AntennaDemodDecodeDetailsFilterSensitiveLog = (obj) => ({
|
|
204
276
|
...obj,
|
|
205
277
|
});
|
|
@@ -244,6 +316,30 @@ const AntennaUplinkConfigFilterSensitiveLog = (obj) => ({
|
|
|
244
316
|
...obj,
|
|
245
317
|
});
|
|
246
318
|
exports.AntennaUplinkConfigFilterSensitiveLog = AntennaUplinkConfigFilterSensitiveLog;
|
|
319
|
+
const SocketAddressFilterSensitiveLog = (obj) => ({
|
|
320
|
+
...obj,
|
|
321
|
+
});
|
|
322
|
+
exports.SocketAddressFilterSensitiveLog = SocketAddressFilterSensitiveLog;
|
|
323
|
+
const ConnectionDetailsFilterSensitiveLog = (obj) => ({
|
|
324
|
+
...obj,
|
|
325
|
+
});
|
|
326
|
+
exports.ConnectionDetailsFilterSensitiveLog = ConnectionDetailsFilterSensitiveLog;
|
|
327
|
+
const IntegerRangeFilterSensitiveLog = (obj) => ({
|
|
328
|
+
...obj,
|
|
329
|
+
});
|
|
330
|
+
exports.IntegerRangeFilterSensitiveLog = IntegerRangeFilterSensitiveLog;
|
|
331
|
+
const RangedSocketAddressFilterSensitiveLog = (obj) => ({
|
|
332
|
+
...obj,
|
|
333
|
+
});
|
|
334
|
+
exports.RangedSocketAddressFilterSensitiveLog = RangedSocketAddressFilterSensitiveLog;
|
|
335
|
+
const RangedConnectionDetailsFilterSensitiveLog = (obj) => ({
|
|
336
|
+
...obj,
|
|
337
|
+
});
|
|
338
|
+
exports.RangedConnectionDetailsFilterSensitiveLog = RangedConnectionDetailsFilterSensitiveLog;
|
|
339
|
+
const AwsGroundStationAgentEndpointFilterSensitiveLog = (obj) => ({
|
|
340
|
+
...obj,
|
|
341
|
+
});
|
|
342
|
+
exports.AwsGroundStationAgentEndpointFilterSensitiveLog = AwsGroundStationAgentEndpointFilterSensitiveLog;
|
|
247
343
|
const CancelContactRequestFilterSensitiveLog = (obj) => ({
|
|
248
344
|
...obj,
|
|
249
345
|
});
|
|
@@ -328,10 +424,6 @@ const UpdateConfigRequestFilterSensitiveLog = (obj) => ({
|
|
|
328
424
|
...(obj.configData && { configData: (0, exports.ConfigTypeDataFilterSensitiveLog)(obj.configData) }),
|
|
329
425
|
});
|
|
330
426
|
exports.UpdateConfigRequestFilterSensitiveLog = UpdateConfigRequestFilterSensitiveLog;
|
|
331
|
-
const SocketAddressFilterSensitiveLog = (obj) => ({
|
|
332
|
-
...obj,
|
|
333
|
-
});
|
|
334
|
-
exports.SocketAddressFilterSensitiveLog = SocketAddressFilterSensitiveLog;
|
|
335
427
|
const DataflowEndpointFilterSensitiveLog = (obj) => ({
|
|
336
428
|
...obj,
|
|
337
429
|
});
|
|
@@ -450,8 +542,18 @@ const EphemerisIdResponseFilterSensitiveLog = (obj) => ({
|
|
|
450
542
|
...obj,
|
|
451
543
|
});
|
|
452
544
|
exports.EphemerisIdResponseFilterSensitiveLog = EphemerisIdResponseFilterSensitiveLog;
|
|
545
|
+
const KmsKeyFilterSensitiveLog = (obj) => {
|
|
546
|
+
if (obj.kmsKeyArn !== undefined)
|
|
547
|
+
return { kmsKeyArn: obj.kmsKeyArn };
|
|
548
|
+
if (obj.kmsAliasArn !== undefined)
|
|
549
|
+
return { kmsAliasArn: obj.kmsAliasArn };
|
|
550
|
+
if (obj.$unknown !== undefined)
|
|
551
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
552
|
+
};
|
|
553
|
+
exports.KmsKeyFilterSensitiveLog = KmsKeyFilterSensitiveLog;
|
|
453
554
|
const CreateMissionProfileRequestFilterSensitiveLog = (obj) => ({
|
|
454
555
|
...obj,
|
|
556
|
+
...(obj.streamsKmsKey && { streamsKmsKey: (0, exports.KmsKeyFilterSensitiveLog)(obj.streamsKmsKey) }),
|
|
455
557
|
});
|
|
456
558
|
exports.CreateMissionProfileRequestFilterSensitiveLog = CreateMissionProfileRequestFilterSensitiveLog;
|
|
457
559
|
const MissionProfileIdResponseFilterSensitiveLog = (obj) => ({
|
|
@@ -546,6 +648,7 @@ const GetMissionProfileRequestFilterSensitiveLog = (obj) => ({
|
|
|
546
648
|
exports.GetMissionProfileRequestFilterSensitiveLog = GetMissionProfileRequestFilterSensitiveLog;
|
|
547
649
|
const GetMissionProfileResponseFilterSensitiveLog = (obj) => ({
|
|
548
650
|
...obj,
|
|
651
|
+
...(obj.streamsKmsKey && { streamsKmsKey: (0, exports.KmsKeyFilterSensitiveLog)(obj.streamsKmsKey) }),
|
|
549
652
|
});
|
|
550
653
|
exports.GetMissionProfileResponseFilterSensitiveLog = GetMissionProfileResponseFilterSensitiveLog;
|
|
551
654
|
const GetSatelliteRequestFilterSensitiveLog = (obj) => ({
|
|
@@ -590,6 +693,7 @@ const ListMissionProfilesResponseFilterSensitiveLog = (obj) => ({
|
|
|
590
693
|
exports.ListMissionProfilesResponseFilterSensitiveLog = ListMissionProfilesResponseFilterSensitiveLog;
|
|
591
694
|
const UpdateMissionProfileRequestFilterSensitiveLog = (obj) => ({
|
|
592
695
|
...obj,
|
|
696
|
+
...(obj.streamsKmsKey && { streamsKmsKey: (0, exports.KmsKeyFilterSensitiveLog)(obj.streamsKmsKey) }),
|
|
593
697
|
});
|
|
594
698
|
exports.UpdateMissionProfileRequestFilterSensitiveLog = UpdateMissionProfileRequestFilterSensitiveLog;
|
|
595
699
|
const ListSatellitesRequestFilterSensitiveLog = (obj) => ({
|