@aws-sdk/client-groundstation 3.976.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.
package/dist-cjs/index.js CHANGED
@@ -1912,47 +1912,6 @@ class UpdateMissionProfileCommand extends smithyClient.Command
1912
1912
  .build() {
1913
1913
  }
1914
1914
 
1915
- const commands = {
1916
- CancelContactCommand,
1917
- CreateConfigCommand,
1918
- CreateDataflowEndpointGroupCommand,
1919
- CreateDataflowEndpointGroupV2Command,
1920
- CreateEphemerisCommand,
1921
- CreateMissionProfileCommand,
1922
- DeleteConfigCommand,
1923
- DeleteDataflowEndpointGroupCommand,
1924
- DeleteEphemerisCommand,
1925
- DeleteMissionProfileCommand,
1926
- DescribeContactCommand,
1927
- DescribeEphemerisCommand,
1928
- GetAgentConfigurationCommand,
1929
- GetAgentTaskResponseUrlCommand,
1930
- GetConfigCommand,
1931
- GetDataflowEndpointGroupCommand,
1932
- GetMinuteUsageCommand,
1933
- GetMissionProfileCommand,
1934
- GetSatelliteCommand,
1935
- ListConfigsCommand,
1936
- ListContactsCommand,
1937
- ListDataflowEndpointGroupsCommand,
1938
- ListEphemeridesCommand,
1939
- ListGroundStationsCommand,
1940
- ListMissionProfilesCommand,
1941
- ListSatellitesCommand,
1942
- ListTagsForResourceCommand,
1943
- RegisterAgentCommand,
1944
- ReserveContactCommand,
1945
- TagResourceCommand,
1946
- UntagResourceCommand,
1947
- UpdateAgentStatusCommand,
1948
- UpdateConfigCommand,
1949
- UpdateEphemerisCommand,
1950
- UpdateMissionProfileCommand,
1951
- };
1952
- class GroundStation extends GroundStationClient {
1953
- }
1954
- smithyClient.createAggregatedClient(commands, GroundStation);
1955
-
1956
1915
  const paginateListConfigs = core.createPaginator(GroundStationClient, ListConfigsCommand, "nextToken", "nextToken", "maxResults");
1957
1916
 
1958
1917
  const paginateListContacts = core.createPaginator(GroundStationClient, ListContactsCommand, "nextToken", "nextToken", "maxResults");
@@ -2006,6 +1965,59 @@ const waitUntilContactScheduled = async (params, input) => {
2006
1965
  return utilWaiter.checkExceptions(result);
2007
1966
  };
2008
1967
 
