@aws-sdk/client-groundstation 3.921.0 → 3.925.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.
Files changed (27) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +161 -1
  3. package/dist-es/GroundStation.js +4 -0
  4. package/dist-es/commands/CreateDataflowEndpointGroupV2Command.js +22 -0
  5. package/dist-es/commands/GetAgentTaskResponseUrlCommand.js +22 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_0.js +40 -0
  8. package/dist-es/protocols/Aws_restJson1.js +83 -2
  9. package/dist-types/GroundStation.d.ts +14 -0
  10. package/dist-types/GroundStationClient.d.ts +4 -2
  11. package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  12. package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +46 -0
  13. package/dist-types/commands/CreateDataflowEndpointGroupV2Command.d.ts +142 -0
  14. package/dist-types/commands/DescribeContactCommand.d.ts +82 -8
  15. package/dist-types/commands/GetAgentTaskResponseUrlCommand.d.ts +86 -0
  16. package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +46 -0
  17. package/dist-types/commands/index.d.ts +2 -0
  18. package/dist-types/models/models_0.d.ts +315 -0
  19. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  20. package/dist-types/ts3.4/GroundStation.d.ts +34 -0
  21. package/dist-types/ts3.4/GroundStationClient.d.ts +12 -0
  22. package/dist-types/ts3.4/commands/CreateDataflowEndpointGroupV2Command.d.ts +51 -0
  23. package/dist-types/ts3.4/commands/GetAgentTaskResponseUrlCommand.d.ts +51 -0
  24. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  25. package/dist-types/ts3.4/models/models_0.d.ts +127 -0
  26. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  27. package/package.json +14 -14
@@ -1299,6 +1299,78 @@ export interface UpdateConfigRequest {
1299
1299
  */
1300
1300
  configData: ConfigTypeData | undefined;
1301
1301
  }
1302
+ /**
1303
+ * <p>Connection details for Ground Station to Agent and Agent to customer</p>
1304
+ * @public
1305
+ */
1306
+ export interface DownlinkConnectionDetails {
1307
+ /**
1308
+ * <p>Ingress address of AgentEndpoint with a port range and an optional mtu.</p>
1309
+ * @public
1310
+ */
1311
+ agentIpAndPortAddress: RangedConnectionDetails | undefined;
1312
+ /**
1313
+ * <p>Egress address of AgentEndpoint with an optional mtu.</p>
1314
+ * @public
1315
+ */
1316
+ egressAddressAndPort: ConnectionDetails | undefined;
1317
+ }
1318
+ /**
1319
+ * <p>Dataflow details for a downlink endpoint</p>
1320
+ * @public
1321
+ */
1322
+ export type DownlinkDataflowDetails = DownlinkDataflowDetails.AgentConnectionDetailsMember | DownlinkDataflowDetails.$UnknownMember;
1323
+ /**
1324
+ * @public
1325
+ */
1326
+ export declare namespace DownlinkDataflowDetails {
1327
+ /**
1328
+ * <p>Downlink connection details for customer to Agent and Agent to Ground Station</p>
1329
+ * @public
1330
+ */
1331
+ interface AgentConnectionDetailsMember {
1332
+ agentConnectionDetails: DownlinkConnectionDetails;
1333
+ $unknown?: never;
1334
+ }
1335
+ /**
1336
+ * @public
1337
+ */
1338
+ interface $UnknownMember {
1339
+ agentConnectionDetails?: never;
1340
+ $unknown: [string, any];
1341
+ }
1342
+ interface Visitor<T> {
1343
+ agentConnectionDetails: (value: DownlinkConnectionDetails) => T;
1344
+ _: (name: string, value: any) => T;
1345
+ }
1346
+ const visit: <T>(value: DownlinkDataflowDetails, visitor: Visitor<T>) => T;
1347
+ }
1348
+ /**
1349
+ * <p>Details for a downlink agent endpoint</p>
1350
+ * @public
1351
+ */
1352
+ export interface DownlinkAwsGroundStationAgentEndpointDetails {
1353
+ /**
1354
+ * <p>Downlink dataflow endpoint name</p>
1355
+ * @public
1356
+ */
1357
+ name: string | undefined;
1358
+ /**
1359
+ * <p>Dataflow details for the downlink endpoint</p>
1360
+ * @public
1361
+ */
1362
+ dataflowDetails: DownlinkDataflowDetails | undefined;
1363
+ /**
1364
+ * <p>Status of the agent associated with the downlink dataflow endpoint</p>
1365
+ * @public
1366
+ */
1367
+ agentStatus?: AgentStatus | undefined;
1368
+ /**
1369
+ * <p>Health audit results for the downlink dataflow endpoint</p>
1370
+ * @public
1371
+ */
1372
+ auditResults?: AuditResults | undefined;
1373
+ }
1302
1374
  /**
1303
1375
  * @public
1304
1376
  * @enum
@@ -1361,6 +1433,78 @@ export interface SecurityDetails {
1361
1433
  */
