@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/GroundStation.d.ts +454 -130
- package/dist-types/ts3.4/GroundStationClient.d.ts +280 -98
- package/dist-types/ts3.4/commands/CancelContactCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateConfigCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateDataflowEndpointGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateMissionProfileCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteConfigCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDataflowEndpointGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteMissionProfileCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeContactCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDataflowEndpointGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetMinuteUsageCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetMissionProfileCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSatelliteCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListConfigsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDataflowEndpointGroupsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGroundStationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListMissionProfilesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListSatellitesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ReserveContactCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateConfigCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateMissionProfileCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +25 -25
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/GroundStationServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1118 -1040
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListConfigsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDataflowEndpointGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroundStationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMissionProfilesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSatellitesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +305 -77
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|