1968
+ const commands = {
1969
+ CancelContactCommand,
1970
+ CreateConfigCommand,
1971
+ CreateDataflowEndpointGroupCommand,
1972
+ CreateDataflowEndpointGroupV2Command,
1973
+ CreateEphemerisCommand,
1974
+ CreateMissionProfileCommand,
1975
+ DeleteConfigCommand,
1976
+ DeleteDataflowEndpointGroupCommand,
1977
+ DeleteEphemerisCommand,
1978
+ DeleteMissionProfileCommand,
1979
+ DescribeContactCommand,
1980
+ DescribeEphemerisCommand,
1981
+ GetAgentConfigurationCommand,
1982
+ GetAgentTaskResponseUrlCommand,
1983
+ GetConfigCommand,
1984
+ GetDataflowEndpointGroupCommand,
1985
+ GetMinuteUsageCommand,
1986
+ GetMissionProfileCommand,
1987
+ GetSatelliteCommand,
1988
+ ListConfigsCommand,
1989
+ ListContactsCommand,
1990
+ ListDataflowEndpointGroupsCommand,
1991
+ ListEphemeridesCommand,
1992
+ ListGroundStationsCommand,
1993
+ ListMissionProfilesCommand,
1994
+ ListSatellitesCommand,
1995
+ ListTagsForResourceCommand,
1996
+ RegisterAgentCommand,
1997
+ ReserveContactCommand,
1998
+ TagResourceCommand,
1999
+ UntagResourceCommand,
2000
+ UpdateAgentStatusCommand,
2001
+ UpdateConfigCommand,
2002
+ UpdateEphemerisCommand,
2003
+ UpdateMissionProfileCommand,
2004
+ };
2005
+ const paginators = {
2006
+ paginateListConfigs,
2007
+ paginateListContacts,
2008
+ paginateListDataflowEndpointGroups,
2009
+ paginateListEphemerides,
2010
+ paginateListGroundStations,
2011
+ paginateListMissionProfiles,
2012
+ paginateListSatellites,
2013
+ };
2014
+ const waiters = {
2015
+ waitUntilContactScheduled,
2016
+ };
2017
+ class GroundStation extends GroundStationClient {
2018
+ }
2019
+ smithyClient.createAggregatedClient(commands, GroundStation, { paginators, waiters });
2020
+
2009
2021
  const AgentStatus = {
2010
2022
  ACTIVE: "ACTIVE",
2011
2023
  FAILED: "FAILED",
@@ -35,6 +35,14 @@ import { UpdateConfigCommand, } from "./commands/UpdateConfigCommand";
35
35
  import { UpdateEphemerisCommand, } from "./commands/UpdateEphemerisCommand";
36
36
  import { UpdateMissionProfileCommand, } from "./commands/UpdateMissionProfileCommand";
37
37
  import { GroundStationClient } from "./GroundStationClient";
38
+ import { paginateListConfigs } from "./pagination/ListConfigsPaginator";
39
+ import { paginateListContacts } from "./pagination/ListContactsPaginator";
40
+ import { paginateListDataflowEndpointGroups } from "./pagination/ListDataflowEndpointGroupsPaginator";
41
+ import { paginateListEphemerides } from "./pagination/ListEphemeridesPaginator";
42
+ import { paginateListGroundStations } from "./pagination/ListGroundStationsPaginator";
43
+ import { paginateListMissionProfiles } from "./pagination/ListMissionProfilesPaginator";
44
+ import { paginateListSatellites } from "./pagination/ListSatellitesPaginator";
45
+ import { waitUntilContactScheduled } from "./waiters/waitForContactScheduled";
38
46
  const commands = {
39
47
  CancelContactCommand,
40
48
  CreateConfigCommand,
@@ -72,6 +80,18 @@ const commands = {
72
80
  UpdateEphemerisCommand,
73
81
  UpdateMissionProfileCommand,
74
82
  };
83
+ const paginators = {
84
+ paginateListConfigs,
85
+ paginateListContacts,
86
+ paginateListDataflowEndpointGroups,
87
+ paginateListEphemerides,
88
+ paginateListGroundStations,
89
+ paginateListMissionProfiles,
90
+ paginateListSatellites,
91
+ };
92
+ const waiters = {
93
+ waitUntilContactScheduled,
94
+ };
75
95
  export class GroundStation extends GroundStationClient {
76
96
  }
77
- createAggregatedClient(commands, GroundStation);
97
+ createAggregatedClient(commands, GroundStation, { paginators, waiters });
@@ -1,4 +1,5 @@
1
- import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
2
+ import type { WaiterResult } from "@smithy/util-waiter";
2
3
  import { CancelContactCommandInput, CancelContactCommandOutput } from "./commands/CancelContactCommand";
3
4
  import { CreateConfigCommandInput, CreateConfigCommandOutput } from "./commands/CreateConfigCommand";
4
5
  import { CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput } from "./commands/CreateDataflowEndpointGroupCommand";
@@ -251,6 +252,61 @@ export interface GroundStation {
251
252
  updateMissionProfile(args: UpdateMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMissionProfileCommandOutput>;
252
253
  updateMissionProfile(args: UpdateMissionProfileCommandInput, cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void): void;
253
254
  updateMissionProfile(args: UpdateMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void): void;
255
+ /**
256
+ * @see {@link ListConfigsCommand}
257
+ * @param args - command input.
258
+ * @param paginationConfig - optional pagination config.
259
+ * @returns AsyncIterable of {@link ListConfigsCommandOutput}.
260
+ */
261
+ paginateListConfigs(args?: ListConfigsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigsCommandOutput>;
262
+ /**
263
+ * @see {@link ListContactsCommand}
264
+ * @param args - command input.
265
+ * @param paginationConfig - optional pagination config.
266
+ * @returns AsyncIterable of {@link ListContactsCommandOutput}.
267
+ */
268
+ paginateListContacts(args: ListContactsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactsCommandOutput>;
269
+ /**
270
+ * @see {@link ListDataflowEndpointGroupsCommand}
271
+ * @param args - command input.
272
+ * @param paginationConfig - optional pagination config.
273
+ * @returns AsyncIterable of {@link ListDataflowEndpointGroupsCommandOutput}.
274
+ */
275
+ paginateListDataflowEndpointGroups(args?: ListDataflowEndpointGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataflowEndpointGroupsCommandOutput>;
276
+ /**
277
+ * @see {@link ListEphemeridesCommand}
278
+ * @param args - command input.
279
+ * @param paginationConfig - optional pagination config.
280
+ * @returns AsyncIterable of {@link ListEphemeridesCommandOutput}.
281
+ */
282
+ paginateListEphemerides(args: ListEphemeridesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEphemeridesCommandOutput>;
283
+ /**
284
+ * @see {@link ListGroundStationsCommand}
285
+ * @param args - command input.
286
+ * @param paginationConfig - optional pagination config.
287
+ * @returns AsyncIterable of {@link ListGroundStationsCommandOutput}.
288
+ */
289
+ paginateListGroundStations(args?: ListGroundStationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGroundStationsCommandOutput>;
290
+ /**
291
+ * @see {@link ListMissionProfilesCommand}
292
+ * @param args - command input.
293
+ * @param paginationConfig - optional pagination config.
294
+ * @returns AsyncIterable of {@link ListMissionProfilesCommandOutput}.
295
+ */
296
+ paginateListMissionProfiles(args?: ListMissionProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMissionProfilesCommandOutput>;
297
+ /**
298
+ * @see {@link ListSatellitesCommand}
299
+ * @param args - command input.
300
+ * @param paginationConfig - optional pagination config.
301
+ * @returns AsyncIterable of {@link ListSatellitesCommandOutput}.
302
+ */
303
+ paginateListSatellites(args?: ListSatellitesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSatellitesCommandOutput>;
304
+ /**
305
+ * @see {@link DescribeContactCommand}
306
+ * @param args - command input.
307
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
308
+ */
309
+ waitUntilContactScheduled(args: DescribeContactCommandInput, waiterConfig: number | Omit<WaiterConfiguration<GroundStation>, "client">): Promise<WaiterResult>;
254
310
  }
255
311
  /**
256
312
  * <p>Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that enables you to control satellite communications, downlink and process satellite data, and scale your satellite operations efficiently and cost-effectively without having to build or manage your own ground station infrastructure.</p>
@@ -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
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.976.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.2",
24
+ "@aws-sdk/core": "^3.973.4",
25
25
  "@aws-sdk/credential-provider-node": "^3.972.2",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.2",
27
27
  "@aws-sdk/middleware-logger": "^3.972.2",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.2",
29
- "@aws-sdk/middleware-user-agent": "^3.972.3",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.4",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.2",
31
31
  "@aws-sdk/types": "^3.973.1",
32
32
  "@aws-sdk/util-endpoints": "3.972.0",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.2",
34
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",