@aws-sdk/client-groundstation 3.927.0 → 3.929.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 +1590 -1734
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/GroundStationClient.js +2 -0
- package/dist-es/commands/CancelContactCommand.js +3 -9
- package/dist-es/commands/CreateConfigCommand.js +3 -9
- package/dist-es/commands/CreateDataflowEndpointGroupCommand.js +3 -9
- package/dist-es/commands/CreateDataflowEndpointGroupV2Command.js +3 -9
- package/dist-es/commands/CreateEphemerisCommand.js +3 -9
- package/dist-es/commands/CreateMissionProfileCommand.js +3 -9
- package/dist-es/commands/DeleteConfigCommand.js +3 -9
- package/dist-es/commands/DeleteDataflowEndpointGroupCommand.js +3 -9
- package/dist-es/commands/DeleteEphemerisCommand.js +3 -9
- package/dist-es/commands/DeleteMissionProfileCommand.js +3 -9
- package/dist-es/commands/DescribeContactCommand.js +3 -9
- package/dist-es/commands/DescribeEphemerisCommand.js +3 -9
- package/dist-es/commands/GetAgentConfigurationCommand.js +3 -9
- package/dist-es/commands/GetAgentTaskResponseUrlCommand.js +3 -9
- package/dist-es/commands/GetConfigCommand.js +3 -9
- package/dist-es/commands/GetDataflowEndpointGroupCommand.js +3 -9
- package/dist-es/commands/GetMinuteUsageCommand.js +3 -9
- package/dist-es/commands/GetMissionProfileCommand.js +3 -9
- package/dist-es/commands/GetSatelliteCommand.js +3 -9
- package/dist-es/commands/ListConfigsCommand.js +3 -9
- package/dist-es/commands/ListContactsCommand.js +3 -9
- package/dist-es/commands/ListDataflowEndpointGroupsCommand.js +3 -9
- package/dist-es/commands/ListEphemeridesCommand.js +3 -9
- package/dist-es/commands/ListGroundStationsCommand.js +3 -9
- package/dist-es/commands/ListMissionProfilesCommand.js +3 -9
- package/dist-es/commands/ListSatellitesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RegisterAgentCommand.js +3 -9
- package/dist-es/commands/ReserveContactCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateAgentStatusCommand.js +3 -9
- package/dist-es/commands/UpdateConfigCommand.js +3 -9
- package/dist-es/commands/UpdateEphemerisCommand.js +3 -9
- package/dist-es/commands/UpdateMissionProfileCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1520 -0
- package/dist-types/GroundStationClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +212 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +217 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_restJson1.js +0 -1476
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -317
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -425
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
19
|
|
|
21
20
|
const resolveClientEndpointParameters = (options) => {
|
|
@@ -92,6 +91,7 @@ class GroundStationClient extends smithyClient.Client {
|
|
|
92
91
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
93
|
this.config = _config_8;
|
|
94
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
97
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +111,14 @@ class GroundStationClient extends smithyClient.Client {
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
class GroundStationServiceException extends smithyClient.ServiceException {
|
|
114
|
+
let GroundStationServiceException$1 = class GroundStationServiceException extends smithyClient.ServiceException {
|
|
115
115
|
constructor(options) {
|
|
116
116
|
super(options);
|
|
117
117
|
Object.setPrototypeOf(this, GroundStationServiceException.prototype);
|
|
118
118
|
}
|
|
119
|
-
}
|
|
119
|
+
};
|
|
120
120
|
|
|
121
|
-
class DependencyException extends GroundStationServiceException {
|
|
121
|
+
let DependencyException$1 = class DependencyException extends GroundStationServiceException$1 {
|
|
122
122
|
name = "DependencyException";
|
|
123
123
|
$fault = "server";
|
|
124
124
|
parameterName;
|
|
@@ -131,8 +131,8 @@ class DependencyException extends GroundStationServiceException {
|
|
|
131
131
|
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
132
132
|
this.parameterName = opts.parameterName;
|
|
133
133
|
}
|
|
134
|
-
}
|
|
135
|
-
class InvalidParameterException extends GroundStationServiceException {
|
|
134
|
+
};
|
|
135
|
+
let InvalidParameterException$1 = class InvalidParameterException extends GroundStationServiceException$1 {
|
|
136
136
|
name = "InvalidParameterException";
|
|
137
137
|
$fault = "client";
|
|
138
138
|
parameterName;
|
|
@@ -145,8 +145,8 @@ class InvalidParameterException extends GroundStationServiceException {
|
|
|
145
145
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
146
146
|
this.parameterName = opts.parameterName;
|
|
147
147
|
}
|
|
148
|
-
}
|
|
149
|
-
class ResourceNotFoundException extends GroundStationServiceException {
|
|
148
|
+
};
|
|
149
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends GroundStationServiceException$1 {
|
|
150
150
|
name = "ResourceNotFoundException";
|
|
151
151
|
$fault = "client";
|
|
152
152
|
constructor(opts) {
|
|
@@ -157,7 +157,7 @@ class ResourceNotFoundException extends GroundStationServiceException {
|
|
|
157
157
|
});
|
|
158
158
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
159
159
|
}
|
|
160
|
-
}
|
|
160
|
+
};
|
|
161
161
|
const AgentStatus = {
|
|
162
162
|
ACTIVE: "ACTIVE",
|
|
163
163
|
FAILED: "FAILED",
|
|
@@ -247,7 +247,7 @@ exports.ConfigTypeData = void 0;
|
|
|
247
247
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
248
248
|
};
|
|
249
249
|
})(exports.ConfigTypeData || (exports.ConfigTypeData = {}));
|
|
250
|
-
class ResourceLimitExceededException extends GroundStationServiceException {
|
|
250
|
+
let ResourceLimitExceededException$1 = class ResourceLimitExceededException extends GroundStationServiceException$1 {
|
|
251
251
|
name = "ResourceLimitExceededException";
|
|
252
252
|
$fault = "client";
|
|
253
253
|
parameterName;
|
|
@@ -260,7 +260,7 @@ class ResourceLimitExceededException extends GroundStationServiceException {
|
|
|
260
260
|
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
261
261
|
this.parameterName = opts.parameterName;
|
|
262
262
|
}
|
|
263
|
-
}
|
|
263
|
+
};
|
|
264
264
|
exports.DownlinkDataflowDetails = void 0;
|
|
265
265
|
(function (DownlinkDataflowDetails) {
|
|
266
266
|
DownlinkDataflowDetails.visit = (value, visitor) => {
|
|
@@ -343,7 +343,7 @@ exports.CreateEndpointDetails = void 0;
|
|
|
343
343
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
344
344
|
};
|
|
345
345
|
})(exports.CreateEndpointDetails || (exports.CreateEndpointDetails = {}));
|
|
346
|
-
class ServiceQuotaExceededException extends GroundStationServiceException {
|
|
346
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends GroundStationServiceException$1 {
|
|
347
347
|
name = "ServiceQuotaExceededException";
|
|
348
348
|
$fault = "client";
|
|
349
349
|
parameterName;
|
|
@@ -356,7 +356,7 @@ class ServiceQuotaExceededException extends GroundStationServiceException {
|
|
|
356
356
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
357
357
|
this.parameterName = opts.parameterName;
|
|
358
358
|
}
|
|
359
|
-
}
|
|
359
|
+
};
|
|
360
360
|
exports.EphemerisData = void 0;
|
|
361
361
|
(function (EphemerisData) {
|
|
362
362
|
EphemerisData.visit = (value, visitor) => {
|
|
@@ -381,7 +381,7 @@ exports.KmsKey = void 0;
|
|
|
381
381
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
382
382
|
};
|
|
383
383
|
})(exports.KmsKey || (exports.KmsKey = {}));
|
|
384
|
-
class ResourceInUseException extends GroundStationServiceException {
|
|
384
|
+
let ResourceInUseException$1 = class ResourceInUseException extends GroundStationServiceException$1 {
|
|
385
385
|
name = "ResourceInUseException";
|
|
386
386
|
$fault = "client";
|
|
387
387
|
constructor(opts) {
|
|
@@ -392,7 +392,7 @@ class ResourceInUseException extends GroundStationServiceException {
|
|
|
392
392
|
});
|
|
393
393
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
394
394
|
}
|
|
395
|
-
}
|
|
395
|
+
};
|
|
396
396
|
const EphemerisErrorCode = {
|
|
397
397
|
AZ_EL_SEGMENTS_OUT_OF_ORDER: "AZ_EL_SEGMENTS_OUT_OF_ORDER",
|
|
398
398
|
AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME: "AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME",
|
|
@@ -465,1491 +465,1517 @@ const EphemerisSource = {
|
|
|
465
465
|
SPACE_TRACK: "SPACE_TRACK",
|
|
466
466
|
};
|
|
467
467
|
|
|
468
|
-
const
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
const
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
const
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
const
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
const
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
const
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
const
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
const
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
const
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
const
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
const
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
const
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
const
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
const
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
const
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
const
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
const
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
const
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
const
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
const
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
const
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
const
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
const
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
const
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
const
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
779
|
-
return b.build();
|
|
780
|
-
};
|
|
781
|
-
const se_ListSatellitesCommand = async (input, context) => {
|
|
782
|
-
const b = core.requestBuilder(input, context);
|
|
783
|
-
const headers = {};
|
|
784
|
-
b.bp("/satellite");
|
|
785
|
-
const query = smithyClient.map({
|
|
786
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
787
|
-
[_nT]: [, input[_nT]],
|
|
788
|
-
});
|
|
789
|
-
let body;
|
|
790
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
791
|
-
return b.build();
|
|
792
|
-
};
|
|
793
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
794
|
-
const b = core.requestBuilder(input, context);
|
|
795
|
-
const headers = {};
|
|
796
|
-
b.bp("/tags/{resourceArn}");
|
|
797
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
798
|
-
let body;
|
|
799
|
-
b.m("GET").h(headers).b(body);
|
|
800
|
-
return b.build();
|
|
801
|
-
};
|
|
802
|
-
const se_RegisterAgentCommand = async (input, context) => {
|
|
803
|
-
const b = core.requestBuilder(input, context);
|
|
804
|
-
const headers = {
|
|
805
|
-
"content-type": "application/json",
|
|
806
|
-
};
|
|
807
|
-
b.bp("/agent");
|
|
808
|
-
let body;
|
|
809
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
810
|
-
agentDetails: (_) => smithyClient._json(_),
|
|
811
|
-
discoveryData: (_) => smithyClient._json(_),
|
|
812
|
-
tags: (_) => smithyClient._json(_),
|
|
813
|
-
}));
|
|
814
|
-
b.m("POST").h(headers).b(body);
|
|
815
|
-
return b.build();
|
|
816
|
-
};
|
|
817
|
-
const se_ReserveContactCommand = async (input, context) => {
|
|
818
|
-
const b = core.requestBuilder(input, context);
|
|
819
|
-
const headers = {
|
|
820
|
-
"content-type": "application/json",
|
|
821
|
-
};
|
|
822
|
-
b.bp("/contact");
|
|
823
|
-
let body;
|
|
824
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
825
|
-
endTime: (_) => _.getTime() / 1_000,
|
|
826
|
-
groundStation: [],
|
|
827
|
-
missionProfileArn: [],
|
|
828
|
-
satelliteArn: [],
|
|
829
|
-
startTime: (_) => _.getTime() / 1_000,
|
|
830
|
-
tags: (_) => smithyClient._json(_),
|
|
831
|
-
trackingOverrides: (_) => smithyClient._json(_),
|
|
832
|
-
}));
|
|
833
|
-
b.m("POST").h(headers).b(body);
|
|
834
|
-
return b.build();
|
|
835
|
-
};
|
|
836
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
837
|
-
const b = core.requestBuilder(input, context);
|
|
838
|
-
const headers = {
|
|
839
|
-
"content-type": "application/json",
|
|
840
|
-
};
|
|
841
|
-
b.bp("/tags/{resourceArn}");
|
|
842
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
843
|
-
let body;
|
|
844
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
845
|
-
tags: (_) => smithyClient._json(_),
|
|
846
|
-
}));
|
|
847
|
-
b.m("POST").h(headers).b(body);
|
|
848
|
-
return b.build();
|
|
849
|
-
};
|
|
850
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
851
|
-
const b = core.requestBuilder(input, context);
|
|
852
|
-
const headers = {};
|
|
853
|
-
b.bp("/tags/{resourceArn}");
|
|
854
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
855
|
-
const query = smithyClient.map({
|
|
856
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
857
|
-
});
|
|
858
|
-
let body;
|
|
859
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
860
|
-
return b.build();
|
|
861
|
-
};
|
|
862
|
-
const se_UpdateAgentStatusCommand = async (input, context) => {
|
|
863
|
-
const b = core.requestBuilder(input, context);
|
|
864
|
-
const headers = {
|
|
865
|
-
"content-type": "application/json",
|
|
866
|
-
};
|
|
867
|
-
b.bp("/agent/{agentId}");
|
|
868
|
-
b.p("agentId", () => input.agentId, "{agentId}", false);
|
|
869
|
-
let body;
|
|
870
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
871
|
-
aggregateStatus: (_) => smithyClient._json(_),
|
|
872
|
-
componentStatuses: (_) => smithyClient._json(_),
|
|
873
|
-
taskId: [],
|
|
874
|
-
}));
|
|
875
|
-
b.m("PUT").h(headers).b(body);
|
|
876
|
-
return b.build();
|
|
877
|
-
};
|
|
878
|
-
const se_UpdateConfigCommand = async (input, context) => {
|
|
879
|
-
const b = core.requestBuilder(input, context);
|
|
880
|
-
const headers = {
|
|
881
|
-
"content-type": "application/json",
|
|
882
|
-
};
|
|
883
|
-
b.bp("/config/{configType}/{configId}");
|
|
884
|
-
b.p("configId", () => input.configId, "{configId}", false);
|
|
885
|
-
b.p("configType", () => input.configType, "{configType}", false);
|
|
886
|
-
let body;
|
|
887
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
888
|
-
configData: (_) => se_ConfigTypeData(_),
|
|
889
|
-
name: [],
|
|
890
|
-
}));
|
|
891
|
-
b.m("PUT").h(headers).b(body);
|
|
892
|
-
return b.build();
|
|
893
|
-
};
|
|
894
|
-
const se_UpdateEphemerisCommand = async (input, context) => {
|
|
895
|
-
const b = core.requestBuilder(input, context);
|
|
896
|
-
const headers = {
|
|
897
|
-
"content-type": "application/json",
|
|
898
|
-
};
|
|
899
|
-
b.bp("/ephemeris/{ephemerisId}");
|
|
900
|
-
b.p("ephemerisId", () => input.ephemerisId, "{ephemerisId}", false);
|
|
901
|
-
let body;
|
|
902
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
903
|
-
enabled: [],
|
|
904
|
-
name: [],
|
|
905
|
-
priority: [],
|
|
906
|
-
}));
|
|
907
|
-
b.m("PUT").h(headers).b(body);
|
|
908
|
-
return b.build();
|
|
909
|
-
};
|
|
910
|
-
const se_UpdateMissionProfileCommand = async (input, context) => {
|
|
911
|
-
const b = core.requestBuilder(input, context);
|
|
912
|
-
const headers = {
|
|
913
|
-
"content-type": "application/json",
|
|
914
|
-
};
|
|
915
|
-
b.bp("/missionprofile/{missionProfileId}");
|
|
916
|
-
b.p("missionProfileId", () => input.missionProfileId, "{missionProfileId}", false);
|
|
917
|
-
let body;
|
|
918
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
919
|
-
contactPostPassDurationSeconds: [],
|
|
920
|
-
contactPrePassDurationSeconds: [],
|
|
921
|
-
dataflowEdges: (_) => smithyClient._json(_),
|
|
922
|
-
minimumViableContactDurationSeconds: [],
|
|
923
|
-
name: [],
|
|
924
|
-
streamsKmsKey: (_) => smithyClient._json(_),
|
|
925
|
-
streamsKmsRole: [],
|
|
926
|
-
trackingConfigArn: [],
|
|
927
|
-
}));
|
|
928
|
-
b.m("PUT").h(headers).b(body);
|
|
929
|
-
return b.build();
|
|
930
|
-
};
|
|
931
|
-
const de_CancelContactCommand = async (output, context) => {
|
|
932
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
933
|
-
return de_CommandError(output, context);
|
|
934
|
-
}
|
|
935
|
-
const contents = smithyClient.map({
|
|
936
|
-
$metadata: deserializeMetadata(output),
|
|
937
|
-
});
|
|
938
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
939
|
-
const doc = smithyClient.take(data, {
|
|
940
|
-
contactId: smithyClient.expectString,
|
|
941
|
-
});
|
|
942
|
-
Object.assign(contents, doc);
|
|
943
|
-
return contents;
|
|
944
|
-
};
|
|
945
|
-
const de_CreateConfigCommand = async (output, context) => {
|
|
946
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
947
|
-
return de_CommandError(output, context);
|
|
948
|
-
}
|
|
949
|
-
const contents = smithyClient.map({
|
|
950
|
-
$metadata: deserializeMetadata(output),
|
|
951
|
-
});
|
|
952
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
953
|
-
const doc = smithyClient.take(data, {
|
|
954
|
-
configArn: smithyClient.expectString,
|
|
955
|
-
configId: smithyClient.expectString,
|
|
956
|
-
configType: smithyClient.expectString,
|
|
957
|
-
});
|
|
958
|
-
Object.assign(contents, doc);
|
|
959
|
-
return contents;
|
|
960
|
-
};
|
|
961
|
-
const de_CreateDataflowEndpointGroupCommand = async (output, context) => {
|
|
962
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
963
|
-
return de_CommandError(output, context);
|
|
964
|
-
}
|
|
965
|
-
const contents = smithyClient.map({
|
|
966
|
-
$metadata: deserializeMetadata(output),
|
|
967
|
-
});
|
|
968
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
969
|
-
const doc = smithyClient.take(data, {
|
|
970
|
-
dataflowEndpointGroupId: smithyClient.expectString,
|
|
971
|
-
});
|
|
972
|
-
Object.assign(contents, doc);
|
|
973
|
-
return contents;
|
|
974
|
-
};
|
|
975
|
-
const de_CreateDataflowEndpointGroupV2Command = async (output, context) => {
|
|
976
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
977
|
-
return de_CommandError(output, context);
|
|
978
|
-
}
|
|
979
|
-
const contents = smithyClient.map({
|
|
980
|
-
$metadata: deserializeMetadata(output),
|
|
981
|
-
});
|
|
982
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
983
|
-
const doc = smithyClient.take(data, {
|
|
984
|
-
dataflowEndpointGroupId: smithyClient.expectString,
|
|
985
|
-
});
|
|
986
|
-
Object.assign(contents, doc);
|
|
987
|
-
return contents;
|
|
988
|
-
};
|
|
989
|
-
const de_CreateEphemerisCommand = async (output, context) => {
|
|
990
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
991
|
-
return de_CommandError(output, context);
|
|
992
|
-
}
|
|
993
|
-
const contents = smithyClient.map({
|
|
994
|
-
$metadata: deserializeMetadata(output),
|
|
995
|
-
});
|
|
996
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
997
|
-
const doc = smithyClient.take(data, {
|
|
998
|
-
ephemerisId: smithyClient.expectString,
|
|
999
|
-
});
|
|
1000
|
-
Object.assign(contents, doc);
|
|
1001
|
-
return contents;
|
|
1002
|
-
};
|
|
1003
|
-
const de_CreateMissionProfileCommand = async (output, context) => {
|
|
1004
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1005
|
-
return de_CommandError(output, context);
|
|
1006
|
-
}
|
|
1007
|
-
const contents = smithyClient.map({
|
|
1008
|
-
$metadata: deserializeMetadata(output),
|
|
1009
|
-
});
|
|
1010
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1011
|
-
const doc = smithyClient.take(data, {
|
|
1012
|
-
missionProfileId: smithyClient.expectString,
|
|
1013
|
-
});
|
|
1014
|
-
Object.assign(contents, doc);
|
|
1015
|
-
return contents;
|
|
1016
|
-
};
|
|
1017
|
-
const de_DeleteConfigCommand = async (output, context) => {
|
|
1018
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1019
|
-
return de_CommandError(output, context);
|
|
1020
|
-
}
|
|
1021
|
-
const contents = smithyClient.map({
|
|
1022
|
-
$metadata: deserializeMetadata(output),
|
|
1023
|
-
});
|
|
1024
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1025
|
-
const doc = smithyClient.take(data, {
|
|
1026
|
-
configArn: smithyClient.expectString,
|
|
1027
|
-
configId: smithyClient.expectString,
|
|
1028
|
-
configType: smithyClient.expectString,
|
|
1029
|
-
});
|
|
1030
|
-
Object.assign(contents, doc);
|
|
1031
|
-
return contents;
|
|
1032
|
-
};
|
|
1033
|
-
const de_DeleteDataflowEndpointGroupCommand = async (output, context) => {
|
|
1034
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1035
|
-
return de_CommandError(output, context);
|
|
1036
|
-
}
|
|
1037
|
-
const contents = smithyClient.map({
|
|
1038
|
-
$metadata: deserializeMetadata(output),
|
|
1039
|
-
});
|
|
1040
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1041
|
-
const doc = smithyClient.take(data, {
|
|
1042
|
-
dataflowEndpointGroupId: smithyClient.expectString,
|
|
1043
|
-
});
|
|
1044
|
-
Object.assign(contents, doc);
|
|
1045
|
-
return contents;
|
|
1046
|
-
};
|
|
1047
|
-
const de_DeleteEphemerisCommand = async (output, context) => {
|
|
1048
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1049
|
-
return de_CommandError(output, context);
|
|
1050
|
-
}
|
|
1051
|
-
const contents = smithyClient.map({
|
|
1052
|
-
$metadata: deserializeMetadata(output),
|
|
1053
|
-
});
|
|
1054
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1055
|
-
const doc = smithyClient.take(data, {
|
|
1056
|
-
ephemerisId: smithyClient.expectString,
|
|
1057
|
-
});
|
|
1058
|
-
Object.assign(contents, doc);
|
|
1059
|
-
return contents;
|
|
1060
|
-
};
|
|
1061
|
-
const de_DeleteMissionProfileCommand = async (output, context) => {
|
|
1062
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1063
|
-
return de_CommandError(output, context);
|
|
1064
|
-
}
|
|
1065
|
-
const contents = smithyClient.map({
|
|
1066
|
-
$metadata: deserializeMetadata(output),
|
|
1067
|
-
});
|
|
1068
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1069
|
-
const doc = smithyClient.take(data, {
|
|
1070
|
-
missionProfileId: smithyClient.expectString,
|
|
1071
|
-
});
|
|
1072
|
-
Object.assign(contents, doc);
|
|
1073
|
-
return contents;
|
|
1074
|
-
};
|
|
1075
|
-
const de_DescribeContactCommand = async (output, context) => {
|
|
1076
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1077
|
-
return de_CommandError(output, context);
|
|
1078
|
-
}
|
|
1079
|
-
const contents = smithyClient.map({
|
|
1080
|
-
$metadata: deserializeMetadata(output),
|
|
1081
|
-
});
|
|
1082
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1083
|
-
const doc = smithyClient.take(data, {
|
|
1084
|
-
contactId: smithyClient.expectString,
|
|
1085
|
-
contactStatus: smithyClient.expectString,
|
|
1086
|
-
dataflowList: (_) => de_DataflowList(_),
|
|
1087
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1088
|
-
ephemeris: smithyClient._json,
|
|
1089
|
-
errorMessage: smithyClient.expectString,
|
|
1090
|
-
groundStation: smithyClient.expectString,
|
|
1091
|
-
maximumElevation: (_) => de_Elevation(_),
|
|
1092
|
-
missionProfileArn: smithyClient.expectString,
|
|
1093
|
-
postPassEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1094
|
-
prePassStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1095
|
-
region: smithyClient.expectString,
|
|
1096
|
-
satelliteArn: smithyClient.expectString,
|
|
1097
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1098
|
-
tags: smithyClient._json,
|
|
1099
|
-
trackingOverrides: smithyClient._json,
|
|
1100
|
-
visibilityEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1101
|
-
visibilityStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1102
|
-
});
|
|
1103
|
-
Object.assign(contents, doc);
|
|
1104
|
-
return contents;
|
|
1105
|
-
};
|
|
1106
|
-
const de_DescribeEphemerisCommand = async (output, context) => {
|
|
1107
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1108
|
-
return de_CommandError(output, context);
|
|
1109
|
-
}
|
|
1110
|
-
const contents = smithyClient.map({
|
|
1111
|
-
$metadata: deserializeMetadata(output),
|
|
1112
|
-
});
|
|
1113
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1114
|
-
const doc = smithyClient.take(data, {
|
|
1115
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1116
|
-
enabled: smithyClient.expectBoolean,
|
|
1117
|
-
ephemerisId: smithyClient.expectString,
|
|
1118
|
-
errorReasons: smithyClient._json,
|
|
1119
|
-
invalidReason: smithyClient.expectString,
|
|
1120
|
-
name: smithyClient.expectString,
|
|
1121
|
-
priority: smithyClient.expectInt32,
|
|
1122
|
-
satelliteId: smithyClient.expectString,
|
|
1123
|
-
status: smithyClient.expectString,
|
|
1124
|
-
suppliedData: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1125
|
-
tags: smithyClient._json,
|
|
1126
|
-
});
|
|
1127
|
-
Object.assign(contents, doc);
|
|
1128
|
-
return contents;
|
|
1129
|
-
};
|
|
1130
|
-
const de_GetAgentConfigurationCommand = async (output, context) => {
|
|
1131
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1132
|
-
return de_CommandError(output, context);
|
|
1133
|
-
}
|
|
1134
|
-
const contents = smithyClient.map({
|
|
1135
|
-
$metadata: deserializeMetadata(output),
|
|
1136
|
-
});
|
|
1137
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1138
|
-
const doc = smithyClient.take(data, {
|
|
1139
|
-
agentId: smithyClient.expectString,
|
|
1140
|
-
taskingDocument: smithyClient.expectString,
|
|
1141
|
-
});
|
|
1142
|
-
Object.assign(contents, doc);
|
|
1143
|
-
return contents;
|
|
1144
|
-
};
|
|
1145
|
-
const de_GetAgentTaskResponseUrlCommand = async (output, context) => {
|
|
1146
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1147
|
-
return de_CommandError(output, context);
|
|
1148
|
-
}
|
|
1149
|
-
const contents = smithyClient.map({
|
|
1150
|
-
$metadata: deserializeMetadata(output),
|
|
1151
|
-
});
|
|
1152
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1153
|
-
const doc = smithyClient.take(data, {
|
|
1154
|
-
agentId: smithyClient.expectString,
|
|
1155
|
-
presignedLogUrl: smithyClient.expectString,
|
|
1156
|
-
taskId: smithyClient.expectString,
|
|
1157
|
-
});
|
|
1158
|
-
Object.assign(contents, doc);
|
|
1159
|
-
return contents;
|
|
1160
|
-
};
|
|
1161
|
-
const de_GetConfigCommand = async (output, context) => {
|
|
1162
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1163
|
-
return de_CommandError(output, context);
|
|
1164
|
-
}
|
|
1165
|
-
const contents = smithyClient.map({
|
|
1166
|
-
$metadata: deserializeMetadata(output),
|
|
1167
|
-
});
|
|
1168
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1169
|
-
const doc = smithyClient.take(data, {
|
|
1170
|
-
configArn: smithyClient.expectString,
|
|
1171
|
-
configData: (_) => de_ConfigTypeData(core$1.awsExpectUnion(_)),
|
|
1172
|
-
configId: smithyClient.expectString,
|
|
1173
|
-
configType: smithyClient.expectString,
|
|
1174
|
-
name: smithyClient.expectString,
|
|
1175
|
-
tags: smithyClient._json,
|
|
1176
|
-
});
|
|
1177
|
-
Object.assign(contents, doc);
|
|
1178
|
-
return contents;
|
|
1179
|
-
};
|
|
1180
|
-
const de_GetDataflowEndpointGroupCommand = async (output, context) => {
|
|
1181
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1182
|
-
return de_CommandError(output, context);
|
|
1183
|
-
}
|
|
1184
|
-
const contents = smithyClient.map({
|
|
1185
|
-
$metadata: deserializeMetadata(output),
|
|
1186
|
-
});
|
|
1187
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1188
|
-
const doc = smithyClient.take(data, {
|
|
1189
|
-
contactPostPassDurationSeconds: smithyClient.expectInt32,
|
|
1190
|
-
contactPrePassDurationSeconds: smithyClient.expectInt32,
|
|
1191
|
-
dataflowEndpointGroupArn: smithyClient.expectString,
|
|
1192
|
-
dataflowEndpointGroupId: smithyClient.expectString,
|
|
1193
|
-
endpointsDetails: smithyClient._json,
|
|
1194
|
-
tags: smithyClient._json,
|
|
1195
|
-
});
|
|
1196
|
-
Object.assign(contents, doc);
|
|
1197
|
-
return contents;
|
|
1198
|
-
};
|
|
1199
|
-
const de_GetMinuteUsageCommand = async (output, context) => {
|
|
1200
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1201
|
-
return de_CommandError(output, context);
|
|
1202
|
-
}
|
|
1203
|
-
const contents = smithyClient.map({
|
|
1204
|
-
$metadata: deserializeMetadata(output),
|
|
1205
|
-
});
|
|
1206
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1207
|
-
const doc = smithyClient.take(data, {
|
|
1208
|
-
estimatedMinutesRemaining: smithyClient.expectInt32,
|
|
1209
|
-
isReservedMinutesCustomer: smithyClient.expectBoolean,
|
|
1210
|
-
totalReservedMinuteAllocation: smithyClient.expectInt32,
|
|
1211
|
-
totalScheduledMinutes: smithyClient.expectInt32,
|
|
1212
|
-
upcomingMinutesScheduled: smithyClient.expectInt32,
|
|
1213
|
-
});
|
|
1214
|
-
Object.assign(contents, doc);
|
|
1215
|
-
return contents;
|
|
1216
|
-
};
|
|
1217
|
-
const de_GetMissionProfileCommand = async (output, context) => {
|
|
1218
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1219
|
-
return de_CommandError(output, context);
|
|
1220
|
-
}
|
|
1221
|
-
const contents = smithyClient.map({
|
|
1222
|
-
$metadata: deserializeMetadata(output),
|
|
1223
|
-
});
|
|
1224
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1225
|
-
const doc = smithyClient.take(data, {
|
|
1226
|
-
contactPostPassDurationSeconds: smithyClient.expectInt32,
|
|
1227
|
-
contactPrePassDurationSeconds: smithyClient.expectInt32,
|
|
1228
|
-
dataflowEdges: smithyClient._json,
|
|
1229
|
-
minimumViableContactDurationSeconds: smithyClient.expectInt32,
|
|
1230
|
-
missionProfileArn: smithyClient.expectString,
|
|
1231
|
-
missionProfileId: smithyClient.expectString,
|
|
1232
|
-
name: smithyClient.expectString,
|
|
1233
|
-
region: smithyClient.expectString,
|
|
1234
|
-
streamsKmsKey: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1235
|
-
streamsKmsRole: smithyClient.expectString,
|
|
1236
|
-
tags: smithyClient._json,
|
|
1237
|
-
trackingConfigArn: smithyClient.expectString,
|
|
1238
|
-
});
|
|
1239
|
-
Object.assign(contents, doc);
|
|
1240
|
-
return contents;
|
|
1241
|
-
};
|
|
1242
|
-
const de_GetSatelliteCommand = async (output, context) => {
|
|
1243
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1244
|
-
return de_CommandError(output, context);
|
|
1245
|
-
}
|
|
1246
|
-
const contents = smithyClient.map({
|
|
1247
|
-
$metadata: deserializeMetadata(output),
|
|
1248
|
-
});
|
|
1249
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1250
|
-
const doc = smithyClient.take(data, {
|
|
1251
|
-
currentEphemeris: (_) => de_EphemerisMetaData(_),
|
|
1252
|
-
groundStations: smithyClient._json,
|
|
1253
|
-
noradSatelliteID: smithyClient.expectInt32,
|
|
1254
|
-
satelliteArn: smithyClient.expectString,
|
|
1255
|
-
satelliteId: smithyClient.expectString,
|
|
1256
|
-
});
|
|
1257
|
-
Object.assign(contents, doc);
|
|
1258
|
-
return contents;
|
|
1259
|
-
};
|
|
1260
|
-
const de_ListConfigsCommand = async (output, context) => {
|
|
1261
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1262
|
-
return de_CommandError(output, context);
|
|
1263
|
-
}
|
|
1264
|
-
const contents = smithyClient.map({
|
|
1265
|
-
$metadata: deserializeMetadata(output),
|
|
1266
|
-
});
|
|
1267
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1268
|
-
const doc = smithyClient.take(data, {
|
|
1269
|
-
configList: smithyClient._json,
|
|
1270
|
-
nextToken: smithyClient.expectString,
|
|
1271
|
-
});
|
|
1272
|
-
Object.assign(contents, doc);
|
|
1273
|
-
return contents;
|
|
1274
|
-
};
|
|
1275
|
-
const de_ListContactsCommand = async (output, context) => {
|
|
1276
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1277
|
-
return de_CommandError(output, context);
|
|
1278
|
-
}
|
|
1279
|
-
const contents = smithyClient.map({
|
|
1280
|
-
$metadata: deserializeMetadata(output),
|
|
1281
|
-
});
|
|
1282
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1283
|
-
const doc = smithyClient.take(data, {
|
|
1284
|
-
contactList: (_) => de_ContactList(_),
|
|
1285
|
-
nextToken: smithyClient.expectString,
|
|
1286
|
-
});
|
|
1287
|
-
Object.assign(contents, doc);
|
|
1288
|
-
return contents;
|
|
1289
|
-
};
|
|
1290
|
-
const de_ListDataflowEndpointGroupsCommand = async (output, context) => {
|
|
1291
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1292
|
-
return de_CommandError(output, context);
|
|
1293
|
-
}
|
|
1294
|
-
const contents = smithyClient.map({
|
|
1295
|
-
$metadata: deserializeMetadata(output),
|
|
1296
|
-
});
|
|
1297
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1298
|
-
const doc = smithyClient.take(data, {
|
|
1299
|
-
dataflowEndpointGroupList: smithyClient._json,
|
|
1300
|
-
nextToken: smithyClient.expectString,
|
|
1301
|
-
});
|
|
1302
|
-
Object.assign(contents, doc);
|
|
1303
|
-
return contents;
|
|
1304
|
-
};
|
|
1305
|
-
const de_ListEphemeridesCommand = async (output, context) => {
|
|
1306
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1307
|
-
return de_CommandError(output, context);
|
|
1308
|
-
}
|
|
1309
|
-
const contents = smithyClient.map({
|
|
1310
|
-
$metadata: deserializeMetadata(output),
|
|
1311
|
-
});
|
|
1312
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1313
|
-
const doc = smithyClient.take(data, {
|
|
1314
|
-
ephemerides: (_) => de_EphemeridesList(_),
|
|
1315
|
-
nextToken: smithyClient.expectString,
|
|
1316
|
-
});
|
|
1317
|
-
Object.assign(contents, doc);
|
|
1318
|
-
return contents;
|
|
1319
|
-
};
|
|
1320
|
-
const de_ListGroundStationsCommand = async (output, context) => {
|
|
1321
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1322
|
-
return de_CommandError(output, context);
|
|
1323
|
-
}
|
|
1324
|
-
const contents = smithyClient.map({
|
|
1325
|
-
$metadata: deserializeMetadata(output),
|
|
1326
|
-
});
|
|
1327
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1328
|
-
const doc = smithyClient.take(data, {
|
|
1329
|
-
groundStationList: smithyClient._json,
|
|
1330
|
-
nextToken: smithyClient.expectString,
|
|
1331
|
-
});
|
|
1332
|
-
Object.assign(contents, doc);
|
|
1333
|
-
return contents;
|
|
1334
|
-
};
|
|
1335
|
-
const de_ListMissionProfilesCommand = async (output, context) => {
|
|
1336
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1337
|
-
return de_CommandError(output, context);
|
|
1338
|
-
}
|
|
1339
|
-
const contents = smithyClient.map({
|
|
1340
|
-
$metadata: deserializeMetadata(output),
|
|
1341
|
-
});
|
|
1342
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1343
|
-
const doc = smithyClient.take(data, {
|
|
1344
|
-
missionProfileList: smithyClient._json,
|
|
1345
|
-
nextToken: smithyClient.expectString,
|
|
1346
|
-
});
|
|
1347
|
-
Object.assign(contents, doc);
|
|
1348
|
-
return contents;
|
|
1349
|
-
};
|
|
1350
|
-
const de_ListSatellitesCommand = async (output, context) => {
|
|
1351
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1352
|
-
return de_CommandError(output, context);
|
|
1353
|
-
}
|
|
1354
|
-
const contents = smithyClient.map({
|
|
1355
|
-
$metadata: deserializeMetadata(output),
|
|
1356
|
-
});
|
|
1357
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1358
|
-
const doc = smithyClient.take(data, {
|
|
1359
|
-
nextToken: smithyClient.expectString,
|
|
1360
|
-
satellites: (_) => de_SatelliteList(_),
|
|
1361
|
-
});
|
|
1362
|
-
Object.assign(contents, doc);
|
|
1363
|
-
return contents;
|
|
1364
|
-
};
|
|
1365
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1366
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1367
|
-
return de_CommandError(output, context);
|
|
1368
|
-
}
|
|
1369
|
-
const contents = smithyClient.map({
|
|
1370
|
-
$metadata: deserializeMetadata(output),
|
|
1371
|
-
});
|
|
1372
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1373
|
-
const doc = smithyClient.take(data, {
|
|
1374
|
-
tags: smithyClient._json,
|
|
1375
|
-
});
|
|
1376
|
-
Object.assign(contents, doc);
|
|
1377
|
-
return contents;
|
|
1378
|
-
};
|
|
1379
|
-
const de_RegisterAgentCommand = async (output, context) => {
|
|
1380
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1381
|
-
return de_CommandError(output, context);
|
|
1382
|
-
}
|
|
1383
|
-
const contents = smithyClient.map({
|
|
1384
|
-
$metadata: deserializeMetadata(output),
|
|
1385
|
-
});
|
|
1386
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1387
|
-
const doc = smithyClient.take(data, {
|
|
1388
|
-
agentId: smithyClient.expectString,
|
|
1389
|
-
});
|
|
1390
|
-
Object.assign(contents, doc);
|
|
1391
|
-
return contents;
|
|
1392
|
-
};
|
|
1393
|
-
const de_ReserveContactCommand = async (output, context) => {
|
|
1394
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1395
|
-
return de_CommandError(output, context);
|
|
1396
|
-
}
|
|
1397
|
-
const contents = smithyClient.map({
|
|
1398
|
-
$metadata: deserializeMetadata(output),
|
|
1399
|
-
});
|
|
1400
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1401
|
-
const doc = smithyClient.take(data, {
|
|
1402
|
-
contactId: smithyClient.expectString,
|
|
1403
|
-
});
|
|
1404
|
-
Object.assign(contents, doc);
|
|
1405
|
-
return contents;
|
|
1406
|
-
};
|
|
1407
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1408
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1409
|
-
return de_CommandError(output, context);
|
|
1410
|
-
}
|
|
1411
|
-
const contents = smithyClient.map({
|
|
1412
|
-
$metadata: deserializeMetadata(output),
|
|
1413
|
-
});
|
|
1414
|
-
await smithyClient.collectBody(output.body, context);
|
|
1415
|
-
return contents;
|
|
1416
|
-
};
|
|
1417
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1418
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1419
|
-
return de_CommandError(output, context);
|
|
1420
|
-
}
|
|
1421
|
-
const contents = smithyClient.map({
|
|
1422
|
-
$metadata: deserializeMetadata(output),
|
|
1423
|
-
});
|
|
1424
|
-
await smithyClient.collectBody(output.body, context);
|
|
1425
|
-
return contents;
|
|
1426
|
-
};
|
|
1427
|
-
const de_UpdateAgentStatusCommand = async (output, context) => {
|
|
1428
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1429
|
-
return de_CommandError(output, context);
|
|
1430
|
-
}
|
|
1431
|
-
const contents = smithyClient.map({
|
|
1432
|
-
$metadata: deserializeMetadata(output),
|
|
1433
|
-
});
|
|
1434
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1435
|
-
const doc = smithyClient.take(data, {
|
|
1436
|
-
agentId: smithyClient.expectString,
|
|
1437
|
-
});
|
|
1438
|
-
Object.assign(contents, doc);
|
|
1439
|
-
return contents;
|
|
1440
|
-
};
|
|
1441
|
-
const de_UpdateConfigCommand = async (output, context) => {
|
|
1442
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1443
|
-
return de_CommandError(output, context);
|
|
1444
|
-
}
|
|
1445
|
-
const contents = smithyClient.map({
|
|
1446
|
-
$metadata: deserializeMetadata(output),
|
|
1447
|
-
});
|
|
1448
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1449
|
-
const doc = smithyClient.take(data, {
|
|
1450
|
-
configArn: smithyClient.expectString,
|
|
1451
|
-
configId: smithyClient.expectString,
|
|
1452
|
-
configType: smithyClient.expectString,
|
|
1453
|
-
});
|
|
1454
|
-
Object.assign(contents, doc);
|
|
1455
|
-
return contents;
|
|
1456
|
-
};
|
|
1457
|
-
const de_UpdateEphemerisCommand = async (output, context) => {
|
|
1458
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1459
|
-
return de_CommandError(output, context);
|
|
1460
|
-
}
|
|
1461
|
-
const contents = smithyClient.map({
|
|
1462
|
-
$metadata: deserializeMetadata(output),
|
|
1463
|
-
});
|
|
1464
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1465
|
-
const doc = smithyClient.take(data, {
|
|
1466
|
-
ephemerisId: smithyClient.expectString,
|
|
1467
|
-
});
|
|
1468
|
-
Object.assign(contents, doc);
|
|
1469
|
-
return contents;
|
|
1470
|
-
};
|
|
1471
|
-
const de_UpdateMissionProfileCommand = async (output, context) => {
|
|
1472
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1473
|
-
return de_CommandError(output, context);
|
|
1474
|
-
}
|
|
1475
|
-
const contents = smithyClient.map({
|
|
1476
|
-
$metadata: deserializeMetadata(output),
|
|
1477
|
-
});
|
|
1478
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1479
|
-
const doc = smithyClient.take(data, {
|
|
1480
|
-
missionProfileId: smithyClient.expectString,
|
|
1481
|
-
});
|
|
1482
|
-
Object.assign(contents, doc);
|
|
1483
|
-
return contents;
|
|
1484
|
-
};
|
|
1485
|
-
const de_CommandError = async (output, context) => {
|
|
1486
|
-
const parsedOutput = {
|
|
1487
|
-
...output,
|
|
1488
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1489
|
-
};
|
|
1490
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1491
|
-
switch (errorCode) {
|
|
1492
|
-
case "DependencyException":
|
|
1493
|
-
case "com.amazonaws.groundstation#DependencyException":
|
|
1494
|
-
throw await de_DependencyExceptionRes(parsedOutput);
|
|
1495
|
-
case "InvalidParameterException":
|
|
1496
|
-
case "com.amazonaws.groundstation#InvalidParameterException":
|
|
1497
|
-
throw await de_InvalidParameterExceptionRes(parsedOutput);
|
|
1498
|
-
case "ResourceNotFoundException":
|
|
1499
|
-
case "com.amazonaws.groundstation#ResourceNotFoundException":
|
|
1500
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1501
|
-
case "ResourceLimitExceededException":
|
|
1502
|
-
case "com.amazonaws.groundstation#ResourceLimitExceededException":
|
|
1503
|
-
throw await de_ResourceLimitExceededExceptionRes(parsedOutput);
|
|
1504
|
-
case "ServiceQuotaExceededException":
|
|
1505
|
-
case "com.amazonaws.groundstation#ServiceQuotaExceededException":
|
|
1506
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1507
|
-
case "ResourceInUseException":
|
|
1508
|
-
case "com.amazonaws.groundstation#ResourceInUseException":
|
|
1509
|
-
throw await de_ResourceInUseExceptionRes(parsedOutput);
|
|
1510
|
-
default:
|
|
1511
|
-
const parsedBody = parsedOutput.body;
|
|
1512
|
-
return throwDefaultError({
|
|
1513
|
-
output,
|
|
1514
|
-
parsedBody,
|
|
1515
|
-
errorCode,
|
|
1516
|
-
});
|
|
1517
|
-
}
|
|
1518
|
-
};
|
|
1519
|
-
const throwDefaultError = smithyClient.withBaseException(GroundStationServiceException);
|
|
1520
|
-
const de_DependencyExceptionRes = async (parsedOutput, context) => {
|
|
1521
|
-
const contents = smithyClient.map({});
|
|
1522
|
-
const data = parsedOutput.body;
|
|
1523
|
-
const doc = smithyClient.take(data, {
|
|
1524
|
-
message: smithyClient.expectString,
|
|
1525
|
-
parameterName: smithyClient.expectString,
|
|
1526
|
-
});
|
|
1527
|
-
Object.assign(contents, doc);
|
|
1528
|
-
const exception = new DependencyException({
|
|
1529
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1530
|
-
...contents,
|
|
1531
|
-
});
|
|
1532
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1533
|
-
};
|
|
1534
|
-
const de_InvalidParameterExceptionRes = async (parsedOutput, context) => {
|
|
1535
|
-
const contents = smithyClient.map({});
|
|
1536
|
-
const data = parsedOutput.body;
|
|
1537
|
-
const doc = smithyClient.take(data, {
|
|
1538
|
-
message: smithyClient.expectString,
|
|
1539
|
-
parameterName: smithyClient.expectString,
|
|
1540
|
-
});
|
|
1541
|
-
Object.assign(contents, doc);
|
|
1542
|
-
const exception = new InvalidParameterException({
|
|
1543
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1544
|
-
...contents,
|
|
1545
|
-
});
|
|
1546
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1547
|
-
};
|
|
1548
|
-
const de_ResourceInUseExceptionRes = async (parsedOutput, context) => {
|
|
1549
|
-
const contents = smithyClient.map({});
|
|
1550
|
-
const data = parsedOutput.body;
|
|
1551
|
-
const doc = smithyClient.take(data, {
|
|
1552
|
-
message: smithyClient.expectString,
|
|
1553
|
-
});
|
|
1554
|
-
Object.assign(contents, doc);
|
|
1555
|
-
const exception = new ResourceInUseException({
|
|
1556
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1557
|
-
...contents,
|
|
1558
|
-
});
|
|
1559
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1560
|
-
};
|
|
1561
|
-
const de_ResourceLimitExceededExceptionRes = async (parsedOutput, context) => {
|
|
1562
|
-
const contents = smithyClient.map({});
|
|
1563
|
-
const data = parsedOutput.body;
|
|
1564
|
-
const doc = smithyClient.take(data, {
|
|
1565
|
-
message: smithyClient.expectString,
|
|
1566
|
-
parameterName: smithyClient.expectString,
|
|
1567
|
-
});
|
|
1568
|
-
Object.assign(contents, doc);
|
|
1569
|
-
const exception = new ResourceLimitExceededException({
|
|
1570
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1571
|
-
...contents,
|
|
1572
|
-
});
|
|
1573
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1574
|
-
};
|
|
1575
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1576
|
-
const contents = smithyClient.map({});
|
|
1577
|
-
const data = parsedOutput.body;
|
|
1578
|
-
const doc = smithyClient.take(data, {
|
|
1579
|
-
message: smithyClient.expectString,
|
|
1580
|
-
});
|
|
1581
|
-
Object.assign(contents, doc);
|
|
1582
|
-
const exception = new ResourceNotFoundException({
|
|
1583
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1584
|
-
...contents,
|
|
1585
|
-
});
|
|
1586
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1587
|
-
};
|
|
1588
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1589
|
-
const contents = smithyClient.map({});
|
|
1590
|
-
const data = parsedOutput.body;
|
|
1591
|
-
const doc = smithyClient.take(data, {
|
|
1592
|
-
message: smithyClient.expectString,
|
|
1593
|
-
parameterName: smithyClient.expectString,
|
|
1594
|
-
});
|
|
1595
|
-
Object.assign(contents, doc);
|
|
1596
|
-
const exception = new ServiceQuotaExceededException({
|
|
1597
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1598
|
-
...contents,
|
|
1599
|
-
});
|
|
1600
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1601
|
-
};
|
|
1602
|
-
const se_AntennaDownlinkConfig = (input, context) => {
|
|
1603
|
-
return smithyClient.take(input, {
|
|
1604
|
-
spectrumConfig: (_) => se_SpectrumConfig(_),
|
|
1605
|
-
});
|
|
1606
|
-
};
|
|
1607
|
-
const se_AntennaDownlinkDemodDecodeConfig = (input, context) => {
|
|
1608
|
-
return smithyClient.take(input, {
|
|
1609
|
-
decodeConfig: smithyClient._json,
|
|
1610
|
-
demodulationConfig: smithyClient._json,
|
|
1611
|
-
spectrumConfig: (_) => se_SpectrumConfig(_),
|
|
1612
|
-
});
|
|
1613
|
-
};
|
|
1614
|
-
const se_AntennaUplinkConfig = (input, context) => {
|
|
1615
|
-
return smithyClient.take(input, {
|
|
1616
|
-
spectrumConfig: (_) => se_UplinkSpectrumConfig(_),
|
|
1617
|
-
targetEirp: (_) => se_Eirp(_),
|
|
1618
|
-
transmitDisabled: [],
|
|
1619
|
-
});
|
|
1620
|
-
};
|
|
1621
|
-
const se_AzElEphemeris = (input, context) => {
|
|
1622
|
-
return smithyClient.take(input, {
|
|
1623
|
-
data: (_) => se_AzElSegmentsData(_),
|
|
1624
|
-
groundStation: [],
|
|
1625
|
-
});
|
|
1626
|
-
};
|
|
1627
|
-
const se_AzElSegment = (input, context) => {
|
|
1628
|
-
return smithyClient.take(input, {
|
|
1629
|
-
azElList: (_) => se_TimeAzElList(_),
|
|
1630
|
-
referenceEpoch: smithyClient.serializeDateTime,
|
|
1631
|
-
validTimeRange: (_) => se_ISO8601TimeRange(_),
|
|
1632
|
-
});
|
|
1633
|
-
};
|
|
1634
|
-
const se_AzElSegmentList = (input, context) => {
|
|
1635
|
-
return input
|
|
1636
|
-
.filter((e) => e != null)
|
|
1637
|
-
.map((entry) => {
|
|
1638
|
-
return se_AzElSegment(entry);
|
|
1639
|
-
});
|
|
1640
|
-
};
|
|
1641
|
-
const se_AzElSegments = (input, context) => {
|
|
1642
|
-
return smithyClient.take(input, {
|
|
1643
|
-
angleUnit: [],
|
|
1644
|
-
azElSegmentList: (_) => se_AzElSegmentList(_),
|
|
1645
|
-
});
|
|
1646
|
-
};
|
|
1647
|
-
const se_AzElSegmentsData = (input, context) => {
|
|
1648
|
-
return exports.AzElSegmentsData.visit(input, {
|
|
1649
|
-
azElData: (value) => ({ azElData: se_AzElSegments(value) }),
|
|
1650
|
-
s3Object: (value) => ({ s3Object: smithyClient._json(value) }),
|
|
1651
|
-
_: (name, value) => ({ [name]: value }),
|
|
1652
|
-
});
|
|
1653
|
-
};
|
|
1654
|
-
const se_ConfigTypeData = (input, context) => {
|
|
1655
|
-
return exports.ConfigTypeData.visit(input, {
|
|
1656
|
-
antennaDownlinkConfig: (value) => ({ antennaDownlinkConfig: se_AntennaDownlinkConfig(value) }),
|
|
1657
|
-
antennaDownlinkDemodDecodeConfig: (value) => ({
|
|
1658
|
-
antennaDownlinkDemodDecodeConfig: se_AntennaDownlinkDemodDecodeConfig(value),
|
|
1659
|
-
}),
|
|
1660
|
-
antennaUplinkConfig: (value) => ({ antennaUplinkConfig: se_AntennaUplinkConfig(value) }),
|
|
1661
|
-
dataflowEndpointConfig: (value) => ({ dataflowEndpointConfig: smithyClient._json(value) }),
|
|
1662
|
-
s3RecordingConfig: (value) => ({ s3RecordingConfig: smithyClient._json(value) }),
|
|
1663
|
-
trackingConfig: (value) => ({ trackingConfig: smithyClient._json(value) }),
|
|
1664
|
-
uplinkEchoConfig: (value) => ({ uplinkEchoConfig: smithyClient._json(value) }),
|
|
1665
|
-
_: (name, value) => ({ [name]: value }),
|
|
1666
|
-
});
|
|
1667
|
-
};
|
|
1668
|
-
const se_Eirp = (input, context) => {
|
|
1669
|
-
return smithyClient.take(input, {
|
|
1670
|
-
units: [],
|
|
1671
|
-
value: smithyClient.serializeFloat,
|
|
1672
|
-
});
|
|
1673
|
-
};
|
|
1674
|
-
const se_EphemerisData = (input, context) => {
|
|
1675
|
-
return exports.EphemerisData.visit(input, {
|
|
1676
|
-
azEl: (value) => ({ azEl: se_AzElEphemeris(value) }),
|
|
1677
|
-
oem: (value) => ({ oem: smithyClient._json(value) }),
|
|
1678
|
-
tle: (value) => ({ tle: se_TLEEphemeris(value) }),
|
|
1679
|
-
_: (name, value) => ({ [name]: value }),
|
|
1680
|
-
});
|
|
1681
|
-
};
|
|
1682
|
-
const se_Frequency = (input, context) => {
|
|
1683
|
-
return smithyClient.take(input, {
|
|
1684
|
-
units: [],
|
|
1685
|
-
value: smithyClient.serializeFloat,
|
|
1686
|
-
});
|
|
1687
|
-
};
|
|
1688
|
-
const se_FrequencyBandwidth = (input, context) => {
|
|
1689
|
-
return smithyClient.take(input, {
|
|
1690
|
-
units: [],
|
|
1691
|
-
value: smithyClient.serializeFloat,
|
|
1692
|
-
});
|
|
1693
|
-
};
|
|
1694
|
-
const se_ISO8601TimeRange = (input, context) => {
|
|
1695
|
-
return smithyClient.take(input, {
|
|
1696
|
-
endTime: smithyClient.serializeDateTime,
|
|
1697
|
-
startTime: smithyClient.serializeDateTime,
|
|
1698
|
-
});
|
|
1699
|
-
};
|
|
1700
|
-
const se_SpectrumConfig = (input, context) => {
|
|
1701
|
-
return smithyClient.take(input, {
|
|
1702
|
-
bandwidth: (_) => se_FrequencyBandwidth(_),
|
|
1703
|
-
centerFrequency: (_) => se_Frequency(_),
|
|
1704
|
-
polarization: [],
|
|
1705
|
-
});
|
|
1706
|
-
};
|
|
1707
|
-
const se_TimeAzEl = (input, context) => {
|
|
1708
|
-
return smithyClient.take(input, {
|
|
1709
|
-
az: smithyClient.serializeFloat,
|
|
1710
|
-
dt: smithyClient.serializeFloat,
|
|
1711
|
-
el: smithyClient.serializeFloat,
|
|
1712
|
-
});
|
|
1713
|
-
};
|
|
1714
|
-
const se_TimeAzElList = (input, context) => {
|
|
1715
|
-
return input
|
|
1716
|
-
.filter((e) => e != null)
|
|
1717
|
-
.map((entry) => {
|
|
1718
|
-
return se_TimeAzEl(entry);
|
|
1719
|
-
});
|
|
1720
|
-
};
|
|
1721
|
-
const se_TimeRange = (input, context) => {
|
|
1722
|
-
return smithyClient.take(input, {
|
|
1723
|
-
endTime: (_) => _.getTime() / 1_000,
|
|
1724
|
-
startTime: (_) => _.getTime() / 1_000,
|
|
1725
|
-
});
|
|
1726
|
-
};
|
|
1727
|
-
const se_TLEData = (input, context) => {
|
|
1728
|
-
return smithyClient.take(input, {
|
|
1729
|
-
tleLine1: [],
|
|
1730
|
-
tleLine2: [],
|
|
1731
|
-
validTimeRange: (_) => se_TimeRange(_),
|
|
1732
|
-
});
|
|
1733
|
-
};
|
|
1734
|
-
const se_TLEDataList = (input, context) => {
|
|
1735
|
-
return input
|
|
1736
|
-
.filter((e) => e != null)
|
|
1737
|
-
.map((entry) => {
|
|
1738
|
-
return se_TLEData(entry);
|
|
1739
|
-
});
|
|
1740
|
-
};
|
|
1741
|
-
const se_TLEEphemeris = (input, context) => {
|
|
1742
|
-
return smithyClient.take(input, {
|
|
1743
|
-
s3Object: smithyClient._json,
|
|
1744
|
-
tleData: (_) => se_TLEDataList(_),
|
|
1745
|
-
});
|
|
1746
|
-
};
|
|
1747
|
-
const se_UplinkSpectrumConfig = (input, context) => {
|
|
1748
|
-
return smithyClient.take(input, {
|
|
1749
|
-
centerFrequency: (_) => se_Frequency(_),
|
|
1750
|
-
polarization: [],
|
|
1751
|
-
});
|
|
1752
|
-
};
|
|
1753
|
-
const de_AntennaDownlinkConfig = (output, context) => {
|
|
1754
|
-
return smithyClient.take(output, {
|
|
1755
|
-
spectrumConfig: (_) => de_SpectrumConfig(_),
|
|
1756
|
-
});
|
|
1757
|
-
};
|
|
1758
|
-
const de_AntennaDownlinkDemodDecodeConfig = (output, context) => {
|
|
1759
|
-
return smithyClient.take(output, {
|
|
1760
|
-
decodeConfig: smithyClient._json,
|
|
1761
|
-
demodulationConfig: smithyClient._json,
|
|
1762
|
-
spectrumConfig: (_) => de_SpectrumConfig(_),
|
|
1763
|
-
});
|
|
1764
|
-
};
|
|
1765
|
-
const de_AntennaUplinkConfig = (output, context) => {
|
|
1766
|
-
return smithyClient.take(output, {
|
|
1767
|
-
spectrumConfig: (_) => de_UplinkSpectrumConfig(_),
|
|
1768
|
-
targetEirp: (_) => de_Eirp(_),
|
|
1769
|
-
transmitDisabled: smithyClient.expectBoolean,
|
|
1770
|
-
});
|
|
1771
|
-
};
|
|
1772
|
-
const de_ConfigTypeData = (output, context) => {
|
|
1773
|
-
if (output.antennaDownlinkConfig != null) {
|
|
1774
|
-
return {
|
|
1775
|
-
antennaDownlinkConfig: de_AntennaDownlinkConfig(output.antennaDownlinkConfig),
|
|
1776
|
-
};
|
|
1777
|
-
}
|
|
1778
|
-
if (output.antennaDownlinkDemodDecodeConfig != null) {
|
|
1779
|
-
return {
|
|
1780
|
-
antennaDownlinkDemodDecodeConfig: de_AntennaDownlinkDemodDecodeConfig(output.antennaDownlinkDemodDecodeConfig),
|
|
1781
|
-
};
|
|
1782
|
-
}
|
|
1783
|
-
if (output.antennaUplinkConfig != null) {
|
|
1784
|
-
return {
|
|
1785
|
-
antennaUplinkConfig: de_AntennaUplinkConfig(output.antennaUplinkConfig),
|
|
1786
|
-
};
|
|
1787
|
-
}
|
|
1788
|
-
if (output.dataflowEndpointConfig != null) {
|
|
1789
|
-
return {
|
|
1790
|
-
dataflowEndpointConfig: smithyClient._json(output.dataflowEndpointConfig),
|
|
1791
|
-
};
|
|
1792
|
-
}
|
|
1793
|
-
if (output.s3RecordingConfig != null) {
|
|
1794
|
-
return {
|
|
1795
|
-
s3RecordingConfig: smithyClient._json(output.s3RecordingConfig),
|
|
1796
|
-
};
|
|
1797
|
-
}
|
|
1798
|
-
if (output.trackingConfig != null) {
|
|
1799
|
-
return {
|
|
1800
|
-
trackingConfig: smithyClient._json(output.trackingConfig),
|
|
1801
|
-
};
|
|
1802
|
-
}
|
|
1803
|
-
if (output.uplinkEchoConfig != null) {
|
|
1804
|
-
return {
|
|
1805
|
-
uplinkEchoConfig: smithyClient._json(output.uplinkEchoConfig),
|
|
1806
|
-
};
|
|
1807
|
-
}
|
|
1808
|
-
return { $unknown: Object.entries(output)[0] };
|
|
1809
|
-
};
|
|
1810
|
-
const de_ContactData = (output, context) => {
|
|
1811
|
-
return smithyClient.take(output, {
|
|
1812
|
-
contactId: smithyClient.expectString,
|
|
1813
|
-
contactStatus: smithyClient.expectString,
|
|
1814
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1815
|
-
ephemeris: smithyClient._json,
|
|
1816
|
-
errorMessage: smithyClient.expectString,
|
|
1817
|
-
groundStation: smithyClient.expectString,
|
|
1818
|
-
maximumElevation: (_) => de_Elevation(_),
|
|
1819
|
-
missionProfileArn: smithyClient.expectString,
|
|
1820
|
-
postPassEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1821
|
-
prePassStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1822
|
-
region: smithyClient.expectString,
|
|
1823
|
-
satelliteArn: smithyClient.expectString,
|
|
1824
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1825
|
-
tags: smithyClient._json,
|
|
1826
|
-
visibilityEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1827
|
-
visibilityStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1828
|
-
});
|
|
1829
|
-
};
|
|
1830
|
-
const de_ContactList = (output, context) => {
|
|
1831
|
-
const retVal = (output || [])
|
|
1832
|
-
.filter((e) => e != null)
|
|
1833
|
-
.map((entry) => {
|
|
1834
|
-
return de_ContactData(entry);
|
|
1835
|
-
});
|
|
1836
|
-
return retVal;
|
|
1837
|
-
};
|
|
1838
|
-
const de_DataflowList = (output, context) => {
|
|
1839
|
-
const retVal = (output || [])
|
|
1840
|
-
.filter((e) => e != null)
|
|
1841
|
-
.map((entry) => {
|
|
1842
|
-
return smithyClient._json(entry);
|
|
1843
|
-
});
|
|
1844
|
-
return retVal;
|
|
1845
|
-
};
|
|
1846
|
-
const de_Eirp = (output, context) => {
|
|
1847
|
-
return smithyClient.take(output, {
|
|
1848
|
-
units: smithyClient.expectString,
|
|
1849
|
-
value: smithyClient.limitedParseDouble,
|
|
1850
|
-
});
|
|
1851
|
-
};
|
|
1852
|
-
const de_Elevation = (output, context) => {
|
|
1853
|
-
return smithyClient.take(output, {
|
|
1854
|
-
unit: smithyClient.expectString,
|
|
1855
|
-
value: smithyClient.limitedParseDouble,
|
|
1856
|
-
});
|
|
1857
|
-
};
|
|
1858
|
-
const de_EphemeridesList = (output, context) => {
|
|
1859
|
-
const retVal = (output || [])
|
|
1860
|
-
.filter((e) => e != null)
|
|
1861
|
-
.map((entry) => {
|
|
1862
|
-
return de_EphemerisItem(entry);
|
|
1863
|
-
});
|
|
1864
|
-
return retVal;
|
|
1865
|
-
};
|
|
1866
|
-
const de_EphemerisItem = (output, context) => {
|
|
1867
|
-
return smithyClient.take(output, {
|
|
1868
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1869
|
-
enabled: smithyClient.expectBoolean,
|
|
1870
|
-
ephemerisId: smithyClient.expectString,
|
|
1871
|
-
ephemerisType: smithyClient.expectString,
|
|
1872
|
-
name: smithyClient.expectString,
|
|
1873
|
-
priority: smithyClient.expectInt32,
|
|
1874
|
-
sourceS3Object: smithyClient._json,
|
|
1875
|
-
status: smithyClient.expectString,
|
|
1876
|
-
});
|
|
1877
|
-
};
|
|
1878
|
-
const de_EphemerisMetaData = (output, context) => {
|
|
1879
|
-
return smithyClient.take(output, {
|
|
1880
|
-
ephemerisId: smithyClient.expectString,
|
|
1881
|
-
epoch: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1882
|
-
name: smithyClient.expectString,
|
|
1883
|
-
source: smithyClient.expectString,
|
|
1884
|
-
});
|
|
1885
|
-
};
|
|
1886
|
-
const de_Frequency = (output, context) => {
|
|
1887
|
-
return smithyClient.take(output, {
|
|
1888
|
-
units: smithyClient.expectString,
|
|
1889
|
-
value: smithyClient.limitedParseDouble,
|
|
1890
|
-
});
|
|
1891
|
-
};
|
|
1892
|
-
const de_FrequencyBandwidth = (output, context) => {
|
|
1893
|
-
return smithyClient.take(output, {
|
|
1894
|
-
units: smithyClient.expectString,
|
|
1895
|
-
value: smithyClient.limitedParseDouble,
|
|
1896
|
-
});
|
|
1897
|
-
};
|
|
1898
|
-
const de_SatelliteList = (output, context) => {
|
|
1899
|
-
const retVal = (output || [])
|
|
1900
|
-
.filter((e) => e != null)
|
|
1901
|
-
.map((entry) => {
|
|
1902
|
-
return de_SatelliteListItem(entry);
|
|
1903
|
-
});
|
|
1904
|
-
return retVal;
|
|
1905
|
-
};
|
|
1906
|
-
const de_SatelliteListItem = (output, context) => {
|
|
1907
|
-
return smithyClient.take(output, {
|
|
1908
|
-
currentEphemeris: (_) => de_EphemerisMetaData(_),
|
|
1909
|
-
groundStations: smithyClient._json,
|
|
1910
|
-
noradSatelliteID: smithyClient.expectInt32,
|
|
1911
|
-
satelliteArn: smithyClient.expectString,
|
|
1912
|
-
satelliteId: smithyClient.expectString,
|
|
1913
|
-
});
|
|
1914
|
-
};
|
|
1915
|
-
const de_SpectrumConfig = (output, context) => {
|
|
1916
|
-
return smithyClient.take(output, {
|
|
1917
|
-
bandwidth: (_) => de_FrequencyBandwidth(_),
|
|
1918
|
-
centerFrequency: (_) => de_Frequency(_),
|
|
1919
|
-
polarization: smithyClient.expectString,
|
|
1920
|
-
});
|
|
1921
|
-
};
|
|
1922
|
-
const de_UplinkSpectrumConfig = (output, context) => {
|
|
1923
|
-
return smithyClient.take(output, {
|
|
1924
|
-
centerFrequency: (_) => de_Frequency(_),
|
|
1925
|
-
polarization: smithyClient.expectString,
|
|
1926
|
-
});
|
|
1927
|
-
};
|
|
1928
|
-
const deserializeMetadata = (output) => ({
|
|
1929
|
-
httpStatusCode: output.statusCode,
|
|
1930
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1931
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1932
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1933
|
-
});
|
|
468
|
+
const _AD = "AgentDetails";
|
|
469
|
+
const _ADC = "AntennaDownlinkConfig";
|
|
470
|
+
const _ADDD = "AntennaDemodDecodeDetails";
|
|
471
|
+
const _ADDDC = "AntennaDownlinkDemodDecodeConfig";
|
|
472
|
+
const _AEE = "AzElEphemeris";
|
|
473
|
+
const _AEEF = "AzElEphemerisFilter";
|
|
474
|
+
const _AEPTS = "AzElProgramTrackSettings";
|
|
475
|
+
const _AES = "AzElSegment";
|
|
476
|
+
const _AESD = "AzElSegmentsData";
|
|
477
|
+
const _AESL = "AzElSegmentList";
|
|
478
|
+
const _AESz = "AzElSegments";
|
|
479
|
+
const _AGSAE = "AwsGroundStationAgentEndpoint";
|
|
480
|
+
const _AS = "AggregateStatus";
|
|
481
|
+
const _AUC = "AntennaUplinkConfig";
|
|
482
|
+
const _CC = "CancelContact";
|
|
483
|
+
const _CCR = "CancelContactRequest";
|
|
484
|
+
const _CCRr = "CreateConfigRequest";
|
|
485
|
+
const _CCr = "CreateConfig";
|
|
486
|
+
const _CD = "ConnectionDetails";
|
|
487
|
+
const _CDEG = "CreateDataflowEndpointGroup";
|
|
488
|
+
const _CDEGR = "CreateDataflowEndpointGroupRequest";
|
|
489
|
+
const _CDEGV = "CreateDataflowEndpointGroupV2";
|
|
490
|
+
const _CDEGVR = "CreateDataflowEndpointGroupV2Request";
|
|
491
|
+
const _CDEGVRr = "CreateDataflowEndpointGroupV2Response";
|
|
492
|
+
const _CDo = "ContactData";
|
|
493
|
+
const _CDon = "ConfigDetails";
|
|
494
|
+
const _CE = "CreateEphemeris";
|
|
495
|
+
const _CED = "CreateEndpointDetails";
|
|
496
|
+
const _CEDL = "CreateEndpointDetailsList";
|
|
497
|
+
const _CER = "CreateEphemerisRequest";
|
|
498
|
+
const _CIR = "ConfigIdResponse";
|
|
499
|
+
const _CIRo = "ContactIdResponse";
|
|
500
|
+
const _CL = "ConfigList";
|
|
501
|
+
const _CLI = "ConfigListItem";
|
|
502
|
+
const _CLo = "ContactList";
|
|
503
|
+
const _CMP = "CreateMissionProfile";
|
|
504
|
+
const _CMPR = "CreateMissionProfileRequest";
|
|
505
|
+
const _CSD = "ComponentStatusData";
|
|
506
|
+
const _CSL = "ComponentStatusList";
|
|
507
|
+
const _CTD = "ConfigTypeData";
|
|
508
|
+
const _CV = "ComponentVersion";
|
|
509
|
+
const _CVL = "ComponentVersionList";
|
|
510
|
+
const _D = "Destination";
|
|
511
|
+
const _DAGSAE = "DownlinkAwsGroundStationAgentEndpoint";
|
|
512
|
+
const _DAGSAED = "DownlinkAwsGroundStationAgentEndpointDetails";
|
|
513
|
+
const _DC = "DecodeConfig";
|
|
514
|
+
const _DCD = "DownlinkConnectionDetails";
|
|
515
|
+
const _DCR = "DeleteConfigRequest";
|
|
516
|
+
const _DCRe = "DescribeContactRequest";
|
|
517
|
+
const _DCRes = "DescribeContactResponse";
|
|
518
|
+
const _DCe = "DemodulationConfig";
|
|
519
|
+
const _DCel = "DeleteConfig";
|
|
520
|
+
const _DCes = "DescribeContact";
|
|
521
|
+
const _DD = "DataflowDetail";
|
|
522
|
+
const _DDD = "DownlinkDataflowDetails";
|
|
523
|
+
const _DDEG = "DeleteDataflowEndpointGroup";
|
|
524
|
+
const _DDEGR = "DeleteDataflowEndpointGroupRequest";
|
|
525
|
+
const _DDi = "DiscoveryData";
|
|
526
|
+
const _DE = "DataflowEndpoint";
|
|
527
|
+
const _DEC = "DataflowEndpointConfig";
|
|
528
|
+
const _DEGIR = "DataflowEndpointGroupIdResponse";
|
|
529
|
+
const _DEGL = "DataflowEndpointGroupList";
|
|
530
|
+
const _DEL = "DataflowEdgeList";
|
|
531
|
+
const _DELI = "DataflowEndpointListItem";
|
|
532
|
+
const _DER = "DeleteEphemerisRequest";
|
|
533
|
+
const _DERe = "DescribeEphemerisRequest";
|
|
534
|
+
const _DERes = "DescribeEphemerisResponse";
|
|
535
|
+
const _DEe = "DependencyException";
|
|
536
|
+
const _DEel = "DeleteEphemeris";
|
|
537
|
+
const _DEes = "DescribeEphemeris";
|
|
538
|
+
const _DL = "DataflowList";
|
|
539
|
+
const _DMP = "DeleteMissionProfile";
|
|
540
|
+
const _DMPR = "DeleteMissionProfileRequest";
|
|
541
|
+
const _E = "Eirp";
|
|
542
|
+
const _ED = "EndpointDetails";
|
|
543
|
+
const _EDL = "EndpointDetailsList";
|
|
544
|
+
const _EDp = "EphemerisDescription";
|
|
545
|
+
const _EDph = "EphemerisData";
|
|
546
|
+
const _EER = "EphemerisErrorReason";
|
|
547
|
+
const _EERL = "EphemerisErrorReasonList";
|
|
548
|
+
const _EF = "EphemerisFilter";
|
|
549
|
+
const _EI = "EphemerisItem";
|
|
550
|
+
const _EIR = "EphemerisIdResponse";
|
|
551
|
+
const _EL = "EphemeridesList";
|
|
552
|
+
const _EMD = "EphemerisMetaData";
|
|
553
|
+
const _ERD = "EphemerisResponseData";
|
|
554
|
+
const _ETD = "EphemerisTypeDescription";
|
|
555
|
+
const _El = "Elevation";
|
|
556
|
+
const _F = "Frequency";
|
|
557
|
+
const _FB = "FrequencyBandwidth";
|
|
558
|
+
const _GAC = "GetAgentConfiguration";
|
|
559
|
+
const _GACR = "GetAgentConfigurationRequest";
|
|
560
|
+
const _GACRe = "GetAgentConfigurationResponse";
|
|
561
|
+
const _GATRU = "GetAgentTaskResponseUrl";
|
|
562
|
+
const _GATRUR = "GetAgentTaskResponseUrlRequest";
|
|
563
|
+
const _GATRURe = "GetAgentTaskResponseUrlResponse";
|
|
564
|
+
const _GC = "GetConfig";
|
|
565
|
+
const _GCR = "GetConfigRequest";
|
|
566
|
+
const _GCRe = "GetConfigResponse";
|
|
567
|
+
const _GDEG = "GetDataflowEndpointGroup";
|
|
568
|
+
const _GDEGR = "GetDataflowEndpointGroupRequest";
|
|
569
|
+
const _GDEGRe = "GetDataflowEndpointGroupResponse";
|
|
570
|
+
const _GMP = "GetMissionProfile";
|
|
571
|
+
const _GMPR = "GetMissionProfileRequest";
|
|
572
|
+
const _GMPRe = "GetMissionProfileResponse";
|
|
573
|
+
const _GMU = "GetMinuteUsage";
|
|
574
|
+
const _GMUR = "GetMinuteUsageRequest";
|
|
575
|
+
const _GMURe = "GetMinuteUsageResponse";
|
|
576
|
+
const _GS = "GetSatellite";
|
|
577
|
+
const _GSD = "GroundStationData";
|
|
578
|
+
const _GSL = "GroundStationList";
|
|
579
|
+
const _GSR = "GetSatelliteRequest";
|
|
580
|
+
const _GSRe = "GetSatelliteResponse";
|
|
581
|
+
const _IPE = "InvalidParameterException";
|
|
582
|
+
const _IR = "IntegerRange";
|
|
583
|
+
const _ISOTR = "ISO8601TimeRange";
|
|
584
|
+
const _KK = "KmsKey";
|
|
585
|
+
const _LC = "ListConfigs";
|
|
586
|
+
const _LCR = "ListConfigsRequest";
|
|
587
|
+
const _LCRi = "ListConfigsResponse";
|
|
588
|
+
const _LCRis = "ListContactsRequest";
|
|
589
|
+
const _LCRist = "ListContactsResponse";
|
|
590
|
+
const _LCi = "ListContacts";
|
|
591
|
+
const _LDEG = "ListDataflowEndpointGroups";
|
|
592
|
+
const _LDEGR = "ListDataflowEndpointGroupsRequest";
|
|
593
|
+
const _LDEGRi = "ListDataflowEndpointGroupsResponse";
|
|
594
|
+
const _LE = "ListEphemerides";
|
|
595
|
+
const _LER = "ListEphemeridesRequest";
|
|
596
|
+
const _LERi = "ListEphemeridesResponse";
|
|
597
|
+
const _LGS = "ListGroundStations";
|
|
598
|
+
const _LGSR = "ListGroundStationsRequest";
|
|
599
|
+
const _LGSRi = "ListGroundStationsResponse";
|
|
600
|
+
const _LMP = "ListMissionProfiles";
|
|
601
|
+
const _LMPR = "ListMissionProfilesRequest";
|
|
602
|
+
const _LMPRi = "ListMissionProfilesResponse";
|
|
603
|
+
const _LS = "ListSatellites";
|
|
604
|
+
const _LSR = "ListSatellitesRequest";
|
|
605
|
+
const _LSRi = "ListSatellitesResponse";
|
|
606
|
+
const _LTFR = "ListTagsForResource";
|
|
607
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
608
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
609
|
+
const _MPIR = "MissionProfileIdResponse";
|
|
610
|
+
const _MPL = "MissionProfileList";
|
|
611
|
+
const _MPLI = "MissionProfileListItem";
|
|
612
|
+
const _OEME = "OEMEphemeris";
|
|
613
|
+
const _PTS = "ProgramTrackSettings";
|
|
614
|
+
const _RA = "RegisterAgent";
|
|
615
|
+
const _RAR = "RegisterAgentRequest";
|
|
616
|
+
const _RARe = "RegisterAgentResponse";
|
|
617
|
+
const _RC = "ReserveContact";
|
|
618
|
+
const _RCD = "RangedConnectionDetails";
|
|
619
|
+
const _RCR = "ReserveContactRequest";
|
|
620
|
+
const _RIUE = "ResourceInUseException";
|
|
621
|
+
const _RLEE = "ResourceLimitExceededException";
|
|
622
|
+
const _RNFE = "ResourceNotFoundException";
|
|
623
|
+
const _RSA = "RangedSocketAddress";
|
|
624
|
+
const _S = "Source";
|
|
625
|
+
const _SA = "SocketAddress";
|
|
626
|
+
const _SC = "SpectrumConfig";
|
|
627
|
+
const _SD = "SecurityDetails";
|
|
628
|
+
const _SL = "SatelliteList";
|
|
629
|
+
const _SLI = "SatelliteListItem";
|
|
630
|
+
const _SO = "S3Object";
|
|
631
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
632
|
+
const _SRC = "S3RecordingConfig";
|
|
633
|
+
const _SRD = "S3RecordingDetails";
|
|
634
|
+
const _TAE = "TimeAzEl";
|
|
635
|
+
const _TAEL = "TimeAzElList";
|
|
636
|
+
const _TC = "TrackingConfig";
|
|
637
|
+
const _TLED = "TLEData";
|
|
638
|
+
const _TLEDL = "TLEDataList";
|
|
639
|
+
const _TLEE = "TLEEphemeris";
|
|
640
|
+
const _TO = "TrackingOverrides";
|
|
641
|
+
const _TR = "TimeRange";
|
|
642
|
+
const _TRR = "TagResourceRequest";
|
|
643
|
+
const _TRRa = "TagResourceResponse";
|
|
644
|
+
const _TRa = "TagResource";
|
|
645
|
+
const _UAGSAE = "UplinkAwsGroundStationAgentEndpoint";
|
|
646
|
+
const _UAGSAED = "UplinkAwsGroundStationAgentEndpointDetails";
|
|
647
|
+
const _UAS = "UpdateAgentStatus";
|
|
648
|
+
const _UASR = "UpdateAgentStatusRequest";
|
|
649
|
+
const _UASRp = "UpdateAgentStatusResponse";
|
|
650
|
+
const _UC = "UpdateConfig";
|
|
651
|
+
const _UCD = "UplinkConnectionDetails";
|
|
652
|
+
const _UCR = "UpdateConfigRequest";
|
|
653
|
+
const _UDD = "UplinkDataflowDetails";
|
|
654
|
+
const _UE = "UpdateEphemeris";
|
|
655
|
+
const _UEC = "UplinkEchoConfig";
|
|
656
|
+
const _UER = "UpdateEphemerisRequest";
|
|
657
|
+
const _UMP = "UpdateMissionProfile";
|
|
658
|
+
const _UMPR = "UpdateMissionProfileRequest";
|
|
659
|
+
const _UR = "UntagResource";
|
|
660
|
+
const _URR = "UntagResourceRequest";
|
|
661
|
+
const _URRn = "UntagResourceResponse";
|
|
662
|
+
const _USC = "UplinkSpectrumConfig";
|
|
663
|
+
const _a = "address";
|
|
664
|
+
const _aCC = "agentCpuCores";
|
|
665
|
+
const _aCD = "agentConnectionDetails";
|
|
666
|
+
const _aD = "agentDetails";
|
|
667
|
+
const _aDC = "antennaDownlinkConfig";
|
|
668
|
+
const _aDDD = "antennaDemodDecodeDetails";
|
|
669
|
+
const _aDDDC = "antennaDownlinkDemodDecodeConfig";
|
|
670
|
+
const _aE = "azEl";
|
|
671
|
+
const _aED = "azElData";
|
|
672
|
+
const _aEL = "azElList";
|
|
673
|
+
const _aESL = "azElSegmentList";
|
|
674
|
+
const _aGSAE = "awsGroundStationAgentEndpoint";
|
|
675
|
+
const _aI = "agentId";
|
|
676
|
+
const _aIAPA = "agentIpAndPortAddress";
|
|
677
|
+
const _aR = "auditResults";
|
|
678
|
+
const _aS = "agentStatus";
|
|
679
|
+
const _aSg = "aggregateStatus";
|
|
680
|
+
const _aU = "angleUnit";
|
|
681
|
+
const _aUC = "antennaUplinkConfig";
|
|
682
|
+
const _aUCA = "antennaUplinkConfigArn";
|
|
683
|
+
const _aV = "agentVersion";
|
|
684
|
+
const _au = "autotrack";
|
|
685
|
+
const _az = "az";
|
|
686
|
+
const _b = "bucket";
|
|
687
|
+
const _bA = "bucketArn";
|
|
688
|
+
const _bR = "bytesReceived";
|
|
689
|
+
const _bS = "bytesSent";
|
|
690
|
+
const _ba = "bandwidth";
|
|
691
|
+
const _c = "client";
|
|
692
|
+
const _cA = "capabilityArn";
|
|
693
|
+
const _cAa = "capabilityArns";
|
|
694
|
+
const _cAo = "configArn";
|
|
695
|
+
const _cD = "configData";
|
|
696
|
+
const _cDo = "configDetails";
|
|
697
|
+
const _cE = "currentEphemeris";
|
|
698
|
+
const _cF = "centerFrequency";
|
|
699
|
+
const _cI = "contactId";
|
|
700
|
+
const _cIo = "configId";
|
|
701
|
+
const _cL = "configList";
|
|
702
|
+
const _cLo = "contactList";
|
|
703
|
+
const _cPPDS = "contactPrePassDurationSeconds";
|
|
704
|
+
const _cPPDSo = "contactPostPassDurationSeconds";
|
|
705
|
+
const _cS = "contactStatus";
|
|
706
|
+
const _cSo = "componentStatuses";
|
|
707
|
+
const _cT = "componentType";
|
|
708
|
+
const _cTo = "configType";
|
|
709
|
+
const _cTr = "creationTime";
|
|
710
|
+
const _cV = "componentVersions";
|
|
711
|
+
const _d = "data";
|
|
712
|
+
const _dAGSAE = "downlinkAwsGroundStationAgentEndpoint";
|
|
713
|
+
const _dC = "demodulationConfig";
|
|
714
|
+
const _dCe = "decodeConfig";
|
|
715
|
+
const _dD = "dataflowDetails";
|
|
716
|
+
const _dDR = "dataflowDestinationRegion";
|
|
717
|
+
const _dDi = "discoveryData";
|
|
718
|
+
const _dE = "dataflowEdges";
|
|
719
|
+
const _dEC = "dataflowEndpointConfig";
|
|
720
|
+
const _dEGA = "dataflowEndpointGroupArn";
|
|
721
|
+
const _dEGI = "dataflowEndpointGroupId";
|
|
722
|
+
const _dEGL = "dataflowEndpointGroupList";
|
|
723
|
+
const _dEN = "dataflowEndpointName";
|
|
724
|
+
const _dER = "dataflowEndpointRegion";
|
|
725
|
+
const _dI = "dataflowId";
|
|
726
|
+
const _dL = "dataflowList";
|
|
727
|
+
const _dSR = "dataflowSourceRegion";
|
|
728
|
+
const _de = "destination";
|
|
729
|
+
const _dt = "dt";
|
|
730
|
+
const _e = "ephemeris";
|
|
731
|
+
const _eA = "egressAddress";
|
|
732
|
+
const _eAAP = "egressAddressAndPort";
|
|
733
|
+
const _eC = "errorCode";
|
|
734
|
+
const _eD = "endpointDetails";
|
|
735
|
+
const _eDn = "endpointsDetails";
|
|
736
|
+
const _eDp = "ephemerisData";
|
|
737
|
+
const _eI = "ephemerisId";
|
|
738
|
+
const _eM = "errorMessage";
|
|
739
|
+
const _eMR = "estimatedMinutesRemaining";
|
|
740
|
+
const _eR = "errorReasons";
|
|
741
|
+
const _eT = "endTime";
|
|
742
|
+
const _eTp = "ephemerisType";
|
|
743
|
+
const _eTx = "expirationTime";
|
|
744
|
+
const _el = "el";
|
|
745
|
+
const _en = "endpoints";
|
|
746
|
+
const _ena = "enabled";
|
|
747
|
+
const _end = "endpoint";
|
|
748
|
+
const _ep = "epoch";
|
|
749
|
+
const _eph = "ephemerides";
|
|
750
|
+
const _er = "error";
|
|
751
|
+
const _gS = "groundStation";
|
|
752
|
+
const _gSI = "groundStationId";
|
|
753
|
+
const _gSL = "groundStationList";
|
|
754
|
+
const _gSN = "groundStationName";
|
|
755
|
+
const _gSr = "groundStations";
|
|
756
|
+
const _h = "http";
|
|
757
|
+
const _hE = "httpError";
|
|
758
|
+
const _hQ = "httpQuery";
|
|
759
|
+
const _hR = "healthReasons";
|
|
760
|
+
const _hS = "healthStatus";
|
|
761
|
+
const _i = "id";
|
|
762
|
+
const _iA = "ingressAddress";
|
|
763
|
+
const _iAAP = "ingressAddressAndPort";
|
|
764
|
+
const _iI = "instanceId";
|
|
765
|
+
const _iR = "invalidReason";
|
|
766
|
+
const _iRMC = "isReservedMinutesCustomer";
|
|
767
|
+
const _iT = "instanceType";
|
|
768
|
+
const _k = "key";
|
|
769
|
+
const _kAA = "kmsAliasArn";
|
|
770
|
+
const _kAN = "kmsAliasName";
|
|
771
|
+
const _kKA = "kmsKeyArn";
|
|
772
|
+
const _kT = "keyTemplate";
|
|
773
|
+
const _m = "mtu";
|
|
774
|
+
const _mE = "maximumElevation";
|
|
775
|
+
const _mPA = "missionProfileArn";
|
|
776
|
+
const _mPI = "missionProfileId";
|
|
777
|
+
const _mPL = "missionProfileList";
|
|
1934
778
|
const _mR = "maxResults";
|
|
779
|
+
const _mVCDS = "minimumViableContactDurationSeconds";
|
|
780
|
+
const _ma = "maximum";
|
|
781
|
+
const _me = "message";
|
|
782
|
+
const _mi = "minimum";
|
|
783
|
+
const _mo = "month";
|
|
784
|
+
const _n = "name";
|
|
785
|
+
const _nSID = "noradSatelliteID";
|
|
1935
786
|
const _nT = "nextToken";
|
|
787
|
+
const _o = "oem";
|
|
788
|
+
const _oD = "oemData";
|
|
789
|
+
const _oN = "outputNode";
|
|
790
|
+
const _p = "priority";
|
|
791
|
+
const _pD = "packetsDropped";
|
|
792
|
+
const _pIA = "publicIpAddresses";
|
|
793
|
+
const _pIAr = "privateIpAddresses";
|
|
794
|
+
const _pLU = "presignedLogUrl";
|
|
795
|
+
const _pN = "parameterName";
|
|
796
|
+
const _pPET = "postPassEndTime";
|
|
797
|
+
const _pPST = "prePassStartTime";
|
|
798
|
+
const _pR = "portRange";
|
|
799
|
+
const _pTS = "programTrackSettings";
|
|
800
|
+
const _po = "port";
|
|
801
|
+
const _pol = "polarization";
|
|
802
|
+
const _pr = "prefix";
|
|
803
|
+
const _r = "region";
|
|
804
|
+
const _rA = "resourceArn";
|
|
805
|
+
const _rAo = "roleArn";
|
|
806
|
+
const _rCC = "reservedCpuCores";
|
|
807
|
+
const _rE = "referenceEpoch";
|
|
808
|
+
const _s = "status";
|
|
809
|
+
const _sA = "socketAddress";
|
|
810
|
+
const _sAa = "satelliteArn";
|
|
811
|
+
const _sC = "spectrumConfig";
|
|
812
|
+
const _sD = "suppliedData";
|
|
813
|
+
const _sDe = "securityDetails";
|
|
814
|
+
const _sGI = "securityGroupIds";
|
|
1936
815
|
const _sI = "satelliteId";
|
|
816
|
+
const _sIu = "subnetIds";
|
|
817
|
+
const _sKK = "streamsKmsKey";
|
|
818
|
+
const _sKR = "streamsKmsRole";
|
|
819
|
+
const _sL = "statusList";
|
|
820
|
+
const _sM = "signatureMap";
|
|
821
|
+
const _sO = "s3Object";
|
|
822
|
+
const _sRC = "s3RecordingConfig";
|
|
823
|
+
const _sRD = "s3RecordingDetails";
|
|
824
|
+
const _sSO = "sourceS3Object";
|
|
825
|
+
const _sT = "startTime";
|
|
826
|
+
const _sa = "satellites";
|
|
827
|
+
const _se = "server";
|
|
828
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.groundstation";
|
|
829
|
+
const _so = "source";
|
|
830
|
+
const _t = "tags";
|
|
831
|
+
const _tC = "trackingConfig";
|
|
832
|
+
const _tCA = "trackingConfigArn";
|
|
833
|
+
const _tD = "transmitDisabled";
|
|
834
|
+
const _tDa = "taskingDocument";
|
|
835
|
+
const _tDl = "tleData";
|
|
836
|
+
const _tE = "targetEirp";
|
|
837
|
+
const _tI = "taskId";
|
|
1937
838
|
const _tK = "tagKeys";
|
|
839
|
+
const _tL = "tleLine1";
|
|
840
|
+
const _tLl = "tleLine2";
|
|
841
|
+
const _tO = "trackingOverrides";
|
|
842
|
+
const _tRMA = "totalReservedMinuteAllocation";
|
|
843
|
+
const _tSM = "totalScheduledMinutes";
|
|
844
|
+
const _tl = "tle";
|
|
845
|
+
const _u = "units";
|
|
846
|
+
const _uAGSAE = "uplinkAwsGroundStationAgentEndpoint";
|
|
847
|
+
const _uEC = "uplinkEchoConfig";
|
|
848
|
+
const _uJSON = "unvalidatedJSON";
|
|
849
|
+
const _uMS = "upcomingMinutesScheduled";
|
|
850
|
+
const _un = "unit";
|
|
851
|
+
const _v = "versions";
|
|
852
|
+
const _vET = "visibilityEndTime";
|
|
853
|
+
const _vST = "visibilityStartTime";
|
|
854
|
+
const _vTR = "validTimeRange";
|
|
855
|
+
const _va = "value";
|
|
856
|
+
const _ve = "version";
|
|
857
|
+
const _y = "year";
|
|
858
|
+
const n0 = "com.amazonaws.groundstation";
|
|
859
|
+
var AgentDetails = [
|
|
860
|
+
3,
|
|
861
|
+
n0,
|
|
862
|
+
_AD,
|
|
863
|
+
0,
|
|
864
|
+
[_aV, _iI, _iT, _rCC, _aCC, _cV],
|
|
865
|
+
[0, 0, 0, 64 | 1, 64 | 1, () => ComponentVersionList],
|
|
866
|
+
];
|
|
867
|
+
var AggregateStatus = [3, n0, _AS, 0, [_s, _sM], [0, 128 | 2]];
|
|
868
|
+
var AntennaDemodDecodeDetails = [3, n0, _ADDD, 0, [_oN], [0]];
|
|
869
|
+
var AntennaDownlinkConfig = [3, n0, _ADC, 0, [_sC], [() => SpectrumConfig]];
|
|
870
|
+
var AntennaDownlinkDemodDecodeConfig = [
|
|
871
|
+
3,
|
|
872
|
+
n0,
|
|
873
|
+
_ADDDC,
|
|
874
|
+
0,
|
|
875
|
+
[_sC, _dC, _dCe],
|
|
876
|
+
[() => SpectrumConfig, () => DemodulationConfig, () => DecodeConfig],
|
|
877
|
+
];
|
|
878
|
+
var AntennaUplinkConfig = [
|
|
879
|
+
3,
|
|
880
|
+
n0,
|
|
881
|
+
_AUC,
|
|
882
|
+
0,
|
|
883
|
+
[_tD, _sC, _tE],
|
|
884
|
+
[2, () => UplinkSpectrumConfig, () => Eirp],
|
|
885
|
+
];
|
|
886
|
+
var AwsGroundStationAgentEndpoint = [
|
|
887
|
+
3,
|
|
888
|
+
n0,
|
|
889
|
+
_AGSAE,
|
|
890
|
+
0,
|
|
891
|
+
[_n, _eA, _iA, _aS, _aR],
|
|
892
|
+
[0, () => ConnectionDetails, () => RangedConnectionDetails, 0, 0],
|
|
893
|
+
];
|
|
894
|
+
var AzElEphemeris = [3, n0, _AEE, 0, [_gS, _d], [0, () => AzElSegmentsData]];
|
|
895
|
+
var AzElEphemerisFilter = [3, n0, _AEEF, 0, [_i], [0]];
|
|
896
|
+
var AzElProgramTrackSettings = [3, n0, _AEPTS, 0, [_eI], [0]];
|
|
897
|
+
var AzElSegment = [
|
|
898
|
+
3,
|
|
899
|
+
n0,
|
|
900
|
+
_AES,
|
|
901
|
+
0,
|
|
902
|
+
[_rE, _vTR, _aEL],
|
|
903
|
+
[5, () => ISO8601TimeRange, () => TimeAzElList],
|
|
904
|
+
];
|
|
905
|
+
var AzElSegments = [3, n0, _AESz, 0, [_aU, _aESL], [0, () => AzElSegmentList]];
|
|
906
|
+
var CancelContactRequest = [3, n0, _CCR, 0, [_cI], [[0, 1]]];
|
|
907
|
+
var ComponentStatusData = [
|
|
908
|
+
3,
|
|
909
|
+
n0,
|
|
910
|
+
_CSD,
|
|
911
|
+
0,
|
|
912
|
+
[_cT, _cA, _s, _bS, _bR, _pD, _dI],
|
|
913
|
+
[0, 0, 0, 1, 1, 1, 0],
|
|
914
|
+
];
|
|
915
|
+
var ComponentVersion = [3, n0, _CV, 0, [_cT, _v], [0, 64 | 0]];
|
|
916
|
+
var ConfigIdResponse = [3, n0, _CIR, 0, [_cIo, _cTo, _cAo], [0, 0, 0]];
|
|
917
|
+
var ConfigListItem = [3, n0, _CLI, 0, [_cIo, _cTo, _cAo, _n], [0, 0, 0, 0]];
|
|
918
|
+
var ConnectionDetails = [3, n0, _CD, 0, [_sA, _m], [() => SocketAddress, 1]];
|
|
919
|
+
var ContactData = [
|
|
920
|
+
3,
|
|
921
|
+
n0,
|
|
922
|
+
_CDo,
|
|
923
|
+
0,
|
|
924
|
+
[_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _r, _t, _vST, _vET, _e],
|
|
925
|
+
[0, 0, 0, 4, 4, 4, 4, 0, 0, 0, () => Elevation, 0, 128 | 0, 4, 4, () => EphemerisResponseData],
|
|
926
|
+
];
|
|
927
|
+
var ContactIdResponse = [3, n0, _CIRo, 0, [_cI], [0]];
|
|
928
|
+
var CreateConfigRequest = [
|
|
929
|
+
3,
|
|
930
|
+
n0,
|
|
931
|
+
_CCRr,
|
|
932
|
+
0,
|
|
933
|
+
[_n, _cD, _t],
|
|
934
|
+
[0, () => ConfigTypeData, 128 | 0],
|
|
935
|
+
];
|
|
936
|
+
var CreateDataflowEndpointGroupRequest = [
|
|
937
|
+
3,
|
|
938
|
+
n0,
|
|
939
|
+
_CDEGR,
|
|
940
|
+
0,
|
|
941
|
+
[_eD, _t, _cPPDS, _cPPDSo],
|
|
942
|
+
[() => EndpointDetailsList, 128 | 0, 1, 1],
|
|
943
|
+
];
|
|
944
|
+
var CreateDataflowEndpointGroupV2Request = [
|
|
945
|
+
3,
|
|
946
|
+
n0,
|
|
947
|
+
_CDEGVR,
|
|
948
|
+
0,
|
|
949
|
+
[_en, _cPPDS, _cPPDSo, _t],
|
|
950
|
+
[() => CreateEndpointDetailsList, 1, 1, 128 | 0],
|
|
951
|
+
];
|
|
952
|
+
var CreateDataflowEndpointGroupV2Response = [3, n0, _CDEGVRr, 0, [_dEGI], [0]];
|
|
953
|
+
var CreateEphemerisRequest = [
|
|
954
|
+
3,
|
|
955
|
+
n0,
|
|
956
|
+
_CER,
|
|
957
|
+
0,
|
|
958
|
+
[_sI, _ena, _p, _eTx, _n, _kKA, _e, _t],
|
|
959
|
+
[0, 2, 1, 4, 0, 0, () => EphemerisData, 128 | 0],
|
|
960
|
+
];
|
|
961
|
+
var CreateMissionProfileRequest = [
|
|
962
|
+
3,
|
|
963
|
+
n0,
|
|
964
|
+
_CMPR,
|
|
965
|
+
0,
|
|
966
|
+
[_n, _cPPDS, _cPPDSo, _mVCDS, _dE, _tCA, _t, _sKK, _sKR],
|
|
967
|
+
[0, 1, 1, 1, [1, n0, _DEL, 0, 64 | 0], 0, 128 | 0, () => KmsKey, 0],
|
|
968
|
+
];
|
|
969
|
+
var DataflowDetail = [
|
|
970
|
+
3,
|
|
971
|
+
n0,
|
|
972
|
+
_DD,
|
|
973
|
+
0,
|
|
974
|
+
[_so, _de, _eM],
|
|
975
|
+
[() => Source, () => Destination, 0],
|
|
976
|
+
];
|
|
977
|
+
var DataflowEndpoint = [3, n0, _DE, 0, [_n, _a, _s, _m], [0, () => SocketAddress, 0, 1]];
|
|
978
|
+
var DataflowEndpointConfig = [3, n0, _DEC, 0, [_dEN, _dER], [0, 0]];
|
|
979
|
+
var DataflowEndpointGroupIdResponse = [3, n0, _DEGIR, 0, [_dEGI], [0]];
|
|
980
|
+
var DataflowEndpointListItem = [3, n0, _DELI, 0, [_dEGI, _dEGA], [0, 0]];
|
|
981
|
+
var DecodeConfig = [3, n0, _DC, 0, [_uJSON], [0]];
|
|
982
|
+
var DeleteConfigRequest = [
|
|
983
|
+
3,
|
|
984
|
+
n0,
|
|
985
|
+
_DCR,
|
|
986
|
+
0,
|
|
987
|
+
[_cIo, _cTo],
|
|
988
|
+
[
|
|
989
|
+
[0, 1],
|
|
990
|
+
[0, 1],
|
|
991
|
+
],
|
|
992
|
+
];
|
|
993
|
+
var DeleteDataflowEndpointGroupRequest = [3, n0, _DDEGR, 0, [_dEGI], [[0, 1]]];
|
|
994
|
+
var DeleteEphemerisRequest = [3, n0, _DER, 0, [_eI], [[0, 1]]];
|
|
995
|
+
var DeleteMissionProfileRequest = [3, n0, _DMPR, 0, [_mPI], [[0, 1]]];
|
|
996
|
+
var DemodulationConfig = [3, n0, _DCe, 0, [_uJSON], [0]];
|
|
997
|
+
var DependencyException = [
|
|
998
|
+
-3,
|
|
999
|
+
n0,
|
|
1000
|
+
_DEe,
|
|
1001
|
+
{
|
|
1002
|
+
[_er]: _se,
|
|
1003
|
+
[_hE]: 531,
|
|
1004
|
+
},
|
|
1005
|
+
[_me, _pN],
|
|
1006
|
+
[0, 0],
|
|
1007
|
+
];
|
|
1008
|
+
schema.TypeRegistry.for(n0).registerError(DependencyException, DependencyException$1);
|
|
1009
|
+
var DescribeContactRequest = [3, n0, _DCRe, 0, [_cI], [[0, 1]]];
|
|
1010
|
+
var DescribeContactResponse = [
|
|
1011
|
+
3,
|
|
1012
|
+
n0,
|
|
1013
|
+
_DCRes,
|
|
1014
|
+
0,
|
|
1015
|
+
[_cI, _mPA, _sAa, _sT, _eT, _pPST, _pPET, _gS, _cS, _eM, _mE, _t, _r, _dL, _vST, _vET, _tO, _e],
|
|
1016
|
+
[
|
|
1017
|
+
0,
|
|
1018
|
+
0,
|
|
1019
|
+
0,
|
|
1020
|
+
4,
|
|
1021
|
+
4,
|
|
1022
|
+
4,
|
|
1023
|
+
4,
|
|
1024
|
+
0,
|
|
1025
|
+
0,
|
|
1026
|
+
0,
|
|
1027
|
+
() => Elevation,
|
|
1028
|
+
128 | 0,
|
|
1029
|
+
0,
|
|
1030
|
+
() => DataflowList,
|
|
1031
|
+
4,
|
|
1032
|
+
4,
|
|
1033
|
+
() => TrackingOverrides,
|
|
1034
|
+
() => EphemerisResponseData,
|
|
1035
|
+
],
|
|
1036
|
+
];
|
|
1037
|
+
var DescribeEphemerisRequest = [3, n0, _DERe, 0, [_eI], [[0, 1]]];
|
|
1038
|
+
var DescribeEphemerisResponse = [
|
|
1039
|
+
3,
|
|
1040
|
+
n0,
|
|
1041
|
+
_DERes,
|
|
1042
|
+
0,
|
|
1043
|
+
[_eI, _sI, _s, _p, _cTr, _ena, _n, _t, _sD, _iR, _eR],
|
|
1044
|
+
[0, 0, 0, 1, 4, 2, 0, 128 | 0, () => EphemerisTypeDescription, 0, () => EphemerisErrorReasonList],
|
|
1045
|
+
];
|
|
1046
|
+
var Destination = [
|
|
1047
|
+
3,
|
|
1048
|
+
n0,
|
|
1049
|
+
_D,
|
|
1050
|
+
0,
|
|
1051
|
+
[_cTo, _cIo, _cDo, _dDR],
|
|
1052
|
+
[0, 0, () => ConfigDetails, 0],
|
|
1053
|
+
];
|
|
1054
|
+
var DiscoveryData = [3, n0, _DDi, 0, [_pIA, _pIAr, _cAa], [64 | 0, 64 | 0, 64 | 0]];
|
|
1055
|
+
var DownlinkAwsGroundStationAgentEndpoint = [
|
|
1056
|
+
3,
|
|
1057
|
+
n0,
|
|
1058
|
+
_DAGSAE,
|
|
1059
|
+
0,
|
|
1060
|
+
[_n, _dD],
|
|
1061
|
+
[0, () => DownlinkDataflowDetails],
|
|
1062
|
+
];
|
|
1063
|
+
var DownlinkAwsGroundStationAgentEndpointDetails = [
|
|
1064
|
+
3,
|
|
1065
|
+
n0,
|
|
1066
|
+
_DAGSAED,
|
|
1067
|
+
0,
|
|
1068
|
+
[_n, _dD, _aS, _aR],
|
|
1069
|
+
[0, () => DownlinkDataflowDetails, 0, 0],
|
|
1070
|
+
];
|
|
1071
|
+
var DownlinkConnectionDetails = [
|
|
1072
|
+
3,
|
|
1073
|
+
n0,
|
|
1074
|
+
_DCD,
|
|
1075
|
+
0,
|
|
1076
|
+
[_aIAPA, _eAAP],
|
|
1077
|
+
[() => RangedConnectionDetails, () => ConnectionDetails],
|
|
1078
|
+
];
|
|
1079
|
+
var Eirp = [3, n0, _E, 0, [_va, _u], [1, 0]];
|
|
1080
|
+
var Elevation = [3, n0, _El, 0, [_va, _un], [1, 0]];
|
|
1081
|
+
var EndpointDetails = [
|
|
1082
|
+
3,
|
|
1083
|
+
n0,
|
|
1084
|
+
_ED,
|
|
1085
|
+
0,
|
|
1086
|
+
[_sDe, _end, _aGSAE, _uAGSAE, _dAGSAE, _hS, _hR],
|
|
1087
|
+
[
|
|
1088
|
+
() => SecurityDetails,
|
|
1089
|
+
() => DataflowEndpoint,
|
|
1090
|
+
() => AwsGroundStationAgentEndpoint,
|
|
1091
|
+
() => UplinkAwsGroundStationAgentEndpointDetails,
|
|
1092
|
+
() => DownlinkAwsGroundStationAgentEndpointDetails,
|
|
1093
|
+
0,
|
|
1094
|
+
64 | 0,
|
|
1095
|
+
],
|
|
1096
|
+
];
|
|
1097
|
+
var EphemerisDescription = [3, n0, _EDp, 0, [_sSO, _eDp], [() => S3Object, 0]];
|
|
1098
|
+
var EphemerisErrorReason = [3, n0, _EER, 0, [_eC, _eM], [0, 0]];
|
|
1099
|
+
var EphemerisIdResponse = [3, n0, _EIR, 0, [_eI], [0]];
|
|
1100
|
+
var EphemerisItem = [
|
|
1101
|
+
3,
|
|
1102
|
+
n0,
|
|
1103
|
+
_EI,
|
|
1104
|
+
0,
|
|
1105
|
+
[_eI, _eTp, _s, _p, _ena, _cTr, _n, _sSO],
|
|
1106
|
+
[0, 0, 0, 1, 2, 4, 0, () => S3Object],
|
|
1107
|
+
];
|
|
1108
|
+
var EphemerisMetaData = [3, n0, _EMD, 0, [_so, _eI, _ep, _n], [0, 0, 4, 0]];
|
|
1109
|
+
var EphemerisResponseData = [3, n0, _ERD, 0, [_eI, _eTp], [0, 0]];
|
|
1110
|
+
var Frequency = [3, n0, _F, 0, [_va, _u], [1, 0]];
|
|
1111
|
+
var FrequencyBandwidth = [3, n0, _FB, 0, [_va, _u], [1, 0]];
|
|
1112
|
+
var GetAgentConfigurationRequest = [3, n0, _GACR, 0, [_aI], [[0, 1]]];
|
|
1113
|
+
var GetAgentConfigurationResponse = [3, n0, _GACRe, 0, [_aI, _tDa], [0, 0]];
|
|
1114
|
+
var GetAgentTaskResponseUrlRequest = [
|
|
1115
|
+
3,
|
|
1116
|
+
n0,
|
|
1117
|
+
_GATRUR,
|
|
1118
|
+
0,
|
|
1119
|
+
[_aI, _tI],
|
|
1120
|
+
[
|
|
1121
|
+
[0, 1],
|
|
1122
|
+
[0, 1],
|
|
1123
|
+
],
|
|
1124
|
+
];
|
|
1125
|
+
var GetAgentTaskResponseUrlResponse = [3, n0, _GATRURe, 0, [_aI, _tI, _pLU], [0, 0, 0]];
|
|
1126
|
+
var GetConfigRequest = [
|
|
1127
|
+
3,
|
|
1128
|
+
n0,
|
|
1129
|
+
_GCR,
|
|
1130
|
+
0,
|
|
1131
|
+
[_cIo, _cTo],
|
|
1132
|
+
[
|
|
1133
|
+
[0, 1],
|
|
1134
|
+
[0, 1],
|
|
1135
|
+
],
|
|
1136
|
+
];
|
|
1137
|
+
var GetConfigResponse = [
|
|
1138
|
+
3,
|
|
1139
|
+
n0,
|
|
1140
|
+
_GCRe,
|
|
1141
|
+
0,
|
|
1142
|
+
[_cIo, _cAo, _n, _cTo, _cD, _t],
|
|
1143
|
+
[0, 0, 0, 0, () => ConfigTypeData, 128 | 0],
|
|
1144
|
+
];
|
|
1145
|
+
var GetDataflowEndpointGroupRequest = [3, n0, _GDEGR, 0, [_dEGI], [[0, 1]]];
|
|
1146
|
+
var GetDataflowEndpointGroupResponse = [
|
|
1147
|
+
3,
|
|
1148
|
+
n0,
|
|
1149
|
+
_GDEGRe,
|
|
1150
|
+
0,
|
|
1151
|
+
[_dEGI, _dEGA, _eDn, _t, _cPPDS, _cPPDSo],
|
|
1152
|
+
[0, 0, () => EndpointDetailsList, 128 | 0, 1, 1],
|
|
1153
|
+
];
|
|
1154
|
+
var GetMinuteUsageRequest = [3, n0, _GMUR, 0, [_mo, _y], [1, 1]];
|
|
1155
|
+
var GetMinuteUsageResponse = [
|
|
1156
|
+
3,
|
|
1157
|
+
n0,
|
|
1158
|
+
_GMURe,
|
|
1159
|
+
0,
|
|
1160
|
+
[_iRMC, _tRMA, _uMS, _tSM, _eMR],
|
|
1161
|
+
[2, 1, 1, 1, 1],
|
|
1162
|
+
];
|
|
1163
|
+
var GetMissionProfileRequest = [3, n0, _GMPR, 0, [_mPI], [[0, 1]]];
|
|
1164
|
+
var GetMissionProfileResponse = [
|
|
1165
|
+
3,
|
|
1166
|
+
n0,
|
|
1167
|
+
_GMPRe,
|
|
1168
|
+
0,
|
|
1169
|
+
[_mPI, _mPA, _n, _r, _cPPDS, _cPPDSo, _mVCDS, _dE, _tCA, _t, _sKK, _sKR],
|
|
1170
|
+
[0, 0, 0, 0, 1, 1, 1, [1, n0, _DEL, 0, 64 | 0], 0, 128 | 0, () => KmsKey, 0],
|
|
1171
|
+
];
|
|
1172
|
+
var GetSatelliteRequest = [3, n0, _GSR, 0, [_sI], [[0, 1]]];
|
|
1173
|
+
var GetSatelliteResponse = [
|
|
1174
|
+
3,
|
|
1175
|
+
n0,
|
|
1176
|
+
_GSRe,
|
|
1177
|
+
0,
|
|
1178
|
+
[_sI, _sAa, _nSID, _gSr, _cE],
|
|
1179
|
+
[0, 0, 1, 64 | 0, () => EphemerisMetaData],
|
|
1180
|
+
];
|
|
1181
|
+
var GroundStationData = [3, n0, _GSD, 0, [_gSI, _gSN, _r], [0, 0, 0]];
|
|
1182
|
+
var IntegerRange = [3, n0, _IR, 0, [_mi, _ma], [1, 1]];
|
|
1183
|
+
var InvalidParameterException = [
|
|
1184
|
+
-3,
|
|
1185
|
+
n0,
|
|
1186
|
+
_IPE,
|
|
1187
|
+
{
|
|
1188
|
+
[_er]: _c,
|
|
1189
|
+
[_hE]: 431,
|
|
1190
|
+
},
|
|
1191
|
+
[_me, _pN],
|
|
1192
|
+
[0, 0],
|
|
1193
|
+
];
|
|
1194
|
+
schema.TypeRegistry.for(n0).registerError(InvalidParameterException, InvalidParameterException$1);
|
|
1195
|
+
var ISO8601TimeRange = [3, n0, _ISOTR, 0, [_sT, _eT], [5, 5]];
|
|
1196
|
+
var ListConfigsRequest = [
|
|
1197
|
+
3,
|
|
1198
|
+
n0,
|
|
1199
|
+
_LCR,
|
|
1200
|
+
0,
|
|
1201
|
+
[_mR, _nT],
|
|
1202
|
+
[
|
|
1203
|
+
[
|
|
1204
|
+
1,
|
|
1205
|
+
{
|
|
1206
|
+
[_hQ]: _mR,
|
|
1207
|
+
},
|
|
1208
|
+
],
|
|
1209
|
+
[
|
|
1210
|
+
0,
|
|
1211
|
+
{
|
|
1212
|
+
[_hQ]: _nT,
|
|
1213
|
+
},
|
|
1214
|
+
],
|
|
1215
|
+
],
|
|
1216
|
+
];
|
|
1217
|
+
var ListConfigsResponse = [3, n0, _LCRi, 0, [_nT, _cL], [0, () => ConfigList]];
|
|
1218
|
+
var ListContactsRequest = [
|
|
1219
|
+
3,
|
|
1220
|
+
n0,
|
|
1221
|
+
_LCRis,
|
|
1222
|
+
0,
|
|
1223
|
+
[_mR, _nT, _sL, _sT, _eT, _gS, _sAa, _mPA, _e],
|
|
1224
|
+
[1, 0, 64 | 0, 4, 4, 0, 0, 0, () => EphemerisFilter],
|
|
1225
|
+
];
|
|
1226
|
+
var ListContactsResponse = [3, n0, _LCRist, 0, [_nT, _cLo], [0, () => ContactList]];
|
|
1227
|
+
var ListDataflowEndpointGroupsRequest = [
|
|
1228
|
+
3,
|
|
1229
|
+
n0,
|
|
1230
|
+
_LDEGR,
|
|
1231
|
+
0,
|
|
1232
|
+
[_mR, _nT],
|
|
1233
|
+
[
|
|
1234
|
+
[
|
|
1235
|
+
1,
|
|
1236
|
+
{
|
|
1237
|
+
[_hQ]: _mR,
|
|
1238
|
+
},
|
|
1239
|
+
],
|
|
1240
|
+
[
|
|
1241
|
+
0,
|
|
1242
|
+
{
|
|
1243
|
+
[_hQ]: _nT,
|
|
1244
|
+
},
|
|
1245
|
+
],
|
|
1246
|
+
],
|
|
1247
|
+
];
|
|
1248
|
+
var ListDataflowEndpointGroupsResponse = [
|
|
1249
|
+
3,
|
|
1250
|
+
n0,
|
|
1251
|
+
_LDEGRi,
|
|
1252
|
+
0,
|
|
1253
|
+
[_nT, _dEGL],
|
|
1254
|
+
[0, () => DataflowEndpointGroupList],
|
|
1255
|
+
];
|
|
1256
|
+
var ListEphemeridesRequest = [
|
|
1257
|
+
3,
|
|
1258
|
+
n0,
|
|
1259
|
+
_LER,
|
|
1260
|
+
0,
|
|
1261
|
+
[_sI, _eTp, _sT, _eT, _sL, _mR, _nT],
|
|
1262
|
+
[
|
|
1263
|
+
0,
|
|
1264
|
+
0,
|
|
1265
|
+
4,
|
|
1266
|
+
4,
|
|
1267
|
+
64 | 0,
|
|
1268
|
+
[
|
|
1269
|
+
1,
|
|
1270
|
+
{
|
|
1271
|
+
[_hQ]: _mR,
|
|
1272
|
+
},
|
|
1273
|
+
],
|
|
1274
|
+
[
|
|
1275
|
+
0,
|
|
1276
|
+
{
|
|
1277
|
+
[_hQ]: _nT,
|
|
1278
|
+
},
|
|
1279
|
+
],
|
|
1280
|
+
],
|
|
1281
|
+
];
|
|
1282
|
+
var ListEphemeridesResponse = [3, n0, _LERi, 0, [_nT, _eph], [0, () => EphemeridesList]];
|
|
1283
|
+
var ListGroundStationsRequest = [
|
|
1284
|
+
3,
|
|
1285
|
+
n0,
|
|
1286
|
+
_LGSR,
|
|
1287
|
+
0,
|
|
1288
|
+
[_sI, _mR, _nT],
|
|
1289
|
+
[
|
|
1290
|
+
[
|
|
1291
|
+
0,
|
|
1292
|
+
{
|
|
1293
|
+
[_hQ]: _sI,
|
|
1294
|
+
},
|
|
1295
|
+
],
|
|
1296
|
+
[
|
|
1297
|
+
1,
|
|
1298
|
+
{
|
|
1299
|
+
[_hQ]: _mR,
|
|
1300
|
+
},
|
|
1301
|
+
],
|
|
1302
|
+
[
|
|
1303
|
+
0,
|
|
1304
|
+
{
|
|
1305
|
+
[_hQ]: _nT,
|
|
1306
|
+
},
|
|
1307
|
+
],
|
|
1308
|
+
],
|
|
1309
|
+
];
|
|
1310
|
+
var ListGroundStationsResponse = [
|
|
1311
|
+
3,
|
|
1312
|
+
n0,
|
|
1313
|
+
_LGSRi,
|
|
1314
|
+
0,
|
|
1315
|
+
[_nT, _gSL],
|
|
1316
|
+
[0, () => GroundStationList],
|
|
1317
|
+
];
|
|
1318
|
+
var ListMissionProfilesRequest = [
|
|
1319
|
+
3,
|
|
1320
|
+
n0,
|
|
1321
|
+
_LMPR,
|
|
1322
|
+
0,
|
|
1323
|
+
[_mR, _nT],
|
|
1324
|
+
[
|
|
1325
|
+
[
|
|
1326
|
+
1,
|
|
1327
|
+
{
|
|
1328
|
+
[_hQ]: _mR,
|
|
1329
|
+
},
|
|
1330
|
+
],
|
|
1331
|
+
[
|
|
1332
|
+
0,
|
|
1333
|
+
{
|
|
1334
|
+
[_hQ]: _nT,
|
|
1335
|
+
},
|
|
1336
|
+
],
|
|
1337
|
+
],
|
|
1338
|
+
];
|
|
1339
|
+
var ListMissionProfilesResponse = [
|
|
1340
|
+
3,
|
|
1341
|
+
n0,
|
|
1342
|
+
_LMPRi,
|
|
1343
|
+
0,
|
|
1344
|
+
[_nT, _mPL],
|
|
1345
|
+
[0, () => MissionProfileList],
|
|
1346
|
+
];
|
|
1347
|
+
var ListSatellitesRequest = [
|
|
1348
|
+
3,
|
|
1349
|
+
n0,
|
|
1350
|
+
_LSR,
|
|
1351
|
+
0,
|
|
1352
|
+
[_mR, _nT],
|
|
1353
|
+
[
|
|
1354
|
+
[
|
|
1355
|
+
1,
|
|
1356
|
+
{
|
|
1357
|
+
[_hQ]: _mR,
|
|
1358
|
+
},
|
|
1359
|
+
],
|
|
1360
|
+
[
|
|
1361
|
+
0,
|
|
1362
|
+
{
|
|
1363
|
+
[_hQ]: _nT,
|
|
1364
|
+
},
|
|
1365
|
+
],
|
|
1366
|
+
],
|
|
1367
|
+
];
|
|
1368
|
+
var ListSatellitesResponse = [3, n0, _LSRi, 0, [_nT, _sa], [0, () => SatelliteList]];
|
|
1369
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
1370
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
1371
|
+
var MissionProfileIdResponse = [3, n0, _MPIR, 0, [_mPI], [0]];
|
|
1372
|
+
var MissionProfileListItem = [3, n0, _MPLI, 0, [_mPI, _mPA, _r, _n], [0, 0, 0, 0]];
|
|
1373
|
+
var OEMEphemeris = [3, n0, _OEME, 0, [_sO, _oD], [() => S3Object, 0]];
|
|
1374
|
+
var RangedConnectionDetails = [3, n0, _RCD, 0, [_sA, _m], [() => RangedSocketAddress, 1]];
|
|
1375
|
+
var RangedSocketAddress = [3, n0, _RSA, 0, [_n, _pR], [0, () => IntegerRange]];
|
|
1376
|
+
var RegisterAgentRequest = [
|
|
1377
|
+
3,
|
|
1378
|
+
n0,
|
|
1379
|
+
_RAR,
|
|
1380
|
+
0,
|
|
1381
|
+
[_dDi, _aD, _t],
|
|
1382
|
+
[() => DiscoveryData, () => AgentDetails, 128 | 0],
|
|
1383
|
+
];
|
|
1384
|
+
var RegisterAgentResponse = [3, n0, _RARe, 0, [_aI], [0]];
|
|
1385
|
+
var ReserveContactRequest = [
|
|
1386
|
+
3,
|
|
1387
|
+
n0,
|
|
1388
|
+
_RCR,
|
|
1389
|
+
0,
|
|
1390
|
+
[_mPA, _sAa, _sT, _eT, _gS, _t, _tO],
|
|
1391
|
+
[0, 0, 4, 4, 0, 128 | 0, () => TrackingOverrides],
|
|
1392
|
+
];
|
|
1393
|
+
var ResourceInUseException = [
|
|
1394
|
+
-3,
|
|
1395
|
+
n0,
|
|
1396
|
+
_RIUE,
|
|
1397
|
+
{
|
|
1398
|
+
[_er]: _c,
|
|
1399
|
+
[_hE]: 409,
|
|
1400
|
+
},
|
|
1401
|
+
[_me],
|
|
1402
|
+
[0],
|
|
1403
|
+
];
|
|
1404
|
+
schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
|
|
1405
|
+
var ResourceLimitExceededException = [
|
|
1406
|
+
-3,
|
|
1407
|
+
n0,
|
|
1408
|
+
_RLEE,
|
|
1409
|
+
{
|
|
1410
|
+
[_er]: _c,
|
|
1411
|
+
[_hE]: 429,
|
|
1412
|
+
},
|
|
1413
|
+
[_me, _pN],
|
|
1414
|
+
[0, 0],
|
|
1415
|
+
];
|
|
1416
|
+
schema.TypeRegistry.for(n0).registerError(ResourceLimitExceededException, ResourceLimitExceededException$1);
|
|
1417
|
+
var ResourceNotFoundException = [
|
|
1418
|
+
-3,
|
|
1419
|
+
n0,
|
|
1420
|
+
_RNFE,
|
|
1421
|
+
{
|
|
1422
|
+
[_er]: _c,
|
|
1423
|
+
[_hE]: 434,
|
|
1424
|
+
},
|
|
1425
|
+
[_me],
|
|
1426
|
+
[0],
|
|
1427
|
+
];
|
|
1428
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1429
|
+
var S3Object = [3, n0, _SO, 0, [_b, _k, _ve], [0, 0, 0]];
|
|
1430
|
+
var S3RecordingConfig = [3, n0, _SRC, 0, [_bA, _rAo, _pr], [0, 0, 0]];
|
|
1431
|
+
var S3RecordingDetails = [3, n0, _SRD, 0, [_bA, _kT], [0, 0]];
|
|
1432
|
+
var SatelliteListItem = [
|
|
1433
|
+
3,
|
|
1434
|
+
n0,
|
|
1435
|
+
_SLI,
|
|
1436
|
+
0,
|
|
1437
|
+
[_sI, _sAa, _nSID, _gSr, _cE],
|
|
1438
|
+
[0, 0, 1, 64 | 0, () => EphemerisMetaData],
|
|
1439
|
+
];
|
|
1440
|
+
var SecurityDetails = [3, n0, _SD, 0, [_sIu, _sGI, _rAo], [64 | 0, 64 | 0, 0]];
|
|
1441
|
+
var ServiceQuotaExceededException = [
|
|
1442
|
+
-3,
|
|
1443
|
+
n0,
|
|
1444
|
+
_SQEE,
|
|
1445
|
+
{
|
|
1446
|
+
[_er]: _c,
|
|
1447
|
+
[_hE]: 402,
|
|
1448
|
+
},
|
|
1449
|
+
[_me, _pN],
|
|
1450
|
+
[0, 0],
|
|
1451
|
+
];
|
|
1452
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1453
|
+
var SocketAddress = [3, n0, _SA, 0, [_n, _po], [0, 1]];
|
|
1454
|
+
var Source = [3, n0, _S, 0, [_cTo, _cIo, _cDo, _dSR], [0, 0, () => ConfigDetails, 0]];
|
|
1455
|
+
var SpectrumConfig = [
|
|
1456
|
+
3,
|
|
1457
|
+
n0,
|
|
1458
|
+
_SC,
|
|
1459
|
+
0,
|
|
1460
|
+
[_cF, _ba, _pol],
|
|
1461
|
+
[() => Frequency, () => FrequencyBandwidth, 0],
|
|
1462
|
+
];
|
|
1463
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
1464
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1465
|
+
var TimeAzEl = [3, n0, _TAE, 0, [_dt, _az, _el], [1, 1, 1]];
|
|
1466
|
+
var TimeRange = [3, n0, _TR, 0, [_sT, _eT], [4, 4]];
|
|
1467
|
+
var TLEData = [3, n0, _TLED, 0, [_tL, _tLl, _vTR], [0, 0, () => TimeRange]];
|
|
1468
|
+
var TLEEphemeris = [3, n0, _TLEE, 0, [_sO, _tDl], [() => S3Object, () => TLEDataList]];
|
|
1469
|
+
var TrackingConfig = [3, n0, _TC, 0, [_au], [0]];
|
|
1470
|
+
var TrackingOverrides = [3, n0, _TO, 0, [_pTS], [() => ProgramTrackSettings]];
|
|
1471
|
+
var UntagResourceRequest = [
|
|
1472
|
+
3,
|
|
1473
|
+
n0,
|
|
1474
|
+
_URR,
|
|
1475
|
+
0,
|
|
1476
|
+
[_rA, _tK],
|
|
1477
|
+
[
|
|
1478
|
+
[0, 1],
|
|
1479
|
+
[
|
|
1480
|
+
64 | 0,
|
|
1481
|
+
{
|
|
1482
|
+
[_hQ]: _tK,
|
|
1483
|
+
},
|
|
1484
|
+
],
|
|
1485
|
+
],
|
|
1486
|
+
];
|
|
1487
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1488
|
+
var UpdateAgentStatusRequest = [
|
|
1489
|
+
3,
|
|
1490
|
+
n0,
|
|
1491
|
+
_UASR,
|
|
1492
|
+
0,
|
|
1493
|
+
[_aI, _tI, _aSg, _cSo],
|
|
1494
|
+
[[0, 1], 0, () => AggregateStatus, () => ComponentStatusList],
|
|
1495
|
+
];
|
|
1496
|
+
var UpdateAgentStatusResponse = [3, n0, _UASRp, 0, [_aI], [0]];
|
|
1497
|
+
var UpdateConfigRequest = [
|
|
1498
|
+
3,
|
|
1499
|
+
n0,
|
|
1500
|
+
_UCR,
|
|
1501
|
+
0,
|
|
1502
|
+
[_cIo, _n, _cTo, _cD],
|
|
1503
|
+
[[0, 1], 0, [0, 1], () => ConfigTypeData],
|
|
1504
|
+
];
|
|
1505
|
+
var UpdateEphemerisRequest = [3, n0, _UER, 0, [_eI, _ena, _n, _p], [[0, 1], 2, 0, 1]];
|
|
1506
|
+
var UpdateMissionProfileRequest = [
|
|
1507
|
+
3,
|
|
1508
|
+
n0,
|
|
1509
|
+
_UMPR,
|
|
1510
|
+
0,
|
|
1511
|
+
[_mPI, _n, _cPPDS, _cPPDSo, _mVCDS, _dE, _tCA, _sKK, _sKR],
|
|
1512
|
+
[[0, 1], 0, 1, 1, 1, [1, n0, _DEL, 0, 64 | 0], 0, () => KmsKey, 0],
|
|
1513
|
+
];
|
|
1514
|
+
var UplinkAwsGroundStationAgentEndpoint = [
|
|
1515
|
+
3,
|
|
1516
|
+
n0,
|
|
1517
|
+
_UAGSAE,
|
|
1518
|
+
0,
|
|
1519
|
+
[_n, _dD],
|
|
1520
|
+
[0, () => UplinkDataflowDetails],
|
|
1521
|
+
];
|
|
1522
|
+
var UplinkAwsGroundStationAgentEndpointDetails = [
|
|
1523
|
+
3,
|
|
1524
|
+
n0,
|
|
1525
|
+
_UAGSAED,
|
|
1526
|
+
0,
|
|
1527
|
+
[_n, _dD, _aS, _aR],
|
|
1528
|
+
[0, () => UplinkDataflowDetails, 0, 0],
|
|
1529
|
+
];
|
|
1530
|
+
var UplinkConnectionDetails = [
|
|
1531
|
+
3,
|
|
1532
|
+
n0,
|
|
1533
|
+
_UCD,
|
|
1534
|
+
0,
|
|
1535
|
+
[_iAAP, _aIAPA],
|
|
1536
|
+
[() => ConnectionDetails, () => RangedConnectionDetails],
|
|
1537
|
+
];
|
|
1538
|
+
var UplinkEchoConfig = [3, n0, _UEC, 0, [_ena, _aUCA], [2, 0]];
|
|
1539
|
+
var UplinkSpectrumConfig = [3, n0, _USC, 0, [_cF, _pol], [() => Frequency, 0]];
|
|
1540
|
+
var GroundStationServiceException = [-3, _sm, "GroundStationServiceException", 0, [], []];
|
|
1541
|
+
schema.TypeRegistry.for(_sm).registerError(GroundStationServiceException, GroundStationServiceException$1);
|
|
1542
|
+
var AzElSegmentList = [1, n0, _AESL, 0, () => AzElSegment];
|
|
1543
|
+
var ComponentStatusList = [1, n0, _CSL, 0, () => ComponentStatusData];
|
|
1544
|
+
var ComponentVersionList = [1, n0, _CVL, 0, () => ComponentVersion];
|
|
1545
|
+
var ConfigList = [1, n0, _CL, 0, () => ConfigListItem];
|
|
1546
|
+
var ContactList = [1, n0, _CLo, 0, () => ContactData];
|
|
1547
|
+
var CreateEndpointDetailsList = [1, n0, _CEDL, 0, () => CreateEndpointDetails];
|
|
1548
|
+
var DataflowEndpointGroupList = [1, n0, _DEGL, 0, () => DataflowEndpointListItem];
|
|
1549
|
+
var DataflowList = [1, n0, _DL, 0, () => DataflowDetail];
|
|
1550
|
+
var EndpointDetailsList = [1, n0, _EDL, 0, () => EndpointDetails];
|
|
1551
|
+
var EphemeridesList = [1, n0, _EL, 0, () => EphemerisItem];
|
|
1552
|
+
var EphemerisErrorReasonList = [1, n0, _EERL, 0, () => EphemerisErrorReason];
|
|
1553
|
+
var GroundStationList = [1, n0, _GSL, 0, () => GroundStationData];
|
|
1554
|
+
var MissionProfileList = [1, n0, _MPL, 0, () => MissionProfileListItem];
|
|
1555
|
+
var SatelliteList = [1, n0, _SL, 0, () => SatelliteListItem];
|
|
1556
|
+
var TimeAzElList = [1, n0, _TAEL, 0, () => TimeAzEl];
|
|
1557
|
+
var TLEDataList = [1, n0, _TLEDL, 0, () => TLEData];
|
|
1558
|
+
var AzElSegmentsData = [
|
|
1559
|
+
3,
|
|
1560
|
+
n0,
|
|
1561
|
+
_AESD,
|
|
1562
|
+
0,
|
|
1563
|
+
[_sO, _aED],
|
|
1564
|
+
[() => S3Object, () => AzElSegments],
|
|
1565
|
+
];
|
|
1566
|
+
var ConfigDetails = [
|
|
1567
|
+
3,
|
|
1568
|
+
n0,
|
|
1569
|
+
_CDon,
|
|
1570
|
+
0,
|
|
1571
|
+
[_eD, _aDDD, _sRD],
|
|
1572
|
+
[() => EndpointDetails, () => AntennaDemodDecodeDetails, () => S3RecordingDetails],
|
|
1573
|
+
];
|
|
1574
|
+
var ConfigTypeData = [
|
|
1575
|
+
3,
|
|
1576
|
+
n0,
|
|
1577
|
+
_CTD,
|
|
1578
|
+
0,
|
|
1579
|
+
[_aDC, _tC, _dEC, _aDDDC, _aUC, _uEC, _sRC],
|
|
1580
|
+
[
|
|
1581
|
+
() => AntennaDownlinkConfig,
|
|
1582
|
+
() => TrackingConfig,
|
|
1583
|
+
() => DataflowEndpointConfig,
|
|
1584
|
+
() => AntennaDownlinkDemodDecodeConfig,
|
|
1585
|
+
() => AntennaUplinkConfig,
|
|
1586
|
+
() => UplinkEchoConfig,
|
|
1587
|
+
() => S3RecordingConfig,
|
|
1588
|
+
],
|
|
1589
|
+
];
|
|
1590
|
+
var CreateEndpointDetails = [
|
|
1591
|
+
3,
|
|
1592
|
+
n0,
|
|
1593
|
+
_CED,
|
|
1594
|
+
0,
|
|
1595
|
+
[_uAGSAE, _dAGSAE],
|
|
1596
|
+
[() => UplinkAwsGroundStationAgentEndpoint, () => DownlinkAwsGroundStationAgentEndpoint],
|
|
1597
|
+
];
|
|
1598
|
+
var DownlinkDataflowDetails = [3, n0, _DDD, 0, [_aCD], [() => DownlinkConnectionDetails]];
|
|
1599
|
+
var EphemerisData = [
|
|
1600
|
+
3,
|
|
1601
|
+
n0,
|
|
1602
|
+
_EDph,
|
|
1603
|
+
0,
|
|
1604
|
+
[_tl, _o, _aE],
|
|
1605
|
+
[() => TLEEphemeris, () => OEMEphemeris, () => AzElEphemeris],
|
|
1606
|
+
];
|
|
1607
|
+
var EphemerisFilter = [3, n0, _EF, 0, [_aE], [() => AzElEphemerisFilter]];
|
|
1608
|
+
var EphemerisTypeDescription = [
|
|
1609
|
+
3,
|
|
1610
|
+
n0,
|
|
1611
|
+
_ETD,
|
|
1612
|
+
0,
|
|
1613
|
+
[_tl, _o, _aE],
|
|
1614
|
+
[() => EphemerisDescription, () => EphemerisDescription, () => EphemerisDescription],
|
|
1615
|
+
];
|
|
1616
|
+
var KmsKey = [3, n0, _KK, 0, [_kKA, _kAA, _kAN], [0, 0, 0]];
|
|
1617
|
+
var ProgramTrackSettings = [3, n0, _PTS, 0, [_aE], [() => AzElProgramTrackSettings]];
|
|
1618
|
+
var UplinkDataflowDetails = [3, n0, _UDD, 0, [_aCD], [() => UplinkConnectionDetails]];
|
|
1619
|
+
var CancelContact = [
|
|
1620
|
+
9,
|
|
1621
|
+
n0,
|
|
1622
|
+
_CC,
|
|
1623
|
+
{
|
|
1624
|
+
[_h]: ["DELETE", "/contact/{contactId}", 200],
|
|
1625
|
+
},
|
|
1626
|
+
() => CancelContactRequest,
|
|
1627
|
+
() => ContactIdResponse,
|
|
1628
|
+
];
|
|
1629
|
+
var CreateConfig = [
|
|
1630
|
+
9,
|
|
1631
|
+
n0,
|
|
1632
|
+
_CCr,
|
|
1633
|
+
{
|
|
1634
|
+
[_h]: ["POST", "/config", 200],
|
|
1635
|
+
},
|
|
1636
|
+
() => CreateConfigRequest,
|
|
1637
|
+
() => ConfigIdResponse,
|
|
1638
|
+
];
|
|
1639
|
+
var CreateDataflowEndpointGroup = [
|
|
1640
|
+
9,
|
|
1641
|
+
n0,
|
|
1642
|
+
_CDEG,
|
|
1643
|
+
{
|
|
1644
|
+
[_h]: ["POST", "/dataflowEndpointGroup", 200],
|
|
1645
|
+
},
|
|
1646
|
+
() => CreateDataflowEndpointGroupRequest,
|
|
1647
|
+
() => DataflowEndpointGroupIdResponse,
|
|
1648
|
+
];
|
|
1649
|
+
var CreateDataflowEndpointGroupV2 = [
|
|
1650
|
+
9,
|
|
1651
|
+
n0,
|
|
1652
|
+
_CDEGV,
|
|
1653
|
+
{
|
|
1654
|
+
[_h]: ["POST", "/dataflowEndpointGroupV2", 200],
|
|
1655
|
+
},
|
|
1656
|
+
() => CreateDataflowEndpointGroupV2Request,
|
|
1657
|
+
() => CreateDataflowEndpointGroupV2Response,
|
|
1658
|
+
];
|
|
1659
|
+
var CreateEphemeris = [
|
|
1660
|
+
9,
|
|
1661
|
+
n0,
|
|
1662
|
+
_CE,
|
|
1663
|
+
{
|
|
1664
|
+
[_h]: ["POST", "/ephemeris", 200],
|
|
1665
|
+
},
|
|
1666
|
+
() => CreateEphemerisRequest,
|
|
1667
|
+
() => EphemerisIdResponse,
|
|
1668
|
+
];
|
|
1669
|
+
var CreateMissionProfile = [
|
|
1670
|
+
9,
|
|
1671
|
+
n0,
|
|
1672
|
+
_CMP,
|
|
1673
|
+
{
|
|
1674
|
+
[_h]: ["POST", "/missionprofile", 200],
|
|
1675
|
+
},
|
|
1676
|
+
() => CreateMissionProfileRequest,
|
|
1677
|
+
() => MissionProfileIdResponse,
|
|
1678
|
+
];
|
|
1679
|
+
var DeleteConfig = [
|
|
1680
|
+
9,
|
|
1681
|
+
n0,
|
|
1682
|
+
_DCel,
|
|
1683
|
+
{
|
|
1684
|
+
[_h]: ["DELETE", "/config/{configType}/{configId}", 200],
|
|
1685
|
+
},
|
|
1686
|
+
() => DeleteConfigRequest,
|
|
1687
|
+
() => ConfigIdResponse,
|
|
1688
|
+
];
|
|
1689
|
+
var DeleteDataflowEndpointGroup = [
|
|
1690
|
+
9,
|
|
1691
|
+
n0,
|
|
1692
|
+
_DDEG,
|
|
1693
|
+
{
|
|
1694
|
+
[_h]: ["DELETE", "/dataflowEndpointGroup/{dataflowEndpointGroupId}", 200],
|
|
1695
|
+
},
|
|
1696
|
+
() => DeleteDataflowEndpointGroupRequest,
|
|
1697
|
+
() => DataflowEndpointGroupIdResponse,
|
|
1698
|
+
];
|
|
1699
|
+
var DeleteEphemeris = [
|
|
1700
|
+
9,
|
|
1701
|
+
n0,
|
|
1702
|
+
_DEel,
|
|
1703
|
+
{
|
|
1704
|
+
[_h]: ["DELETE", "/ephemeris/{ephemerisId}", 200],
|
|
1705
|
+
},
|
|
1706
|
+
() => DeleteEphemerisRequest,
|
|
1707
|
+
() => EphemerisIdResponse,
|
|
1708
|
+
];
|
|
1709
|
+
var DeleteMissionProfile = [
|
|
1710
|
+
9,
|
|
1711
|
+
n0,
|
|
1712
|
+
_DMP,
|
|
1713
|
+
{
|
|
1714
|
+
[_h]: ["DELETE", "/missionprofile/{missionProfileId}", 200],
|
|
1715
|
+
},
|
|
1716
|
+
() => DeleteMissionProfileRequest,
|
|
1717
|
+
() => MissionProfileIdResponse,
|
|
1718
|
+
];
|
|
1719
|
+
var DescribeContact = [
|
|
1720
|
+
9,
|
|
1721
|
+
n0,
|
|
1722
|
+
_DCes,
|
|
1723
|
+
{
|
|
1724
|
+
[_h]: ["GET", "/contact/{contactId}", 200],
|
|
1725
|
+
},
|
|
1726
|
+
() => DescribeContactRequest,
|
|
1727
|
+
() => DescribeContactResponse,
|
|
1728
|
+
];
|
|
1729
|
+
var DescribeEphemeris = [
|
|
1730
|
+
9,
|
|
1731
|
+
n0,
|
|
1732
|
+
_DEes,
|
|
1733
|
+
{
|
|
1734
|
+
[_h]: ["GET", "/ephemeris/{ephemerisId}", 200],
|
|
1735
|
+
},
|
|
1736
|
+
() => DescribeEphemerisRequest,
|
|
1737
|
+
() => DescribeEphemerisResponse,
|
|
1738
|
+
];
|
|
1739
|
+
var GetAgentConfiguration = [
|
|
1740
|
+
9,
|
|
1741
|
+
n0,
|
|
1742
|
+
_GAC,
|
|
1743
|
+
{
|
|
1744
|
+
[_h]: ["GET", "/agent/{agentId}/configuration", 200],
|
|
1745
|
+
},
|
|
1746
|
+
() => GetAgentConfigurationRequest,
|
|
1747
|
+
() => GetAgentConfigurationResponse,
|
|
1748
|
+
];
|
|
1749
|
+
var GetAgentTaskResponseUrl = [
|
|
1750
|
+
9,
|
|
1751
|
+
n0,
|
|
1752
|
+
_GATRU,
|
|
1753
|
+
{
|
|
1754
|
+
[_h]: ["GET", "/agentResponseUrl/{agentId}/{taskId}", 200],
|
|
1755
|
+
},
|
|
1756
|
+
() => GetAgentTaskResponseUrlRequest,
|
|
1757
|
+
() => GetAgentTaskResponseUrlResponse,
|
|
1758
|
+
];
|
|
1759
|
+
var GetConfig = [
|
|
1760
|
+
9,
|
|
1761
|
+
n0,
|
|
1762
|
+
_GC,
|
|
1763
|
+
{
|
|
1764
|
+
[_h]: ["GET", "/config/{configType}/{configId}", 200],
|
|
1765
|
+
},
|
|
1766
|
+
() => GetConfigRequest,
|
|
1767
|
+
() => GetConfigResponse,
|
|
1768
|
+
];
|
|
1769
|
+
var GetDataflowEndpointGroup = [
|
|
1770
|
+
9,
|
|
1771
|
+
n0,
|
|
1772
|
+
_GDEG,
|
|
1773
|
+
{
|
|
1774
|
+
[_h]: ["GET", "/dataflowEndpointGroup/{dataflowEndpointGroupId}", 200],
|
|
1775
|
+
},
|
|
1776
|
+
() => GetDataflowEndpointGroupRequest,
|
|
1777
|
+
() => GetDataflowEndpointGroupResponse,
|
|
1778
|
+
];
|
|
1779
|
+
var GetMinuteUsage = [
|
|
1780
|
+
9,
|
|
1781
|
+
n0,
|
|
1782
|
+
_GMU,
|
|
1783
|
+
{
|
|
1784
|
+
[_h]: ["POST", "/minute-usage", 200],
|
|
1785
|
+
},
|
|
1786
|
+
() => GetMinuteUsageRequest,
|
|
1787
|
+
() => GetMinuteUsageResponse,
|
|
1788
|
+
];
|
|
1789
|
+
var GetMissionProfile = [
|
|
1790
|
+
9,
|
|
1791
|
+
n0,
|
|
1792
|
+
_GMP,
|
|
1793
|
+
{
|
|
1794
|
+
[_h]: ["GET", "/missionprofile/{missionProfileId}", 200],
|
|
1795
|
+
},
|
|
1796
|
+
() => GetMissionProfileRequest,
|
|
1797
|
+
() => GetMissionProfileResponse,
|
|
1798
|
+
];
|
|
1799
|
+
var GetSatellite = [
|
|
1800
|
+
9,
|
|
1801
|
+
n0,
|
|
1802
|
+
_GS,
|
|
1803
|
+
{
|
|
1804
|
+
[_h]: ["GET", "/satellite/{satelliteId}", 200],
|
|
1805
|
+
},
|
|
1806
|
+
() => GetSatelliteRequest,
|
|
1807
|
+
() => GetSatelliteResponse,
|
|
1808
|
+
];
|
|
1809
|
+
var ListConfigs = [
|
|
1810
|
+
9,
|
|
1811
|
+
n0,
|
|
1812
|
+
_LC,
|
|
1813
|
+
{
|
|
1814
|
+
[_h]: ["GET", "/config", 200],
|
|
1815
|
+
},
|
|
1816
|
+
() => ListConfigsRequest,
|
|
1817
|
+
() => ListConfigsResponse,
|
|
1818
|
+
];
|
|
1819
|
+
var ListContacts = [
|
|
1820
|
+
9,
|
|
1821
|
+
n0,
|
|
1822
|
+
_LCi,
|
|
1823
|
+
{
|
|
1824
|
+
[_h]: ["POST", "/contacts", 200],
|
|
1825
|
+
},
|
|
1826
|
+
() => ListContactsRequest,
|
|
1827
|
+
() => ListContactsResponse,
|
|
1828
|
+
];
|
|
1829
|
+
var ListDataflowEndpointGroups = [
|
|
1830
|
+
9,
|
|
1831
|
+
n0,
|
|
1832
|
+
_LDEG,
|
|
1833
|
+
{
|
|
1834
|
+
[_h]: ["GET", "/dataflowEndpointGroup", 200],
|
|
1835
|
+
},
|
|
1836
|
+
() => ListDataflowEndpointGroupsRequest,
|
|
1837
|
+
() => ListDataflowEndpointGroupsResponse,
|
|
1838
|
+
];
|
|
1839
|
+
var ListEphemerides = [
|
|
1840
|
+
9,
|
|
1841
|
+
n0,
|
|
1842
|
+
_LE,
|
|
1843
|
+
{
|
|
1844
|
+
[_h]: ["POST", "/ephemerides", 200],
|
|
1845
|
+
},
|
|
1846
|
+
() => ListEphemeridesRequest,
|
|
1847
|
+
() => ListEphemeridesResponse,
|
|
1848
|
+
];
|
|
1849
|
+
var ListGroundStations = [
|
|
1850
|
+
9,
|
|
1851
|
+
n0,
|
|
1852
|
+
_LGS,
|
|
1853
|
+
{
|
|
1854
|
+
[_h]: ["GET", "/groundstation", 200],
|
|
1855
|
+
},
|
|
1856
|
+
() => ListGroundStationsRequest,
|
|
1857
|
+
() => ListGroundStationsResponse,
|
|
1858
|
+
];
|
|
1859
|
+
var ListMissionProfiles = [
|
|
1860
|
+
9,
|
|
1861
|
+
n0,
|
|
1862
|
+
_LMP,
|
|
1863
|
+
{
|
|
1864
|
+
[_h]: ["GET", "/missionprofile", 200],
|
|
1865
|
+
},
|
|
1866
|
+
() => ListMissionProfilesRequest,
|
|
1867
|
+
() => ListMissionProfilesResponse,
|
|
1868
|
+
];
|
|
1869
|
+
var ListSatellites = [
|
|
1870
|
+
9,
|
|
1871
|
+
n0,
|
|
1872
|
+
_LS,
|
|
1873
|
+
{
|
|
1874
|
+
[_h]: ["GET", "/satellite", 200],
|
|
1875
|
+
},
|
|
1876
|
+
() => ListSatellitesRequest,
|
|
1877
|
+
() => ListSatellitesResponse,
|
|
1878
|
+
];
|
|
1879
|
+
var ListTagsForResource = [
|
|
1880
|
+
9,
|
|
1881
|
+
n0,
|
|
1882
|
+
_LTFR,
|
|
1883
|
+
{
|
|
1884
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1885
|
+
},
|
|
1886
|
+
() => ListTagsForResourceRequest,
|
|
1887
|
+
() => ListTagsForResourceResponse,
|
|
1888
|
+
];
|
|
1889
|
+
var RegisterAgent = [
|
|
1890
|
+
9,
|
|
1891
|
+
n0,
|
|
1892
|
+
_RA,
|
|
1893
|
+
{
|
|
1894
|
+
[_h]: ["POST", "/agent", 200],
|
|
1895
|
+
},
|
|
1896
|
+
() => RegisterAgentRequest,
|
|
1897
|
+
() => RegisterAgentResponse,
|
|
1898
|
+
];
|
|
1899
|
+
var ReserveContact = [
|
|
1900
|
+
9,
|
|
1901
|
+
n0,
|
|
1902
|
+
_RC,
|
|
1903
|
+
{
|
|
1904
|
+
[_h]: ["POST", "/contact", 200],
|
|
1905
|
+
},
|
|
1906
|
+
() => ReserveContactRequest,
|
|
1907
|
+
() => ContactIdResponse,
|
|
1908
|
+
];
|
|
1909
|
+
var TagResource = [
|
|
1910
|
+
9,
|
|
1911
|
+
n0,
|
|
1912
|
+
_TRa,
|
|
1913
|
+
{
|
|
1914
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1915
|
+
},
|
|
1916
|
+
() => TagResourceRequest,
|
|
1917
|
+
() => TagResourceResponse,
|
|
1918
|
+
];
|
|
1919
|
+
var UntagResource = [
|
|
1920
|
+
9,
|
|
1921
|
+
n0,
|
|
1922
|
+
_UR,
|
|
1923
|
+
{
|
|
1924
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1925
|
+
},
|
|
1926
|
+
() => UntagResourceRequest,
|
|
1927
|
+
() => UntagResourceResponse,
|
|
1928
|
+
];
|
|
1929
|
+
var UpdateAgentStatus = [
|
|
1930
|
+
9,
|
|
1931
|
+
n0,
|
|
1932
|
+
_UAS,
|
|
1933
|
+
{
|
|
1934
|
+
[_h]: ["PUT", "/agent/{agentId}", 200],
|
|
1935
|
+
},
|
|
1936
|
+
() => UpdateAgentStatusRequest,
|
|
1937
|
+
() => UpdateAgentStatusResponse,
|
|
1938
|
+
];
|
|
1939
|
+
var UpdateConfig = [
|
|
1940
|
+
9,
|
|
1941
|
+
n0,
|
|
1942
|
+
_UC,
|
|
1943
|
+
{
|
|
1944
|
+
[_h]: ["PUT", "/config/{configType}/{configId}", 200],
|
|
1945
|
+
},
|
|
1946
|
+
() => UpdateConfigRequest,
|
|
1947
|
+
() => ConfigIdResponse,
|
|
1948
|
+
];
|
|
1949
|
+
var UpdateEphemeris = [
|
|
1950
|
+
9,
|
|
1951
|
+
n0,
|
|
1952
|
+
_UE,
|
|
1953
|
+
{
|
|
1954
|
+
[_h]: ["PUT", "/ephemeris/{ephemerisId}", 200],
|
|
1955
|
+
},
|
|
1956
|
+
() => UpdateEphemerisRequest,
|
|
1957
|
+
() => EphemerisIdResponse,
|
|
1958
|
+
];
|
|
1959
|
+
var UpdateMissionProfile = [
|
|
1960
|
+
9,
|
|
1961
|
+
n0,
|
|
1962
|
+
_UMP,
|
|
1963
|
+
{
|
|
1964
|
+
[_h]: ["PUT", "/missionprofile/{missionProfileId}", 200],
|
|
1965
|
+
},
|
|
1966
|
+
() => UpdateMissionProfileRequest,
|
|
1967
|
+
() => MissionProfileIdResponse,
|
|
1968
|
+
];
|
|
1938
1969
|
|
|
1939
1970
|
class CancelContactCommand extends smithyClient.Command
|
|
1940
1971
|
.classBuilder()
|
|
1941
1972
|
.ep(commonParams)
|
|
1942
1973
|
.m(function (Command, cs, config, o) {
|
|
1943
|
-
return [
|
|
1944
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1945
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1946
|
-
];
|
|
1974
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1947
1975
|
})
|
|
1948
1976
|
.s("GroundStation", "CancelContact", {})
|
|
1949
1977
|
.n("GroundStationClient", "CancelContactCommand")
|
|
1950
|
-
.
|
|
1951
|
-
.ser(se_CancelContactCommand)
|
|
1952
|
-
.de(de_CancelContactCommand)
|
|
1978
|
+
.sc(CancelContact)
|
|
1953
1979
|
.build() {
|
|
1954
1980
|
}
|
|
1955
1981
|
|
|
@@ -1957,16 +1983,11 @@ class CreateConfigCommand extends smithyClient.Command
|
|
|
1957
1983
|
.classBuilder()
|
|
1958
1984
|
.ep(commonParams)
|
|
1959
1985
|
.m(function (Command, cs, config, o) {
|
|
1960
|
-
return [
|
|
1961
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1962
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1963
|
-
];
|
|
1986
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1964
1987
|
})
|
|
1965
1988
|
.s("GroundStation", "CreateConfig", {})
|
|
1966
1989
|
.n("GroundStationClient", "CreateConfigCommand")
|
|
1967
|
-
.
|
|
1968
|
-
.ser(se_CreateConfigCommand)
|
|
1969
|
-
.de(de_CreateConfigCommand)
|
|
1990
|
+
.sc(CreateConfig)
|
|
1970
1991
|
.build() {
|
|
1971
1992
|
}
|
|
1972
1993
|
|
|
@@ -1974,16 +1995,11 @@ class CreateDataflowEndpointGroupCommand extends smithyClient.Command
|
|
|
1974
1995
|
.classBuilder()
|
|
1975
1996
|
.ep(commonParams)
|
|
1976
1997
|
.m(function (Command, cs, config, o) {
|
|
1977
|
-
return [
|
|
1978
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1979
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1980
|
-
];
|
|
1998
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1981
1999
|
})
|
|
1982
2000
|
.s("GroundStation", "CreateDataflowEndpointGroup", {})
|
|
1983
2001
|
.n("GroundStationClient", "CreateDataflowEndpointGroupCommand")
|
|
1984
|
-
.
|
|
1985
|
-
.ser(se_CreateDataflowEndpointGroupCommand)
|
|
1986
|
-
.de(de_CreateDataflowEndpointGroupCommand)
|
|
2002
|
+
.sc(CreateDataflowEndpointGroup)
|
|
1987
2003
|
.build() {
|
|
1988
2004
|
}
|
|
1989
2005
|
|
|
@@ -1991,16 +2007,11 @@ class CreateDataflowEndpointGroupV2Command extends smithyClient.Command
|
|
|
1991
2007
|
.classBuilder()
|
|
1992
2008
|
.ep(commonParams)
|
|
1993
2009
|
.m(function (Command, cs, config, o) {
|
|
1994
|
-
return [
|
|
1995
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1996
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1997
|
-
];
|
|
2010
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1998
2011
|
})
|
|
1999
2012
|
.s("GroundStation", "CreateDataflowEndpointGroupV2", {})
|
|
2000
2013
|
.n("GroundStationClient", "CreateDataflowEndpointGroupV2Command")
|
|
2001
|
-
.
|
|
2002
|
-
.ser(se_CreateDataflowEndpointGroupV2Command)
|
|
2003
|
-
.de(de_CreateDataflowEndpointGroupV2Command)
|
|
2014
|
+
.sc(CreateDataflowEndpointGroupV2)
|
|
2004
2015
|
.build() {
|
|
2005
2016
|
}
|
|
2006
2017
|
|
|
@@ -2008,16 +2019,11 @@ class CreateEphemerisCommand extends smithyClient.Command
|
|
|
2008
2019
|
.classBuilder()
|
|
2009
2020
|
.ep(commonParams)
|
|
2010
2021
|
.m(function (Command, cs, config, o) {
|
|
2011
|
-
return [
|
|
2012
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2013
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2014
|
-
];
|
|
2022
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2015
2023
|
})
|
|
2016
2024
|
.s("GroundStation", "CreateEphemeris", {})
|
|
2017
2025
|
.n("GroundStationClient", "CreateEphemerisCommand")
|
|
2018
|
-
.
|
|
2019
|
-
.ser(se_CreateEphemerisCommand)
|
|
2020
|
-
.de(de_CreateEphemerisCommand)
|
|
2026
|
+
.sc(CreateEphemeris)
|
|
2021
2027
|
.build() {
|
|
2022
2028
|
}
|
|
2023
2029
|
|
|
@@ -2025,16 +2031,11 @@ class CreateMissionProfileCommand extends smithyClient.Command
|
|
|
2025
2031
|
.classBuilder()
|
|
2026
2032
|
.ep(commonParams)
|
|
2027
2033
|
.m(function (Command, cs, config, o) {
|
|
2028
|
-
return [
|
|
2029
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2030
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2031
|
-
];
|
|
2034
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2032
2035
|
})
|
|
2033
2036
|
.s("GroundStation", "CreateMissionProfile", {})
|
|
2034
2037
|
.n("GroundStationClient", "CreateMissionProfileCommand")
|
|
2035
|
-
.
|
|
2036
|
-
.ser(se_CreateMissionProfileCommand)
|
|
2037
|
-
.de(de_CreateMissionProfileCommand)
|
|
2038
|
+
.sc(CreateMissionProfile)
|
|
2038
2039
|
.build() {
|
|
2039
2040
|
}
|
|
2040
2041
|
|
|
@@ -2042,16 +2043,11 @@ class DeleteConfigCommand extends smithyClient.Command
|
|
|
2042
2043
|
.classBuilder()
|
|
2043
2044
|
.ep(commonParams)
|
|
2044
2045
|
.m(function (Command, cs, config, o) {
|
|
2045
|
-
return [
|
|
2046
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2047
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2048
|
-
];
|
|
2046
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2049
2047
|
})
|
|
2050
2048
|
.s("GroundStation", "DeleteConfig", {})
|
|
2051
2049
|
.n("GroundStationClient", "DeleteConfigCommand")
|
|
2052
|
-
.
|
|
2053
|
-
.ser(se_DeleteConfigCommand)
|
|
2054
|
-
.de(de_DeleteConfigCommand)
|
|
2050
|
+
.sc(DeleteConfig)
|
|
2055
2051
|
.build() {
|
|
2056
2052
|
}
|
|
2057
2053
|
|
|
@@ -2059,16 +2055,11 @@ class DeleteDataflowEndpointGroupCommand extends smithyClient.Command
|
|
|
2059
2055
|
.classBuilder()
|
|
2060
2056
|
.ep(commonParams)
|
|
2061
2057
|
.m(function (Command, cs, config, o) {
|
|
2062
|
-
return [
|
|
2063
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2064
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2065
|
-
];
|
|
2058
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2066
2059
|
})
|
|
2067
2060
|
.s("GroundStation", "DeleteDataflowEndpointGroup", {})
|
|
2068
2061
|
.n("GroundStationClient", "DeleteDataflowEndpointGroupCommand")
|
|
2069
|
-
.
|
|
2070
|
-
.ser(se_DeleteDataflowEndpointGroupCommand)
|
|
2071
|
-
.de(de_DeleteDataflowEndpointGroupCommand)
|
|
2062
|
+
.sc(DeleteDataflowEndpointGroup)
|
|
2072
2063
|
.build() {
|
|
2073
2064
|
}
|
|
2074
2065
|
|
|
@@ -2076,16 +2067,11 @@ class DeleteEphemerisCommand extends smithyClient.Command
|
|
|
2076
2067
|
.classBuilder()
|
|
2077
2068
|
.ep(commonParams)
|
|
2078
2069
|
.m(function (Command, cs, config, o) {
|
|
2079
|
-
return [
|
|
2080
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2081
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2082
|
-
];
|
|
2070
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2083
2071
|
})
|
|
2084
2072
|
.s("GroundStation", "DeleteEphemeris", {})
|
|
2085
2073
|
.n("GroundStationClient", "DeleteEphemerisCommand")
|
|
2086
|
-
.
|
|
2087
|
-
.ser(se_DeleteEphemerisCommand)
|
|
2088
|
-
.de(de_DeleteEphemerisCommand)
|
|
2074
|
+
.sc(DeleteEphemeris)
|
|
2089
2075
|
.build() {
|
|
2090
2076
|
}
|
|
2091
2077
|
|
|
@@ -2093,16 +2079,11 @@ class DeleteMissionProfileCommand extends smithyClient.Command
|
|
|
2093
2079
|
.classBuilder()
|
|
2094
2080
|
.ep(commonParams)
|
|
2095
2081
|
.m(function (Command, cs, config, o) {
|
|
2096
|
-
return [
|
|
2097
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2098
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2099
|
-
];
|
|
2082
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2100
2083
|
})
|
|
2101
2084
|
.s("GroundStation", "DeleteMissionProfile", {})
|
|
2102
2085
|
.n("GroundStationClient", "DeleteMissionProfileCommand")
|
|
2103
|
-
.
|
|
2104
|
-
.ser(se_DeleteMissionProfileCommand)
|
|
2105
|
-
.de(de_DeleteMissionProfileCommand)
|
|
2086
|
+
.sc(DeleteMissionProfile)
|
|
2106
2087
|
.build() {
|
|
2107
2088
|
}
|
|
2108
2089
|
|
|
@@ -2110,16 +2091,11 @@ class DescribeContactCommand extends smithyClient.Command
|
|
|
2110
2091
|
.classBuilder()
|
|
2111
2092
|
.ep(commonParams)
|
|
2112
2093
|
.m(function (Command, cs, config, o) {
|
|
2113
|
-
return [
|
|
2114
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2115
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2116
|
-
];
|
|
2094
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2117
2095
|
})
|
|
2118
2096
|
.s("GroundStation", "DescribeContact", {})
|
|
2119
2097
|
.n("GroundStationClient", "DescribeContactCommand")
|
|
2120
|
-
.
|
|
2121
|
-
.ser(se_DescribeContactCommand)
|
|
2122
|
-
.de(de_DescribeContactCommand)
|
|
2098
|
+
.sc(DescribeContact)
|
|
2123
2099
|
.build() {
|
|
2124
2100
|
}
|
|
2125
2101
|
|
|
@@ -2127,16 +2103,11 @@ class DescribeEphemerisCommand extends smithyClient.Command
|
|
|
2127
2103
|
.classBuilder()
|
|
2128
2104
|
.ep(commonParams)
|
|
2129
2105
|
.m(function (Command, cs, config, o) {
|
|
2130
|
-
return [
|
|
2131
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2132
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2133
|
-
];
|
|
2106
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2134
2107
|
})
|
|
2135
2108
|
.s("GroundStation", "DescribeEphemeris", {})
|
|
2136
2109
|
.n("GroundStationClient", "DescribeEphemerisCommand")
|
|
2137
|
-
.
|
|
2138
|
-
.ser(se_DescribeEphemerisCommand)
|
|
2139
|
-
.de(de_DescribeEphemerisCommand)
|
|
2110
|
+
.sc(DescribeEphemeris)
|
|
2140
2111
|
.build() {
|
|
2141
2112
|
}
|
|
2142
2113
|
|
|
@@ -2144,16 +2115,11 @@ class GetAgentConfigurationCommand extends smithyClient.Command
|
|
|
2144
2115
|
.classBuilder()
|
|
2145
2116
|
.ep(commonParams)
|
|
2146
2117
|
.m(function (Command, cs, config, o) {
|
|
2147
|
-
return [
|
|
2148
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2149
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2150
|
-
];
|
|
2118
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2151
2119
|
})
|
|
2152
2120
|
.s("GroundStation", "GetAgentConfiguration", {})
|
|
2153
2121
|
.n("GroundStationClient", "GetAgentConfigurationCommand")
|
|
2154
|
-
.
|
|
2155
|
-
.ser(se_GetAgentConfigurationCommand)
|
|
2156
|
-
.de(de_GetAgentConfigurationCommand)
|
|
2122
|
+
.sc(GetAgentConfiguration)
|
|
2157
2123
|
.build() {
|
|
2158
2124
|
}
|
|
2159
2125
|
|
|
@@ -2161,16 +2127,11 @@ class GetAgentTaskResponseUrlCommand extends smithyClient.Command
|
|
|
2161
2127
|
.classBuilder()
|
|
2162
2128
|
.ep(commonParams)
|
|
2163
2129
|
.m(function (Command, cs, config, o) {
|
|
2164
|
-
return [
|
|
2165
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2166
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2167
|
-
];
|
|
2130
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2168
2131
|
})
|
|
2169
2132
|
.s("GroundStation", "GetAgentTaskResponseUrl", {})
|
|
2170
2133
|
.n("GroundStationClient", "GetAgentTaskResponseUrlCommand")
|
|
2171
|
-
.
|
|
2172
|
-
.ser(se_GetAgentTaskResponseUrlCommand)
|
|
2173
|
-
.de(de_GetAgentTaskResponseUrlCommand)
|
|
2134
|
+
.sc(GetAgentTaskResponseUrl)
|
|
2174
2135
|
.build() {
|
|
2175
2136
|
}
|
|
2176
2137
|
|
|
@@ -2178,16 +2139,11 @@ class GetConfigCommand extends smithyClient.Command
|
|
|
2178
2139
|
.classBuilder()
|
|
2179
2140
|
.ep(commonParams)
|
|
2180
2141
|
.m(function (Command, cs, config, o) {
|
|
2181
|
-
return [
|
|
2182
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2183
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2184
|
-
];
|
|
2142
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2185
2143
|
})
|
|
2186
2144
|
.s("GroundStation", "GetConfig", {})
|
|
2187
2145
|
.n("GroundStationClient", "GetConfigCommand")
|
|
2188
|
-
.
|
|
2189
|
-
.ser(se_GetConfigCommand)
|
|
2190
|
-
.de(de_GetConfigCommand)
|
|
2146
|
+
.sc(GetConfig)
|
|
2191
2147
|
.build() {
|
|
2192
2148
|
}
|
|
2193
2149
|
|
|
@@ -2195,16 +2151,11 @@ class GetDataflowEndpointGroupCommand extends smithyClient.Command
|
|
|
2195
2151
|
.classBuilder()
|
|
2196
2152
|
.ep(commonParams)
|
|
2197
2153
|
.m(function (Command, cs, config, o) {
|
|
2198
|
-
return [
|
|
2199
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2200
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2201
|
-
];
|
|
2154
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2202
2155
|
})
|
|
2203
2156
|
.s("GroundStation", "GetDataflowEndpointGroup", {})
|
|
2204
2157
|
.n("GroundStationClient", "GetDataflowEndpointGroupCommand")
|
|
2205
|
-
.
|
|
2206
|
-
.ser(se_GetDataflowEndpointGroupCommand)
|
|
2207
|
-
.de(de_GetDataflowEndpointGroupCommand)
|
|
2158
|
+
.sc(GetDataflowEndpointGroup)
|
|
2208
2159
|
.build() {
|
|
2209
2160
|
}
|
|
2210
2161
|
|
|
@@ -2212,16 +2163,11 @@ class GetMinuteUsageCommand extends smithyClient.Command
|
|
|
2212
2163
|
.classBuilder()
|
|
2213
2164
|
.ep(commonParams)
|
|
2214
2165
|
.m(function (Command, cs, config, o) {
|
|
2215
|
-
return [
|
|
2216
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2217
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2218
|
-
];
|
|
2166
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2219
2167
|
})
|
|
2220
2168
|
.s("GroundStation", "GetMinuteUsage", {})
|
|
2221
2169
|
.n("GroundStationClient", "GetMinuteUsageCommand")
|
|
2222
|
-
.
|
|
2223
|
-
.ser(se_GetMinuteUsageCommand)
|
|
2224
|
-
.de(de_GetMinuteUsageCommand)
|
|
2170
|
+
.sc(GetMinuteUsage)
|
|
2225
2171
|
.build() {
|
|
2226
2172
|
}
|
|
2227
2173
|
|
|
@@ -2229,16 +2175,11 @@ class GetMissionProfileCommand extends smithyClient.Command
|
|
|
2229
2175
|
.classBuilder()
|
|
2230
2176
|
.ep(commonParams)
|
|
2231
2177
|
.m(function (Command, cs, config, o) {
|
|
2232
|
-
return [
|
|
2233
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2234
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2235
|
-
];
|
|
2178
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2236
2179
|
})
|
|
2237
2180
|
.s("GroundStation", "GetMissionProfile", {})
|
|
2238
2181
|
.n("GroundStationClient", "GetMissionProfileCommand")
|
|
2239
|
-
.
|
|
2240
|
-
.ser(se_GetMissionProfileCommand)
|
|
2241
|
-
.de(de_GetMissionProfileCommand)
|
|
2182
|
+
.sc(GetMissionProfile)
|
|
2242
2183
|
.build() {
|
|
2243
2184
|
}
|
|
2244
2185
|
|
|
@@ -2246,16 +2187,11 @@ class GetSatelliteCommand extends smithyClient.Command
|
|
|
2246
2187
|
.classBuilder()
|
|
2247
2188
|
.ep(commonParams)
|
|
2248
2189
|
.m(function (Command, cs, config, o) {
|
|
2249
|
-
return [
|
|
2250
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2251
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2252
|
-
];
|
|
2190
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2253
2191
|
})
|
|
2254
2192
|
.s("GroundStation", "GetSatellite", {})
|
|
2255
2193
|
.n("GroundStationClient", "GetSatelliteCommand")
|
|
2256
|
-
.
|
|
2257
|
-
.ser(se_GetSatelliteCommand)
|
|
2258
|
-
.de(de_GetSatelliteCommand)
|
|
2194
|
+
.sc(GetSatellite)
|
|
2259
2195
|
.build() {
|
|
2260
2196
|
}
|
|
2261
2197
|
|
|
@@ -2263,16 +2199,11 @@ class ListConfigsCommand extends smithyClient.Command
|
|
|
2263
2199
|
.classBuilder()
|
|
2264
2200
|
.ep(commonParams)
|
|
2265
2201
|
.m(function (Command, cs, config, o) {
|
|
2266
|
-
return [
|
|
2267
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2268
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2269
|
-
];
|
|
2202
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2270
2203
|
})
|
|
2271
2204
|
.s("GroundStation", "ListConfigs", {})
|
|
2272
2205
|
.n("GroundStationClient", "ListConfigsCommand")
|
|
2273
|
-
.
|
|
2274
|
-
.ser(se_ListConfigsCommand)
|
|
2275
|
-
.de(de_ListConfigsCommand)
|
|
2206
|
+
.sc(ListConfigs)
|
|
2276
2207
|
.build() {
|
|
2277
2208
|
}
|
|
2278
2209
|
|
|
@@ -2280,16 +2211,11 @@ class ListContactsCommand extends smithyClient.Command
|
|
|
2280
2211
|
.classBuilder()
|
|
2281
2212
|
.ep(commonParams)
|
|
2282
2213
|
.m(function (Command, cs, config, o) {
|
|
2283
|
-
return [
|
|
2284
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2285
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2286
|
-
];
|
|
2214
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2287
2215
|
})
|
|
2288
2216
|
.s("GroundStation", "ListContacts", {})
|
|
2289
2217
|
.n("GroundStationClient", "ListContactsCommand")
|
|
2290
|
-
.
|
|
2291
|
-
.ser(se_ListContactsCommand)
|
|
2292
|
-
.de(de_ListContactsCommand)
|
|
2218
|
+
.sc(ListContacts)
|
|
2293
2219
|
.build() {
|
|
2294
2220
|
}
|
|
2295
2221
|
|
|
@@ -2297,16 +2223,11 @@ class ListDataflowEndpointGroupsCommand extends smithyClient.Command
|
|
|
2297
2223
|
.classBuilder()
|
|
2298
2224
|
.ep(commonParams)
|
|
2299
2225
|
.m(function (Command, cs, config, o) {
|
|
2300
|
-
return [
|
|
2301
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2302
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2303
|
-
];
|
|
2226
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2304
2227
|
})
|
|
2305
2228
|
.s("GroundStation", "ListDataflowEndpointGroups", {})
|
|
2306
2229
|
.n("GroundStationClient", "ListDataflowEndpointGroupsCommand")
|
|
2307
|
-
.
|
|
2308
|
-
.ser(se_ListDataflowEndpointGroupsCommand)
|
|
2309
|
-
.de(de_ListDataflowEndpointGroupsCommand)
|
|
2230
|
+
.sc(ListDataflowEndpointGroups)
|
|
2310
2231
|
.build() {
|
|
2311
2232
|
}
|
|
2312
2233
|
|
|
@@ -2314,16 +2235,11 @@ class ListEphemeridesCommand extends smithyClient.Command
|
|
|
2314
2235
|
.classBuilder()
|
|
2315
2236
|
.ep(commonParams)
|
|
2316
2237
|
.m(function (Command, cs, config, o) {
|
|
2317
|
-
return [
|
|
2318
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2319
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2320
|
-
];
|
|
2238
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2321
2239
|
})
|
|
2322
2240
|
.s("GroundStation", "ListEphemerides", {})
|
|
2323
2241
|
.n("GroundStationClient", "ListEphemeridesCommand")
|
|
2324
|
-
.
|
|
2325
|
-
.ser(se_ListEphemeridesCommand)
|
|
2326
|
-
.de(de_ListEphemeridesCommand)
|
|
2242
|
+
.sc(ListEphemerides)
|
|
2327
2243
|
.build() {
|
|
2328
2244
|
}
|
|
2329
2245
|
|
|
@@ -2331,16 +2247,11 @@ class ListGroundStationsCommand extends smithyClient.Command
|
|
|
2331
2247
|
.classBuilder()
|
|
2332
2248
|
.ep(commonParams)
|
|
2333
2249
|
.m(function (Command, cs, config, o) {
|
|
2334
|
-
return [
|
|
2335
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2336
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2337
|
-
];
|
|
2250
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2338
2251
|
})
|
|
2339
2252
|
.s("GroundStation", "ListGroundStations", {})
|
|
2340
2253
|
.n("GroundStationClient", "ListGroundStationsCommand")
|
|
2341
|
-
.
|
|
2342
|
-
.ser(se_ListGroundStationsCommand)
|
|
2343
|
-
.de(de_ListGroundStationsCommand)
|
|
2254
|
+
.sc(ListGroundStations)
|
|
2344
2255
|
.build() {
|
|
2345
2256
|
}
|
|
2346
2257
|
|
|
@@ -2348,16 +2259,11 @@ class ListMissionProfilesCommand extends smithyClient.Command
|
|
|
2348
2259
|
.classBuilder()
|
|
2349
2260
|
.ep(commonParams)
|
|
2350
2261
|
.m(function (Command, cs, config, o) {
|
|
2351
|
-
return [
|
|
2352
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2353
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2354
|
-
];
|
|
2262
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2355
2263
|
})
|
|
2356
2264
|
.s("GroundStation", "ListMissionProfiles", {})
|
|
2357
2265
|
.n("GroundStationClient", "ListMissionProfilesCommand")
|
|
2358
|
-
.
|
|
2359
|
-
.ser(se_ListMissionProfilesCommand)
|
|
2360
|
-
.de(de_ListMissionProfilesCommand)
|
|
2266
|
+
.sc(ListMissionProfiles)
|
|
2361
2267
|
.build() {
|
|
2362
2268
|
}
|
|
2363
2269
|
|
|
@@ -2365,16 +2271,11 @@ class ListSatellitesCommand extends smithyClient.Command
|
|
|
2365
2271
|
.classBuilder()
|
|
2366
2272
|
.ep(commonParams)
|
|
2367
2273
|
.m(function (Command, cs, config, o) {
|
|
2368
|
-
return [
|
|
2369
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2370
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2371
|
-
];
|
|
2274
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2372
2275
|
})
|
|
2373
2276
|
.s("GroundStation", "ListSatellites", {})
|
|
2374
2277
|
.n("GroundStationClient", "ListSatellitesCommand")
|
|
2375
|
-
.
|
|
2376
|
-
.ser(se_ListSatellitesCommand)
|
|
2377
|
-
.de(de_ListSatellitesCommand)
|
|
2278
|
+
.sc(ListSatellites)
|
|
2378
2279
|
.build() {
|
|
2379
2280
|
}
|
|
2380
2281
|
|
|
@@ -2382,16 +2283,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2382
2283
|
.classBuilder()
|
|
2383
2284
|
.ep(commonParams)
|
|
2384
2285
|
.m(function (Command, cs, config, o) {
|
|
2385
|
-
return [
|
|
2386
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2387
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2388
|
-
];
|
|
2286
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2389
2287
|
})
|
|
2390
2288
|
.s("GroundStation", "ListTagsForResource", {})
|
|
2391
2289
|
.n("GroundStationClient", "ListTagsForResourceCommand")
|
|
2392
|
-
.
|
|
2393
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2394
|
-
.de(de_ListTagsForResourceCommand)
|
|
2290
|
+
.sc(ListTagsForResource)
|
|
2395
2291
|
.build() {
|
|
2396
2292
|
}
|
|
2397
2293
|
|
|
@@ -2399,16 +2295,11 @@ class RegisterAgentCommand extends smithyClient.Command
|
|
|
2399
2295
|
.classBuilder()
|
|
2400
2296
|
.ep(commonParams)
|
|
2401
2297
|
.m(function (Command, cs, config, o) {
|
|
2402
|
-
return [
|
|
2403
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2404
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2405
|
-
];
|
|
2298
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2406
2299
|
})
|
|
2407
2300
|
.s("GroundStation", "RegisterAgent", {})
|
|
2408
2301
|
.n("GroundStationClient", "RegisterAgentCommand")
|
|
2409
|
-
.
|
|
2410
|
-
.ser(se_RegisterAgentCommand)
|
|
2411
|
-
.de(de_RegisterAgentCommand)
|
|
2302
|
+
.sc(RegisterAgent)
|
|
2412
2303
|
.build() {
|
|
2413
2304
|
}
|
|
2414
2305
|
|
|
@@ -2416,16 +2307,11 @@ class ReserveContactCommand extends smithyClient.Command
|
|
|
2416
2307
|
.classBuilder()
|
|
2417
2308
|
.ep(commonParams)
|
|
2418
2309
|
.m(function (Command, cs, config, o) {
|
|
2419
|
-
return [
|
|
2420
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2421
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2422
|
-
];
|
|
2310
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2423
2311
|
})
|
|
2424
2312
|
.s("GroundStation", "ReserveContact", {})
|
|
2425
2313
|
.n("GroundStationClient", "ReserveContactCommand")
|
|
2426
|
-
.
|
|
2427
|
-
.ser(se_ReserveContactCommand)
|
|
2428
|
-
.de(de_ReserveContactCommand)
|
|
2314
|
+
.sc(ReserveContact)
|
|
2429
2315
|
.build() {
|
|
2430
2316
|
}
|
|
2431
2317
|
|
|
@@ -2433,16 +2319,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2433
2319
|
.classBuilder()
|
|
2434
2320
|
.ep(commonParams)
|
|
2435
2321
|
.m(function (Command, cs, config, o) {
|
|
2436
|
-
return [
|
|
2437
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2438
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2439
|
-
];
|
|
2322
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2440
2323
|
})
|
|
2441
2324
|
.s("GroundStation", "TagResource", {})
|
|
2442
2325
|
.n("GroundStationClient", "TagResourceCommand")
|
|
2443
|
-
.
|
|
2444
|
-
.ser(se_TagResourceCommand)
|
|
2445
|
-
.de(de_TagResourceCommand)
|
|
2326
|
+
.sc(TagResource)
|
|
2446
2327
|
.build() {
|
|
2447
2328
|
}
|
|
2448
2329
|
|
|
@@ -2450,16 +2331,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2450
2331
|
.classBuilder()
|
|
2451
2332
|
.ep(commonParams)
|
|
2452
2333
|
.m(function (Command, cs, config, o) {
|
|
2453
|
-
return [
|
|
2454
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2455
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2456
|
-
];
|
|
2334
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2457
2335
|
})
|
|
2458
2336
|
.s("GroundStation", "UntagResource", {})
|
|
2459
2337
|
.n("GroundStationClient", "UntagResourceCommand")
|
|
2460
|
-
.
|
|
2461
|
-
.ser(se_UntagResourceCommand)
|
|
2462
|
-
.de(de_UntagResourceCommand)
|
|
2338
|
+
.sc(UntagResource)
|
|
2463
2339
|
.build() {
|
|
2464
2340
|
}
|
|
2465
2341
|
|
|
@@ -2467,16 +2343,11 @@ class UpdateAgentStatusCommand extends smithyClient.Command
|
|
|
2467
2343
|
.classBuilder()
|
|
2468
2344
|
.ep(commonParams)
|
|
2469
2345
|
.m(function (Command, cs, config, o) {
|
|
2470
|
-
return [
|
|
2471
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2472
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2473
|
-
];
|
|
2346
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2474
2347
|
})
|
|
2475
2348
|
.s("GroundStation", "UpdateAgentStatus", {})
|
|
2476
2349
|
.n("GroundStationClient", "UpdateAgentStatusCommand")
|
|
2477
|
-
.
|
|
2478
|
-
.ser(se_UpdateAgentStatusCommand)
|
|
2479
|
-
.de(de_UpdateAgentStatusCommand)
|
|
2350
|
+
.sc(UpdateAgentStatus)
|
|
2480
2351
|
.build() {
|
|
2481
2352
|
}
|
|
2482
2353
|
|
|
@@ -2484,16 +2355,11 @@ class UpdateConfigCommand extends smithyClient.Command
|
|
|
2484
2355
|
.classBuilder()
|
|
2485
2356
|
.ep(commonParams)
|
|
2486
2357
|
.m(function (Command, cs, config, o) {
|
|
2487
|
-
return [
|
|
2488
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2489
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2490
|
-
];
|
|
2358
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2491
2359
|
})
|
|
2492
2360
|
.s("GroundStation", "UpdateConfig", {})
|
|
2493
2361
|
.n("GroundStationClient", "UpdateConfigCommand")
|
|
2494
|
-
.
|
|
2495
|
-
.ser(se_UpdateConfigCommand)
|
|
2496
|
-
.de(de_UpdateConfigCommand)
|
|
2362
|
+
.sc(UpdateConfig)
|
|
2497
2363
|
.build() {
|
|
2498
2364
|
}
|
|
2499
2365
|
|
|
@@ -2501,16 +2367,11 @@ class UpdateEphemerisCommand extends smithyClient.Command
|
|
|
2501
2367
|
.classBuilder()
|
|
2502
2368
|
.ep(commonParams)
|
|
2503
2369
|
.m(function (Command, cs, config, o) {
|
|
2504
|
-
return [
|
|
2505
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2506
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2507
|
-
];
|
|
2370
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2508
2371
|
})
|
|
2509
2372
|
.s("GroundStation", "UpdateEphemeris", {})
|
|
2510
2373
|
.n("GroundStationClient", "UpdateEphemerisCommand")
|
|
2511
|
-
.
|
|
2512
|
-
.ser(se_UpdateEphemerisCommand)
|
|
2513
|
-
.de(de_UpdateEphemerisCommand)
|
|
2374
|
+
.sc(UpdateEphemeris)
|
|
2514
2375
|
.build() {
|
|
2515
2376
|
}
|
|
2516
2377
|
|
|
@@ -2518,16 +2379,11 @@ class UpdateMissionProfileCommand extends smithyClient.Command
|
|
|
2518
2379
|
.classBuilder()
|
|
2519
2380
|
.ep(commonParams)
|
|
2520
2381
|
.m(function (Command, cs, config, o) {
|
|
2521
|
-
return [
|
|
2522
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2523
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2524
|
-
];
|
|
2382
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2525
2383
|
})
|
|
2526
2384
|
.s("GroundStation", "UpdateMissionProfile", {})
|
|
2527
2385
|
.n("GroundStationClient", "UpdateMissionProfileCommand")
|
|
2528
|
-
.
|
|
2529
|
-
.ser(se_UpdateMissionProfileCommand)
|
|
2530
|
-
.de(de_UpdateMissionProfileCommand)
|
|
2386
|
+
.sc(UpdateMissionProfile)
|
|
2531
2387
|
.build() {
|
|
2532
2388
|
}
|
|
2533
2389
|
|
|
@@ -2652,7 +2508,7 @@ exports.DeleteConfigCommand = DeleteConfigCommand;
|
|
|
2652
2508
|
exports.DeleteDataflowEndpointGroupCommand = DeleteDataflowEndpointGroupCommand;
|
|
2653
2509
|
exports.DeleteEphemerisCommand = DeleteEphemerisCommand;
|
|
2654
2510
|
exports.DeleteMissionProfileCommand = DeleteMissionProfileCommand;
|
|
2655
|
-
exports.DependencyException = DependencyException;
|
|
2511
|
+
exports.DependencyException = DependencyException$1;
|
|
2656
2512
|
exports.DescribeContactCommand = DescribeContactCommand;
|
|
2657
2513
|
exports.DescribeEphemerisCommand = DescribeEphemerisCommand;
|
|
2658
2514
|
exports.EirpUnits = EirpUnits;
|
|
@@ -2672,8 +2528,8 @@ exports.GetMissionProfileCommand = GetMissionProfileCommand;
|
|
|
2672
2528
|
exports.GetSatelliteCommand = GetSatelliteCommand;
|
|
2673
2529
|
exports.GroundStation = GroundStation;
|
|
2674
2530
|
exports.GroundStationClient = GroundStationClient;
|
|
2675
|
-
exports.GroundStationServiceException = GroundStationServiceException;
|
|
2676
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
2531
|
+
exports.GroundStationServiceException = GroundStationServiceException$1;
|
|
2532
|
+
exports.InvalidParameterException = InvalidParameterException$1;
|
|
2677
2533
|
exports.ListConfigsCommand = ListConfigsCommand;
|
|
2678
2534
|
exports.ListContactsCommand = ListContactsCommand;
|
|
2679
2535
|
exports.ListDataflowEndpointGroupsCommand = ListDataflowEndpointGroupsCommand;
|
|
@@ -2685,10 +2541,10 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
|
2685
2541
|
exports.Polarization = Polarization;
|
|
2686
2542
|
exports.RegisterAgentCommand = RegisterAgentCommand;
|
|
2687
2543
|
exports.ReserveContactCommand = ReserveContactCommand;
|
|
2688
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
2689
|
-
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
2690
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2691
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2544
|
+
exports.ResourceInUseException = ResourceInUseException$1;
|
|
2545
|
+
exports.ResourceLimitExceededException = ResourceLimitExceededException$1;
|
|
2546
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2547
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2692
2548
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2693
2549
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2694
2550
|
exports.UpdateAgentStatusCommand = UpdateAgentStatusCommand;
|