1362
1434
  roleArn: string | undefined;
1363
1435
  }
1436
+ /**
1437
+ * <p>Connection details for customer to Agent and Agent to Ground Station</p>
1438
+ * @public
1439
+ */
1440
+ export interface UplinkConnectionDetails {
1441
+ /**
1442
+ * <p>Egress address of AgentEndpoint with an optional mtu.</p>
1443
+ * @public
1444
+ */
1445
+ ingressAddressAndPort: ConnectionDetails | undefined;
1446
+ /**
1447
+ * <p>Ingress address of AgentEndpoint with a port range and an optional mtu.</p>
1448
+ * @public
1449
+ */
1450
+ agentIpAndPortAddress: RangedConnectionDetails | undefined;
1451
+ }
1452
+ /**
1453
+ * <p>Dataflow details for an uplink endpoint</p>
1454
+ * @public
1455
+ */
1456
+ export type UplinkDataflowDetails = UplinkDataflowDetails.AgentConnectionDetailsMember | UplinkDataflowDetails.$UnknownMember;
1457
+ /**
1458
+ * @public
1459
+ */
1460
+ export declare namespace UplinkDataflowDetails {
1461
+ /**
1462
+ * <p>Uplink connection details for customer to Agent and Agent to Ground Station</p>
1463
+ * @public
1464
+ */
1465
+ interface AgentConnectionDetailsMember {
1466
+ agentConnectionDetails: UplinkConnectionDetails;
1467
+ $unknown?: never;
1468
+ }
1469
+ /**
1470
+ * @public
1471
+ */
1472
+ interface $UnknownMember {
1473
+ agentConnectionDetails?: never;
1474
+ $unknown: [string, any];
1475
+ }
1476
+ interface Visitor<T> {
1477
+ agentConnectionDetails: (value: UplinkConnectionDetails) => T;
1478
+ _: (name: string, value: any) => T;
1479
+ }
1480
+ const visit: <T>(value: UplinkDataflowDetails, visitor: Visitor<T>) => T;
1481
+ }
1482
+ /**
1483
+ * <p>Details for an uplink agent endpoint</p>
1484
+ * @public
1485
+ */
1486
+ export interface UplinkAwsGroundStationAgentEndpointDetails {
1487
+ /**
1488
+ * <p>Uplink dataflow endpoint name</p>
1489
+ * @public
1490
+ */
1491
+ name: string | undefined;
1492
+ /**
1493
+ * <p>Dataflow details for the uplink endpoint</p>
1494
+ * @public
1495
+ */
1496
+ dataflowDetails: UplinkDataflowDetails | undefined;
1497
+ /**
1498
+ * <p>Status of the agent associated with the uplink dataflow endpoint</p>
1499
+ * @public
1500
+ */
1501
+ agentStatus?: AgentStatus | undefined;
1502
+ /**
1503
+ * <p>Health audit results for the uplink dataflow endpoint</p>
1504
+ * @public
1505
+ */
1506
+ auditResults?: AuditResults | undefined;
1507
+ }
1364
1508
  /**
1365
1509
  * <p>Information about the endpoint details.</p>
1366
1510
  * @public
@@ -1381,6 +1525,16 @@ export interface EndpointDetails {
1381
1525
  * @public
1382
1526
  */
1383
1527
  awsGroundStationAgentEndpoint?: AwsGroundStationAgentEndpoint | undefined;
1528
+ /**
1529
+ * <p>Definition for an uplink agent endpoint</p>
1530
+ * @public
1531
+ */
1532
+ uplinkAwsGroundStationAgentEndpoint?: UplinkAwsGroundStationAgentEndpointDetails | undefined;
1533
+ /**
1534
+ * <p>Definition for a downlink agent endpoint</p>
1535
+ * @public
1536
+ */
1537
+ downlinkAwsGroundStationAgentEndpoint?: DownlinkAwsGroundStationAgentEndpointDetails | undefined;
1384
1538
  /**
1385
1539
  * <p>A dataflow endpoint health status. This field is ignored when calling <code>CreateDataflowEndpointGroup</code>.</p>
1386
1540
  * @public
@@ -2015,6 +2169,132 @@ export interface DataflowEndpointGroupIdResponse {
2015
2169
  */
