@aws-sdk/client-groundstation 3.296.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 +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
5
5
|
import { MissionProfileIdResponse, UpdateMissionProfileRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateMissionProfileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateMissionProfileCommandInput extends UpdateMissionProfileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateMissionProfileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateMissionProfileCommandOutput extends MissionProfileIdResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a mission profile.</p>
|
|
18
23
|
* <p>Updating a mission profile will not update the execution parameters
|
|
19
24
|
* for existing future contacts.</p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateMissionProfileCommandInput - {@link UpdateMissionProfileCommandInput}
|
|
36
|
+
* @returns {@link UpdateMissionProfileCommandOutput}
|
|
30
37
|
* @see {@link UpdateMissionProfileCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateMissionProfileCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface UpdateMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
45
52
|
export declare class UpdateMissionProfileCommand extends $Command<UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
|
46
53
|
readonly input: UpdateMissionProfileCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: UpdateMissionProfileCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from GroundStation service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class GroundStationServiceException extends __ServiceException {
|