@aws-sdk/client-groundstation 3.975.0 → 3.978.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.
@@ -1,4 +1,10 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import {
2
+ HttpHandlerOptions as __HttpHandlerOptions,
3
+ PaginationConfiguration,
4
+ Paginator,
5
+ WaiterConfiguration,
6
+ } from "@smithy/types";
7
+ import { WaiterResult } from "@smithy/util-waiter";
2
8
  import {
3
9
  CancelContactCommandInput,
4
10
  CancelContactCommandOutput,
@@ -601,6 +607,64 @@ export interface GroundStation {
601
607
  options: __HttpHandlerOptions,
602
608
  cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void
603
609
  ): void;
610
+ paginateListConfigs(
611
+ args?: ListConfigsCommandInput,
612
+ paginationConfig?: Pick<
613
+ PaginationConfiguration,
614
+ Exclude<keyof PaginationConfiguration, "client">
615
+ >
616
+ ): Paginator<ListConfigsCommandOutput>;
617
+ paginateListContacts(
618
+ args: ListContactsCommandInput,
619
+ paginationConfig?: Pick<
620
+ PaginationConfiguration,
621
+ Exclude<keyof PaginationConfiguration, "client">
622
+ >
623
+ ): Paginator<ListContactsCommandOutput>;
624
+ paginateListDataflowEndpointGroups(
625
+ args?: ListDataflowEndpointGroupsCommandInput,
626
+ paginationConfig?: Pick<
627
+ PaginationConfiguration,
628
+ Exclude<keyof PaginationConfiguration, "client">
629
+ >
630
+ ): Paginator<ListDataflowEndpointGroupsCommandOutput>;
631
+ paginateListEphemerides(
632
+ args: ListEphemeridesCommandInput,
633
+ paginationConfig?: Pick<
634
+ PaginationConfiguration,
635
+ Exclude<keyof PaginationConfiguration, "client">
636
+ >
637
+ ): Paginator<ListEphemeridesCommandOutput>;
638
+ paginateListGroundStations(
639
+ args?: ListGroundStationsCommandInput,
640
+ paginationConfig?: Pick<
641
+ PaginationConfiguration,
642
+ Exclude<keyof PaginationConfiguration, "client">
643
+ >
644
+ ): Paginator<ListGroundStationsCommandOutput>;
645
+ paginateListMissionProfiles(
646
+ args?: ListMissionProfilesCommandInput,
647
+ paginationConfig?: Pick<
648
+ PaginationConfiguration,
649
+ Exclude<keyof PaginationConfiguration, "client">
650
+ >
651
+ ): Paginator<ListMissionProfilesCommandOutput>;
652
+ paginateListSatellites(
653
+ args?: ListSatellitesCommandInput,
654
+ paginationConfig?: Pick<
655
+ PaginationConfiguration,
656
+ Exclude<keyof PaginationConfiguration, "client">
657
+ >
658
+ ): Paginator<ListSatellitesCommandOutput>;
659
+ waitUntilContactScheduled(
660
+ args: DescribeContactCommandInput,
661
+ waiterConfig:
662
+ | number
663
+ | Pick<
664
+ WaiterConfiguration<GroundStation>,
665
+ Exclude<keyof WaiterConfiguration<GroundStation>, "client">
666
+ >
667
+ ): Promise<WaiterResult>;
604
668
  }
605
669
  export declare class GroundStation
606
670
  extends GroundStationClient
@@ -62,11 +62,17 @@ export declare const ConfigCapabilityType: {
62
62
  readonly ANTENNA_UPLINK: "antenna-uplink";
63
63
  readonly DATAFLOW_ENDPOINT: "dataflow-endpoint";
64
64
  readonly S3_RECORDING: "s3-recording";
65
+ readonly TELEMETRY_SINK: "telemetry-sink";
65
66
  readonly TRACKING: "tracking";
66
67
  readonly UPLINK_ECHO: "uplink-echo";
67
68
  };
68
69
  export type ConfigCapabilityType =
69
70
  (typeof ConfigCapabilityType)[keyof typeof ConfigCapabilityType];