2016
2170
  dataflowEndpointGroupId?: string | undefined;
2017
2171
  }
2172
+ /**
2173
+ * <p>Definition for a downlink agent endpoint</p>
2174
+ * @public
2175
+ */
2176
+ export interface DownlinkAwsGroundStationAgentEndpoint {
2177
+ /**
2178
+ * <p>Downlink dataflow endpoint name</p>
2179
+ * @public
2180
+ */
2181
+ name: string | undefined;
2182
+ /**
2183
+ * <p>Dataflow details for the downlink endpoint</p>
2184
+ * @public
2185
+ */
2186
+ dataflowDetails: DownlinkDataflowDetails | undefined;
2187
+ }
2188
+ /**
2189
+ * <p>Definition for an uplink agent endpoint</p>
2190
+ * @public
2191
+ */
2192
+ export interface UplinkAwsGroundStationAgentEndpoint {
2193
+ /**
2194
+ * <p>Uplink dataflow endpoint name</p>
2195
+ * @public
2196
+ */
2197
+ name: string | undefined;
2198
+ /**
2199
+ * <p>Dataflow details for the uplink endpoint</p>
2200
+ * @public
2201
+ */
2202
+ dataflowDetails: UplinkDataflowDetails | undefined;
2203
+ }
2204
+ /**
2205
+ * <p>Endpoint definition used for creating a dataflow endpoint</p>
2206
+ * @public
2207
+ */
2208
+ export type CreateEndpointDetails = CreateEndpointDetails.DownlinkAwsGroundStationAgentEndpointMember | CreateEndpointDetails.UplinkAwsGroundStationAgentEndpointMember | CreateEndpointDetails.$UnknownMember;
2209
+ /**
2210
+ * @public
2211
+ */
2212
+ export declare namespace CreateEndpointDetails {
2213
+ /**
2214
+ * <p>Definition for an uplink agent endpoint</p>
2215
+ * @public
2216
+ */
2217
+ interface UplinkAwsGroundStationAgentEndpointMember {
2218
+ uplinkAwsGroundStationAgentEndpoint: UplinkAwsGroundStationAgentEndpoint;
2219
+ downlinkAwsGroundStationAgentEndpoint?: never;
2220
+ $unknown?: never;
2221
+ }
2222
+ /**
2223
+ * <p>Definition for a downlink agent endpoint</p>
2224
+ * @public
2225
+ */
2226
+ interface DownlinkAwsGroundStationAgentEndpointMember {
2227
+ uplinkAwsGroundStationAgentEndpoint?: never;
2228
+ downlinkAwsGroundStationAgentEndpoint: DownlinkAwsGroundStationAgentEndpoint;
2229
+ $unknown?: never;
2230
+ }
2231
+ /**
2232
+ * @public
2233
+ */
2234
+ interface $UnknownMember {
2235
+ uplinkAwsGroundStationAgentEndpoint?: never;
2236
+ downlinkAwsGroundStationAgentEndpoint?: never;
2237
+ $unknown: [string, any];
2238
+ }
2239
+ interface Visitor<T> {
2240
+ uplinkAwsGroundStationAgentEndpoint: (value: UplinkAwsGroundStationAgentEndpoint) => T;
2241
+ downlinkAwsGroundStationAgentEndpoint: (value: DownlinkAwsGroundStationAgentEndpoint) => T;
2242
+ _: (name: string, value: any) => T;
2243
+ }
2244
+ const visit: <T>(value: CreateEndpointDetails, visitor: Visitor<T>) => T;
2245
+ }
2246
+ /**
2247
+ * @public
2248
+ */
2249
+ export interface CreateDataflowEndpointGroupV2Request {
2250
+ /**
2251
+ * <p>Dataflow endpoint group's endpoint definitions</p>
2252
+ * @public
2253
+ */
2254
+ endpoints: CreateEndpointDetails[] | undefined;
2255
+ /**
2256
+ * <p>Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a <code>PREPASS</code> state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the <code>PREPASS</code> state.</p>
2257
+ * @public
2258
+ */
2259
+ contactPrePassDurationSeconds?: number | undefined;
2260
+ /**
2261
+ * <p>Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a <code>POSTPASS</code> state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the <code>POSTPASS</code> state.</p>
2262
+ * @public
2263
+ */
2264
+ contactPostPassDurationSeconds?: number | undefined;
2265
+ /**
2266
+ * <p>Tags of a V2 dataflow endpoint group.</p>
2267
+ * @public
2268
+ */
2269
+ tags?: Record<string, string> | undefined;
2270
+ }
2271
+ /**
2272
+ * @public
2273
+ */
2274
+ export interface CreateDataflowEndpointGroupV2Response {
2275
+ /**
2276
+ * <p>Dataflow endpoint group ID</p>
2277
+ * @public
2278
+ */
2279
+ dataflowEndpointGroupId?: string | undefined;
2280
+ }
2281
+ /**
2282
+ * <p>Request would cause a service quota to be exceeded.</p>
2283
+ * @public
2284
+ */
2285
+ export declare class ServiceQuotaExceededException extends __BaseException {
2286
+ readonly name: "ServiceQuotaExceededException";
2287
+ readonly $fault: "client";
2288
+ /**
2289
+ * <p>Parameter name that caused the exception</p>
2290
+ * @public
2291
+ */
2292
+ parameterName?: string | undefined;
2293
+ /**
2294
+ * @internal
2295
+ */
2296
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
2297
+ }
2018
2298
  /**
2019
2299
  * <p>Ephemeris data in Orbit Ephemeris Message (OEM) format.</p> <p> AWS Ground Station processes OEM ephemerides according to the <a href="https://ccsds.org/wp-content/uploads/gravity_forms/5-448e85c647331d9cbaf66c096458bdd5/2025/01//502x0b3e1.pdf">CCSDS standard</a> with some extra restrictions. OEM files should be in KVN format. For more detail about the OEM format that AWS Ground Station supports, see <a href="https://docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format">OEM ephemeris format</a> in the AWS Ground Station user guide. </p>
2020
2300
  * @public
@@ -2868,6 +3148,41 @@ export interface EphemerisMetaData {
2868
3148
  */
