@aws-sdk/client-groundstation 3.295.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/GroundStation.d.ts +34 -0
- package/dist-types/GroundStationClient.d.ts +24 -4
- package/dist-types/commands/CancelContactCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfigCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateEphemerisCommand.d.ts +16 -0
- package/dist-types/commands/CreateMissionProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDataflowEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEphemerisCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMissionProfileCommand.d.ts +16 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEphemerisCommand.d.ts +16 -0
- package/dist-types/commands/GetAgentConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigCommand.d.ts +16 -0
- package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetMinuteUsageCommand.d.ts +16 -0
- package/dist-types/commands/GetMissionProfileCommand.d.ts +16 -0
- package/dist-types/commands/GetSatelliteCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigsCommand.d.ts +16 -0
- package/dist-types/commands/ListContactsCommand.d.ts +16 -0
- package/dist-types/commands/ListDataflowEndpointGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListEphemeridesCommand.d.ts +16 -0
- package/dist-types/commands/ListGroundStationsCommand.d.ts +16 -0
- package/dist-types/commands/ListMissionProfilesCommand.d.ts +16 -0
- package/dist-types/commands/ListSatellitesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RegisterAgentCommand.d.ts +16 -0
- package/dist-types/commands/ReserveContactCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAgentStatusCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEphemerisCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMissionProfileCommand.d.ts +16 -0
- package/dist-types/models/GroundStationServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +203 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListConfigsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContactsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDataflowEndpointGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEphemeridesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGroundStationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMissionProfilesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSatellitesPaginator.d.ts +3 -0
- package/package.json +30 -30
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { DataflowEndpointGroupIdResponse, DeleteDataflowEndpointGroupRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDataflowEndpointGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDataflowEndpointGroupCommandInput extends DeleteDataflowEndpointGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDataflowEndpointGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpointGroupIdResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a dataflow endpoint group.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpoi
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteDataflowEndpointGroupCommandInput - {@link DeleteDataflowEndpointGroupCommandInput}
|
|
34
|
+
* @returns {@link DeleteDataflowEndpointGroupCommandOutput}
|
|
28
35
|
* @see {@link DeleteDataflowEndpointGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteDataflowEndpointGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpoi
|
|
|
43
50
|
export declare class DeleteDataflowEndpointGroupCommand extends $Command<DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteDataflowEndpointGroupCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteDataflowEndpointGroupCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { DeleteEphemerisRequest, EphemerisIdResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteEphemerisCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteEphemerisCommandInput extends DeleteEphemerisRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteEphemerisCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteEphemerisCommandOutput extends EphemerisIdResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an ephemeris</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteEphemerisCommandInput - {@link DeleteEphemerisCommandInput}
|
|
34
|
+
* @returns {@link DeleteEphemerisCommandOutput}
|
|
28
35
|
* @see {@link DeleteEphemerisCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteEphemerisCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
43
50
|
export declare class DeleteEphemerisCommand extends $Command<DeleteEphemerisCommandInput, DeleteEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteEphemerisCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteEphemerisCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEphemerisCommandInput, DeleteEphemerisCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { DeleteMissionProfileRequest, MissionProfileIdResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteMissionProfileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteMissionProfileCommandInput extends DeleteMissionProfileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteMissionProfileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteMissionProfileCommandOutput extends MissionProfileIdResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a mission profile.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteMissionProfileCommandInput - {@link DeleteMissionProfileCommandInput}
|
|
34
|
+
* @returns {@link DeleteMissionProfileCommandOutput}
|
|
28
35
|
* @see {@link DeleteMissionProfileCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteMissionProfileCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
43
50
|
export declare class DeleteMissionProfileCommand extends $Command<DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteMissionProfileCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteMissionProfileCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { DescribeContactRequest, DescribeContactResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeContactCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeContactCommandInput extends DescribeContactRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeContactCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeContactCommandOutput extends DescribeContactResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes an existing contact.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeContactCommandInput - {@link DescribeContactCommandInput}
|
|
34
|
+
* @returns {@link DescribeContactCommandOutput}
|
|
28
35
|
* @see {@link DescribeContactCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeContactCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
|
|
|
43
50
|
export declare class DescribeContactCommand extends $Command<DescribeContactCommandInput, DescribeContactCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: DescribeContactCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DescribeContactCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeContactCommandInput, DescribeContactCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { DescribeEphemerisRequest, DescribeEphemerisResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeEphemerisCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeEphemerisCommandInput extends DescribeEphemerisRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeEphemerisCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeEphemerisCommandOutput extends DescribeEphemerisResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes an existing ephemeris.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeEphemerisCommandOutput extends DescribeEphemerisRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeEphemerisCommandInput - {@link DescribeEphemerisCommandInput}
|
|
34
|
+
* @returns {@link DescribeEphemerisCommandOutput}
|
|
28
35
|
* @see {@link DescribeEphemerisCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeEphemerisCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DescribeEphemerisCommandOutput extends DescribeEphemerisRespons
|
|
|
43
50
|
export declare class DescribeEphemerisCommand extends $Command<DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: DescribeEphemerisCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DescribeEphemerisCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { GetAgentConfigurationRequest, GetAgentConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAgentConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAgentConfigurationCommandInput extends GetAgentConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAgentConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAgentConfigurationCommandOutput extends GetAgentConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the latest configuration information for a registered agent.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetAgentConfigurationCommandOutput extends GetAgentConfiguratio
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetAgentConfigurationCommandInput - {@link GetAgentConfigurationCommandInput}
|
|
34
|
+
* @returns {@link GetAgentConfigurationCommandOutput}
|
|
28
35
|
* @see {@link GetAgentConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetAgentConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetAgentConfigurationCommandOutput extends GetAgentConfiguratio
|
|
|
43
50
|
export declare class GetAgentConfigurationCommand extends $Command<GetAgentConfigurationCommandInput, GetAgentConfigurationCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: GetAgentConfigurationCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetAgentConfigurationCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAgentConfigurationCommandInput, GetAgentConfigurationCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { GetConfigRequest, GetConfigResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetConfigCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetConfigCommandInput extends GetConfigRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetConfigCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns <code>Config</code> information.</p>
|
|
18
23
|
* <p>Only one <code>Config</code> response can be returned.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetConfigCommandInput - {@link GetConfigCommandInput}
|
|
35
|
+
* @returns {@link GetConfigCommandOutput}
|
|
29
36
|
* @see {@link GetConfigCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetConfigCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
|
|
|
44
51
|
export declare class GetConfigCommand extends $Command<GetConfigCommandInput, GetConfigCommandOutput, GroundStationClientResolvedConfig> {
|
|
45
52
|
readonly input: GetConfigCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: GetConfigCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConfigCommandInput, GetConfigCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { GetDataflowEndpointGroupRequest, GetDataflowEndpointGroupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDataflowEndpointGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDataflowEndpointGroupCommandInput extends GetDataflowEndpointGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDataflowEndpointGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpointGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the dataflow endpoint group.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpoi
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDataflowEndpointGroupCommandInput - {@link GetDataflowEndpointGroupCommandInput}
|
|
34
|
+
* @returns {@link GetDataflowEndpointGroupCommandOutput}
|
|
28
35
|
* @see {@link GetDataflowEndpointGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDataflowEndpointGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpoi
|
|
|
43
50
|
export declare class GetDataflowEndpointGroupCommand extends $Command<GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: GetDataflowEndpointGroupCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetDataflowEndpointGroupCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { GetMinuteUsageRequest, GetMinuteUsageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMinuteUsageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMinuteUsageCommandInput extends GetMinuteUsageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMinuteUsageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the number of minutes used by account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetMinuteUsageCommandInput - {@link GetMinuteUsageCommandInput}
|
|
34
|
+
* @returns {@link GetMinuteUsageCommandOutput}
|
|
28
35
|
* @see {@link GetMinuteUsageCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetMinuteUsageCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __M
|
|
|
43
50
|
export declare class GetMinuteUsageCommand extends $Command<GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: GetMinuteUsageCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetMinuteUsageCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { GetMissionProfileRequest, GetMissionProfileResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMissionProfileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMissionProfileCommandInput extends GetMissionProfileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMissionProfileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMissionProfileCommandOutput extends GetMissionProfileResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a mission profile.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetMissionProfileCommandOutput extends GetMissionProfileRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetMissionProfileCommandInput - {@link GetMissionProfileCommandInput}
|
|
34
|
+
* @returns {@link GetMissionProfileCommandOutput}
|
|
28
35
|
* @see {@link GetMissionProfileCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetMissionProfileCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetMissionProfileCommandOutput extends GetMissionProfileRespons
|
|
|
43
50
|
export declare class GetMissionProfileCommand extends $Command<GetMissionProfileCommandInput, GetMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: GetMissionProfileCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetMissionProfileCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMissionProfileCommandInput, GetMissionProfileCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { GetSatelliteRequest, GetSatelliteResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSatelliteCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSatelliteCommandInput extends GetSatelliteRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSatelliteCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a satellite.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetSatelliteCommandInput - {@link GetSatelliteCommandInput}
|
|
34
|
+
* @returns {@link GetSatelliteCommandOutput}
|
|
28
35
|
* @see {@link GetSatelliteCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetSatelliteCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __Metad
|
|
|
43
50
|
export declare class GetSatelliteCommand extends $Command<GetSatelliteCommandInput, GetSatelliteCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: GetSatelliteCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetSatelliteCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSatelliteCommandInput, GetSatelliteCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { ListConfigsRequest, ListConfigsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListConfigsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListConfigsCommandInput extends ListConfigsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListConfigsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListConfigsCommandOutput extends ListConfigsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of <code>Config</code> objects.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListConfigsCommandOutput extends ListConfigsResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListConfigsCommandInput - {@link ListConfigsCommandInput}
|
|
34
|
+
* @returns {@link ListConfigsCommandOutput}
|
|
28
35
|
* @see {@link ListConfigsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListConfigsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListConfigsCommandOutput extends ListConfigsResponse, __Metadat
|
|
|
43
50
|
export declare class ListConfigsCommand extends $Command<ListConfigsCommandInput, ListConfigsCommandOutput, GroundStationClientResolvedConfig> {
|
|
44
51
|
readonly input: ListConfigsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListConfigsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConfigsCommandInput, ListConfigsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { ListContactsRequest, ListContactsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListContactsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListContactsCommandInput extends ListContactsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListContactsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListContactsCommandOutput extends ListContactsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of contacts.</p>
|
|
18
23
|
* <p>If <code>statusList</code> contains AVAILABLE, the request must include
|
|
19
24
|
* <code>groundStation</code>, <code>missionprofileArn</code>, and <code>satelliteArn</code>.
|
|
@@ -28,6 +33,8 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListContactsCommandInput - {@link ListContactsCommandInput}
|
|
37
|
+
* @returns {@link ListContactsCommandOutput}
|
|
31
38
|
* @see {@link ListContactsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListContactsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad
|
|
|
46
53
|
export declare class ListContactsCommand extends $Command<ListContactsCommandInput, ListContactsCommandOutput, GroundStationClientResolvedConfig> {
|
|
47
54
|
readonly input: ListContactsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListContactsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListContactsCommandInput, ListContactsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|