@aws-sdk/client-groundstation 3.202.0 → 3.207.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/GroundStation.js +75 -0
- package/dist-cjs/commands/CreateEphemerisCommand.js +46 -0
- package/dist-cjs/commands/DeleteEphemerisCommand.js +46 -0
- package/dist-cjs/commands/DescribeEphemerisCommand.js +46 -0
- package/dist-cjs/commands/ListEphemeridesCommand.js +46 -0
- package/dist-cjs/commands/UpdateEphemerisCommand.js +46 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +129 -2
- package/dist-cjs/pagination/ListEphemeridesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +468 -1
- package/dist-cjs/runtimeConfig.browser.js +0 -3
- package/dist-cjs/runtimeConfig.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +3 -0
- package/dist-es/GroundStation.js +75 -0
- package/dist-es/commands/CreateEphemerisCommand.js +42 -0
- package/dist-es/commands/DeleteEphemerisCommand.js +42 -0
- package/dist-es/commands/DescribeEphemerisCommand.js +42 -0
- package/dist-es/commands/ListEphemeridesCommand.js +42 -0
- package/dist-es/commands/UpdateEphemerisCommand.js +42 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +108 -0
- package/dist-es/pagination/ListEphemeridesPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +457 -1
- package/dist-es/runtimeConfig.browser.js +0 -3
- package/dist-es/runtimeConfig.js +0 -3
- package/dist-es/runtimeConfig.shared.js +3 -0
- package/dist-types/GroundStation.d.ts +35 -0
- package/dist-types/GroundStationClient.d.ts +7 -2
- package/dist-types/commands/CreateEphemerisCommand.d.ts +37 -0
- package/dist-types/commands/DeleteEphemerisCommand.d.ts +37 -0
- package/dist-types/commands/DescribeEphemerisCommand.d.ts +37 -0
- package/dist-types/commands/ListEphemeridesCommand.d.ts +37 -0
- package/dist-types/commands/UpdateEphemerisCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +492 -11
- package/dist-types/pagination/ListEphemeridesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/GroundStation.d.ts +85 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateEphemerisCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteEphemerisCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeEphemerisCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListEphemeridesCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateEphemerisCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +209 -0
- package/dist-types/ts3.4/pagination/ListEphemeridesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +5 -4
- package/CHANGELOG.md +0 -2817
|
@@ -449,6 +449,68 @@ export interface CreateDataflowEndpointGroupRequest {
|
|
|
449
449
|
export interface DataflowEndpointGroupIdResponse {
|
|
450
450
|
dataflowEndpointGroupId?: string;
|
|
451
451
|
}
|
|
452
|
+
export interface S3Object {
|
|
453
|
+
bucket?: string;
|
|
454
|
+
key?: string;
|
|
455
|
+
version?: string;
|
|
456
|
+
}
|
|
457
|
+
export interface OEMEphemeris {
|
|
458
|
+
s3Object?: S3Object;
|
|
459
|
+
oemData?: string;
|
|
460
|
+
}
|
|
461
|
+
export interface TimeRange {
|
|
462
|
+
startTime: Date | undefined;
|
|
463
|
+
endTime: Date | undefined;
|
|
464
|
+
}
|
|
465
|
+
export interface TLEData {
|
|
466
|
+
tleLine1: string | undefined;
|
|
467
|
+
tleLine2: string | undefined;
|
|
468
|
+
validTimeRange: TimeRange | undefined;
|
|
469
|
+
}
|
|
470
|
+
export interface TLEEphemeris {
|
|
471
|
+
s3Object?: S3Object;
|
|
472
|
+
tleData?: TLEData[];
|
|
473
|
+
}
|
|
474
|
+
export declare type EphemerisData =
|
|
475
|
+
| EphemerisData.OemMember
|
|
476
|
+
| EphemerisData.TleMember
|
|
477
|
+
| EphemerisData.$UnknownMember;
|
|
478
|
+
export declare namespace EphemerisData {
|
|
479
|
+
interface TleMember {
|
|
480
|
+
tle: TLEEphemeris;
|
|
481
|
+
oem?: never;
|
|
482
|
+
$unknown?: never;
|
|
483
|
+
}
|
|
484
|
+
interface OemMember {
|
|
485
|
+
tle?: never;
|
|
486
|
+
oem: OEMEphemeris;
|
|
487
|
+
$unknown?: never;
|
|
488
|
+
}
|
|
489
|
+
interface $UnknownMember {
|
|
490
|
+
tle?: never;
|
|
491
|
+
oem?: never;
|
|
492
|
+
$unknown: [string, any];
|
|
493
|
+
}
|
|
494
|
+
interface Visitor<T> {
|
|
495
|
+
tle: (value: TLEEphemeris) => T;
|
|
496
|
+
oem: (value: OEMEphemeris) => T;
|
|
497
|
+
_: (name: string, value: any) => T;
|
|
498
|
+
}
|
|
499
|
+
const visit: <T>(value: EphemerisData, visitor: Visitor<T>) => T;
|
|
500
|
+
}
|
|
501
|
+
export interface CreateEphemerisRequest {
|
|
502
|
+
satelliteId: string | undefined;
|
|
503
|
+
enabled?: boolean;
|
|
504
|
+
priority?: number;
|
|
505
|
+
expirationTime?: Date;
|
|
506
|
+
name: string | undefined;
|
|
507
|
+
kmsKeyArn?: string;
|
|
508
|
+
ephemeris?: EphemerisData;
|
|
509
|
+
tags?: Record<string, string>;
|
|
510
|
+
}
|
|
511
|
+
export interface EphemerisIdResponse {
|
|
512
|
+
ephemerisId?: string;
|
|
513
|
+
}
|
|
452
514
|
export interface CreateMissionProfileRequest {
|
|
453
515
|
name: string | undefined;
|
|
454
516
|
contactPrePassDurationSeconds?: number;
|
|
@@ -485,9 +547,110 @@ export interface ListDataflowEndpointGroupsResponse {
|
|
|
485
547
|
nextToken?: string;
|
|
486
548
|
dataflowEndpointGroupList?: DataflowEndpointListItem[];
|
|
487
549
|
}
|
|
550
|
+
export interface DeleteEphemerisRequest {
|
|
551
|
+
ephemerisId: string | undefined;
|
|
552
|
+
}
|
|
488
553
|
export interface DeleteMissionProfileRequest {
|
|
489
554
|
missionProfileId: string | undefined;
|
|
490
555
|
}
|
|
556
|
+
export interface DescribeEphemerisRequest {
|
|
557
|
+
ephemerisId: string | undefined;
|
|
558
|
+
}
|
|
559
|
+
export declare enum EphemerisInvalidReason {
|
|
560
|
+
KMS_KEY_INVALID = "KMS_KEY_INVALID",
|
|
561
|
+
METADATA_INVALID = "METADATA_INVALID",
|
|
562
|
+
TIME_RANGE_INVALID = "TIME_RANGE_INVALID",
|
|
563
|
+
TRAJECTORY_INVALID = "TRAJECTORY_INVALID",
|
|
564
|
+
VALIDATION_ERROR = "VALIDATION_ERROR",
|
|
565
|
+
}
|
|
566
|
+
export declare enum EphemerisStatus {
|
|
567
|
+
DISABLED = "DISABLED",
|
|
568
|
+
ENABLED = "ENABLED",
|
|
569
|
+
ERROR = "ERROR",
|
|
570
|
+
EXPIRED = "EXPIRED",
|
|
571
|
+
INVALID = "INVALID",
|
|
572
|
+
VALIDATING = "VALIDATING",
|
|
573
|
+
}
|
|
574
|
+
export interface EphemerisDescription {
|
|
575
|
+
sourceS3Object?: S3Object;
|
|
576
|
+
ephemerisData?: string;
|
|
577
|
+
}
|
|
578
|
+
export declare type EphemerisTypeDescription =
|
|
579
|
+
| EphemerisTypeDescription.OemMember
|
|
580
|
+
| EphemerisTypeDescription.TleMember
|
|
581
|
+
| EphemerisTypeDescription.$UnknownMember;
|
|
582
|
+
export declare namespace EphemerisTypeDescription {
|
|
583
|
+
interface TleMember {
|
|
584
|
+
tle: EphemerisDescription;
|
|
585
|
+
oem?: never;
|
|
586
|
+
$unknown?: never;
|
|
587
|
+
}
|
|
588
|
+
interface OemMember {
|
|
589
|
+
tle?: never;
|
|
590
|
+
oem: EphemerisDescription;
|
|
591
|
+
$unknown?: never;
|
|
592
|
+
}
|
|
593
|
+
interface $UnknownMember {
|
|
594
|
+
tle?: never;
|
|
595
|
+
oem?: never;
|
|
596
|
+
$unknown: [string, any];
|
|
597
|
+
}
|
|
598
|
+
interface Visitor<T> {
|
|
599
|
+
tle: (value: EphemerisDescription) => T;
|
|
600
|
+
oem: (value: EphemerisDescription) => T;
|
|
601
|
+
_: (name: string, value: any) => T;
|
|
602
|
+
}
|
|
603
|
+
const visit: <T>(value: EphemerisTypeDescription, visitor: Visitor<T>) => T;
|
|
604
|
+
}
|
|
605
|
+
export interface DescribeEphemerisResponse {
|
|
606
|
+
ephemerisId?: string;
|
|
607
|
+
satelliteId?: string;
|
|
608
|
+
status?: EphemerisStatus | string;
|
|
609
|
+
priority?: number;
|
|
610
|
+
creationTime?: Date;
|
|
611
|
+
enabled?: boolean;
|
|
612
|
+
name?: string;
|
|
613
|
+
tags?: Record<string, string>;
|
|
614
|
+
suppliedData?: EphemerisTypeDescription;
|
|
615
|
+
invalidReason?: EphemerisInvalidReason | string;
|
|
616
|
+
}
|
|
617
|
+
export interface EphemerisItem {
|
|
618
|
+
ephemerisId?: string;
|
|
619
|
+
status?: EphemerisStatus | string;
|
|
620
|
+
priority?: number;
|
|
621
|
+
enabled?: boolean;
|
|
622
|
+
creationTime?: Date;
|
|
623
|
+
name?: string;
|
|
624
|
+
sourceS3Object?: S3Object;
|
|
625
|
+
}
|
|
626
|
+
export interface ListEphemeridesRequest {
|
|
627
|
+
satelliteId: string | undefined;
|
|
628
|
+
startTime: Date | undefined;
|
|
629
|
+
endTime: Date | undefined;
|
|
630
|
+
statusList?: (EphemerisStatus | string)[];
|
|
631
|
+
maxResults?: number;
|
|
632
|
+
nextToken?: string;
|
|
633
|
+
}
|
|
634
|
+
export interface ListEphemeridesResponse {
|
|
635
|
+
nextToken?: string;
|
|
636
|
+
ephemerides?: EphemerisItem[];
|
|
637
|
+
}
|
|
638
|
+
export interface UpdateEphemerisRequest {
|
|
639
|
+
ephemerisId: string | undefined;
|
|
640
|
+
enabled: boolean | undefined;
|
|
641
|
+
name?: string;
|
|
642
|
+
priority?: number;
|
|
643
|
+
}
|
|
644
|
+
export declare enum EphemerisSource {
|
|
645
|
+
CUSTOMER_PROVIDED = "CUSTOMER_PROVIDED",
|
|
646
|
+
SPACE_TRACK = "SPACE_TRACK",
|
|
647
|
+
}
|
|
648
|
+
export interface EphemerisMetaData {
|
|
649
|
+
source: EphemerisSource | string | undefined;
|
|
650
|
+
ephemerisId?: string;
|
|
651
|
+
epoch?: Date;
|
|
652
|
+
name?: string;
|
|
653
|
+
}
|
|
491
654
|
export interface GetMinuteUsageRequest {
|
|
492
655
|
month: number | undefined;
|
|
493
656
|
year: number | undefined;
|
|
@@ -522,6 +685,7 @@ export interface GetSatelliteResponse {
|
|
|
522
685
|
satelliteArn?: string;
|
|
523
686
|
noradSatelliteID?: number;
|
|
524
687
|
groundStations?: string[];
|
|
688
|
+
currentEphemeris?: EphemerisMetaData;
|
|
525
689
|
}
|
|
526
690
|
export interface ListGroundStationsRequest {
|
|
527
691
|
satelliteId?: string;
|
|
@@ -575,6 +739,7 @@ export interface SatelliteListItem {
|
|
|
575
739
|
satelliteArn?: string;
|
|
576
740
|
noradSatelliteID?: number;
|
|
577
741
|
groundStations?: string[];
|
|
742
|
+
currentEphemeris?: EphemerisMetaData;
|
|
578
743
|
}
|
|
579
744
|
export interface ListSatellitesResponse {
|
|
580
745
|
nextToken?: string;
|
|
@@ -711,6 +876,20 @@ export declare const CreateDataflowEndpointGroupRequestFilterSensitiveLog: (
|
|
|
711
876
|
export declare const DataflowEndpointGroupIdResponseFilterSensitiveLog: (
|
|
712
877
|
obj: DataflowEndpointGroupIdResponse
|
|
713
878
|
) => any;
|
|
879
|
+
export declare const S3ObjectFilterSensitiveLog: (obj: S3Object) => any;
|
|
880
|
+
export declare const OEMEphemerisFilterSensitiveLog: (obj: OEMEphemeris) => any;
|
|
881
|
+
export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
|
|
882
|
+
export declare const TLEDataFilterSensitiveLog: (obj: TLEData) => any;
|
|
883
|
+
export declare const TLEEphemerisFilterSensitiveLog: (obj: TLEEphemeris) => any;
|
|
884
|
+
export declare const EphemerisDataFilterSensitiveLog: (
|
|
885
|
+
obj: EphemerisData
|
|
886
|
+
) => any;
|
|
887
|
+
export declare const CreateEphemerisRequestFilterSensitiveLog: (
|
|
888
|
+
obj: CreateEphemerisRequest
|
|
889
|
+
) => any;
|
|
890
|
+
export declare const EphemerisIdResponseFilterSensitiveLog: (
|
|
891
|
+
obj: EphemerisIdResponse
|
|
892
|
+
) => any;
|
|
714
893
|
export declare const CreateMissionProfileRequestFilterSensitiveLog: (
|
|
715
894
|
obj: CreateMissionProfileRequest
|
|
716
895
|
) => any;
|
|
@@ -735,9 +914,39 @@ export declare const DataflowEndpointListItemFilterSensitiveLog: (
|
|
|
735
914
|
export declare const ListDataflowEndpointGroupsResponseFilterSensitiveLog: (
|
|
736
915
|
obj: ListDataflowEndpointGroupsResponse
|
|
737
916
|
) => any;
|
|
917
|
+
export declare const DeleteEphemerisRequestFilterSensitiveLog: (
|
|
918
|
+
obj: DeleteEphemerisRequest
|
|
919
|
+
) => any;
|
|
738
920
|
export declare const DeleteMissionProfileRequestFilterSensitiveLog: (
|
|
739
921
|
obj: DeleteMissionProfileRequest
|
|
740
922
|
) => any;
|
|
923
|
+
export declare const DescribeEphemerisRequestFilterSensitiveLog: (
|
|
924
|
+
obj: DescribeEphemerisRequest
|
|
925
|
+
) => any;
|
|
926
|
+
export declare const EphemerisDescriptionFilterSensitiveLog: (
|
|
927
|
+
obj: EphemerisDescription
|
|
928
|
+
) => any;
|
|
929
|
+
export declare const EphemerisTypeDescriptionFilterSensitiveLog: (
|
|
930
|
+
obj: EphemerisTypeDescription
|
|
931
|
+
) => any;
|
|
932
|
+
export declare const DescribeEphemerisResponseFilterSensitiveLog: (
|
|
933
|
+
obj: DescribeEphemerisResponse
|
|
934
|
+
) => any;
|
|
935
|
+
export declare const EphemerisItemFilterSensitiveLog: (
|
|
936
|
+
obj: EphemerisItem
|
|
937
|
+
) => any;
|
|
938
|
+
export declare const ListEphemeridesRequestFilterSensitiveLog: (
|
|
939
|
+
obj: ListEphemeridesRequest
|
|
940
|
+
) => any;
|
|
941
|
+
export declare const ListEphemeridesResponseFilterSensitiveLog: (
|
|
942
|
+
obj: ListEphemeridesResponse
|
|
943
|
+
) => any;
|
|
944
|
+
export declare const UpdateEphemerisRequestFilterSensitiveLog: (
|
|
945
|
+
obj: UpdateEphemerisRequest
|
|
946
|
+
) => any;
|
|
947
|
+
export declare const EphemerisMetaDataFilterSensitiveLog: (
|
|
948
|
+
obj: EphemerisMetaData
|
|
949
|
+
) => any;
|
|
741
950
|
export declare const GetMinuteUsageRequestFilterSensitiveLog: (
|
|
742
951
|
obj: GetMinuteUsageRequest
|
|
743
952
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEphemeridesCommandInput,
|
|
4
|
+
ListEphemeridesCommandOutput,
|
|
5
|
+
} from "../commands/ListEphemeridesCommand";
|
|
6
|
+
import { GroundStationPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListEphemerides(
|
|
8
|
+
config: GroundStationPaginationConfiguration,
|
|
9
|
+
input: ListEphemeridesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListEphemeridesCommandOutput>;
|
|
@@ -2,6 +2,7 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListConfigsPaginator";
|
|
3
3
|
export * from "./ListContactsPaginator";
|
|
4
4
|
export * from "./ListDataflowEndpointGroupsPaginator";
|
|
5
|
+
export * from "./ListEphemeridesPaginator";
|
|
5
6
|
export * from "./ListGroundStationsPaginator";
|
|
6
7
|
export * from "./ListMissionProfilesPaginator";
|
|
7
8
|
export * from "./ListSatellitesPaginator";
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
CreateDataflowEndpointGroupCommandInput,
|
|
16
16
|
CreateDataflowEndpointGroupCommandOutput,
|
|
17
17
|
} from "../commands/CreateDataflowEndpointGroupCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateEphemerisCommandInput,
|
|
20
|
+
CreateEphemerisCommandOutput,
|
|
21
|
+
} from "../commands/CreateEphemerisCommand";
|
|
18
22
|
import {
|
|
19
23
|
CreateMissionProfileCommandInput,
|
|
20
24
|
CreateMissionProfileCommandOutput,
|
|
@@ -27,6 +31,10 @@ import {
|
|
|
27
31
|
DeleteDataflowEndpointGroupCommandInput,
|
|
28
32
|
DeleteDataflowEndpointGroupCommandOutput,
|
|
29
33
|
} from "../commands/DeleteDataflowEndpointGroupCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteEphemerisCommandInput,
|
|
36
|
+
DeleteEphemerisCommandOutput,
|
|
37
|
+
} from "../commands/DeleteEphemerisCommand";
|
|
30
38
|
import {
|
|
31
39
|
DeleteMissionProfileCommandInput,
|
|
32
40
|
DeleteMissionProfileCommandOutput,
|
|
@@ -35,6 +43,10 @@ import {
|
|
|
35
43
|
DescribeContactCommandInput,
|
|
36
44
|
DescribeContactCommandOutput,
|
|
37
45
|
} from "../commands/DescribeContactCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeEphemerisCommandInput,
|
|
48
|
+
DescribeEphemerisCommandOutput,
|
|
49
|
+
} from "../commands/DescribeEphemerisCommand";
|
|
38
50
|
import {
|
|
39
51
|
GetConfigCommandInput,
|
|
40
52
|
GetConfigCommandOutput,
|
|
@@ -67,6 +79,10 @@ import {
|
|
|
67
79
|
ListDataflowEndpointGroupsCommandInput,
|
|
68
80
|
ListDataflowEndpointGroupsCommandOutput,
|
|
69
81
|
} from "../commands/ListDataflowEndpointGroupsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListEphemeridesCommandInput,
|
|
84
|
+
ListEphemeridesCommandOutput,
|
|
85
|
+
} from "../commands/ListEphemeridesCommand";
|
|
70
86
|
import {
|
|
71
87
|
ListGroundStationsCommandInput,
|
|
72
88
|
ListGroundStationsCommandOutput,
|
|
@@ -99,6 +115,10 @@ import {
|
|
|
99
115
|
UpdateConfigCommandInput,
|
|
100
116
|
UpdateConfigCommandOutput,
|
|
101
117
|
} from "../commands/UpdateConfigCommand";
|
|
118
|
+
import {
|
|
119
|
+
UpdateEphemerisCommandInput,
|
|
120
|
+
UpdateEphemerisCommandOutput,
|
|
121
|
+
} from "../commands/UpdateEphemerisCommand";
|
|
102
122
|
import {
|
|
103
123
|
UpdateMissionProfileCommandInput,
|
|
104
124
|
UpdateMissionProfileCommandOutput,
|
|
@@ -115,6 +135,10 @@ export declare const serializeAws_restJson1CreateDataflowEndpointGroupCommand: (
|
|
|
115
135
|
input: CreateDataflowEndpointGroupCommandInput,
|
|
116
136
|
context: __SerdeContext
|
|
117
137
|
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_restJson1CreateEphemerisCommand: (
|
|
139
|
+
input: CreateEphemerisCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
118
142
|
export declare const serializeAws_restJson1CreateMissionProfileCommand: (
|
|
119
143
|
input: CreateMissionProfileCommandInput,
|
|
120
144
|
context: __SerdeContext
|
|
@@ -127,6 +151,10 @@ export declare const serializeAws_restJson1DeleteDataflowEndpointGroupCommand: (
|
|
|
127
151
|
input: DeleteDataflowEndpointGroupCommandInput,
|
|
128
152
|
context: __SerdeContext
|
|
129
153
|
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_restJson1DeleteEphemerisCommand: (
|
|
155
|
+
input: DeleteEphemerisCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
130
158
|
export declare const serializeAws_restJson1DeleteMissionProfileCommand: (
|
|
131
159
|
input: DeleteMissionProfileCommandInput,
|
|
132
160
|
context: __SerdeContext
|
|
@@ -135,6 +163,10 @@ export declare const serializeAws_restJson1DescribeContactCommand: (
|
|
|
135
163
|
input: DescribeContactCommandInput,
|
|
136
164
|
context: __SerdeContext
|
|
137
165
|
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_restJson1DescribeEphemerisCommand: (
|
|
167
|
+
input: DescribeEphemerisCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
138
170
|
export declare const serializeAws_restJson1GetConfigCommand: (
|
|
139
171
|
input: GetConfigCommandInput,
|
|
140
172
|
context: __SerdeContext
|
|
@@ -167,6 +199,10 @@ export declare const serializeAws_restJson1ListDataflowEndpointGroupsCommand: (
|
|
|
167
199
|
input: ListDataflowEndpointGroupsCommandInput,
|
|
168
200
|
context: __SerdeContext
|
|
169
201
|
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_restJson1ListEphemeridesCommand: (
|
|
203
|
+
input: ListEphemeridesCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
170
206
|
export declare const serializeAws_restJson1ListGroundStationsCommand: (
|
|
171
207
|
input: ListGroundStationsCommandInput,
|
|
172
208
|
context: __SerdeContext
|
|
@@ -199,6 +235,10 @@ export declare const serializeAws_restJson1UpdateConfigCommand: (
|
|
|
199
235
|
input: UpdateConfigCommandInput,
|
|
200
236
|
context: __SerdeContext
|
|
201
237
|
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const serializeAws_restJson1UpdateEphemerisCommand: (
|
|
239
|
+
input: UpdateEphemerisCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
202
242
|
export declare const serializeAws_restJson1UpdateMissionProfileCommand: (
|
|
203
243
|
input: UpdateMissionProfileCommandInput,
|
|
204
244
|
context: __SerdeContext
|
|
@@ -215,6 +255,10 @@ export declare const deserializeAws_restJson1CreateDataflowEndpointGroupCommand:
|
|
|
215
255
|
output: __HttpResponse,
|
|
216
256
|
context: __SerdeContext
|
|
217
257
|
) => Promise<CreateDataflowEndpointGroupCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_restJson1CreateEphemerisCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<CreateEphemerisCommandOutput>;
|
|
218
262
|
export declare const deserializeAws_restJson1CreateMissionProfileCommand: (
|
|
219
263
|
output: __HttpResponse,
|
|
220
264
|
context: __SerdeContext
|
|
@@ -227,6 +271,10 @@ export declare const deserializeAws_restJson1DeleteDataflowEndpointGroupCommand:
|
|
|
227
271
|
output: __HttpResponse,
|
|
228
272
|
context: __SerdeContext
|
|
229
273
|
) => Promise<DeleteDataflowEndpointGroupCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1DeleteEphemerisCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<DeleteEphemerisCommandOutput>;
|
|
230
278
|
export declare const deserializeAws_restJson1DeleteMissionProfileCommand: (
|
|
231
279
|
output: __HttpResponse,
|
|
232
280
|
context: __SerdeContext
|
|
@@ -235,6 +283,10 @@ export declare const deserializeAws_restJson1DescribeContactCommand: (
|
|
|
235
283
|
output: __HttpResponse,
|
|
236
284
|
context: __SerdeContext
|
|
237
285
|
) => Promise<DescribeContactCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_restJson1DescribeEphemerisCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<DescribeEphemerisCommandOutput>;
|
|
238
290
|
export declare const deserializeAws_restJson1GetConfigCommand: (
|
|
239
291
|
output: __HttpResponse,
|
|
240
292
|
context: __SerdeContext
|
|
@@ -267,6 +319,10 @@ export declare const deserializeAws_restJson1ListDataflowEndpointGroupsCommand:
|
|
|
267
319
|
output: __HttpResponse,
|
|
268
320
|
context: __SerdeContext
|
|
269
321
|
) => Promise<ListDataflowEndpointGroupsCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_restJson1ListEphemeridesCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<ListEphemeridesCommandOutput>;
|
|
270
326
|
export declare const deserializeAws_restJson1ListGroundStationsCommand: (
|
|
271
327
|
output: __HttpResponse,
|
|
272
328
|
context: __SerdeContext
|
|
@@ -299,6 +355,10 @@ export declare const deserializeAws_restJson1UpdateConfigCommand: (
|
|
|
299
355
|
output: __HttpResponse,
|
|
300
356
|
context: __SerdeContext
|
|
301
357
|
) => Promise<UpdateConfigCommandOutput>;
|
|
358
|
+
export declare const deserializeAws_restJson1UpdateEphemerisCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<UpdateEphemerisCommandOutput>;
|
|
302
362
|
export declare const deserializeAws_restJson1UpdateMissionProfileCommand: (
|
|
303
363
|
output: __HttpResponse,
|
|
304
364
|
context: __SerdeContext
|
|
@@ -5,8 +5,6 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
5
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
6
|
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
8
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider: (
|
|
12
10
|
input: any
|
|
@@ -33,6 +31,8 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
33
31
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
32
|
apiVersion: string;
|
|
35
33
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
34
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
36
36
|
disableHostPrefix: boolean;
|
|
37
37
|
logger: import("@aws-sdk/types").Logger;
|
|
38
38
|
serviceId: string;
|
|
@@ -5,8 +5,6 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
5
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
6
|
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
8
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider: (
|
|
12
10
|
input: any
|
|
@@ -33,6 +31,8 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
33
31
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
32
|
apiVersion: string;
|
|
35
33
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
34
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
36
36
|
disableHostPrefix: boolean;
|
|
37
37
|
logger: import("@aws-sdk/types").Logger;
|
|
38
38
|
serviceId: string;
|
|
@@ -2,6 +2,8 @@ import { Logger as __Logger } from "@aws-sdk/types";
|
|
|
2
2
|
import { GroundStationClientConfig } from "./GroundStationClient";
|
|
3
3
|
export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
4
4
|
apiVersion: string;
|
|
5
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
6
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
5
7
|
disableHostPrefix: boolean;
|
|
6
8
|
endpointProvider: (
|
|
7
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-groundstation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.207.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.204.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.201.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.204.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.204.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.201.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.201.0",
|
|
28
28
|
"@aws-sdk/middleware-content-length": "3.201.0",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"@aws-sdk/smithy-client": "3.201.0",
|
|
42
42
|
"@aws-sdk/types": "3.201.0",
|
|
43
43
|
"@aws-sdk/url-parser": "3.201.0",
|
|
44
|
+
"@aws-sdk/util-base64": "3.202.0",
|
|
44
45
|
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
45
46
|
"@aws-sdk/util-base64-node": "3.201.0",
|
|
46
47
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|