2869
3149
  name?: string | undefined;
2870
3150
  }
3151
+ /**
3152
+ * @public
3153
+ */
3154
+ export interface GetAgentTaskResponseUrlRequest {
3155
+ /**
3156
+ * <p>UUID of agent requesting the response URL.</p>
3157
+ * @public
3158
+ */
3159
+ agentId: string | undefined;
3160
+ /**
3161
+ * <p>GUID of the agent task for which the response URL is being requested.</p>
3162
+ * @public
3163
+ */
3164
+ taskId: string | undefined;
3165
+ }
3166
+ /**
3167
+ * @public
3168
+ */
3169
+ export interface GetAgentTaskResponseUrlResponse {
3170
+ /**
3171
+ * <p>UUID of the agent.</p>
3172
+ * @public
3173
+ */
3174
+ agentId: string | undefined;
3175
+ /**
3176
+ * <p>GUID of the agent task.</p>
3177
+ * @public
3178
+ */
3179
+ taskId: string | undefined;
3180
+ /**
3181
+ * <p>Presigned URL for uploading agent task response logs.</p>
3182
+ * @public
3183
+ */
3184
+ presignedLogUrl: string | undefined;
3185
+ }
2871
3186
  /**
2872
3187
  * <p/>
2873
3188
  * @public
@@ -3,6 +3,7 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { CancelContactCommandInput, CancelContactCommandOutput } from "../commands/CancelContactCommand";
4
4
  import { CreateConfigCommandInput, CreateConfigCommandOutput } from "../commands/CreateConfigCommand";
5
5
  import { CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput } from "../commands/CreateDataflowEndpointGroupCommand";
6
+ import { CreateDataflowEndpointGroupV2CommandInput, CreateDataflowEndpointGroupV2CommandOutput } from "../commands/CreateDataflowEndpointGroupV2Command";
6
7
  import { CreateEphemerisCommandInput, CreateEphemerisCommandOutput } from "../commands/CreateEphemerisCommand";
7
8
  import { CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput } from "../commands/CreateMissionProfileCommand";
8
9
  import { DeleteConfigCommandInput, DeleteConfigCommandOutput } from "../commands/DeleteConfigCommand";
@@ -12,6 +13,7 @@ import { DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput } f
12
13
  import { DescribeContactCommandInput, DescribeContactCommandOutput } from "../commands/DescribeContactCommand";
13
14
  import { DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput } from "../commands/DescribeEphemerisCommand";
14
15
  import { GetAgentConfigurationCommandInput, GetAgentConfigurationCommandOutput } from "../commands/GetAgentConfigurationCommand";
16
+ import { GetAgentTaskResponseUrlCommandInput, GetAgentTaskResponseUrlCommandOutput } from "../commands/GetAgentTaskResponseUrlCommand";
15
17
  import { GetConfigCommandInput, GetConfigCommandOutput } from "../commands/GetConfigCommand";
16
18
  import { GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput } from "../commands/GetDataflowEndpointGroupCommand";
17
19
  import { GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput } from "../commands/GetMinuteUsageCommand";
@@ -45,6 +47,10 @@ export declare const se_CreateConfigCommand: (input: CreateConfigCommandInput, c
45
47
  * serializeAws_restJson1CreateDataflowEndpointGroupCommand
46
48
  */
