@aws-sdk/client-groundstation 3.296.0 → 3.297.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 (46) hide show
  1. package/dist-types/GroundStation.d.ts +34 -0
  2. package/dist-types/GroundStationClient.d.ts +24 -4
  3. package/dist-types/commands/CancelContactCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateConfigCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateEphemerisCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateMissionProfileCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteConfigCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteDataflowEndpointGroupCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteEphemerisCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteMissionProfileCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeContactCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeEphemerisCommand.d.ts +16 -0
  14. package/dist-types/commands/GetAgentConfigurationCommand.d.ts +16 -0
  15. package/dist-types/commands/GetConfigCommand.d.ts +16 -0
  16. package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +16 -0
  17. package/dist-types/commands/GetMinuteUsageCommand.d.ts +16 -0
  18. package/dist-types/commands/GetMissionProfileCommand.d.ts +16 -0
  19. package/dist-types/commands/GetSatelliteCommand.d.ts +16 -0
  20. package/dist-types/commands/ListConfigsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListContactsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListDataflowEndpointGroupsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListEphemeridesCommand.d.ts +16 -0
  24. package/dist-types/commands/ListGroundStationsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListMissionProfilesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListSatellitesCommand.d.ts +16 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/RegisterAgentCommand.d.ts +16 -0
  29. package/dist-types/commands/ReserveContactCommand.d.ts +16 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateAgentStatusCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateConfigCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateEphemerisCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateMissionProfileCommand.d.ts +16 -0
  36. package/dist-types/models/GroundStationServiceException.d.ts +2 -0
  37. package/dist-types/models/models_0.d.ts +203 -0
  38. package/dist-types/pagination/Interfaces.d.ts +3 -0
  39. package/dist-types/pagination/ListConfigsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListContactsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListDataflowEndpointGroupsPaginator.d.ts +3 -0
  42. package/dist-types/pagination/ListEphemeridesPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListGroundStationsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListMissionProfilesPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListSatellitesPaginator.d.ts +3 -0
  46. package/package.json +3 -3
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { GroundStationClient } from "../GroundStationClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface GroundStationPaginationConfiguration extends PaginationConfiguration {
4
7
  client: GroundStationClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListConfigsCommandInput, ListConfigsCommandOutput } from "../commands/ListConfigsCommand";
3
3
  import { GroundStationPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListConfigs(config: GroundStationPaginationConfiguration, input: ListConfigsCommandInput, ...additionalArguments: any): Paginator<ListConfigsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListContactsCommandInput, ListContactsCommandOutput } from "../commands/ListContactsCommand";
3
3
  import { GroundStationPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListContacts(config: GroundStationPaginationConfiguration, input: ListContactsCommandInput, ...additionalArguments: any): Paginator<ListContactsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput } from "../commands/ListDataflowEndpointGroupsCommand";
3
3
  import { GroundStationPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListDataflowEndpointGroups(config: GroundStationPaginationConfiguration, input: ListDataflowEndpointGroupsCommandInput, ...additionalArguments: any): Paginator<ListDataflowEndpointGroupsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListEphemeridesCommandInput, ListEphemeridesCommandOutput } from "../commands/ListEphemeridesCommand";
3
3
  import { GroundStationPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListEphemerides(config: GroundStationPaginationConfiguration, input: ListEphemeridesCommandInput, ...additionalArguments: any): Paginator<ListEphemeridesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListGroundStationsCommandInput, ListGroundStationsCommandOutput } from "../commands/ListGroundStationsCommand";
3
3
  import { GroundStationPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListGroundStations(config: GroundStationPaginationConfiguration, input: ListGroundStationsCommandInput, ...additionalArguments: any): Paginator<ListGroundStationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput } from "../commands/ListMissionProfilesCommand";
3
3
  import { GroundStationPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListMissionProfiles(config: GroundStationPaginationConfiguration, input: ListMissionProfilesCommandInput, ...additionalArguments: any): Paginator<ListMissionProfilesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSatellitesCommandInput, ListSatellitesCommandOutput } from "../commands/ListSatellitesCommand";
3
3
  import { GroundStationPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSatellites(config: GroundStationPaginationConfiguration, input: ListSatellitesCommandInput, ...additionalArguments: any): Paginator<ListSatellitesCommandOutput>;
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.296.0",
4
+ "version": "3.297.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",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",