71
+ export declare const TelemetrySinkType: {
72
+ readonly KINESIS_DATA_STREAM: "KINESIS_DATA_STREAM";
73
+ };
74
+ export type TelemetrySinkType =
75
+ (typeof TelemetrySinkType)[keyof typeof TelemetrySinkType];
70
76
  export declare const Criticality: {
71
77
  readonly PREFERRED: "PREFERRED";
72
78
  readonly REMOVED: "REMOVED";
@@ -17,6 +17,7 @@ import {
17
17
  EphemerisType,
18
18
  FrequencyUnits,
19
19
  Polarization,
20
+ TelemetrySinkType,
20
21
  } from "./enums";
21
22
  export interface GetAgentConfigurationRequest {
22
23
  agentId: string | undefined;
@@ -221,6 +222,31 @@ export interface S3RecordingConfig {
221
222
  roleArn: string | undefined;
222
223
  prefix?: string | undefined;
223
224
  }
225
+ export interface KinesisDataStreamData {
226
+ kinesisRoleArn: string | undefined;
227
+ kinesisDataStreamArn: string | undefined;
228
+ }
229
+ export type TelemetrySinkData =
230
+ | TelemetrySinkData.KinesisDataStreamDataMember
231
+ | TelemetrySinkData.$UnknownMember;
232
+ export declare namespace TelemetrySinkData {
233
+ interface KinesisDataStreamDataMember {
234
+ kinesisDataStreamData: KinesisDataStreamData;
235
+ $unknown?: never;
236
+ }
237
+ interface $UnknownMember {
238
+ kinesisDataStreamData?: never;
239
+ $unknown: [string, any];
240
+ }
241
+ interface Visitor<T> {
242
+ kinesisDataStreamData: (value: KinesisDataStreamData) => T;
243
+ _: (name: string, value: any) => T;
244
+ }
245
+ }
246
+ export interface TelemetrySinkConfig {
247
+ telemetrySinkType: TelemetrySinkType | undefined;
248
+ telemetrySinkData: TelemetrySinkData | undefined;
249
+ }
224
250
  export interface TrackingConfig {
225
251
  autotrack: Criticality | undefined;
226
252
  }
@@ -234,6 +260,7 @@ export type ConfigTypeData =
234
260
  | ConfigTypeData.AntennaUplinkConfigMember
235
261
  | ConfigTypeData.DataflowEndpointConfigMember
236
262
  | ConfigTypeData.S3RecordingConfigMember
263
+ | ConfigTypeData.TelemetrySinkConfigMember
237
264
  | ConfigTypeData.TrackingConfigMember
238
265
  | ConfigTypeData.UplinkEchoConfigMember
239
266
  | ConfigTypeData.$UnknownMember;
@@ -246,6 +273,7 @@ export declare namespace ConfigTypeData {
246
273
  antennaUplinkConfig?: never;
247
274
  uplinkEchoConfig?: never;
248
275
  s3RecordingConfig?: never;
276
+ telemetrySinkConfig?: never;
249
277
  $unknown?: never;
250
278
  }
251
279
  interface TrackingConfigMember {
@@ -256,6 +284,7 @@ export declare namespace ConfigTypeData {
256
284
  antennaUplinkConfig?: never;
257
285
  uplinkEchoConfig?: never;
258
286
  s3RecordingConfig?: never;
287
+ telemetrySinkConfig?: never;
259
288
  $unknown?: never;
260
289
  }
261
290
  interface DataflowEndpointConfigMember {
@@ -266,6 +295,7 @@ export declare namespace ConfigTypeData {
266
295
  antennaUplinkConfig?: never;
267
296
  uplinkEchoConfig?: never;
268
297
  s3RecordingConfig?: never;
298
+ telemetrySinkConfig?: never;
269
299
  $unknown?: never;
270
300
  }
271
301
  interface AntennaDownlinkDemodDecodeConfigMember {
@@ -276,6 +306,7 @@ export declare namespace ConfigTypeData {
276
306
  antennaUplinkConfig?: never;
277
307
  uplinkEchoConfig?: never;
278
308
  s3RecordingConfig?: never;
309
+ telemetrySinkConfig?: never;
279
310
  $unknown?: never;
280
311
  }
281
312
  interface AntennaUplinkConfigMember {
@@ -286,6 +317,7 @@ export declare namespace ConfigTypeData {
286
317
  antennaUplinkConfig: AntennaUplinkConfig;
287
318
  uplinkEchoConfig?: never;
288
319
  s3RecordingConfig?: never;
320
+ telemetrySinkConfig?: never;
289
321
  $unknown?: never;
290
322
  }
291
323
  interface UplinkEchoConfigMember {
@@ -296,6 +328,7 @@ export declare namespace ConfigTypeData {
296
328
  antennaUplinkConfig?: never;
297
329
  uplinkEchoConfig: UplinkEchoConfig;
298
330
  s3RecordingConfig?: never;
331
+ telemetrySinkConfig?: never;
299
332
  $unknown?: never;
300
333
  }
301
334
  interface S3RecordingConfigMember {
@@ -306,6 +339,18 @@ export declare namespace ConfigTypeData {
306
339
  antennaUplinkConfig?: never;
307
340
  uplinkEchoConfig?: never;
308
341
  s3RecordingConfig: S3RecordingConfig;
342
+ telemetrySinkConfig?: never;
343
+ $unknown?: never;
344
+ }
345
+ interface TelemetrySinkConfigMember {
346
+ antennaDownlinkConfig?: never;
347
+ trackingConfig?: never;
348
+ dataflowEndpointConfig?: never;
349
+ antennaDownlinkDemodDecodeConfig?: never;
350
+ antennaUplinkConfig?: never;
351
+ uplinkEchoConfig?: never;
352
+ s3RecordingConfig?: never;
353
+ telemetrySinkConfig: TelemetrySinkConfig;
309
354
  $unknown?: never;
310
355
  }
311
356
  interface $UnknownMember {
@@ -316,6 +361,7 @@ export declare namespace ConfigTypeData {
316
361
  antennaUplinkConfig?: never;
317
362
  uplinkEchoConfig?: never;
318
363
  s3RecordingConfig?: never;
364
+ telemetrySinkConfig?: never;
319
365
  $unknown: [string, any];
320
366
  }
321
367
  interface Visitor<T> {
@@ -328,6 +374,7 @@ export declare namespace ConfigTypeData {
328
374
  antennaUplinkConfig: (value: AntennaUplinkConfig) => T;
329
375
  uplinkEchoConfig: (value: UplinkEchoConfig) => T;
330
376
  s3RecordingConfig: (value: S3RecordingConfig) => T;
377
+ telemetrySinkConfig: (value: TelemetrySinkConfig) => T;
331
378
  _: (name: string, value: any) => T;
332
379
  }
333
380
  }
@@ -785,6 +832,7 @@ export interface CreateMissionProfileRequest {
785
832
  minimumViableContactDurationSeconds: number | undefined;
786
833
  dataflowEdges: string[][] | undefined;
787
834
  trackingConfigArn: string | undefined;
835
+ telemetrySinkConfigArn?: string | undefined;
788
836
  tags?: Record<string, string> | undefined;
789
837
  streamsKmsKey?: KmsKey | undefined;
790
838
  streamsKmsRole?: string | undefined;
@@ -953,6 +1001,7 @@ export interface GetMissionProfileResponse {
953
1001
  minimumViableContactDurationSeconds?: number | undefined;
954
1002
  dataflowEdges?: string[][] | undefined;
955
1003
  trackingConfigArn?: string | undefined;
1004
+ telemetrySinkConfigArn?: string | undefined;
956
1005
  tags?: Record<string, string> | undefined;
957
1006
  streamsKmsKey?: KmsKey | undefined;
958
1007
  streamsKmsRole?: string | undefined;
@@ -1009,6 +1058,7 @@ export interface UpdateMissionProfileRequest {
1009
1058
  minimumViableContactDurationSeconds?: number | undefined;
1010
1059
  dataflowEdges?: string[][] | undefined;
1011
1060
  trackingConfigArn?: string | undefined;
1061
+ telemetrySinkConfigArn?: string | undefined;
1012
1062
  streamsKmsKey?: KmsKey | undefined;
1013
1063
  streamsKmsRole?: string | undefined;
1014
1064
  }
@@ -80,6 +80,7 @@ export declare var GroundStationData$: StaticStructureSchema;
80
80
  export declare var IntegerRange$: StaticStructureSchema;
81
81
  export declare var InvalidParameterException$: StaticErrorSchema;
82
82
  export declare var ISO8601TimeRange$: StaticStructureSchema;
83
+ export declare var KinesisDataStreamData$: StaticStructureSchema;
83
84
  export declare var ListConfigsRequest$: StaticStructureSchema;
84
85
  export declare var ListConfigsResponse$: StaticStructureSchema;
85
86
  export declare var ListContactsRequest$: StaticStructureSchema;
@@ -118,6 +119,7 @@ export declare var Source$: StaticStructureSchema;
118
119
  export declare var SpectrumConfig$: StaticStructureSchema;
119
120
  export declare var TagResourceRequest$: StaticStructureSchema;
120
121
  export declare var TagResourceResponse$: StaticStructureSchema;
122
+ export declare var TelemetrySinkConfig$: StaticStructureSchema;
121
123
  export declare var TimeAzEl$: StaticStructureSchema;
122
124
  export declare var TimeRange$: StaticStructureSchema;
123
125
  export declare var TLEData$: StaticStructureSchema;
@@ -147,6 +149,7 @@ export declare var EphemerisFilter$: StaticUnionSchema;
147
149
  export declare var EphemerisTypeDescription$: StaticUnionSchema;
148
150
  export declare var KmsKey$: StaticUnionSchema;
149
151
  export declare var ProgramTrackSettings$: StaticUnionSchema;
152
+ export declare var TelemetrySinkData$: StaticUnionSchema;
150
153
  export declare var UplinkDataflowDetails$: StaticUnionSchema;
151
154
  export declare var CancelContact$: StaticOperationSchema;
152
155
  export declare var CreateConfig$: StaticOperationSchema;
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.975.0",
4
+ "version": "3.978.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-groundstation",
@@ -21,38 +21,38 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.1",
25
- "@aws-sdk/credential-provider-node": "^3.972.1",
26
- "@aws-sdk/middleware-host-header": "^3.972.1",
27
- "@aws-sdk/middleware-logger": "^3.972.1",
28
- "@aws-sdk/middleware-recursion-detection": "^3.972.1",
29
- "@aws-sdk/middleware-user-agent": "^3.972.2",
30
- "@aws-sdk/region-config-resolver": "^3.972.1",
31
- "@aws-sdk/types": "^3.973.0",
24
+ "@aws-sdk/core": "^3.973.4",
25
+ "@aws-sdk/credential-provider-node": "^3.972.2",
26
+ "@aws-sdk/middleware-host-header": "^3.972.2",
27
+ "@aws-sdk/middleware-logger": "^3.972.2",
28
+ "@aws-sdk/middleware-recursion-detection": "^3.972.2",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.4",
30
+ "@aws-sdk/region-config-resolver": "^3.972.2",
31
+ "@aws-sdk/types": "^3.973.1",
32
32
  "@aws-sdk/util-endpoints": "3.972.0",
33
- "@aws-sdk/util-user-agent-browser": "^3.972.1",
34
- "@aws-sdk/util-user-agent-node": "^3.972.1",
33
+ "@aws-sdk/util-user-agent-browser": "^3.972.2",
34
+ "@aws-sdk/util-user-agent-node": "^3.972.2",
35
35
  "@smithy/config-resolver": "^4.4.6",
36
- "@smithy/core": "^3.21.1",
36
+ "@smithy/core": "^3.22.0",
37
37
  "@smithy/fetch-http-handler": "^5.3.9",
38
38
  "@smithy/hash-node": "^4.2.8",
39
39
  "@smithy/invalid-dependency": "^4.2.8",
40
40
  "@smithy/middleware-content-length": "^4.2.8",
41
- "@smithy/middleware-endpoint": "^4.4.11",
42
- "@smithy/middleware-retry": "^4.4.27",
41
+ "@smithy/middleware-endpoint": "^4.4.12",
42
+ "@smithy/middleware-retry": "^4.4.29",
43
43
  "@smithy/middleware-serde": "^4.2.9",
44
44
  "@smithy/middleware-stack": "^4.2.8",
45
45
  "@smithy/node-config-provider": "^4.3.8",
46
46
  "@smithy/node-http-handler": "^4.4.8",
47
47
  "@smithy/protocol-http": "^5.3.8",
48
- "@smithy/smithy-client": "^4.10.12",
48
+ "@smithy/smithy-client": "^4.11.1",
49
49
  "@smithy/types": "^4.12.0",
50
50
  "@smithy/url-parser": "^4.2.8",
51
51
  "@smithy/util-base64": "^4.3.0",
52
52
  "@smithy/util-body-length-browser": "^4.2.0",
53
53
  "@smithy/util-body-length-node": "^4.2.1",
54
- "@smithy/util-defaults-mode-browser": "^4.3.26",
55
- "@smithy/util-defaults-mode-node": "^4.2.29",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.28",
55
+ "@smithy/util-defaults-mode-node": "^4.2.31",
56
56
  "@smithy/util-endpoints": "^3.2.8",
57
57
  "@smithy/util-middleware": "^4.2.8",
58
58
  "@smithy/util-retry": "^4.2.8",