47
49
  export declare const se_CreateDataflowEndpointGroupCommand: (input: CreateDataflowEndpointGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ /**
51
+ * serializeAws_restJson1CreateDataflowEndpointGroupV2Command
52
+ */
53
+ export declare const se_CreateDataflowEndpointGroupV2Command: (input: CreateDataflowEndpointGroupV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
54
  /**
49
55
  * serializeAws_restJson1CreateEphemerisCommand
50
56
  */
@@ -81,6 +87,10 @@ export declare const se_DescribeEphemerisCommand: (input: DescribeEphemerisComma
81
87
  * serializeAws_restJson1GetAgentConfigurationCommand
82
88
  */
83
89
  export declare const se_GetAgentConfigurationCommand: (input: GetAgentConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
+ /**
91
+ * serializeAws_restJson1GetAgentTaskResponseUrlCommand
92
+ */
93
+ export declare const se_GetAgentTaskResponseUrlCommand: (input: GetAgentTaskResponseUrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
94
  /**
85
95
  * serializeAws_restJson1GetConfigCommand
86
96
  */
@@ -177,6 +187,10 @@ export declare const de_CreateConfigCommand: (output: __HttpResponse, context: _
177
187
  * deserializeAws_restJson1CreateDataflowEndpointGroupCommand
178
188
  */
179
189
  export declare const de_CreateDataflowEndpointGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataflowEndpointGroupCommandOutput>;
190
+ /**
191
+ * deserializeAws_restJson1CreateDataflowEndpointGroupV2Command
192
+ */
193
+ export declare const de_CreateDataflowEndpointGroupV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataflowEndpointGroupV2CommandOutput>;
180
194
  /**
181
195
  * deserializeAws_restJson1CreateEphemerisCommand
182
196
  */
@@ -213,6 +227,10 @@ export declare const de_DescribeEphemerisCommand: (output: __HttpResponse, conte
213
227
  * deserializeAws_restJson1GetAgentConfigurationCommand
214
228
  */
215
229
  export declare const de_GetAgentConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAgentConfigurationCommandOutput>;
230
+ /**
231
+ * deserializeAws_restJson1GetAgentTaskResponseUrlCommand
232
+ */
233
+ export declare const de_GetAgentTaskResponseUrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAgentTaskResponseUrlCommandOutput>;
216
234
  /**
217
235
  * deserializeAws_restJson1GetConfigCommand
218
236
  */
@@ -11,6 +11,10 @@ import {
11
11
  CreateDataflowEndpointGroupCommandInput,
12
12
  CreateDataflowEndpointGroupCommandOutput,
13
13
  } from "./commands/CreateDataflowEndpointGroupCommand";
14
+ import {
15
+ CreateDataflowEndpointGroupV2CommandInput,
16
+ CreateDataflowEndpointGroupV2CommandOutput,
17
+ } from "./commands/CreateDataflowEndpointGroupV2Command";
14
18
  import {
15
19
  CreateEphemerisCommandInput,
16
20
  CreateEphemerisCommandOutput,
@@ -47,6 +51,10 @@ import {
47
51
  GetAgentConfigurationCommandInput,
48
52
  GetAgentConfigurationCommandOutput,
49
53
  } from "./commands/GetAgentConfigurationCommand";
54
+ import {
55
+ GetAgentTaskResponseUrlCommandInput,
56
+ GetAgentTaskResponseUrlCommandOutput,
57
+ } from "./commands/GetAgentTaskResponseUrlCommand";
50
58
  import {
51
59
  GetConfigCommandInput,
52
60
  GetConfigCommandOutput,
@@ -172,6 +180,19 @@ export interface GroundStation {
172
180
  options: __HttpHandlerOptions,
173
181
  cb: (err: any, data?: CreateDataflowEndpointGroupCommandOutput) => void
174
182
  ): void;
183
+ createDataflowEndpointGroupV2(
184
+ args: CreateDataflowEndpointGroupV2CommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<CreateDataflowEndpointGroupV2CommandOutput>;
187
+ createDataflowEndpointGroupV2(
188
+ args: CreateDataflowEndpointGroupV2CommandInput,
189
+ cb: (err: any, data?: CreateDataflowEndpointGroupV2CommandOutput) => void
190
+ ): void;
191
+ createDataflowEndpointGroupV2(
192
+ args: CreateDataflowEndpointGroupV2CommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: CreateDataflowEndpointGroupV2CommandOutput) => void
195
+ ): void;
175
196
  createEphemeris(
176
197
  args: CreateEphemerisCommandInput,
177
198
  options?: __HttpHandlerOptions
@@ -289,6 +310,19 @@ export interface GroundStation {
289
310
  options: __HttpHandlerOptions,
290
311
  cb: (err: any, data?: GetAgentConfigurationCommandOutput) => void
291
312
  ): void;
313
+ getAgentTaskResponseUrl(
314
+ args: GetAgentTaskResponseUrlCommandInput,
315
+ options?: __HttpHandlerOptions
316
+ ): Promise<GetAgentTaskResponseUrlCommandOutput>;
317
+ getAgentTaskResponseUrl(
318
+ args: GetAgentTaskResponseUrlCommandInput,
319
+ cb: (err: any, data?: GetAgentTaskResponseUrlCommandOutput) => void
320
+ ): void;
321
+ getAgentTaskResponseUrl(
322
+ args: GetAgentTaskResponseUrlCommandInput,
323
+ options: __HttpHandlerOptions,
324
+ cb: (err: any, data?: GetAgentTaskResponseUrlCommandOutput) => void
325
+ ): void;
292
326
  getConfig(
293
327
  args: GetConfigCommandInput,
294
328
  options?: __HttpHandlerOptions
@@ -57,6 +57,10 @@ import {
57
57
  CreateDataflowEndpointGroupCommandInput,
58
58
  CreateDataflowEndpointGroupCommandOutput,
59
59
  } from "./commands/CreateDataflowEndpointGroupCommand";
60
+ import {
61
+ CreateDataflowEndpointGroupV2CommandInput,
62
+ CreateDataflowEndpointGroupV2CommandOutput,
63
+ } from "./commands/CreateDataflowEndpointGroupV2Command";
60
64
  import {
61
65
  CreateEphemerisCommandInput,
62
66
  CreateEphemerisCommandOutput,
@@ -93,6 +97,10 @@ import {
93
97
  GetAgentConfigurationCommandInput,
94
98
  GetAgentConfigurationCommandOutput,
95
99
  } from "./commands/GetAgentConfigurationCommand";
100
+ import {
101
+ GetAgentTaskResponseUrlCommandInput,
102
+ GetAgentTaskResponseUrlCommandOutput,
103
+ } from "./commands/GetAgentTaskResponseUrlCommand";
96
104
  import {
97
105
  GetConfigCommandInput,
98
106
  GetConfigCommandOutput,
@@ -188,6 +196,7 @@ export type ServiceInputTypes =
188
196
  | CancelContactCommandInput
189
197
  | CreateConfigCommandInput
190
198
  | CreateDataflowEndpointGroupCommandInput
199
+ | CreateDataflowEndpointGroupV2CommandInput
191
200
  | CreateEphemerisCommandInput
192
201
  | CreateMissionProfileCommandInput
193
202
  | DeleteConfigCommandInput
@@ -197,6 +206,7 @@ export type ServiceInputTypes =
197
206
  | DescribeContactCommandInput
198
207
  | DescribeEphemerisCommandInput
199
208
  | GetAgentConfigurationCommandInput
209
+ | GetAgentTaskResponseUrlCommandInput
200
210
  | GetConfigCommandInput
201
211
  | GetDataflowEndpointGroupCommandInput
202
212
  | GetMinuteUsageCommandInput
@@ -222,6 +232,7 @@ export type ServiceOutputTypes =
222
232
  | CancelContactCommandOutput
223
233
  | CreateConfigCommandOutput
224
234
  | CreateDataflowEndpointGroupCommandOutput
235
+ | CreateDataflowEndpointGroupV2CommandOutput
225
236
  | CreateEphemerisCommandOutput
226
237
  | CreateMissionProfileCommandOutput
227
238
  | DeleteConfigCommandOutput
@@ -231,6 +242,7 @@ export type ServiceOutputTypes =
231
242
  | DescribeContactCommandOutput
232
243
  | DescribeEphemerisCommandOutput
233
244
  | GetAgentConfigurationCommandOutput
245
+ | GetAgentTaskResponseUrlCommandOutput
234
246
  | GetConfigCommandOutput
235
247
  | GetDataflowEndpointGroupCommandOutput
236
248
  | GetMinuteUsageCommandOutput
@@ -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
+ CreateDataflowEndpointGroupV2Request,
10
+ CreateDataflowEndpointGroupV2Response,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateDataflowEndpointGroupV2CommandInput
15
+ extends CreateDataflowEndpointGroupV2Request {}
16
+ export interface CreateDataflowEndpointGroupV2CommandOutput
17
+ extends CreateDataflowEndpointGroupV2Response,
18
+ __MetadataBearer {}
19
+ declare const CreateDataflowEndpointGroupV2Command_base: {
20
+ new (
21
+ input: CreateDataflowEndpointGroupV2CommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateDataflowEndpointGroupV2CommandInput,
24
+ CreateDataflowEndpointGroupV2CommandOutput,
25
+ GroundStationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateDataflowEndpointGroupV2CommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateDataflowEndpointGroupV2CommandInput,
33
+ CreateDataflowEndpointGroupV2CommandOutput,
34
+ GroundStationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateDataflowEndpointGroupV2Command extends CreateDataflowEndpointGroupV2Command_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateDataflowEndpointGroupV2Request;
44
+ output: CreateDataflowEndpointGroupV2Response;
45
+ };
46
+ sdk: {
47
+ input: CreateDataflowEndpointGroupV2CommandInput;
48
+ output: CreateDataflowEndpointGroupV2CommandOutput;
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
+ GetAgentTaskResponseUrlRequest,
10
+ GetAgentTaskResponseUrlResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetAgentTaskResponseUrlCommandInput
15
+ extends GetAgentTaskResponseUrlRequest {}
16
+ export interface GetAgentTaskResponseUrlCommandOutput
17
+ extends GetAgentTaskResponseUrlResponse,
18
+ __MetadataBearer {}
19
+ declare const GetAgentTaskResponseUrlCommand_base: {
20
+ new (
21
+ input: GetAgentTaskResponseUrlCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetAgentTaskResponseUrlCommandInput,
24
+ GetAgentTaskResponseUrlCommandOutput,
25
+ GroundStationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetAgentTaskResponseUrlCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetAgentTaskResponseUrlCommandInput,
33
+ GetAgentTaskResponseUrlCommandOutput,
34
+ GroundStationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetAgentTaskResponseUrlCommand extends GetAgentTaskResponseUrlCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetAgentTaskResponseUrlRequest;
44
+ output: GetAgentTaskResponseUrlResponse;
45
+ };
46
+ sdk: {
47
+ input: GetAgentTaskResponseUrlCommandInput;
48
+ output: GetAgentTaskResponseUrlCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,6 +1,7 @@
1
1
  export * from "./CancelContactCommand";
2
2
  export * from "./CreateConfigCommand";
3
3
  export * from "./CreateDataflowEndpointGroupCommand";
4
+ export * from "./CreateDataflowEndpointGroupV2Command";
4
5
  export * from "./CreateEphemerisCommand";
5
6
  export * from "./CreateMissionProfileCommand";
6
7
  export * from "./DeleteConfigCommand";
@@ -10,6 +11,7 @@ export * from "./DeleteMissionProfileCommand";
10
11
  export * from "./DescribeContactCommand";
11
12
  export * from "./DescribeEphemerisCommand";
12
13
  export * from "./GetAgentConfigurationCommand";
14
+ export * from "./GetAgentTaskResponseUrlCommand";
13
15
  export * from "./GetConfigCommand";
14
16
  export * from "./GetDataflowEndpointGroupCommand";
15
17
  export * from "./GetMinuteUsageCommand";