@aws-sdk/client-groundstation 3.169.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 +8 -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,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { ConfigIdResponse, DeleteConfigRequest } from "../models/models_0";
5
- export interface DeleteConfigCommandInput extends DeleteConfigRequest {
6
- }
7
- export interface DeleteConfigCommandOutput extends ConfigIdResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteConfigCommand extends $Command<DeleteConfigCommandInput, DeleteConfigCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: DeleteConfigCommandInput;
12
- constructor(input: DeleteConfigCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConfigCommandInput, DeleteConfigCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import { ConfigIdResponse, DeleteConfigRequest } from "../models/models_0";
14
+ export interface DeleteConfigCommandInput extends DeleteConfigRequest {}
15
+ export interface DeleteConfigCommandOutput
16
+ extends ConfigIdResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteConfigCommand extends $Command<
20
+ DeleteConfigCommandInput,
21
+ DeleteConfigCommandOutput,
22
+ GroundStationClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteConfigCommandInput;
25
+ constructor(input: DeleteConfigCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: GroundStationClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteConfigCommandInput, DeleteConfigCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { DataflowEndpointGroupIdResponse, DeleteDataflowEndpointGroupRequest } from "../models/models_0";
5
- export interface DeleteDataflowEndpointGroupCommandInput extends DeleteDataflowEndpointGroupRequest {
6
- }
7
- export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpointGroupIdResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteDataflowEndpointGroupCommand extends $Command<DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: DeleteDataflowEndpointGroupCommandInput;
12
- constructor(input: DeleteDataflowEndpointGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import {
14
+ DataflowEndpointGroupIdResponse,
15
+ DeleteDataflowEndpointGroupRequest,
16
+ } from "../models/models_0";
17
+ export interface DeleteDataflowEndpointGroupCommandInput
18
+ extends DeleteDataflowEndpointGroupRequest {}
19
+ export interface DeleteDataflowEndpointGroupCommandOutput
20
+ extends DataflowEndpointGroupIdResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteDataflowEndpointGroupCommand extends $Command<
24
+ DeleteDataflowEndpointGroupCommandInput,
25
+ DeleteDataflowEndpointGroupCommandOutput,
26
+ GroundStationClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteDataflowEndpointGroupCommandInput;
29
+ constructor(input: DeleteDataflowEndpointGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: GroundStationClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteDataflowEndpointGroupCommandInput,
37
+ DeleteDataflowEndpointGroupCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { DeleteMissionProfileRequest, MissionProfileIdResponse } from "../models/models_0";
5
- export interface DeleteMissionProfileCommandInput extends DeleteMissionProfileRequest {
6
- }
7
- export interface DeleteMissionProfileCommandOutput extends MissionProfileIdResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteMissionProfileCommand extends $Command<DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: DeleteMissionProfileCommandInput;
12
- constructor(input: DeleteMissionProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import {
14
+ DeleteMissionProfileRequest,
15
+ MissionProfileIdResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteMissionProfileCommandInput
18
+ extends DeleteMissionProfileRequest {}
19
+ export interface DeleteMissionProfileCommandOutput
20
+ extends MissionProfileIdResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteMissionProfileCommand extends $Command<
24
+ DeleteMissionProfileCommandInput,
25
+ DeleteMissionProfileCommandOutput,
26
+ GroundStationClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteMissionProfileCommandInput;
29
+ constructor(input: DeleteMissionProfileCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: GroundStationClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteMissionProfileCommandInput,
37
+ DeleteMissionProfileCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { DescribeContactRequest, DescribeContactResponse } from "../models/models_0";
5
- export interface DescribeContactCommandInput extends DescribeContactRequest {
6
- }
7
- export interface DescribeContactCommandOutput extends DescribeContactResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeContactCommand extends $Command<DescribeContactCommandInput, DescribeContactCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: DescribeContactCommandInput;
12
- constructor(input: DescribeContactCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeContactCommandInput, DescribeContactCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import {
14
+ DescribeContactRequest,
15
+ DescribeContactResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeContactCommandInput extends DescribeContactRequest {}
18
+ export interface DescribeContactCommandOutput
19
+ extends DescribeContactResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DescribeContactCommand extends $Command<
23
+ DescribeContactCommandInput,
24
+ DescribeContactCommandOutput,
25
+ GroundStationClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeContactCommandInput;
28
+ constructor(input: DescribeContactCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: GroundStationClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeContactCommandInput, DescribeContactCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { GetConfigRequest, GetConfigResponse } from "../models/models_0";
5
- export interface GetConfigCommandInput extends GetConfigRequest {
6
- }
7
- export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetConfigCommand extends $Command<GetConfigCommandInput, GetConfigCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: GetConfigCommandInput;
12
- constructor(input: GetConfigCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConfigCommandInput, GetConfigCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import { GetConfigRequest, GetConfigResponse } from "../models/models_0";
14
+ export interface GetConfigCommandInput extends GetConfigRequest {}
15
+ export interface GetConfigCommandOutput
16
+ extends GetConfigResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetConfigCommand extends $Command<
20
+ GetConfigCommandInput,
21
+ GetConfigCommandOutput,
22
+ GroundStationClientResolvedConfig
23
+ > {
24
+ readonly input: GetConfigCommandInput;
25
+ constructor(input: GetConfigCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: GroundStationClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetConfigCommandInput, GetConfigCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { GetDataflowEndpointGroupRequest, GetDataflowEndpointGroupResponse } from "../models/models_0";
5
- export interface GetDataflowEndpointGroupCommandInput extends GetDataflowEndpointGroupRequest {
6
- }
7
- export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpointGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetDataflowEndpointGroupCommand extends $Command<GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: GetDataflowEndpointGroupCommandInput;
12
- constructor(input: GetDataflowEndpointGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import {
14
+ GetDataflowEndpointGroupRequest,
15
+ GetDataflowEndpointGroupResponse,
16
+ } from "../models/models_0";
17
+ export interface GetDataflowEndpointGroupCommandInput
18
+ extends GetDataflowEndpointGroupRequest {}
19
+ export interface GetDataflowEndpointGroupCommandOutput
20
+ extends GetDataflowEndpointGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetDataflowEndpointGroupCommand extends $Command<
24
+ GetDataflowEndpointGroupCommandInput,
25
+ GetDataflowEndpointGroupCommandOutput,
26
+ GroundStationClientResolvedConfig
27
+ > {
28
+ readonly input: GetDataflowEndpointGroupCommandInput;
29
+ constructor(input: GetDataflowEndpointGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: GroundStationClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetDataflowEndpointGroupCommandInput,
37
+ GetDataflowEndpointGroupCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { GetMinuteUsageRequest, GetMinuteUsageResponse } from "../models/models_0";
5
- export interface GetMinuteUsageCommandInput extends GetMinuteUsageRequest {
6
- }
7
- export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetMinuteUsageCommand extends $Command<GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: GetMinuteUsageCommandInput;
12
- constructor(input: GetMinuteUsageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import {
14
+ GetMinuteUsageRequest,
15
+ GetMinuteUsageResponse,
16
+ } from "../models/models_0";
17
+ export interface GetMinuteUsageCommandInput extends GetMinuteUsageRequest {}
18
+ export interface GetMinuteUsageCommandOutput
19
+ extends GetMinuteUsageResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetMinuteUsageCommand extends $Command<
23
+ GetMinuteUsageCommandInput,
24
+ GetMinuteUsageCommandOutput,
25
+ GroundStationClientResolvedConfig
26
+ > {
27
+ readonly input: GetMinuteUsageCommandInput;
28
+ constructor(input: GetMinuteUsageCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: GroundStationClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { GetMissionProfileRequest, GetMissionProfileResponse } from "../models/models_0";
5
- export interface GetMissionProfileCommandInput extends GetMissionProfileRequest {
6
- }
7
- export interface GetMissionProfileCommandOutput extends GetMissionProfileResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetMissionProfileCommand extends $Command<GetMissionProfileCommandInput, GetMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: GetMissionProfileCommandInput;
12
- constructor(input: GetMissionProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMissionProfileCommandInput, GetMissionProfileCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import {
14
+ GetMissionProfileRequest,
15
+ GetMissionProfileResponse,
16
+ } from "../models/models_0";
17
+ export interface GetMissionProfileCommandInput
18
+ extends GetMissionProfileRequest {}
19
+ export interface GetMissionProfileCommandOutput
20
+ extends GetMissionProfileResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetMissionProfileCommand extends $Command<
24
+ GetMissionProfileCommandInput,
25
+ GetMissionProfileCommandOutput,
26
+ GroundStationClientResolvedConfig
27
+ > {
28
+ readonly input: GetMissionProfileCommandInput;
29
+ constructor(input: GetMissionProfileCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: GroundStationClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetMissionProfileCommandInput, GetMissionProfileCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { GetSatelliteRequest, GetSatelliteResponse } from "../models/models_0";
5
- export interface GetSatelliteCommandInput extends GetSatelliteRequest {
6
- }
7
- export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetSatelliteCommand extends $Command<GetSatelliteCommandInput, GetSatelliteCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: GetSatelliteCommandInput;
12
- constructor(input: GetSatelliteCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSatelliteCommandInput, GetSatelliteCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import { GetSatelliteRequest, GetSatelliteResponse } from "../models/models_0";
14
+ export interface GetSatelliteCommandInput extends GetSatelliteRequest {}
15
+ export interface GetSatelliteCommandOutput
16
+ extends GetSatelliteResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetSatelliteCommand extends $Command<
20
+ GetSatelliteCommandInput,
21
+ GetSatelliteCommandOutput,
22
+ GroundStationClientResolvedConfig
23
+ > {
24
+ readonly input: GetSatelliteCommandInput;
25
+ constructor(input: GetSatelliteCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: GroundStationClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetSatelliteCommandInput, GetSatelliteCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { ListConfigsRequest, ListConfigsResponse } from "../models/models_0";
5
- export interface ListConfigsCommandInput extends ListConfigsRequest {
6
- }
7
- export interface ListConfigsCommandOutput extends ListConfigsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListConfigsCommand extends $Command<ListConfigsCommandInput, ListConfigsCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: ListConfigsCommandInput;
12
- constructor(input: ListConfigsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConfigsCommandInput, ListConfigsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import { ListConfigsRequest, ListConfigsResponse } from "../models/models_0";
14
+ export interface ListConfigsCommandInput extends ListConfigsRequest {}
15
+ export interface ListConfigsCommandOutput
16
+ extends ListConfigsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListConfigsCommand extends $Command<
20
+ ListConfigsCommandInput,
21
+ ListConfigsCommandOutput,
22
+ GroundStationClientResolvedConfig
23
+ > {
24
+ readonly input: ListConfigsCommandInput;
25
+ constructor(input: ListConfigsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: GroundStationClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListConfigsCommandInput, ListConfigsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
4
- import { ListContactsRequest, ListContactsResponse } from "../models/models_0";
5
- export interface ListContactsCommandInput extends ListContactsRequest {
6
- }
7
- export interface ListContactsCommandOutput extends ListContactsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListContactsCommand extends $Command<ListContactsCommandInput, ListContactsCommandOutput, GroundStationClientResolvedConfig> {
11
- readonly input: ListContactsCommandInput;
12
- constructor(input: ListContactsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListContactsCommandInput, ListContactsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GroundStationClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GroundStationClient";
13
+ import { ListContactsRequest, ListContactsResponse } from "../models/models_0";
14
+ export interface ListContactsCommandInput extends ListContactsRequest {}
15
+ export interface ListContactsCommandOutput
16
+ extends ListContactsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListContactsCommand extends $Command<
20
+ ListContactsCommandInput,
21
+ ListContactsCommandOutput,
22
+ GroundStationClientResolvedConfig
23
+ > {
24
+ readonly input: ListContactsCommandInput;
25
+ constructor(input: ListContactsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: GroundStationClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListContactsCommandInput, ListContactsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }