@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
|
@@ -2,11 +2,14 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
|
2
2
|
import { CancelContactCommandInput, CancelContactCommandOutput } from "./commands/CancelContactCommand";
|
|
3
3
|
import { CreateConfigCommandInput, CreateConfigCommandOutput } from "./commands/CreateConfigCommand";
|
|
4
4
|
import { CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput } from "./commands/CreateDataflowEndpointGroupCommand";
|
|
5
|
+
import { CreateEphemerisCommandInput, CreateEphemerisCommandOutput } from "./commands/CreateEphemerisCommand";
|
|
5
6
|
import { CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput } from "./commands/CreateMissionProfileCommand";
|
|
6
7
|
import { DeleteConfigCommandInput, DeleteConfigCommandOutput } from "./commands/DeleteConfigCommand";
|
|
7
8
|
import { DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput } from "./commands/DeleteDataflowEndpointGroupCommand";
|
|
9
|
+
import { DeleteEphemerisCommandInput, DeleteEphemerisCommandOutput } from "./commands/DeleteEphemerisCommand";
|
|
8
10
|
import { DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput } from "./commands/DeleteMissionProfileCommand";
|
|
9
11
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
12
|
+
import { DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput } from "./commands/DescribeEphemerisCommand";
|
|
10
13
|
import { GetConfigCommandInput, GetConfigCommandOutput } from "./commands/GetConfigCommand";
|
|
11
14
|
import { GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput } from "./commands/GetDataflowEndpointGroupCommand";
|
|
12
15
|
import { GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput } from "./commands/GetMinuteUsageCommand";
|
|
@@ -15,6 +18,7 @@ import { GetSatelliteCommandInput, GetSatelliteCommandOutput } from "./commands/
|
|
|
15
18
|
import { ListConfigsCommandInput, ListConfigsCommandOutput } from "./commands/ListConfigsCommand";
|
|
16
19
|
import { ListContactsCommandInput, ListContactsCommandOutput } from "./commands/ListContactsCommand";
|
|
17
20
|
import { ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput } from "./commands/ListDataflowEndpointGroupsCommand";
|
|
21
|
+
import { ListEphemeridesCommandInput, ListEphemeridesCommandOutput } from "./commands/ListEphemeridesCommand";
|
|
18
22
|
import { ListGroundStationsCommandInput, ListGroundStationsCommandOutput } from "./commands/ListGroundStationsCommand";
|
|
19
23
|
import { ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput } from "./commands/ListMissionProfilesCommand";
|
|
20
24
|
import { ListSatellitesCommandInput, ListSatellitesCommandOutput } from "./commands/ListSatellitesCommand";
|
|
@@ -23,6 +27,7 @@ import { ReserveContactCommandInput, ReserveContactCommandOutput } from "./comma
|
|
|
23
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
29
|
import { UpdateConfigCommandInput, UpdateConfigCommandOutput } from "./commands/UpdateConfigCommand";
|
|
30
|
+
import { UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput } from "./commands/UpdateEphemerisCommand";
|
|
26
31
|
import { UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput } from "./commands/UpdateMissionProfileCommand";
|
|
27
32
|
import { GroundStationClient } from "./GroundStationClient";
|
|
28
33
|
/**
|
|
@@ -55,6 +60,12 @@ export declare class GroundStation extends GroundStationClient {
|
|
|
55
60
|
createDataflowEndpointGroup(args: CreateDataflowEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataflowEndpointGroupCommandOutput>;
|
|
56
61
|
createDataflowEndpointGroup(args: CreateDataflowEndpointGroupCommandInput, cb: (err: any, data?: CreateDataflowEndpointGroupCommandOutput) => void): void;
|
|
57
62
|
createDataflowEndpointGroup(args: CreateDataflowEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataflowEndpointGroupCommandOutput) => void): void;
|
|
63
|
+
/**
|
|
64
|
+
* <p>Creates an Ephemeris with the specified <code>EphemerisData</code>.</p>
|
|
65
|
+
*/
|
|
66
|
+
createEphemeris(args: CreateEphemerisCommandInput, options?: __HttpHandlerOptions): Promise<CreateEphemerisCommandOutput>;
|
|
67
|
+
createEphemeris(args: CreateEphemerisCommandInput, cb: (err: any, data?: CreateEphemerisCommandOutput) => void): void;
|
|
68
|
+
createEphemeris(args: CreateEphemerisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEphemerisCommandOutput) => void): void;
|
|
58
69
|
/**
|
|
59
70
|
* <p>Creates a mission profile.</p>
|
|
60
71
|
* <p>
|
|
@@ -76,6 +87,12 @@ export declare class GroundStation extends GroundStationClient {
|
|
|
76
87
|
deleteDataflowEndpointGroup(args: DeleteDataflowEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataflowEndpointGroupCommandOutput>;
|
|
77
88
|
deleteDataflowEndpointGroup(args: DeleteDataflowEndpointGroupCommandInput, cb: (err: any, data?: DeleteDataflowEndpointGroupCommandOutput) => void): void;
|
|
78
89
|
deleteDataflowEndpointGroup(args: DeleteDataflowEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataflowEndpointGroupCommandOutput) => void): void;
|
|
90
|
+
/**
|
|
91
|
+
* <p>Deletes an ephemeris</p>
|
|
92
|
+
*/
|
|
93
|
+
deleteEphemeris(args: DeleteEphemerisCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEphemerisCommandOutput>;
|
|
94
|
+
deleteEphemeris(args: DeleteEphemerisCommandInput, cb: (err: any, data?: DeleteEphemerisCommandOutput) => void): void;
|
|
95
|
+
deleteEphemeris(args: DeleteEphemerisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEphemerisCommandOutput) => void): void;
|
|
79
96
|
/**
|
|
80
97
|
* <p>Deletes a mission profile.</p>
|
|
81
98
|
*/
|
|
@@ -88,6 +105,12 @@ export declare class GroundStation extends GroundStationClient {
|
|
|
88
105
|
describeContact(args: DescribeContactCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactCommandOutput>;
|
|
89
106
|
describeContact(args: DescribeContactCommandInput, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
90
107
|
describeContact(args: DescribeContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
108
|
+
/**
|
|
109
|
+
* <p>Describes an existing ephemeris.</p>
|
|
110
|
+
*/
|
|
111
|
+
describeEphemeris(args: DescribeEphemerisCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEphemerisCommandOutput>;
|
|
112
|
+
describeEphemeris(args: DescribeEphemerisCommandInput, cb: (err: any, data?: DescribeEphemerisCommandOutput) => void): void;
|
|
113
|
+
describeEphemeris(args: DescribeEphemerisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEphemerisCommandOutput) => void): void;
|
|
91
114
|
/**
|
|
92
115
|
* <p>Returns <code>Config</code> information.</p>
|
|
93
116
|
* <p>Only one <code>Config</code> response can be returned.</p>
|
|
@@ -140,6 +163,12 @@ export declare class GroundStation extends GroundStationClient {
|
|
|
140
163
|
listDataflowEndpointGroups(args: ListDataflowEndpointGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataflowEndpointGroupsCommandOutput>;
|
|
141
164
|
listDataflowEndpointGroups(args: ListDataflowEndpointGroupsCommandInput, cb: (err: any, data?: ListDataflowEndpointGroupsCommandOutput) => void): void;
|
|
142
165
|
listDataflowEndpointGroups(args: ListDataflowEndpointGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataflowEndpointGroupsCommandOutput) => void): void;
|
|
166
|
+
/**
|
|
167
|
+
* <p>List existing ephemerides.</p>
|
|
168
|
+
*/
|
|
169
|
+
listEphemerides(args: ListEphemeridesCommandInput, options?: __HttpHandlerOptions): Promise<ListEphemeridesCommandOutput>;
|
|
170
|
+
listEphemerides(args: ListEphemeridesCommandInput, cb: (err: any, data?: ListEphemeridesCommandOutput) => void): void;
|
|
171
|
+
listEphemerides(args: ListEphemeridesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEphemeridesCommandOutput) => void): void;
|
|
143
172
|
/**
|
|
144
173
|
* <p>Returns a list of ground stations. </p>
|
|
145
174
|
*/
|
|
@@ -190,6 +219,12 @@ export declare class GroundStation extends GroundStationClient {
|
|
|
190
219
|
updateConfig(args: UpdateConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigCommandOutput>;
|
|
191
220
|
updateConfig(args: UpdateConfigCommandInput, cb: (err: any, data?: UpdateConfigCommandOutput) => void): void;
|
|
192
221
|
updateConfig(args: UpdateConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigCommandOutput) => void): void;
|
|
222
|
+
/**
|
|
223
|
+
* <p>Updates an existing ephemeris</p>
|
|
224
|
+
*/
|
|
225
|
+
updateEphemeris(args: UpdateEphemerisCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEphemerisCommandOutput>;
|
|
226
|
+
updateEphemeris(args: UpdateEphemerisCommandInput, cb: (err: any, data?: UpdateEphemerisCommandOutput) => void): void;
|
|
227
|
+
updateEphemeris(args: UpdateEphemerisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEphemerisCommandOutput) => void): void;
|
|
193
228
|
/**
|
|
194
229
|
* <p>Updates a mission profile.</p>
|
|
195
230
|
* <p>Updating a mission profile will not update the execution parameters
|
|
@@ -10,11 +10,14 @@ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Creden
|
|
|
10
10
|
import { CancelContactCommandInput, CancelContactCommandOutput } from "./commands/CancelContactCommand";
|
|
11
11
|
import { CreateConfigCommandInput, CreateConfigCommandOutput } from "./commands/CreateConfigCommand";
|
|
12
12
|
import { CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput } from "./commands/CreateDataflowEndpointGroupCommand";
|
|
13
|
+
import { CreateEphemerisCommandInput, CreateEphemerisCommandOutput } from "./commands/CreateEphemerisCommand";
|
|
13
14
|
import { CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput } from "./commands/CreateMissionProfileCommand";
|
|
14
15
|
import { DeleteConfigCommandInput, DeleteConfigCommandOutput } from "./commands/DeleteConfigCommand";
|
|
15
16
|
import { DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput } from "./commands/DeleteDataflowEndpointGroupCommand";
|
|
17
|
+
import { DeleteEphemerisCommandInput, DeleteEphemerisCommandOutput } from "./commands/DeleteEphemerisCommand";
|
|
16
18
|
import { DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput } from "./commands/DeleteMissionProfileCommand";
|
|
17
19
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
20
|
+
import { DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput } from "./commands/DescribeEphemerisCommand";
|
|
18
21
|
import { GetConfigCommandInput, GetConfigCommandOutput } from "./commands/GetConfigCommand";
|
|
19
22
|
import { GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput } from "./commands/GetDataflowEndpointGroupCommand";
|
|
20
23
|
import { GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput } from "./commands/GetMinuteUsageCommand";
|
|
@@ -23,6 +26,7 @@ import { GetSatelliteCommandInput, GetSatelliteCommandOutput } from "./commands/
|
|
|
23
26
|
import { ListConfigsCommandInput, ListConfigsCommandOutput } from "./commands/ListConfigsCommand";
|
|
24
27
|
import { ListContactsCommandInput, ListContactsCommandOutput } from "./commands/ListContactsCommand";
|
|
25
28
|
import { ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput } from "./commands/ListDataflowEndpointGroupsCommand";
|
|
29
|
+
import { ListEphemeridesCommandInput, ListEphemeridesCommandOutput } from "./commands/ListEphemeridesCommand";
|
|
26
30
|
import { ListGroundStationsCommandInput, ListGroundStationsCommandOutput } from "./commands/ListGroundStationsCommand";
|
|
27
31
|
import { ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput } from "./commands/ListMissionProfilesCommand";
|
|
28
32
|
import { ListSatellitesCommandInput, ListSatellitesCommandOutput } from "./commands/ListSatellitesCommand";
|
|
@@ -31,10 +35,11 @@ import { ReserveContactCommandInput, ReserveContactCommandOutput } from "./comma
|
|
|
31
35
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
32
36
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
33
37
|
import { UpdateConfigCommandInput, UpdateConfigCommandOutput } from "./commands/UpdateConfigCommand";
|
|
38
|
+
import { UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput } from "./commands/UpdateEphemerisCommand";
|
|
34
39
|
import { UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput } from "./commands/UpdateMissionProfileCommand";
|
|
35
40
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
36
|
-
export declare type ServiceInputTypes = CancelContactCommandInput | CreateConfigCommandInput | CreateDataflowEndpointGroupCommandInput | CreateMissionProfileCommandInput | DeleteConfigCommandInput | DeleteDataflowEndpointGroupCommandInput | DeleteMissionProfileCommandInput | DescribeContactCommandInput | GetConfigCommandInput | GetDataflowEndpointGroupCommandInput | GetMinuteUsageCommandInput | GetMissionProfileCommandInput | GetSatelliteCommandInput | ListConfigsCommandInput | ListContactsCommandInput | ListDataflowEndpointGroupsCommandInput | ListGroundStationsCommandInput | ListMissionProfilesCommandInput | ListSatellitesCommandInput | ListTagsForResourceCommandInput | ReserveContactCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConfigCommandInput | UpdateMissionProfileCommandInput;
|
|
37
|
-
export declare type ServiceOutputTypes = CancelContactCommandOutput | CreateConfigCommandOutput | CreateDataflowEndpointGroupCommandOutput | CreateMissionProfileCommandOutput | DeleteConfigCommandOutput | DeleteDataflowEndpointGroupCommandOutput | DeleteMissionProfileCommandOutput | DescribeContactCommandOutput | GetConfigCommandOutput | GetDataflowEndpointGroupCommandOutput | GetMinuteUsageCommandOutput | GetMissionProfileCommandOutput | GetSatelliteCommandOutput | ListConfigsCommandOutput | ListContactsCommandOutput | ListDataflowEndpointGroupsCommandOutput | ListGroundStationsCommandOutput | ListMissionProfilesCommandOutput | ListSatellitesCommandOutput | ListTagsForResourceCommandOutput | ReserveContactCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConfigCommandOutput | UpdateMissionProfileCommandOutput;
|
|
41
|
+
export declare type ServiceInputTypes = CancelContactCommandInput | CreateConfigCommandInput | CreateDataflowEndpointGroupCommandInput | CreateEphemerisCommandInput | CreateMissionProfileCommandInput | DeleteConfigCommandInput | DeleteDataflowEndpointGroupCommandInput | DeleteEphemerisCommandInput | DeleteMissionProfileCommandInput | DescribeContactCommandInput | DescribeEphemerisCommandInput | GetConfigCommandInput | GetDataflowEndpointGroupCommandInput | GetMinuteUsageCommandInput | GetMissionProfileCommandInput | GetSatelliteCommandInput | ListConfigsCommandInput | ListContactsCommandInput | ListDataflowEndpointGroupsCommandInput | ListEphemeridesCommandInput | ListGroundStationsCommandInput | ListMissionProfilesCommandInput | ListSatellitesCommandInput | ListTagsForResourceCommandInput | ReserveContactCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConfigCommandInput | UpdateEphemerisCommandInput | UpdateMissionProfileCommandInput;
|
|
42
|
+
export declare type ServiceOutputTypes = CancelContactCommandOutput | CreateConfigCommandOutput | CreateDataflowEndpointGroupCommandOutput | CreateEphemerisCommandOutput | CreateMissionProfileCommandOutput | DeleteConfigCommandOutput | DeleteDataflowEndpointGroupCommandOutput | DeleteEphemerisCommandOutput | DeleteMissionProfileCommandOutput | DescribeContactCommandOutput | DescribeEphemerisCommandOutput | GetConfigCommandOutput | GetDataflowEndpointGroupCommandOutput | GetMinuteUsageCommandOutput | GetMissionProfileCommandOutput | GetSatelliteCommandOutput | ListConfigsCommandOutput | ListContactsCommandOutput | ListDataflowEndpointGroupsCommandOutput | ListEphemeridesCommandOutput | ListGroundStationsCommandOutput | ListMissionProfilesCommandOutput | ListSatellitesCommandOutput | ListTagsForResourceCommandOutput | ReserveContactCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConfigCommandOutput | UpdateEphemerisCommandOutput | UpdateMissionProfileCommandOutput;
|
|
38
43
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
39
44
|
/**
|
|
40
45
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
|
+
import { CreateEphemerisRequest, EphemerisIdResponse } from "../models/models_0";
|
|
6
|
+
export interface CreateEphemerisCommandInput extends CreateEphemerisRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface CreateEphemerisCommandOutput extends EphemerisIdResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Creates an Ephemeris with the specified <code>EphemerisData</code>.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { GroundStationClient, CreateEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
16
|
+
* // const { GroundStationClient, CreateEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
17
|
+
* const client = new GroundStationClient(config);
|
|
18
|
+
* const command = new CreateEphemerisCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link CreateEphemerisCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link CreateEphemerisCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class CreateEphemerisCommand extends $Command<CreateEphemerisCommandInput, CreateEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
28
|
+
readonly input: CreateEphemerisCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateEphemerisCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEphemerisCommandInput, CreateEphemerisCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
|
+
import { DeleteEphemerisRequest, EphemerisIdResponse } from "../models/models_0";
|
|
6
|
+
export interface DeleteEphemerisCommandInput extends DeleteEphemerisRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface DeleteEphemerisCommandOutput extends EphemerisIdResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Deletes an ephemeris</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { GroundStationClient, DeleteEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
16
|
+
* // const { GroundStationClient, DeleteEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
17
|
+
* const client = new GroundStationClient(config);
|
|
18
|
+
* const command = new DeleteEphemerisCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link DeleteEphemerisCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link DeleteEphemerisCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class DeleteEphemerisCommand extends $Command<DeleteEphemerisCommandInput, DeleteEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
28
|
+
readonly input: DeleteEphemerisCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteEphemerisCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEphemerisCommandInput, DeleteEphemerisCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
|
+
import { DescribeEphemerisRequest, DescribeEphemerisResponse } from "../models/models_0";
|
|
6
|
+
export interface DescribeEphemerisCommandInput extends DescribeEphemerisRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface DescribeEphemerisCommandOutput extends DescribeEphemerisResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Describes an existing ephemeris.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { GroundStationClient, DescribeEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
16
|
+
* // const { GroundStationClient, DescribeEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
17
|
+
* const client = new GroundStationClient(config);
|
|
18
|
+
* const command = new DescribeEphemerisCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link DescribeEphemerisCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link DescribeEphemerisCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class DescribeEphemerisCommand extends $Command<DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
28
|
+
readonly input: DescribeEphemerisCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeEphemerisCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
|
+
import { ListEphemeridesRequest, ListEphemeridesResponse } from "../models/models_0";
|
|
6
|
+
export interface ListEphemeridesCommandInput extends ListEphemeridesRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>List existing ephemerides.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { GroundStationClient, ListEphemeridesCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
16
|
+
* // const { GroundStationClient, ListEphemeridesCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
17
|
+
* const client = new GroundStationClient(config);
|
|
18
|
+
* const command = new ListEphemeridesCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link ListEphemeridesCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link ListEphemeridesCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class ListEphemeridesCommand extends $Command<ListEphemeridesCommandInput, ListEphemeridesCommandOutput, GroundStationClientResolvedConfig> {
|
|
28
|
+
readonly input: ListEphemeridesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListEphemeridesCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEphemeridesCommandInput, ListEphemeridesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
|
+
import { EphemerisIdResponse, UpdateEphemerisRequest } from "../models/models_0";
|
|
6
|
+
export interface UpdateEphemerisCommandInput extends UpdateEphemerisRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface UpdateEphemerisCommandOutput extends EphemerisIdResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Updates an existing ephemeris</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { GroundStationClient, UpdateEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
16
|
+
* // const { GroundStationClient, UpdateEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
17
|
+
* const client = new GroundStationClient(config);
|
|
18
|
+
* const command = new UpdateEphemerisCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link UpdateEphemerisCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link UpdateEphemerisCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class UpdateEphemerisCommand extends $Command<UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
28
|
+
readonly input: UpdateEphemerisCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateEphemerisCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
export * from "./CancelContactCommand";
|
|
2
2
|
export * from "./CreateConfigCommand";
|
|
3
3
|
export * from "./CreateDataflowEndpointGroupCommand";
|
|
4
|
+
export * from "./CreateEphemerisCommand";
|
|
4
5
|
export * from "./CreateMissionProfileCommand";
|
|
5
6
|
export * from "./DeleteConfigCommand";
|
|
6
7
|
export * from "./DeleteDataflowEndpointGroupCommand";
|
|
8
|
+
export * from "./DeleteEphemerisCommand";
|
|
7
9
|
export * from "./DeleteMissionProfileCommand";
|
|
8
10
|
export * from "./DescribeContactCommand";
|
|
11
|
+
export * from "./DescribeEphemerisCommand";
|
|
9
12
|
export * from "./GetConfigCommand";
|
|
10
13
|
export * from "./GetDataflowEndpointGroupCommand";
|
|
11
14
|
export * from "./GetMinuteUsageCommand";
|
|
@@ -14,6 +17,7 @@ export * from "./GetSatelliteCommand";
|
|
|
14
17
|
export * from "./ListConfigsCommand";
|
|
15
18
|
export * from "./ListContactsCommand";
|
|
16
19
|
export * from "./ListDataflowEndpointGroupsCommand";
|
|
20
|
+
export * from "./ListEphemeridesCommand";
|
|
17
21
|
export * from "./ListGroundStationsCommand";
|
|
18
22
|
export * from "./ListMissionProfilesCommand";
|
|
19
23
|
export * from "./ListSatellitesCommand";
|
|
@@ -22,4 +26,5 @@ export * from "./ReserveContactCommand";
|
|
|
22
26
|
export * from "./TagResourceCommand";
|
|
23
27
|
export * from "./UntagResourceCommand";
|
|
24
28
|
export * from "./UpdateConfigCommand";
|
|
29
|
+
export * from "./UpdateEphemerisCommand";
|
|
25
30
|
export * from "./UpdateMissionProfileCommand";
|