@aws-sdk/client-groundstation 3.312.0 → 3.316.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 +37 -462
- package/dist-cjs/protocols/Aws_restJson1.js +498 -1304
- package/dist-es/GroundStation.js +37 -462
- package/dist-es/protocols/Aws_restJson1.js +456 -1262
- package/dist-types/GroundStation.d.ts +43 -99
- package/dist-types/ts3.4/GroundStation.d.ts +4 -1
- package/package.json +6 -6
|
@@ -33,268 +33,212 @@ import { UpdateConfigCommandInput, UpdateConfigCommandOutput } from "./commands/
|
|
|
33
33
|
import { UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput } from "./commands/UpdateEphemerisCommand";
|
|
34
34
|
import { UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput } from "./commands/UpdateMissionProfileCommand";
|
|
35
35
|
import { GroundStationClient } from "./GroundStationClient";
|
|
36
|
-
|
|
37
|
-
* @public
|
|
38
|
-
* <p>Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that
|
|
39
|
-
* enables you to control satellite communications, downlink and process satellite data, and
|
|
40
|
-
* scale your satellite operations efficiently and cost-effectively without having
|
|
41
|
-
* to build or manage your own ground station infrastructure.</p>
|
|
42
|
-
*/
|
|
43
|
-
export declare class GroundStation extends GroundStationClient {
|
|
36
|
+
export interface GroundStation {
|
|
44
37
|
/**
|
|
45
|
-
* @
|
|
46
|
-
* <p>Cancels a contact with a specified contact ID.</p>
|
|
38
|
+
* @see {@link CancelContactCommand}
|
|
47
39
|
*/
|
|
48
40
|
cancelContact(args: CancelContactCommandInput, options?: __HttpHandlerOptions): Promise<CancelContactCommandOutput>;
|
|
49
41
|
cancelContact(args: CancelContactCommandInput, cb: (err: any, data?: CancelContactCommandOutput) => void): void;
|
|
50
42
|
cancelContact(args: CancelContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelContactCommandOutput) => void): void;
|
|
51
43
|
/**
|
|
52
|
-
* @
|
|
53
|
-
* <p>Creates a <code>Config</code> with the specified <code>configData</code> parameters.</p>
|
|
54
|
-
* <p>Only one type of <code>configData</code> can be specified.</p>
|
|
44
|
+
* @see {@link CreateConfigCommand}
|
|
55
45
|
*/
|
|
56
46
|
createConfig(args: CreateConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigCommandOutput>;
|
|
57
47
|
createConfig(args: CreateConfigCommandInput, cb: (err: any, data?: CreateConfigCommandOutput) => void): void;
|
|
58
48
|
createConfig(args: CreateConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigCommandOutput) => void): void;
|
|
59
49
|
/**
|
|
60
|
-
* @
|
|
61
|
-
* <p>Creates a <code>DataflowEndpoint</code> group containing the specified list of <code>DataflowEndpoint</code> objects.</p>
|
|
62
|
-
* <p>The <code>name</code> field in each endpoint is used in your mission profile <code>DataflowEndpointConfig</code>
|
|
63
|
-
* to specify which endpoints to use during a contact.</p>
|
|
64
|
-
* <p>When a contact uses multiple <code>DataflowEndpointConfig</code> objects, each <code>Config</code>
|
|
65
|
-
* must match a <code>DataflowEndpoint</code> in the same group.</p>
|
|
50
|
+
* @see {@link CreateDataflowEndpointGroupCommand}
|
|
66
51
|
*/
|
|
67
52
|
createDataflowEndpointGroup(args: CreateDataflowEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataflowEndpointGroupCommandOutput>;
|
|
68
53
|
createDataflowEndpointGroup(args: CreateDataflowEndpointGroupCommandInput, cb: (err: any, data?: CreateDataflowEndpointGroupCommandOutput) => void): void;
|
|
69
54
|
createDataflowEndpointGroup(args: CreateDataflowEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataflowEndpointGroupCommandOutput) => void): void;
|
|
70
55
|
/**
|
|
71
|
-
* @
|
|
72
|
-
* <p>Creates an Ephemeris with the specified <code>EphemerisData</code>.</p>
|
|
56
|
+
* @see {@link CreateEphemerisCommand}
|
|
73
57
|
*/
|
|
74
58
|
createEphemeris(args: CreateEphemerisCommandInput, options?: __HttpHandlerOptions): Promise<CreateEphemerisCommandOutput>;
|
|
75
59
|
createEphemeris(args: CreateEphemerisCommandInput, cb: (err: any, data?: CreateEphemerisCommandOutput) => void): void;
|
|
76
60
|
createEphemeris(args: CreateEphemerisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEphemerisCommandOutput) => void): void;
|
|
77
61
|
/**
|
|
78
|
-
* @
|
|
79
|
-
* <p>Creates a mission profile.</p>
|
|
80
|
-
* <p>
|
|
81
|
-
* <code>dataflowEdges</code> is a list of lists of strings. Each lower level list of strings
|
|
82
|
-
* has two elements: a <i>from</i> ARN and a <i>to</i> ARN.</p>
|
|
62
|
+
* @see {@link CreateMissionProfileCommand}
|
|
83
63
|
*/
|
|
84
64
|
createMissionProfile(args: CreateMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateMissionProfileCommandOutput>;
|
|
85
65
|
createMissionProfile(args: CreateMissionProfileCommandInput, cb: (err: any, data?: CreateMissionProfileCommandOutput) => void): void;
|
|
86
66
|
createMissionProfile(args: CreateMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMissionProfileCommandOutput) => void): void;
|
|
87
67
|
/**
|
|
88
|
-
* @
|
|
89
|
-
* <p>Deletes a <code>Config</code>.</p>
|
|
68
|
+
* @see {@link DeleteConfigCommand}
|
|
90
69
|
*/
|
|
91
70
|
deleteConfig(args: DeleteConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigCommandOutput>;
|
|
92
71
|
deleteConfig(args: DeleteConfigCommandInput, cb: (err: any, data?: DeleteConfigCommandOutput) => void): void;
|
|
93
72
|
deleteConfig(args: DeleteConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigCommandOutput) => void): void;
|
|
94
73
|
/**
|
|
95
|
-
* @
|
|
96
|
-
* <p>Deletes a dataflow endpoint group.</p>
|
|
74
|
+
* @see {@link DeleteDataflowEndpointGroupCommand}
|
|
97
75
|
*/
|
|
98
76
|
deleteDataflowEndpointGroup(args: DeleteDataflowEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataflowEndpointGroupCommandOutput>;
|
|
99
77
|
deleteDataflowEndpointGroup(args: DeleteDataflowEndpointGroupCommandInput, cb: (err: any, data?: DeleteDataflowEndpointGroupCommandOutput) => void): void;
|
|
100
78
|
deleteDataflowEndpointGroup(args: DeleteDataflowEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataflowEndpointGroupCommandOutput) => void): void;
|
|
101
79
|
/**
|
|
102
|
-
* @
|
|
103
|
-
* <p>Deletes an ephemeris</p>
|
|
80
|
+
* @see {@link DeleteEphemerisCommand}
|
|
104
81
|
*/
|
|
105
82
|
deleteEphemeris(args: DeleteEphemerisCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEphemerisCommandOutput>;
|
|
106
83
|
deleteEphemeris(args: DeleteEphemerisCommandInput, cb: (err: any, data?: DeleteEphemerisCommandOutput) => void): void;
|
|
107
84
|
deleteEphemeris(args: DeleteEphemerisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEphemerisCommandOutput) => void): void;
|
|
108
85
|
/**
|
|
109
|
-
* @
|
|
110
|
-
* <p>Deletes a mission profile.</p>
|
|
86
|
+
* @see {@link DeleteMissionProfileCommand}
|
|
111
87
|
*/
|
|
112
88
|
deleteMissionProfile(args: DeleteMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMissionProfileCommandOutput>;
|
|
113
89
|
deleteMissionProfile(args: DeleteMissionProfileCommandInput, cb: (err: any, data?: DeleteMissionProfileCommandOutput) => void): void;
|
|
114
90
|
deleteMissionProfile(args: DeleteMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMissionProfileCommandOutput) => void): void;
|
|
115
91
|
/**
|
|
116
|
-
* @
|
|
117
|
-
* <p>Describes an existing contact.</p>
|
|
92
|
+
* @see {@link DescribeContactCommand}
|
|
118
93
|
*/
|
|
119
94
|
describeContact(args: DescribeContactCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactCommandOutput>;
|
|
120
95
|
describeContact(args: DescribeContactCommandInput, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
121
96
|
describeContact(args: DescribeContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
122
97
|
/**
|
|
123
|
-
* @
|
|
124
|
-
* <p>Describes an existing ephemeris.</p>
|
|
98
|
+
* @see {@link DescribeEphemerisCommand}
|
|
125
99
|
*/
|
|
126
100
|
describeEphemeris(args: DescribeEphemerisCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEphemerisCommandOutput>;
|
|
127
101
|
describeEphemeris(args: DescribeEphemerisCommandInput, cb: (err: any, data?: DescribeEphemerisCommandOutput) => void): void;
|
|
128
102
|
describeEphemeris(args: DescribeEphemerisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEphemerisCommandOutput) => void): void;
|
|
129
103
|
/**
|
|
130
|
-
* @
|
|
131
|
-
* <note>
|
|
132
|
-
* <p> For use by AWS Ground Station Agent and shouldn't be called directly.</p>
|
|
133
|
-
* </note>
|
|
134
|
-
* <p>Gets the latest configuration information for a registered agent.</p>
|
|
104
|
+
* @see {@link GetAgentConfigurationCommand}
|
|
135
105
|
*/
|
|
136
106
|
getAgentConfiguration(args: GetAgentConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetAgentConfigurationCommandOutput>;
|
|
137
107
|
getAgentConfiguration(args: GetAgentConfigurationCommandInput, cb: (err: any, data?: GetAgentConfigurationCommandOutput) => void): void;
|
|
138
108
|
getAgentConfiguration(args: GetAgentConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAgentConfigurationCommandOutput) => void): void;
|
|
139
109
|
/**
|
|
140
|
-
* @
|
|
141
|
-
* <p>Returns <code>Config</code> information.</p>
|
|
142
|
-
* <p>Only one <code>Config</code> response can be returned.</p>
|
|
110
|
+
* @see {@link GetConfigCommand}
|
|
143
111
|
*/
|
|
144
112
|
getConfig(args: GetConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigCommandOutput>;
|
|
145
113
|
getConfig(args: GetConfigCommandInput, cb: (err: any, data?: GetConfigCommandOutput) => void): void;
|
|
146
114
|
getConfig(args: GetConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigCommandOutput) => void): void;
|
|
147
115
|
/**
|
|
148
|
-
* @
|
|
149
|
-
* <p>Returns the dataflow endpoint group.</p>
|
|
116
|
+
* @see {@link GetDataflowEndpointGroupCommand}
|
|
150
117
|
*/
|
|
151
118
|
getDataflowEndpointGroup(args: GetDataflowEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetDataflowEndpointGroupCommandOutput>;
|
|
152
119
|
getDataflowEndpointGroup(args: GetDataflowEndpointGroupCommandInput, cb: (err: any, data?: GetDataflowEndpointGroupCommandOutput) => void): void;
|
|
153
120
|
getDataflowEndpointGroup(args: GetDataflowEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataflowEndpointGroupCommandOutput) => void): void;
|
|
154
121
|
/**
|
|
155
|
-
* @
|
|
156
|
-
* <p>Returns the number of minutes used by account.</p>
|
|
122
|
+
* @see {@link GetMinuteUsageCommand}
|
|
157
123
|
*/
|
|
158
124
|
getMinuteUsage(args: GetMinuteUsageCommandInput, options?: __HttpHandlerOptions): Promise<GetMinuteUsageCommandOutput>;
|
|
159
125
|
getMinuteUsage(args: GetMinuteUsageCommandInput, cb: (err: any, data?: GetMinuteUsageCommandOutput) => void): void;
|
|
160
126
|
getMinuteUsage(args: GetMinuteUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMinuteUsageCommandOutput) => void): void;
|
|
161
127
|
/**
|
|
162
|
-
* @
|
|
163
|
-
* <p>Returns a mission profile.</p>
|
|
128
|
+
* @see {@link GetMissionProfileCommand}
|
|
164
129
|
*/
|
|
165
130
|
getMissionProfile(args: GetMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetMissionProfileCommandOutput>;
|
|
166
131
|
getMissionProfile(args: GetMissionProfileCommandInput, cb: (err: any, data?: GetMissionProfileCommandOutput) => void): void;
|
|
167
132
|
getMissionProfile(args: GetMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMissionProfileCommandOutput) => void): void;
|
|
168
133
|
/**
|
|
169
|
-
* @
|
|
170
|
-
* <p>Returns a satellite.</p>
|
|
134
|
+
* @see {@link GetSatelliteCommand}
|
|
171
135
|
*/
|
|
172
136
|
getSatellite(args: GetSatelliteCommandInput, options?: __HttpHandlerOptions): Promise<GetSatelliteCommandOutput>;
|
|
173
137
|
getSatellite(args: GetSatelliteCommandInput, cb: (err: any, data?: GetSatelliteCommandOutput) => void): void;
|
|
174
138
|
getSatellite(args: GetSatelliteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSatelliteCommandOutput) => void): void;
|
|
175
139
|
/**
|
|
176
|
-
* @
|
|
177
|
-
* <p>Returns a list of <code>Config</code> objects.</p>
|
|
140
|
+
* @see {@link ListConfigsCommand}
|
|
178
141
|
*/
|
|
179
142
|
listConfigs(args: ListConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigsCommandOutput>;
|
|
180
143
|
listConfigs(args: ListConfigsCommandInput, cb: (err: any, data?: ListConfigsCommandOutput) => void): void;
|
|
181
144
|
listConfigs(args: ListConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigsCommandOutput) => void): void;
|
|
182
145
|
/**
|
|
183
|
-
* @
|
|
184
|
-
* <p>Returns a list of contacts.</p>
|
|
185
|
-
* <p>If <code>statusList</code> contains AVAILABLE, the request must include
|
|
186
|
-
* <code>groundStation</code>, <code>missionprofileArn</code>, and <code>satelliteArn</code>.
|
|
187
|
-
* </p>
|
|
146
|
+
* @see {@link ListContactsCommand}
|
|
188
147
|
*/
|
|
189
148
|
listContacts(args: ListContactsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactsCommandOutput>;
|
|
190
149
|
listContacts(args: ListContactsCommandInput, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
191
150
|
listContacts(args: ListContactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
192
151
|
/**
|
|
193
|
-
* @
|
|
194
|
-
* <p>Returns a list of <code>DataflowEndpoint</code> groups.</p>
|
|
152
|
+
* @see {@link ListDataflowEndpointGroupsCommand}
|
|
195
153
|
*/
|
|
196
154
|
listDataflowEndpointGroups(args: ListDataflowEndpointGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataflowEndpointGroupsCommandOutput>;
|
|
197
155
|
listDataflowEndpointGroups(args: ListDataflowEndpointGroupsCommandInput, cb: (err: any, data?: ListDataflowEndpointGroupsCommandOutput) => void): void;
|
|
198
156
|
listDataflowEndpointGroups(args: ListDataflowEndpointGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataflowEndpointGroupsCommandOutput) => void): void;
|
|
199
157
|
/**
|
|
200
|
-
* @
|
|
201
|
-
* <p>List existing ephemerides.</p>
|
|
158
|
+
* @see {@link ListEphemeridesCommand}
|
|
202
159
|
*/
|
|
203
160
|
listEphemerides(args: ListEphemeridesCommandInput, options?: __HttpHandlerOptions): Promise<ListEphemeridesCommandOutput>;
|
|
204
161
|
listEphemerides(args: ListEphemeridesCommandInput, cb: (err: any, data?: ListEphemeridesCommandOutput) => void): void;
|
|
205
162
|
listEphemerides(args: ListEphemeridesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEphemeridesCommandOutput) => void): void;
|
|
206
163
|
/**
|
|
207
|
-
* @
|
|
208
|
-
* <p>Returns a list of ground stations. </p>
|
|
164
|
+
* @see {@link ListGroundStationsCommand}
|
|
209
165
|
*/
|
|
210
166
|
listGroundStations(args: ListGroundStationsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroundStationsCommandOutput>;
|
|
211
167
|
listGroundStations(args: ListGroundStationsCommandInput, cb: (err: any, data?: ListGroundStationsCommandOutput) => void): void;
|
|
212
168
|
listGroundStations(args: ListGroundStationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroundStationsCommandOutput) => void): void;
|
|
213
169
|
/**
|
|
214
|
-
* @
|
|
215
|
-
* <p>Returns a list of mission profiles.</p>
|
|
170
|
+
* @see {@link ListMissionProfilesCommand}
|
|
216
171
|
*/
|
|
217
172
|
listMissionProfiles(args: ListMissionProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListMissionProfilesCommandOutput>;
|
|
218
173
|
listMissionProfiles(args: ListMissionProfilesCommandInput, cb: (err: any, data?: ListMissionProfilesCommandOutput) => void): void;
|
|
219
174
|
listMissionProfiles(args: ListMissionProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMissionProfilesCommandOutput) => void): void;
|
|
220
175
|
/**
|
|
221
|
-
* @
|
|
222
|
-
* <p>Returns a list of satellites.</p>
|
|
176
|
+
* @see {@link ListSatellitesCommand}
|
|
223
177
|
*/
|
|
224
178
|
listSatellites(args: ListSatellitesCommandInput, options?: __HttpHandlerOptions): Promise<ListSatellitesCommandOutput>;
|
|
225
179
|
listSatellites(args: ListSatellitesCommandInput, cb: (err: any, data?: ListSatellitesCommandOutput) => void): void;
|
|
226
180
|
listSatellites(args: ListSatellitesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSatellitesCommandOutput) => void): void;
|
|
227
181
|
/**
|
|
228
|
-
* @
|
|
229
|
-
* <p>Returns a list of tags for a specified resource.</p>
|
|
182
|
+
* @see {@link ListTagsForResourceCommand}
|
|
230
183
|
*/
|
|
231
184
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
232
185
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
233
186
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
234
187
|
/**
|
|
235
|
-
* @
|
|
236
|
-
* <note>
|
|
237
|
-
* <p> For use by AWS Ground Station Agent and shouldn't be called directly.</p>
|
|
238
|
-
* </note>
|
|
239
|
-
* <p> Registers a new agent with AWS Ground Station. </p>
|
|
188
|
+
* @see {@link RegisterAgentCommand}
|
|
240
189
|
*/
|
|
241
190
|
registerAgent(args: RegisterAgentCommandInput, options?: __HttpHandlerOptions): Promise<RegisterAgentCommandOutput>;
|
|
242
191
|
registerAgent(args: RegisterAgentCommandInput, cb: (err: any, data?: RegisterAgentCommandOutput) => void): void;
|
|
243
192
|
registerAgent(args: RegisterAgentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterAgentCommandOutput) => void): void;
|
|
244
193
|
/**
|
|
245
|
-
* @
|
|
246
|
-
* <p>Reserves a contact using specified parameters.</p>
|
|
194
|
+
* @see {@link ReserveContactCommand}
|
|
247
195
|
*/
|
|
248
196
|
reserveContact(args: ReserveContactCommandInput, options?: __HttpHandlerOptions): Promise<ReserveContactCommandOutput>;
|
|
249
197
|
reserveContact(args: ReserveContactCommandInput, cb: (err: any, data?: ReserveContactCommandOutput) => void): void;
|
|
250
198
|
reserveContact(args: ReserveContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReserveContactCommandOutput) => void): void;
|
|
251
199
|
/**
|
|
252
|
-
* @
|
|
253
|
-
* <p>Assigns a tag to a resource.</p>
|
|
200
|
+
* @see {@link TagResourceCommand}
|
|
254
201
|
*/
|
|
255
202
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
256
203
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
257
204
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
258
205
|
/**
|
|
259
|
-
* @
|
|
260
|
-
* <p>Deassigns a resource tag.</p>
|
|
206
|
+
* @see {@link UntagResourceCommand}
|
|
261
207
|
*/
|
|
262
208
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
263
209
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
264
210
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
265
211
|
/**
|
|
266
|
-
* @
|
|
267
|
-
* <note>
|
|
268
|
-
* <p> For use by AWS Ground Station Agent and shouldn't be called directly.</p>
|
|
269
|
-
* </note>
|
|
270
|
-
* <p>Update the status of the agent.</p>
|
|
212
|
+
* @see {@link UpdateAgentStatusCommand}
|
|
271
213
|
*/
|
|
272
214
|
updateAgentStatus(args: UpdateAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAgentStatusCommandOutput>;
|
|
273
215
|
updateAgentStatus(args: UpdateAgentStatusCommandInput, cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void): void;
|
|
274
216
|
updateAgentStatus(args: UpdateAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void): void;
|
|
275
217
|
/**
|
|
276
|
-
* @
|
|
277
|
-
* <p>Updates the <code>Config</code> used when scheduling contacts.</p>
|
|
278
|
-
* <p>Updating a <code>Config</code> will not update the execution parameters
|
|
279
|
-
* for existing future contacts scheduled with this <code>Config</code>.</p>
|
|
218
|
+
* @see {@link UpdateConfigCommand}
|
|
280
219
|
*/
|
|
281
220
|
updateConfig(args: UpdateConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigCommandOutput>;
|
|
282
221
|
updateConfig(args: UpdateConfigCommandInput, cb: (err: any, data?: UpdateConfigCommandOutput) => void): void;
|
|
283
222
|
updateConfig(args: UpdateConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigCommandOutput) => void): void;
|
|
284
223
|
/**
|
|
285
|
-
* @
|
|
286
|
-
* <p>Updates an existing ephemeris</p>
|
|
224
|
+
* @see {@link UpdateEphemerisCommand}
|
|
287
225
|
*/
|
|
288
226
|
updateEphemeris(args: UpdateEphemerisCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEphemerisCommandOutput>;
|
|
289
227
|
updateEphemeris(args: UpdateEphemerisCommandInput, cb: (err: any, data?: UpdateEphemerisCommandOutput) => void): void;
|
|
290
228
|
updateEphemeris(args: UpdateEphemerisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEphemerisCommandOutput) => void): void;
|
|
291
229
|
/**
|
|
292
|
-
* @
|
|
293
|
-
* <p>Updates a mission profile.</p>
|
|
294
|
-
* <p>Updating a mission profile will not update the execution parameters
|
|
295
|
-
* for existing future contacts.</p>
|
|
230
|
+
* @see {@link UpdateMissionProfileCommand}
|
|
296
231
|
*/
|
|
297
232
|
updateMissionProfile(args: UpdateMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMissionProfileCommandOutput>;
|
|
298
233
|
updateMissionProfile(args: UpdateMissionProfileCommandInput, cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void): void;
|
|
299
234
|
updateMissionProfile(args: UpdateMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void): void;
|
|
300
235
|
}
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
* <p>Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that
|
|
239
|
+
* enables you to control satellite communications, downlink and process satellite data, and
|
|
240
|
+
* scale your satellite operations efficiently and cost-effectively without having
|
|
241
|
+
* to build or manage your own ground station infrastructure.</p>
|
|
242
|
+
*/
|
|
243
|
+
export declare class GroundStation extends GroundStationClient implements GroundStation {
|
|
244
|
+
}
|
|
@@ -132,7 +132,7 @@ import {
|
|
|
132
132
|
UpdateMissionProfileCommandOutput,
|
|
133
133
|
} from "./commands/UpdateMissionProfileCommand";
|
|
134
134
|
import { GroundStationClient } from "./GroundStationClient";
|
|
135
|
-
export
|
|
135
|
+
export interface GroundStation {
|
|
136
136
|
cancelContact(
|
|
137
137
|
args: CancelContactCommandInput,
|
|
138
138
|
options?: __HttpHandlerOptions
|
|
@@ -563,3 +563,6 @@ export declare class GroundStation extends GroundStationClient {
|
|
|
563
563
|
cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void
|
|
564
564
|
): void;
|
|
565
565
|
}
|
|
566
|
+
export declare class GroundStation
|
|
567
|
+
extends GroundStationClient
|
|
568
|
+
implements GroundStation {}
|
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.316.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|