@aws-sdk/client-groundstation 3.1030.0 → 3.1032.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/README.md +35 -0
- package/dist-cjs/index.js +158 -2
- package/dist-cjs/schemas/schemas_0.js +174 -13
- package/dist-es/GroundStation.js +18 -0
- package/dist-es/commands/DescribeContactVersionCommand.js +16 -0
- package/dist-es/commands/ListAntennasCommand.js +16 -0
- package/dist-es/commands/ListContactVersionsCommand.js +16 -0
- package/dist-es/commands/ListGroundStationReservationsCommand.js +16 -0
- package/dist-es/commands/UpdateContactCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +28 -0
- package/dist-es/pagination/ListAntennasPaginator.js +4 -0
- package/dist-es/pagination/ListContactVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListGroundStationReservationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +169 -9
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForContactUpdated.js +40 -0
- package/dist-types/GroundStation.d.ts +62 -0
- package/dist-types/GroundStationClient.d.ts +7 -2
- package/dist-types/commands/CancelContactCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +18 -0
- package/dist-types/commands/DescribeContactVersionCommand.d.ts +331 -0
- package/dist-types/commands/ListAntennasCommand.d.ts +89 -0
- package/dist-types/commands/ListContactVersionsCommand.d.ts +99 -0
- package/dist-types/commands/ListContactsCommand.d.ts +12 -0
- package/dist-types/commands/ListGroundStationReservationsCommand.d.ts +104 -0
- package/dist-types/commands/ReserveContactCommand.d.ts +7 -0
- package/dist-types/commands/UpdateContactCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +77 -5
- package/dist-types/models/errors.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +572 -64
- package/dist-types/pagination/ListAntennasPaginator.d.ts +7 -0
- package/dist-types/pagination/ListContactVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGroundStationReservationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/GroundStation.d.ts +115 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/DescribeContactVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAntennasCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListContactVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGroundStationReservationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +35 -0
- package/dist-types/ts3.4/models/models_0.d.ts +154 -1
- package/dist-types/ts3.4/pagination/ListAntennasPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListContactVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGroundStationReservationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForContactUpdated.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForContactUpdated.d.ts +14 -0
- package/package.json +34 -34
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAntennasCommandInput, ListAntennasCommandOutput } from "../commands/ListAntennasCommand";
|
|
3
|
+
import type { GroundStationPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAntennas: (config: GroundStationPaginationConfiguration, input: ListAntennasCommandInput, ...rest: any[]) => Paginator<ListAntennasCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListContactVersionsCommandInput, ListContactVersionsCommandOutput } from "../commands/ListContactVersionsCommand";
|
|
3
|
+
import type { GroundStationPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListContactVersions: (config: GroundStationPaginationConfiguration, input: ListContactVersionsCommandInput, ...rest: any[]) => Paginator<ListContactVersionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListGroundStationReservationsCommandInput, ListGroundStationReservationsCommandOutput } from "../commands/ListGroundStationReservationsCommand";
|
|
3
|
+
import type { GroundStationPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListGroundStationReservations: (config: GroundStationPaginationConfiguration, input: ListGroundStationReservationsCommandInput, ...rest: any[]) => Paginator<ListGroundStationReservationsCommandOutput>;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAntennasPaginator";
|
|
2
3
|
export * from "./ListConfigsPaginator";
|
|
3
4
|
export * from "./ListContactsPaginator";
|
|
5
|
+
export * from "./ListContactVersionsPaginator";
|
|
4
6
|
export * from "./ListDataflowEndpointGroupsPaginator";
|
|
5
7
|
export * from "./ListEphemeridesPaginator";
|
|
8
|
+
export * from "./ListGroundStationReservationsPaginator";
|
|
6
9
|
export * from "./ListGroundStationsPaginator";
|
|
7
10
|
export * from "./ListMissionProfilesPaginator";
|
|
8
11
|
export * from "./ListSatellitesPaginator";
|
|
@@ -18,6 +18,7 @@ export declare var AggregateStatus$: StaticStructureSchema;
|
|
|
18
18
|
export declare var AntennaDemodDecodeDetails$: StaticStructureSchema;
|
|
19
19
|
export declare var AntennaDownlinkConfig$: StaticStructureSchema;
|
|
20
20
|
export declare var AntennaDownlinkDemodDecodeConfig$: StaticStructureSchema;
|
|
21
|
+
export declare var AntennaListItem$: StaticStructureSchema;
|
|
21
22
|
export declare var AntennaUplinkConfig$: StaticStructureSchema;
|
|
22
23
|
export declare var AwsGroundStationAgentEndpoint$: StaticStructureSchema;
|
|
23
24
|
export declare var AzElEphemeris$: StaticStructureSchema;
|
|
@@ -33,6 +34,8 @@ export declare var ConfigListItem$: StaticStructureSchema;
|
|
|
33
34
|
export declare var ConnectionDetails$: StaticStructureSchema;
|
|
34
35
|
export declare var ContactData$: StaticStructureSchema;
|
|
35
36
|
export declare var ContactIdResponse$: StaticStructureSchema;
|
|
37
|
+
export declare var ContactReservationDetails$: StaticStructureSchema;
|
|
38
|
+
export declare var ContactVersion$: StaticStructureSchema;
|
|
36
39
|
export declare var CreateConfigRequest$: StaticStructureSchema;
|
|
37
40
|
export declare var CreateDataflowEndpointGroupRequest$: StaticStructureSchema;
|
|
38
41
|
export declare var CreateDataflowEndpointGroupV2Request$: StaticStructureSchema;
|
|
@@ -52,6 +55,8 @@ export declare var DeleteMissionProfileRequest$: StaticStructureSchema;
|
|
|
52
55
|
export declare var DemodulationConfig$: StaticStructureSchema;
|
|
53
56
|
export declare var DescribeContactRequest$: StaticStructureSchema;
|
|
54
57
|
export declare var DescribeContactResponse$: StaticStructureSchema;
|
|
58
|
+
export declare var DescribeContactVersionRequest$: StaticStructureSchema;
|
|
59
|
+
export declare var DescribeContactVersionResponse$: StaticStructureSchema;
|
|
55
60
|
export declare var DescribeEphemerisRequest$: StaticStructureSchema;
|
|
56
61
|
export declare var DescribeEphemerisResponse$: StaticStructureSchema;
|
|
57
62
|
export declare var Destination$: StaticStructureSchema;
|
|
@@ -85,17 +90,24 @@ export declare var GetMissionProfileResponse$: StaticStructureSchema;
|
|
|
85
90
|
export declare var GetSatelliteRequest$: StaticStructureSchema;
|
|
86
91
|
export declare var GetSatelliteResponse$: StaticStructureSchema;
|
|
87
92
|
export declare var GroundStationData$: StaticStructureSchema;
|
|
93
|
+
export declare var GroundStationReservationListItem$: StaticStructureSchema;
|
|
88
94
|
export declare var IntegerRange$: StaticStructureSchema;
|
|
89
95
|
export declare var ISO8601TimeRange$: StaticStructureSchema;
|
|
90
96
|
export declare var KinesisDataStreamData$: StaticStructureSchema;
|
|
97
|
+
export declare var ListAntennasRequest$: StaticStructureSchema;
|
|
98
|
+
export declare var ListAntennasResponse$: StaticStructureSchema;
|
|
91
99
|
export declare var ListConfigsRequest$: StaticStructureSchema;
|
|
92
100
|
export declare var ListConfigsResponse$: StaticStructureSchema;
|
|
93
101
|
export declare var ListContactsRequest$: StaticStructureSchema;
|
|
94
102
|
export declare var ListContactsResponse$: StaticStructureSchema;
|
|
103
|
+
export declare var ListContactVersionsRequest$: StaticStructureSchema;
|
|
104
|
+
export declare var ListContactVersionsResponse$: StaticStructureSchema;
|
|
95
105
|
export declare var ListDataflowEndpointGroupsRequest$: StaticStructureSchema;
|
|
96
106
|
export declare var ListDataflowEndpointGroupsResponse$: StaticStructureSchema;
|
|
97
107
|
export declare var ListEphemeridesRequest$: StaticStructureSchema;
|
|
98
108
|
export declare var ListEphemeridesResponse$: StaticStructureSchema;
|
|
109
|
+
export declare var ListGroundStationReservationsRequest$: StaticStructureSchema;
|
|
110
|
+
export declare var ListGroundStationReservationsResponse$: StaticStructureSchema;
|
|
99
111
|
export declare var ListGroundStationsRequest$: StaticStructureSchema;
|
|
100
112
|
export declare var ListGroundStationsResponse$: StaticStructureSchema;
|
|
101
113
|
export declare var ListMissionProfilesRequest$: StaticStructureSchema;
|
|
@@ -104,9 +116,11 @@ export declare var ListSatellitesRequest$: StaticStructureSchema;
|
|
|
104
116
|
export declare var ListSatellitesResponse$: StaticStructureSchema;
|
|
105
117
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
106
118
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
119
|
+
export declare var MaintenanceReservationDetails$: StaticStructureSchema;
|
|
107
120
|
export declare var MissionProfileIdResponse$: StaticStructureSchema;
|
|
108
121
|
export declare var MissionProfileListItem$: StaticStructureSchema;
|
|
109
122
|
export declare var OEMEphemeris$: StaticStructureSchema;
|
|
123
|
+
export declare var OemProgramTrackSettings$: StaticStructureSchema;
|
|
110
124
|
export declare var RangedConnectionDetails$: StaticStructureSchema;
|
|
111
125
|
export declare var RangedSocketAddress$: StaticStructureSchema;
|
|
112
126
|
export declare var RegisterAgentRequest$: StaticStructureSchema;
|
|
@@ -127,6 +141,7 @@ export declare var TimeAzEl$: StaticStructureSchema;
|
|
|
127
141
|
export declare var TimeRange$: StaticStructureSchema;
|
|
128
142
|
export declare var TLEData$: StaticStructureSchema;
|
|
129
143
|
export declare var TLEEphemeris$: StaticStructureSchema;
|
|
144
|
+
export declare var TleProgramTrackSettings$: StaticStructureSchema;
|
|
130
145
|
export declare var TrackingConfig$: StaticStructureSchema;
|
|
131
146
|
export declare var TrackingOverrides$: StaticStructureSchema;
|
|
132
147
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
@@ -134,6 +149,8 @@ export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
|
134
149
|
export declare var UpdateAgentStatusRequest$: StaticStructureSchema;
|
|
135
150
|
export declare var UpdateAgentStatusResponse$: StaticStructureSchema;
|
|
136
151
|
export declare var UpdateConfigRequest$: StaticStructureSchema;
|
|
152
|
+
export declare var UpdateContactRequest$: StaticStructureSchema;
|
|
153
|
+
export declare var UpdateContactResponse$: StaticStructureSchema;
|
|
137
154
|
export declare var UpdateEphemerisRequest$: StaticStructureSchema;
|
|
138
155
|
export declare var UpdateMissionProfileRequest$: StaticStructureSchema;
|
|
139
156
|
export declare var UplinkAwsGroundStationAgentEndpoint$: StaticStructureSchema;
|
|
@@ -151,6 +168,7 @@ export declare var EphemerisFilter$: StaticUnionSchema;
|
|
|
151
168
|
export declare var EphemerisTypeDescription$: StaticUnionSchema;
|
|
152
169
|
export declare var KmsKey$: StaticUnionSchema;
|
|
153
170
|
export declare var ProgramTrackSettings$: StaticUnionSchema;
|
|
171
|
+
export declare var ReservationDetails$: StaticUnionSchema;
|
|
154
172
|
export declare var TelemetrySinkData$: StaticUnionSchema;
|
|
155
173
|
export declare var UplinkDataflowDetails$: StaticUnionSchema;
|
|
156
174
|
export declare var CancelContact$: StaticOperationSchema;
|
|
@@ -164,6 +182,7 @@ export declare var DeleteDataflowEndpointGroup$: StaticOperationSchema;
|
|
|
164
182
|
export declare var DeleteEphemeris$: StaticOperationSchema;
|
|
165
183
|
export declare var DeleteMissionProfile$: StaticOperationSchema;
|
|
166
184
|
export declare var DescribeContact$: StaticOperationSchema;
|
|
185
|
+
export declare var DescribeContactVersion$: StaticOperationSchema;
|
|
167
186
|
export declare var DescribeEphemeris$: StaticOperationSchema;
|
|
168
187
|
export declare var GetAgentConfiguration$: StaticOperationSchema;
|
|
169
188
|
export declare var GetAgentTaskResponseUrl$: StaticOperationSchema;
|
|
@@ -172,10 +191,13 @@ export declare var GetDataflowEndpointGroup$: StaticOperationSchema;
|
|
|
172
191
|
export declare var GetMinuteUsage$: StaticOperationSchema;
|
|
173
192
|
export declare var GetMissionProfile$: StaticOperationSchema;
|
|
174
193
|
export declare var GetSatellite$: StaticOperationSchema;
|
|
194
|
+
export declare var ListAntennas$: StaticOperationSchema;
|
|
175
195
|
export declare var ListConfigs$: StaticOperationSchema;
|
|
176
196
|
export declare var ListContacts$: StaticOperationSchema;
|
|
197
|
+
export declare var ListContactVersions$: StaticOperationSchema;
|
|
177
198
|
export declare var ListDataflowEndpointGroups$: StaticOperationSchema;
|
|
178
199
|
export declare var ListEphemerides$: StaticOperationSchema;
|
|
200
|
+
export declare var ListGroundStationReservations$: StaticOperationSchema;
|
|
179
201
|
export declare var ListGroundStations$: StaticOperationSchema;
|
|
180
202
|
export declare var ListMissionProfiles$: StaticOperationSchema;
|
|
181
203
|
export declare var ListSatellites$: StaticOperationSchema;
|
|
@@ -186,5 +208,6 @@ export declare var TagResource$: StaticOperationSchema;
|
|
|
186
208
|
export declare var UntagResource$: StaticOperationSchema;
|
|
187
209
|
export declare var UpdateAgentStatus$: StaticOperationSchema;
|
|
188
210
|
export declare var UpdateConfig$: StaticOperationSchema;
|
|
211
|
+
export declare var UpdateContact$: StaticOperationSchema;
|
|
189
212
|
export declare var UpdateEphemeris$: StaticOperationSchema;
|
|
190
213
|
export declare var UpdateMissionProfile$: StaticOperationSchema;
|
|
@@ -49,6 +49,10 @@ import {
|
|
|
49
49
|
DescribeContactCommandInput,
|
|
50
50
|
DescribeContactCommandOutput,
|
|
51
51
|
} from "./commands/DescribeContactCommand";
|
|
52
|
+
import {
|
|
53
|
+
DescribeContactVersionCommandInput,
|
|
54
|
+
DescribeContactVersionCommandOutput,
|
|
55
|
+
} from "./commands/DescribeContactVersionCommand";
|
|
52
56
|
import {
|
|
53
57
|
DescribeEphemerisCommandInput,
|
|
54
58
|
DescribeEphemerisCommandOutput,
|
|
@@ -81,6 +85,10 @@ import {
|
|
|
81
85
|
GetSatelliteCommandInput,
|
|
82
86
|
GetSatelliteCommandOutput,
|
|
83
87
|
} from "./commands/GetSatelliteCommand";
|
|
88
|
+
import {
|
|
89
|
+
ListAntennasCommandInput,
|
|
90
|
+
ListAntennasCommandOutput,
|
|
91
|
+
} from "./commands/ListAntennasCommand";
|
|
84
92
|
import {
|
|
85
93
|
ListConfigsCommandInput,
|
|
86
94
|
ListConfigsCommandOutput,
|
|
@@ -89,6 +97,10 @@ import {
|
|
|
89
97
|
ListContactsCommandInput,
|
|
90
98
|
ListContactsCommandOutput,
|
|
91
99
|
} from "./commands/ListContactsCommand";
|
|
100
|
+
import {
|
|
101
|
+
ListContactVersionsCommandInput,
|
|
102
|
+
ListContactVersionsCommandOutput,
|
|
103
|
+
} from "./commands/ListContactVersionsCommand";
|
|
92
104
|
import {
|
|
93
105
|
ListDataflowEndpointGroupsCommandInput,
|
|
94
106
|
ListDataflowEndpointGroupsCommandOutput,
|
|
@@ -97,6 +109,10 @@ import {
|
|
|
97
109
|
ListEphemeridesCommandInput,
|
|
98
110
|
ListEphemeridesCommandOutput,
|
|
99
111
|
} from "./commands/ListEphemeridesCommand";
|
|
112
|
+
import {
|
|
113
|
+
ListGroundStationReservationsCommandInput,
|
|
114
|
+
ListGroundStationReservationsCommandOutput,
|
|
115
|
+
} from "./commands/ListGroundStationReservationsCommand";
|
|
100
116
|
import {
|
|
101
117
|
ListGroundStationsCommandInput,
|
|
102
118
|
ListGroundStationsCommandOutput,
|
|
@@ -137,6 +153,10 @@ import {
|
|
|
137
153
|
UpdateConfigCommandInput,
|
|
138
154
|
UpdateConfigCommandOutput,
|
|
139
155
|
} from "./commands/UpdateConfigCommand";
|
|
156
|
+
import {
|
|
157
|
+
UpdateContactCommandInput,
|
|
158
|
+
UpdateContactCommandOutput,
|
|
159
|
+
} from "./commands/UpdateContactCommand";
|
|
140
160
|
import {
|
|
141
161
|
UpdateEphemerisCommandInput,
|
|
142
162
|
UpdateEphemerisCommandOutput,
|
|
@@ -290,6 +310,19 @@ export interface GroundStation {
|
|
|
290
310
|
options: __HttpHandlerOptions,
|
|
291
311
|
cb: (err: any, data?: DescribeContactCommandOutput) => void
|
|
292
312
|
): void;
|
|
313
|
+
describeContactVersion(
|
|
314
|
+
args: DescribeContactVersionCommandInput,
|
|
315
|
+
options?: __HttpHandlerOptions
|
|
316
|
+
): Promise<DescribeContactVersionCommandOutput>;
|
|
317
|
+
describeContactVersion(
|
|
318
|
+
args: DescribeContactVersionCommandInput,
|
|
319
|
+
cb: (err: any, data?: DescribeContactVersionCommandOutput) => void
|
|
320
|
+
): void;
|
|
321
|
+
describeContactVersion(
|
|
322
|
+
args: DescribeContactVersionCommandInput,
|
|
323
|
+
options: __HttpHandlerOptions,
|
|
324
|
+
cb: (err: any, data?: DescribeContactVersionCommandOutput) => void
|
|
325
|
+
): void;
|
|
293
326
|
describeEphemeris(
|
|
294
327
|
args: DescribeEphemerisCommandInput,
|
|
295
328
|
options?: __HttpHandlerOptions
|
|
@@ -394,6 +427,19 @@ export interface GroundStation {
|
|
|
394
427
|
options: __HttpHandlerOptions,
|
|
395
428
|
cb: (err: any, data?: GetSatelliteCommandOutput) => void
|
|
396
429
|
): void;
|
|
430
|
+
listAntennas(
|
|
431
|
+
args: ListAntennasCommandInput,
|
|
432
|
+
options?: __HttpHandlerOptions
|
|
433
|
+
): Promise<ListAntennasCommandOutput>;
|
|
434
|
+
listAntennas(
|
|
435
|
+
args: ListAntennasCommandInput,
|
|
436
|
+
cb: (err: any, data?: ListAntennasCommandOutput) => void
|
|
437
|
+
): void;
|
|
438
|
+
listAntennas(
|
|
439
|
+
args: ListAntennasCommandInput,
|
|
440
|
+
options: __HttpHandlerOptions,
|
|
441
|
+
cb: (err: any, data?: ListAntennasCommandOutput) => void
|
|
442
|
+
): void;
|
|
397
443
|
listConfigs(): Promise<ListConfigsCommandOutput>;
|
|
398
444
|
listConfigs(
|
|
399
445
|
args: ListConfigsCommandInput,
|
|
@@ -421,6 +467,19 @@ export interface GroundStation {
|
|
|
421
467
|
options: __HttpHandlerOptions,
|
|
422
468
|
cb: (err: any, data?: ListContactsCommandOutput) => void
|
|
423
469
|
): void;
|
|
470
|
+
listContactVersions(
|
|
471
|
+
args: ListContactVersionsCommandInput,
|
|
472
|
+
options?: __HttpHandlerOptions
|
|
473
|
+
): Promise<ListContactVersionsCommandOutput>;
|
|
474
|
+
listContactVersions(
|
|
475
|
+
args: ListContactVersionsCommandInput,
|
|
476
|
+
cb: (err: any, data?: ListContactVersionsCommandOutput) => void
|
|
477
|
+
): void;
|
|
478
|
+
listContactVersions(
|
|
479
|
+
args: ListContactVersionsCommandInput,
|
|
480
|
+
options: __HttpHandlerOptions,
|
|
481
|
+
cb: (err: any, data?: ListContactVersionsCommandOutput) => void
|
|
482
|
+
): void;
|
|
424
483
|
listDataflowEndpointGroups(): Promise<ListDataflowEndpointGroupsCommandOutput>;
|
|
425
484
|
listDataflowEndpointGroups(
|
|
426
485
|
args: ListDataflowEndpointGroupsCommandInput,
|
|
@@ -448,6 +507,19 @@ export interface GroundStation {
|
|
|
448
507
|
options: __HttpHandlerOptions,
|
|
449
508
|
cb: (err: any, data?: ListEphemeridesCommandOutput) => void
|
|
450
509
|
): void;
|
|
510
|
+
listGroundStationReservations(
|
|
511
|
+
args: ListGroundStationReservationsCommandInput,
|
|
512
|
+
options?: __HttpHandlerOptions
|
|
513
|
+
): Promise<ListGroundStationReservationsCommandOutput>;
|
|
514
|
+
listGroundStationReservations(
|
|
515
|
+
args: ListGroundStationReservationsCommandInput,
|
|
516
|
+
cb: (err: any, data?: ListGroundStationReservationsCommandOutput) => void
|
|
517
|
+
): void;
|
|
518
|
+
listGroundStationReservations(
|
|
519
|
+
args: ListGroundStationReservationsCommandInput,
|
|
520
|
+
options: __HttpHandlerOptions,
|
|
521
|
+
cb: (err: any, data?: ListGroundStationReservationsCommandOutput) => void
|
|
522
|
+
): void;
|
|
451
523
|
listGroundStations(): Promise<ListGroundStationsCommandOutput>;
|
|
452
524
|
listGroundStations(
|
|
453
525
|
args: ListGroundStationsCommandInput,
|
|
@@ -581,6 +653,19 @@ export interface GroundStation {
|
|
|
581
653
|
options: __HttpHandlerOptions,
|
|
582
654
|
cb: (err: any, data?: UpdateConfigCommandOutput) => void
|
|
583
655
|
): void;
|
|
656
|
+
updateContact(
|
|
657
|
+
args: UpdateContactCommandInput,
|
|
658
|
+
options?: __HttpHandlerOptions
|
|
659
|
+
): Promise<UpdateContactCommandOutput>;
|
|
660
|
+
updateContact(
|
|
661
|
+
args: UpdateContactCommandInput,
|
|
662
|
+
cb: (err: any, data?: UpdateContactCommandOutput) => void
|
|
663
|
+
): void;
|
|
664
|
+
updateContact(
|
|
665
|
+
args: UpdateContactCommandInput,
|
|
666
|
+
options: __HttpHandlerOptions,
|
|
667
|
+
cb: (err: any, data?: UpdateContactCommandOutput) => void
|
|
668
|
+
): void;
|
|
584
669
|
updateEphemeris(
|
|
585
670
|
args: UpdateEphemerisCommandInput,
|
|
586
671
|
options?: __HttpHandlerOptions
|
|
@@ -607,6 +692,13 @@ export interface GroundStation {
|
|
|
607
692
|
options: __HttpHandlerOptions,
|
|
608
693
|
cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void
|
|
609
694
|
): void;
|
|
695
|
+
paginateListAntennas(
|
|
696
|
+
args: ListAntennasCommandInput,
|
|
697
|
+
paginationConfig?: Pick<
|
|
698
|
+
PaginationConfiguration,
|
|
699
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
700
|
+
>
|
|
701
|
+
): Paginator<ListAntennasCommandOutput>;
|
|
610
702
|
paginateListConfigs(
|
|
611
703
|
args?: ListConfigsCommandInput,
|
|
612
704
|
paginationConfig?: Pick<
|
|
@@ -621,6 +713,13 @@ export interface GroundStation {
|
|
|
621
713
|
Exclude<keyof PaginationConfiguration, "client">
|
|
622
714
|
>
|
|
623
715
|
): Paginator<ListContactsCommandOutput>;
|
|
716
|
+
paginateListContactVersions(
|
|
717
|
+
args: ListContactVersionsCommandInput,
|
|
718
|
+
paginationConfig?: Pick<
|
|
719
|
+
PaginationConfiguration,
|
|
720
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
721
|
+
>
|
|
722
|
+
): Paginator<ListContactVersionsCommandOutput>;
|
|
624
723
|
paginateListDataflowEndpointGroups(
|
|
625
724
|
args?: ListDataflowEndpointGroupsCommandInput,
|
|
626
725
|
paginationConfig?: Pick<
|
|
@@ -635,6 +734,13 @@ export interface GroundStation {
|
|
|
635
734
|
Exclude<keyof PaginationConfiguration, "client">
|
|
636
735
|
>
|
|
637
736
|
): Paginator<ListEphemeridesCommandOutput>;
|
|
737
|
+
paginateListGroundStationReservations(
|
|
738
|
+
args: ListGroundStationReservationsCommandInput,
|
|
739
|
+
paginationConfig?: Pick<
|
|
740
|
+
PaginationConfiguration,
|
|
741
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
742
|
+
>
|
|
743
|
+
): Paginator<ListGroundStationReservationsCommandOutput>;
|
|
638
744
|
paginateListGroundStations(
|
|
639
745
|
args?: ListGroundStationsCommandInput,
|
|
640
746
|
paginationConfig?: Pick<
|
|
@@ -665,6 +771,15 @@ export interface GroundStation {
|
|
|
665
771
|
Exclude<keyof WaiterConfiguration<GroundStation>, "client">
|
|
666
772
|
>
|
|
667
773
|
): Promise<WaiterResult>;
|
|
774
|
+
waitUntilContactUpdated(
|
|
775
|
+
args: DescribeContactVersionCommandInput,
|
|
776
|
+
waiterConfig:
|
|
777
|
+
| number
|
|
778
|
+
| Pick<
|
|
779
|
+
WaiterConfiguration<GroundStation>,
|
|
780
|
+
Exclude<keyof WaiterConfiguration<GroundStation>, "client">
|
|
781
|
+
>
|
|
782
|
+
): Promise<WaiterResult>;
|
|
668
783
|
}
|
|
669
784
|
export declare class GroundStation
|
|
670
785
|
extends GroundStationClient
|
|
@@ -88,6 +88,10 @@ import {
|
|
|
88
88
|
DescribeContactCommandInput,
|
|
89
89
|
DescribeContactCommandOutput,
|
|
90
90
|
} from "./commands/DescribeContactCommand";
|
|
91
|
+
import {
|
|
92
|
+
DescribeContactVersionCommandInput,
|
|
93
|
+
DescribeContactVersionCommandOutput,
|
|
94
|
+
} from "./commands/DescribeContactVersionCommand";
|
|
91
95
|
import {
|
|
92
96
|
DescribeEphemerisCommandInput,
|
|
93
97
|
DescribeEphemerisCommandOutput,
|
|
@@ -120,6 +124,10 @@ import {
|
|
|
120
124
|
GetSatelliteCommandInput,
|
|
121
125
|
GetSatelliteCommandOutput,
|
|
122
126
|
} from "./commands/GetSatelliteCommand";
|
|
127
|
+
import {
|
|
128
|
+
ListAntennasCommandInput,
|
|
129
|
+
ListAntennasCommandOutput,
|
|
130
|
+
} from "./commands/ListAntennasCommand";
|
|
123
131
|
import {
|
|
124
132
|
ListConfigsCommandInput,
|
|
125
133
|
ListConfigsCommandOutput,
|
|
@@ -128,6 +136,10 @@ import {
|
|
|
128
136
|
ListContactsCommandInput,
|
|
129
137
|
ListContactsCommandOutput,
|
|
130
138
|
} from "./commands/ListContactsCommand";
|
|
139
|
+
import {
|
|
140
|
+
ListContactVersionsCommandInput,
|
|
141
|
+
ListContactVersionsCommandOutput,
|
|
142
|
+
} from "./commands/ListContactVersionsCommand";
|
|
131
143
|
import {
|
|
132
144
|
ListDataflowEndpointGroupsCommandInput,
|
|
133
145
|
ListDataflowEndpointGroupsCommandOutput,
|
|
@@ -136,6 +148,10 @@ import {
|
|
|
136
148
|
ListEphemeridesCommandInput,
|
|
137
149
|
ListEphemeridesCommandOutput,
|
|
138
150
|
} from "./commands/ListEphemeridesCommand";
|
|
151
|
+
import {
|
|
152
|
+
ListGroundStationReservationsCommandInput,
|
|
153
|
+
ListGroundStationReservationsCommandOutput,
|
|
154
|
+
} from "./commands/ListGroundStationReservationsCommand";
|
|
139
155
|
import {
|
|
140
156
|
ListGroundStationsCommandInput,
|
|
141
157
|
ListGroundStationsCommandOutput,
|
|
@@ -176,6 +192,10 @@ import {
|
|
|
176
192
|
UpdateConfigCommandInput,
|
|
177
193
|
UpdateConfigCommandOutput,
|
|
178
194
|
} from "./commands/UpdateConfigCommand";
|
|
195
|
+
import {
|
|
196
|
+
UpdateContactCommandInput,
|
|
197
|
+
UpdateContactCommandOutput,
|
|
198
|
+
} from "./commands/UpdateContactCommand";
|
|
179
199
|
import {
|
|
180
200
|
UpdateEphemerisCommandInput,
|
|
181
201
|
UpdateEphemerisCommandOutput,
|
|
@@ -203,6 +223,7 @@ export type ServiceInputTypes =
|
|
|
203
223
|
| DeleteEphemerisCommandInput
|
|
204
224
|
| DeleteMissionProfileCommandInput
|
|
205
225
|
| DescribeContactCommandInput
|
|
226
|
+
| DescribeContactVersionCommandInput
|
|
206
227
|
| DescribeEphemerisCommandInput
|
|
207
228
|
| GetAgentConfigurationCommandInput
|
|
208
229
|
| GetAgentTaskResponseUrlCommandInput
|
|
@@ -211,10 +232,13 @@ export type ServiceInputTypes =
|
|
|
211
232
|
| GetMinuteUsageCommandInput
|
|
212
233
|
| GetMissionProfileCommandInput
|
|
213
234
|
| GetSatelliteCommandInput
|
|
235
|
+
| ListAntennasCommandInput
|
|
214
236
|
| ListConfigsCommandInput
|
|
237
|
+
| ListContactVersionsCommandInput
|
|
215
238
|
| ListContactsCommandInput
|
|
216
239
|
| ListDataflowEndpointGroupsCommandInput
|
|
217
240
|
| ListEphemeridesCommandInput
|
|
241
|
+
| ListGroundStationReservationsCommandInput
|
|
218
242
|
| ListGroundStationsCommandInput
|
|
219
243
|
| ListMissionProfilesCommandInput
|
|
220
244
|
| ListSatellitesCommandInput
|
|
@@ -225,6 +249,7 @@ export type ServiceInputTypes =
|
|
|
225
249
|
| UntagResourceCommandInput
|
|
226
250
|
| UpdateAgentStatusCommandInput
|
|
227
251
|
| UpdateConfigCommandInput
|
|
252
|
+
| UpdateContactCommandInput
|
|
228
253
|
| UpdateEphemerisCommandInput
|
|
229
254
|
| UpdateMissionProfileCommandInput;
|
|
230
255
|
export type ServiceOutputTypes =
|
|
@@ -239,6 +264,7 @@ export type ServiceOutputTypes =
|
|
|
239
264
|
| DeleteEphemerisCommandOutput
|
|
240
265
|
| DeleteMissionProfileCommandOutput
|
|
241
266
|
| DescribeContactCommandOutput
|
|
267
|
+
| DescribeContactVersionCommandOutput
|
|
242
268
|
| DescribeEphemerisCommandOutput
|
|
243
269
|
| GetAgentConfigurationCommandOutput
|
|
244
270
|
| GetAgentTaskResponseUrlCommandOutput
|
|
@@ -247,10 +273,13 @@ export type ServiceOutputTypes =
|
|
|
247
273
|
| GetMinuteUsageCommandOutput
|
|
248
274
|
| GetMissionProfileCommandOutput
|
|
249
275
|
| GetSatelliteCommandOutput
|
|
276
|
+
| ListAntennasCommandOutput
|
|
250
277
|
| ListConfigsCommandOutput
|
|
278
|
+
| ListContactVersionsCommandOutput
|
|
251
279
|
| ListContactsCommandOutput
|
|
252
280
|
| ListDataflowEndpointGroupsCommandOutput
|
|
253
281
|
| ListEphemeridesCommandOutput
|
|
282
|
+
| ListGroundStationReservationsCommandOutput
|
|
254
283
|
| ListGroundStationsCommandOutput
|
|
255
284
|
| ListMissionProfilesCommandOutput
|
|
256
285
|
| ListSatellitesCommandOutput
|
|
@@ -261,6 +290,7 @@ export type ServiceOutputTypes =
|
|
|
261
290
|
| UntagResourceCommandOutput
|
|
262
291
|
| UpdateAgentStatusCommandOutput
|
|
263
292
|
| UpdateConfigCommandOutput
|
|
293
|
+
| UpdateContactCommandOutput
|
|
264
294
|
| UpdateEphemerisCommandOutput
|
|
265
295
|
| UpdateMissionProfileCommandOutput;
|
|
266
296
|
export interface ClientDefaults
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GroundStationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GroundStationClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeContactVersionRequest,
|
|
10
|
+
DescribeContactVersionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeContactVersionCommandInput
|
|
15
|
+
extends DescribeContactVersionRequest {}
|
|
16
|
+
export interface DescribeContactVersionCommandOutput
|
|
17
|
+
extends DescribeContactVersionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeContactVersionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeContactVersionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeContactVersionCommandInput,
|
|
24
|
+
DescribeContactVersionCommandOutput,
|
|
25
|
+
GroundStationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeContactVersionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeContactVersionCommandInput,
|
|
33
|
+
DescribeContactVersionCommandOutput,
|
|
34
|
+
GroundStationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeContactVersionCommand extends DescribeContactVersionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeContactVersionRequest;
|
|
44
|
+
output: DescribeContactVersionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeContactVersionCommandInput;
|
|
48
|
+
output: DescribeContactVersionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GroundStationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GroundStationClient";
|
|
8
|
+
import { ListAntennasRequest, ListAntennasResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListAntennasCommandInput extends ListAntennasRequest {}
|
|
12
|
+
export interface ListAntennasCommandOutput
|
|
13
|
+
extends ListAntennasResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListAntennasCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListAntennasCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListAntennasCommandInput,
|
|
20
|
+
ListAntennasCommandOutput,
|
|
21
|
+
GroundStationClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: ListAntennasCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListAntennasCommandInput,
|
|
29
|
+
ListAntennasCommandOutput,
|
|
30
|
+
GroundStationClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListAntennasCommand extends ListAntennasCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListAntennasRequest;
|
|
40
|
+
output: ListAntennasResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListAntennasCommandInput;
|
|
44
|
+
output: ListAntennasCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GroundStationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GroundStationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListContactVersionsRequest,
|
|
10
|
+
ListContactVersionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListContactVersionsCommandInput
|
|
15
|
+
extends ListContactVersionsRequest {}
|
|
16
|
+
export interface ListContactVersionsCommandOutput
|
|
17
|
+
extends ListContactVersionsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListContactVersionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListContactVersionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListContactVersionsCommandInput,
|
|
24
|
+
ListContactVersionsCommandOutput,
|
|
25
|
+
GroundStationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListContactVersionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListContactVersionsCommandInput,
|
|
33
|
+
ListContactVersionsCommandOutput,
|
|
34
|
+
GroundStationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListContactVersionsCommand extends ListContactVersionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListContactVersionsRequest;
|
|
44
|
+
output: ListContactVersionsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListContactVersionsCommandInput;
|
|
48
|
+
output: ListContactVersionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GroundStationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GroundStationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListGroundStationReservationsRequest,
|
|
10
|
+
ListGroundStationReservationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListGroundStationReservationsCommandInput
|
|
15
|
+
extends ListGroundStationReservationsRequest {}
|
|
16
|
+
export interface ListGroundStationReservationsCommandOutput
|
|
17
|
+
extends ListGroundStationReservationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListGroundStationReservationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListGroundStationReservationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListGroundStationReservationsCommandInput,
|
|
24
|
+
ListGroundStationReservationsCommandOutput,
|
|
25
|
+
GroundStationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListGroundStationReservationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListGroundStationReservationsCommandInput,
|
|
33
|
+
ListGroundStationReservationsCommandOutput,
|
|
34
|
+
GroundStationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListGroundStationReservationsCommand extends ListGroundStationReservationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListGroundStationReservationsRequest;
|
|
44
|
+
output: ListGroundStationReservationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListGroundStationReservationsCommandInput;
|
|
48
|
+
output: ListGroundStationReservationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|