@aws-sdk/client-groundstation 3.168.0 → 3.170.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 (48) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/GroundStation.d.ts +454 -130
  3. package/dist-types/ts3.4/GroundStationClient.d.ts +280 -98
  4. package/dist-types/ts3.4/commands/CancelContactCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateConfigCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateDataflowEndpointGroupCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateMissionProfileCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteConfigCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DeleteDataflowEndpointGroupCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DeleteMissionProfileCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DescribeContactCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetDataflowEndpointGroupCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/GetMinuteUsageCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetMissionProfileCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/GetSatelliteCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/ListConfigsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/ListDataflowEndpointGroupsCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListGroundStationsCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/ListMissionProfilesCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/ListSatellitesCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/ReserveContactCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateConfigCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UpdateMissionProfileCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/index.d.ts +25 -25
  30. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  31. package/dist-types/ts3.4/index.d.ts +6 -6
  32. package/dist-types/ts3.4/models/GroundStationServiceException.d.ts +8 -6
  33. package/dist-types/ts3.4/models/index.d.ts +1 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +1118 -1040
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  36. package/dist-types/ts3.4/pagination/ListConfigsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListDataflowEndpointGroupsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListGroundStationsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListMissionProfilesPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListSatellitesPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +305 -77
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  48. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { GroundStation } from "../GroundStation";
3
- import { GroundStationClient } from "../GroundStationClient";
4
- export interface GroundStationPaginationConfiguration extends PaginationConfiguration {
5
- client: GroundStation | GroundStationClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { GroundStation } from "../GroundStation";
3
+ import { GroundStationClient } from "../GroundStationClient";
4
+ export interface GroundStationPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: GroundStation | GroundStationClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListConfigsCommandInput, ListConfigsCommandOutput } from "../commands/ListConfigsCommand";
3
- import { GroundStationPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListConfigs(config: GroundStationPaginationConfiguration, input: ListConfigsCommandInput, ...additionalArguments: any): Paginator<ListConfigsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListConfigsCommandInput,
4
+ ListConfigsCommandOutput,
5
+ } from "../commands/ListConfigsCommand";
6
+ import { GroundStationPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListConfigs(
8
+ config: GroundStationPaginationConfiguration,
9
+ input: ListConfigsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListConfigsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListContactsCommandInput, ListContactsCommandOutput } from "../commands/ListContactsCommand";
3
- import { GroundStationPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListContacts(config: GroundStationPaginationConfiguration, input: ListContactsCommandInput, ...additionalArguments: any): Paginator<ListContactsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListContactsCommandInput,
4
+ ListContactsCommandOutput,
5
+ } from "../commands/ListContactsCommand";
6
+ import { GroundStationPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListContacts(
8
+ config: GroundStationPaginationConfiguration,
9
+ input: ListContactsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListContactsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput } from "../commands/ListDataflowEndpointGroupsCommand";
3
- import { GroundStationPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListDataflowEndpointGroups(config: GroundStationPaginationConfiguration, input: ListDataflowEndpointGroupsCommandInput, ...additionalArguments: any): Paginator<ListDataflowEndpointGroupsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListDataflowEndpointGroupsCommandInput,
4
+ ListDataflowEndpointGroupsCommandOutput,
5
+ } from "../commands/ListDataflowEndpointGroupsCommand";
6
+ import { GroundStationPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDataflowEndpointGroups(
8
+ config: GroundStationPaginationConfiguration,
9
+ input: ListDataflowEndpointGroupsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDataflowEndpointGroupsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListGroundStationsCommandInput, ListGroundStationsCommandOutput } from "../commands/ListGroundStationsCommand";
3
- import { GroundStationPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListGroundStations(config: GroundStationPaginationConfiguration, input: ListGroundStationsCommandInput, ...additionalArguments: any): Paginator<ListGroundStationsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListGroundStationsCommandInput,
4
+ ListGroundStationsCommandOutput,
5
+ } from "../commands/ListGroundStationsCommand";
6
+ import { GroundStationPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListGroundStations(
8
+ config: GroundStationPaginationConfiguration,
9
+ input: ListGroundStationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListGroundStationsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput } from "../commands/ListMissionProfilesCommand";
3
- import { GroundStationPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListMissionProfiles(config: GroundStationPaginationConfiguration, input: ListMissionProfilesCommandInput, ...additionalArguments: any): Paginator<ListMissionProfilesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListMissionProfilesCommandInput,
4
+ ListMissionProfilesCommandOutput,
5
+ } from "../commands/ListMissionProfilesCommand";
6
+ import { GroundStationPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListMissionProfiles(
8
+ config: GroundStationPaginationConfiguration,
9
+ input: ListMissionProfilesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListMissionProfilesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSatellitesCommandInput, ListSatellitesCommandOutput } from "../commands/ListSatellitesCommand";
3
- import { GroundStationPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSatellites(config: GroundStationPaginationConfiguration, input: ListSatellitesCommandInput, ...additionalArguments: any): Paginator<ListSatellitesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSatellitesCommandInput,
4
+ ListSatellitesCommandOutput,
5
+ } from "../commands/ListSatellitesCommand";
6
+ import { GroundStationPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSatellites(
8
+ config: GroundStationPaginationConfiguration,
9
+ input: ListSatellitesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSatellitesCommandOutput>;
@@ -1,7 +1,7 @@
1
- export * from "./Interfaces";
2
- export * from "./ListConfigsPaginator";
3
- export * from "./ListContactsPaginator";
4
- export * from "./ListDataflowEndpointGroupsPaginator";
5
- export * from "./ListGroundStationsPaginator";
6
- export * from "./ListMissionProfilesPaginator";
7
- export * from "./ListSatellitesPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListConfigsPaginator";
3
+ export * from "./ListContactsPaginator";
4
+ export * from "./ListDataflowEndpointGroupsPaginator";
5
+ export * from "./ListGroundStationsPaginator";
6
+ export * from "./ListMissionProfilesPaginator";
7
+ export * from "./ListSatellitesPaginator";
@@ -1,77 +1,305 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CancelContactCommandInput, CancelContactCommandOutput } from "../commands/CancelContactCommand";
4
- import { CreateConfigCommandInput, CreateConfigCommandOutput } from "../commands/CreateConfigCommand";
5
- import { CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput } from "../commands/CreateDataflowEndpointGroupCommand";
6
- import { CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput } from "../commands/CreateMissionProfileCommand";
7
- import { DeleteConfigCommandInput, DeleteConfigCommandOutput } from "../commands/DeleteConfigCommand";
8
- import { DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput } from "../commands/DeleteDataflowEndpointGroupCommand";
9
- import { DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput } from "../commands/DeleteMissionProfileCommand";
10
- import { DescribeContactCommandInput, DescribeContactCommandOutput } from "../commands/DescribeContactCommand";
11
- import { GetConfigCommandInput, GetConfigCommandOutput } from "../commands/GetConfigCommand";
12
- import { GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput } from "../commands/GetDataflowEndpointGroupCommand";
13
- import { GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput } from "../commands/GetMinuteUsageCommand";
14
- import { GetMissionProfileCommandInput, GetMissionProfileCommandOutput } from "../commands/GetMissionProfileCommand";
15
- import { GetSatelliteCommandInput, GetSatelliteCommandOutput } from "../commands/GetSatelliteCommand";
16
- import { ListConfigsCommandInput, ListConfigsCommandOutput } from "../commands/ListConfigsCommand";
17
- import { ListContactsCommandInput, ListContactsCommandOutput } from "../commands/ListContactsCommand";
18
- import { ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput } from "../commands/ListDataflowEndpointGroupsCommand";
19
- import { ListGroundStationsCommandInput, ListGroundStationsCommandOutput } from "../commands/ListGroundStationsCommand";
20
- import { ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput } from "../commands/ListMissionProfilesCommand";
21
- import { ListSatellitesCommandInput, ListSatellitesCommandOutput } from "../commands/ListSatellitesCommand";
22
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
23
- import { ReserveContactCommandInput, ReserveContactCommandOutput } from "../commands/ReserveContactCommand";
24
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
25
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
26
- import { UpdateConfigCommandInput, UpdateConfigCommandOutput } from "../commands/UpdateConfigCommand";
27
- import { UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput } from "../commands/UpdateMissionProfileCommand";
28
- export declare const serializeAws_restJson1CancelContactCommand: (input: CancelContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1CreateConfigCommand: (input: CreateConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1CreateDataflowEndpointGroupCommand: (input: CreateDataflowEndpointGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1CreateMissionProfileCommand: (input: CreateMissionProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1DeleteConfigCommand: (input: DeleteConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1DeleteDataflowEndpointGroupCommand: (input: DeleteDataflowEndpointGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1DeleteMissionProfileCommand: (input: DeleteMissionProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1DescribeContactCommand: (input: DescribeContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1GetConfigCommand: (input: GetConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1GetDataflowEndpointGroupCommand: (input: GetDataflowEndpointGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1GetMinuteUsageCommand: (input: GetMinuteUsageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1GetMissionProfileCommand: (input: GetMissionProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1GetSatelliteCommand: (input: GetSatelliteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1ListConfigsCommand: (input: ListConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1ListContactsCommand: (input: ListContactsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1ListDataflowEndpointGroupsCommand: (input: ListDataflowEndpointGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1ListGroundStationsCommand: (input: ListGroundStationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1ListMissionProfilesCommand: (input: ListMissionProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ListSatellitesCommand: (input: ListSatellitesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1ReserveContactCommand: (input: ReserveContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1UpdateConfigCommand: (input: UpdateConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1UpdateMissionProfileCommand: (input: UpdateMissionProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const deserializeAws_restJson1CancelContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelContactCommandOutput>;
54
- export declare const deserializeAws_restJson1CreateConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigCommandOutput>;
55
- export declare const deserializeAws_restJson1CreateDataflowEndpointGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataflowEndpointGroupCommandOutput>;
56
- export declare const deserializeAws_restJson1CreateMissionProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMissionProfileCommandOutput>;
57
- export declare const deserializeAws_restJson1DeleteConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigCommandOutput>;
58
- export declare const deserializeAws_restJson1DeleteDataflowEndpointGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataflowEndpointGroupCommandOutput>;
59
- export declare const deserializeAws_restJson1DeleteMissionProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMissionProfileCommandOutput>;
60
- export declare const deserializeAws_restJson1DescribeContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeContactCommandOutput>;
61
- export declare const deserializeAws_restJson1GetConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigCommandOutput>;
62
- export declare const deserializeAws_restJson1GetDataflowEndpointGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataflowEndpointGroupCommandOutput>;
63
- export declare const deserializeAws_restJson1GetMinuteUsageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMinuteUsageCommandOutput>;
64
- export declare const deserializeAws_restJson1GetMissionProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMissionProfileCommandOutput>;
65
- export declare const deserializeAws_restJson1GetSatelliteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSatelliteCommandOutput>;
66
- export declare const deserializeAws_restJson1ListConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigsCommandOutput>;
67
- export declare const deserializeAws_restJson1ListContactsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactsCommandOutput>;
68
- export declare const deserializeAws_restJson1ListDataflowEndpointGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataflowEndpointGroupsCommandOutput>;
69
- export declare const deserializeAws_restJson1ListGroundStationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroundStationsCommandOutput>;
70
- export declare const deserializeAws_restJson1ListMissionProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMissionProfilesCommandOutput>;
71
- export declare const deserializeAws_restJson1ListSatellitesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSatellitesCommandOutput>;
72
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
73
- export declare const deserializeAws_restJson1ReserveContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReserveContactCommandOutput>;
74
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
75
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
76
- export declare const deserializeAws_restJson1UpdateConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigCommandOutput>;
77
- export declare const deserializeAws_restJson1UpdateMissionProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMissionProfileCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CancelContactCommandInput,
8
+ CancelContactCommandOutput,
9
+ } from "../commands/CancelContactCommand";
10
+ import {
11
+ CreateConfigCommandInput,
12
+ CreateConfigCommandOutput,
13
+ } from "../commands/CreateConfigCommand";
14
+ import {
15
+ CreateDataflowEndpointGroupCommandInput,
16
+ CreateDataflowEndpointGroupCommandOutput,
17
+ } from "../commands/CreateDataflowEndpointGroupCommand";
18
+ import {
19
+ CreateMissionProfileCommandInput,
20
+ CreateMissionProfileCommandOutput,
21
+ } from "../commands/CreateMissionProfileCommand";
22
+ import {
23
+ DeleteConfigCommandInput,
24
+ DeleteConfigCommandOutput,
25
+ } from "../commands/DeleteConfigCommand";
26
+ import {
27
+ DeleteDataflowEndpointGroupCommandInput,
28
+ DeleteDataflowEndpointGroupCommandOutput,
29
+ } from "../commands/DeleteDataflowEndpointGroupCommand";
30
+ import {
31
+ DeleteMissionProfileCommandInput,
32
+ DeleteMissionProfileCommandOutput,
33
+ } from "../commands/DeleteMissionProfileCommand";
34
+ import {
35
+ DescribeContactCommandInput,
36
+ DescribeContactCommandOutput,
37
+ } from "../commands/DescribeContactCommand";
38
+ import {
39
+ GetConfigCommandInput,
40
+ GetConfigCommandOutput,
41
+ } from "../commands/GetConfigCommand";
42
+ import {
43
+ GetDataflowEndpointGroupCommandInput,
44
+ GetDataflowEndpointGroupCommandOutput,
45
+ } from "../commands/GetDataflowEndpointGroupCommand";
46
+ import {
47
+ GetMinuteUsageCommandInput,
48
+ GetMinuteUsageCommandOutput,
49
+ } from "../commands/GetMinuteUsageCommand";
50
+ import {
51
+ GetMissionProfileCommandInput,
52
+ GetMissionProfileCommandOutput,
53
+ } from "../commands/GetMissionProfileCommand";
54
+ import {
55
+ GetSatelliteCommandInput,
56
+ GetSatelliteCommandOutput,
57
+ } from "../commands/GetSatelliteCommand";
58
+ import {
59
+ ListConfigsCommandInput,
60
+ ListConfigsCommandOutput,
61
+ } from "../commands/ListConfigsCommand";
62
+ import {
63
+ ListContactsCommandInput,
64
+ ListContactsCommandOutput,
65
+ } from "../commands/ListContactsCommand";
66
+ import {
67
+ ListDataflowEndpointGroupsCommandInput,
68
+ ListDataflowEndpointGroupsCommandOutput,
69
+ } from "../commands/ListDataflowEndpointGroupsCommand";
70
+ import {
71
+ ListGroundStationsCommandInput,
72
+ ListGroundStationsCommandOutput,
73
+ } from "../commands/ListGroundStationsCommand";
74
+ import {
75
+ ListMissionProfilesCommandInput,
76
+ ListMissionProfilesCommandOutput,
77
+ } from "../commands/ListMissionProfilesCommand";
78
+ import {
79
+ ListSatellitesCommandInput,
80
+ ListSatellitesCommandOutput,
81
+ } from "../commands/ListSatellitesCommand";
82
+ import {
83
+ ListTagsForResourceCommandInput,
84
+ ListTagsForResourceCommandOutput,
85
+ } from "../commands/ListTagsForResourceCommand";
86
+ import {
87
+ ReserveContactCommandInput,
88
+ ReserveContactCommandOutput,
89
+ } from "../commands/ReserveContactCommand";
90
+ import {
91
+ TagResourceCommandInput,
92
+ TagResourceCommandOutput,
93
+ } from "../commands/TagResourceCommand";
94
+ import {
95
+ UntagResourceCommandInput,
96
+ UntagResourceCommandOutput,
97
+ } from "../commands/UntagResourceCommand";
98
+ import {
99
+ UpdateConfigCommandInput,
100
+ UpdateConfigCommandOutput,
101
+ } from "../commands/UpdateConfigCommand";
102
+ import {
103
+ UpdateMissionProfileCommandInput,
104
+ UpdateMissionProfileCommandOutput,
105
+ } from "../commands/UpdateMissionProfileCommand";
106
+ export declare const serializeAws_restJson1CancelContactCommand: (
107
+ input: CancelContactCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1CreateConfigCommand: (
111
+ input: CreateConfigCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1CreateDataflowEndpointGroupCommand: (
115
+ input: CreateDataflowEndpointGroupCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1CreateMissionProfileCommand: (
119
+ input: CreateMissionProfileCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1DeleteConfigCommand: (
123
+ input: DeleteConfigCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1DeleteDataflowEndpointGroupCommand: (
127
+ input: DeleteDataflowEndpointGroupCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1DeleteMissionProfileCommand: (
131
+ input: DeleteMissionProfileCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1DescribeContactCommand: (
135
+ input: DescribeContactCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1GetConfigCommand: (
139
+ input: GetConfigCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1GetDataflowEndpointGroupCommand: (
143
+ input: GetDataflowEndpointGroupCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1GetMinuteUsageCommand: (
147
+ input: GetMinuteUsageCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1GetMissionProfileCommand: (
151
+ input: GetMissionProfileCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1GetSatelliteCommand: (
155
+ input: GetSatelliteCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1ListConfigsCommand: (
159
+ input: ListConfigsCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1ListContactsCommand: (
163
+ input: ListContactsCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1ListDataflowEndpointGroupsCommand: (
167
+ input: ListDataflowEndpointGroupsCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1ListGroundStationsCommand: (
171
+ input: ListGroundStationsCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1ListMissionProfilesCommand: (
175
+ input: ListMissionProfilesCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1ListSatellitesCommand: (
179
+ input: ListSatellitesCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
183
+ input: ListTagsForResourceCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1ReserveContactCommand: (
187
+ input: ReserveContactCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1TagResourceCommand: (
191
+ input: TagResourceCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1UntagResourceCommand: (
195
+ input: UntagResourceCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1UpdateConfigCommand: (
199
+ input: UpdateConfigCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1UpdateMissionProfileCommand: (
203
+ input: UpdateMissionProfileCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const deserializeAws_restJson1CancelContactCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<CancelContactCommandOutput>;
210
+ export declare const deserializeAws_restJson1CreateConfigCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<CreateConfigCommandOutput>;
214
+ export declare const deserializeAws_restJson1CreateDataflowEndpointGroupCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<CreateDataflowEndpointGroupCommandOutput>;
218
+ export declare const deserializeAws_restJson1CreateMissionProfileCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<CreateMissionProfileCommandOutput>;
222
+ export declare const deserializeAws_restJson1DeleteConfigCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<DeleteConfigCommandOutput>;
226
+ export declare const deserializeAws_restJson1DeleteDataflowEndpointGroupCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<DeleteDataflowEndpointGroupCommandOutput>;
230
+ export declare const deserializeAws_restJson1DeleteMissionProfileCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<DeleteMissionProfileCommandOutput>;
234
+ export declare const deserializeAws_restJson1DescribeContactCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<DescribeContactCommandOutput>;
238
+ export declare const deserializeAws_restJson1GetConfigCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<GetConfigCommandOutput>;
242
+ export declare const deserializeAws_restJson1GetDataflowEndpointGroupCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<GetDataflowEndpointGroupCommandOutput>;
246
+ export declare const deserializeAws_restJson1GetMinuteUsageCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<GetMinuteUsageCommandOutput>;
250
+ export declare const deserializeAws_restJson1GetMissionProfileCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<GetMissionProfileCommandOutput>;
254
+ export declare const deserializeAws_restJson1GetSatelliteCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<GetSatelliteCommandOutput>;
258
+ export declare const deserializeAws_restJson1ListConfigsCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<ListConfigsCommandOutput>;
262
+ export declare const deserializeAws_restJson1ListContactsCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<ListContactsCommandOutput>;
266
+ export declare const deserializeAws_restJson1ListDataflowEndpointGroupsCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<ListDataflowEndpointGroupsCommandOutput>;
270
+ export declare const deserializeAws_restJson1ListGroundStationsCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<ListGroundStationsCommandOutput>;
274
+ export declare const deserializeAws_restJson1ListMissionProfilesCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<ListMissionProfilesCommandOutput>;
278
+ export declare const deserializeAws_restJson1ListSatellitesCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<ListSatellitesCommandOutput>;
282
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<ListTagsForResourceCommandOutput>;
286
+ export declare const deserializeAws_restJson1ReserveContactCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<ReserveContactCommandOutput>;
290
+ export declare const deserializeAws_restJson1TagResourceCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<TagResourceCommandOutput>;
294
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<UntagResourceCommandOutput>;
298
+ export declare const deserializeAws_restJson1UpdateConfigCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<UpdateConfigCommandOutput>;
302
+ export declare const deserializeAws_restJson1UpdateMissionProfileCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<UpdateMissionProfileCommandOutput>;
@@ -1,38 +1,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { GroundStationClientConfig } from "./GroundStationClient";
3
-
4
- export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { GroundStationClientConfig } from "./GroundStationClient";
3
+
4
+ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };