@aws-sdk/client-groundstation 3.261.0 → 3.262.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-cjs/GroundStation.js +45 -0
- package/dist-cjs/commands/GetAgentConfigurationCommand.js +46 -0
- package/dist-cjs/commands/RegisterAgentCommand.js +46 -0
- package/dist-cjs/commands/UpdateAgentStatusCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +138 -34
- package/dist-cjs/protocols/Aws_restJson1.js +410 -2
- package/dist-es/GroundStation.js +45 -0
- package/dist-es/commands/GetAgentConfigurationCommand.js +42 -0
- package/dist-es/commands/RegisterAgentCommand.js +42 -0
- package/dist-es/commands/UpdateAgentStatusCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +117 -30
- package/dist-es/protocols/Aws_restJson1.js +403 -1
- package/dist-types/GroundStation.d.ts +21 -0
- package/dist-types/GroundStationClient.d.ts +5 -2
- package/dist-types/commands/GetAgentConfigurationCommand.d.ts +37 -0
- package/dist-types/commands/RegisterAgentCommand.d.ts +37 -0
- package/dist-types/commands/UpdateAgentStatusCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +425 -47
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/GroundStation.d.ts +51 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetAgentConfigurationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/RegisterAgentCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateAgentStatusCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +199 -30
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +2 -2
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
|
+
import { GetAgentConfigurationRequest, GetAgentConfigurationResponse } from "../models/models_0";
|
|
6
|
+
export interface GetAgentConfigurationCommandInput extends GetAgentConfigurationRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface GetAgentConfigurationCommandOutput extends GetAgentConfigurationResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Gets the latest configuration information for a registered agent.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { GroundStationClient, GetAgentConfigurationCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
16
|
+
* // const { GroundStationClient, GetAgentConfigurationCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
17
|
+
* const client = new GroundStationClient(config);
|
|
18
|
+
* const command = new GetAgentConfigurationCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link GetAgentConfigurationCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link GetAgentConfigurationCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class GetAgentConfigurationCommand extends $Command<GetAgentConfigurationCommandInput, GetAgentConfigurationCommandOutput, GroundStationClientResolvedConfig> {
|
|
28
|
+
readonly input: GetAgentConfigurationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetAgentConfigurationCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAgentConfigurationCommandInput, GetAgentConfigurationCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
|
+
import { RegisterAgentRequest, RegisterAgentResponse } from "../models/models_0";
|
|
6
|
+
export interface RegisterAgentCommandInput extends RegisterAgentRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Registers a new agent with AWS Groundstation.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { GroundStationClient, RegisterAgentCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
16
|
+
* // const { GroundStationClient, RegisterAgentCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
17
|
+
* const client = new GroundStationClient(config);
|
|
18
|
+
* const command = new RegisterAgentCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link RegisterAgentCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link RegisterAgentCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class RegisterAgentCommand extends $Command<RegisterAgentCommandInput, RegisterAgentCommandOutput, GroundStationClientResolvedConfig> {
|
|
28
|
+
readonly input: RegisterAgentCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: RegisterAgentCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterAgentCommandInput, RegisterAgentCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
|
+
import { UpdateAgentStatusRequest, UpdateAgentStatusResponse } from "../models/models_0";
|
|
6
|
+
export interface UpdateAgentStatusCommandInput extends UpdateAgentStatusRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface UpdateAgentStatusCommandOutput extends UpdateAgentStatusResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Update the status of the agent.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { GroundStationClient, UpdateAgentStatusCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
16
|
+
* // const { GroundStationClient, UpdateAgentStatusCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
17
|
+
* const client = new GroundStationClient(config);
|
|
18
|
+
* const command = new UpdateAgentStatusCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link UpdateAgentStatusCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link UpdateAgentStatusCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class UpdateAgentStatusCommand extends $Command<UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput, GroundStationClientResolvedConfig> {
|
|
28
|
+
readonly input: UpdateAgentStatusCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateAgentStatusCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -9,6 +9,7 @@ export * from "./DeleteEphemerisCommand";
|
|
|
9
9
|
export * from "./DeleteMissionProfileCommand";
|
|
10
10
|
export * from "./DescribeContactCommand";
|
|
11
11
|
export * from "./DescribeEphemerisCommand";
|
|
12
|
+
export * from "./GetAgentConfigurationCommand";
|
|
12
13
|
export * from "./GetConfigCommand";
|
|
13
14
|
export * from "./GetDataflowEndpointGroupCommand";
|
|
14
15
|
export * from "./GetMinuteUsageCommand";
|
|
@@ -22,9 +23,11 @@ export * from "./ListGroundStationsCommand";
|
|
|
22
23
|
export * from "./ListMissionProfilesCommand";
|
|
23
24
|
export * from "./ListSatellitesCommand";
|
|
24
25
|
export * from "./ListTagsForResourceCommand";
|
|
26
|
+
export * from "./RegisterAgentCommand";
|
|
25
27
|
export * from "./ReserveContactCommand";
|
|
26
28
|
export * from "./TagResourceCommand";
|
|
27
29
|
export * from "./UntagResourceCommand";
|
|
30
|
+
export * from "./UpdateAgentStatusCommand";
|
|
28
31
|
export * from "./UpdateConfigCommand";
|
|
29
32
|
export * from "./UpdateEphemerisCommand";
|
|
30
33
|
export * from "./UpdateMissionProfileCommand";
|