@aws-sdk/client-groundstation 3.1031.0 → 3.1032.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/README.md +35 -0
- package/dist-cjs/index.js +158 -2
- package/dist-cjs/schemas/schemas_0.js +174 -13
- package/dist-es/GroundStation.js +18 -0
- package/dist-es/commands/DescribeContactVersionCommand.js +16 -0
- package/dist-es/commands/ListAntennasCommand.js +16 -0
- package/dist-es/commands/ListContactVersionsCommand.js +16 -0
- package/dist-es/commands/ListGroundStationReservationsCommand.js +16 -0
- package/dist-es/commands/UpdateContactCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +28 -0
- package/dist-es/pagination/ListAntennasPaginator.js +4 -0
- package/dist-es/pagination/ListContactVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListGroundStationReservationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +169 -9
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForContactUpdated.js +40 -0
- package/dist-types/GroundStation.d.ts +62 -0
- package/dist-types/GroundStationClient.d.ts +7 -2
- package/dist-types/commands/CancelContactCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +18 -0
- package/dist-types/commands/DescribeContactVersionCommand.d.ts +331 -0
- package/dist-types/commands/ListAntennasCommand.d.ts +89 -0
- package/dist-types/commands/ListContactVersionsCommand.d.ts +99 -0
- package/dist-types/commands/ListContactsCommand.d.ts +12 -0
- package/dist-types/commands/ListGroundStationReservationsCommand.d.ts +104 -0
- package/dist-types/commands/ReserveContactCommand.d.ts +7 -0
- package/dist-types/commands/UpdateContactCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +77 -5
- package/dist-types/models/errors.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +572 -64
- package/dist-types/pagination/ListAntennasPaginator.d.ts +7 -0
- package/dist-types/pagination/ListContactVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGroundStationReservationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/GroundStation.d.ts +115 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/DescribeContactVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAntennasCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListContactVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGroundStationReservationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +35 -0
- package/dist-types/ts3.4/models/models_0.d.ts +154 -1
- package/dist-types/ts3.4/pagination/ListAntennasPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListContactVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGroundStationReservationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForContactUpdated.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForContactUpdated.d.ts +14 -0
- package/package.json +5 -5
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import type { ListAntennasRequest, ListAntennasResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListAntennasCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListAntennasCommandInput extends ListAntennasRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListAntennasCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListAntennasCommandOutput extends ListAntennasResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListAntennasCommand_base: {
|
|
25
|
+
new (input: ListAntennasCommandInput): import("@smithy/smithy-client").CommandImpl<ListAntennasCommandInput, ListAntennasCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListAntennasCommandInput): import("@smithy/smithy-client").CommandImpl<ListAntennasCommandInput, ListAntennasCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns a list of antennas at a specified ground station.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GroundStationClient, ListAntennasCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
35
|
+
* // const { GroundStationClient, ListAntennasCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
36
|
+
* // import type { GroundStationClientConfig } from "@aws-sdk/client-groundstation";
|
|
37
|
+
* const config = {}; // type is GroundStationClientConfig
|
|
38
|
+
* const client = new GroundStationClient(config);
|
|
39
|
+
* const input = { // ListAntennasRequest
|
|
40
|
+
* groundStationId: "STRING_VALUE", // required
|
|
41
|
+
* maxResults: Number("int"),
|
|
42
|
+
* nextToken: "STRING_VALUE",
|
|
43
|
+
* };
|
|
44
|
+
* const command = new ListAntennasCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // ListAntennasResponse
|
|
47
|
+
* // antennaList: [ // AntennaList // required
|
|
48
|
+
* // { // AntennaListItem
|
|
49
|
+
* // groundStationName: "STRING_VALUE", // required
|
|
50
|
+
* // antennaName: "STRING_VALUE", // required
|
|
51
|
+
* // region: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // nextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param ListAntennasCommandInput - {@link ListAntennasCommandInput}
|
|
60
|
+
* @returns {@link ListAntennasCommandOutput}
|
|
61
|
+
* @see {@link ListAntennasCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link ListAntennasCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link DependencyException} (server fault)
|
|
66
|
+
* <p>Dependency encountered an error.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
69
|
+
* <p>One or more parameters are not valid.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link GroundStationServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
73
|
+
*
|
|
74
|
+
*
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export declare class ListAntennasCommand extends ListAntennasCommand_base {
|
|
78
|
+
/** @internal type navigation helper, not in runtime. */
|
|
79
|
+
protected static __types: {
|
|
80
|
+
api: {
|
|
81
|
+
input: ListAntennasRequest;
|
|
82
|
+
output: ListAntennasResponse;
|
|
83
|
+
};
|
|
84
|
+
sdk: {
|
|
85
|
+
input: ListAntennasCommandInput;
|
|
86
|
+
output: ListAntennasCommandOutput;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import type { ListContactVersionsRequest, ListContactVersionsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListContactVersionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListContactVersionsCommandInput extends ListContactVersionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListContactVersionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListContactVersionsCommandOutput extends ListContactVersionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListContactVersionsCommand_base: {
|
|
25
|
+
new (input: ListContactVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListContactVersionsCommandInput, ListContactVersionsCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListContactVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListContactVersionsCommandInput, ListContactVersionsCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns a list of versions for a specified contact.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GroundStationClient, ListContactVersionsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
35
|
+
* // const { GroundStationClient, ListContactVersionsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
36
|
+
* // import type { GroundStationClientConfig } from "@aws-sdk/client-groundstation";
|
|
37
|
+
* const config = {}; // type is GroundStationClientConfig
|
|
38
|
+
* const client = new GroundStationClient(config);
|
|
39
|
+
* const input = { // ListContactVersionsRequest
|
|
40
|
+
* contactId: "STRING_VALUE", // required
|
|
41
|
+
* maxResults: Number("int"),
|
|
42
|
+
* nextToken: "STRING_VALUE",
|
|
43
|
+
* };
|
|
44
|
+
* const command = new ListContactVersionsCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // ListContactVersionsResponse
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // contactVersionsList: [ // ContactVersionsList
|
|
49
|
+
* // { // ContactVersion
|
|
50
|
+
* // versionId: Number("int"),
|
|
51
|
+
* // created: new Date("TIMESTAMP"),
|
|
52
|
+
* // activated: new Date("TIMESTAMP"),
|
|
53
|
+
* // superseded: new Date("TIMESTAMP"),
|
|
54
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
55
|
+
* // status: "UPDATING" || "ACTIVE" || "SUPERSEDED" || "FAILED_TO_UPDATE",
|
|
56
|
+
* // failureCodes: [ // VersionFailureReasonCodes
|
|
57
|
+
* // "INTERNAL_ERROR" || "INVALID_SATELLITE_ARN" || "INVALID_UPDATE_CONTACT_REQUEST" || "EPHEMERIS_NOT_FOUND" || "EPHEMERIS_TIME_RANGE_INVALID" || "EPHEMERIS_NOT_ENABLED" || "SATELLITE_DOES_NOT_MATCH_EPHEMERIS" || "NOT_ONBOARDED_TO_AZEL_EPHEMERIS" || "AZEL_EPHEMERIS_NOT_FOUND" || "AZEL_EPHEMERIS_WRONG_GROUND_STATION" || "AZEL_EPHEMERIS_INVALID_STATUS" || "AZEL_EPHEMERIS_TIME_RANGE_INVALID",
|
|
58
|
+
* // ],
|
|
59
|
+
* // failureMessage: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param ListContactVersionsCommandInput - {@link ListContactVersionsCommandInput}
|
|
67
|
+
* @returns {@link ListContactVersionsCommandOutput}
|
|
68
|
+
* @see {@link ListContactVersionsCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link ListContactVersionsCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link DependencyException} (server fault)
|
|
73
|
+
* <p>Dependency encountered an error.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
76
|
+
* <p>One or more parameters are not valid.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* <p>Resource was not found.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link GroundStationServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
83
|
+
*
|
|
84
|
+
*
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export declare class ListContactVersionsCommand extends ListContactVersionsCommand_base {
|
|
88
|
+
/** @internal type navigation helper, not in runtime. */
|
|
89
|
+
protected static __types: {
|
|
90
|
+
api: {
|
|
91
|
+
input: ListContactVersionsRequest;
|
|
92
|
+
output: ListContactVersionsResponse;
|
|
93
|
+
};
|
|
94
|
+
sdk: {
|
|
95
|
+
input: ListContactVersionsCommandInput;
|
|
96
|
+
output: ListContactVersionsCommandOutput;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
}
|
|
@@ -83,6 +83,18 @@ declare const ListContactsCommand_base: {
|
|
|
83
83
|
* // ephemerisId: "STRING_VALUE",
|
|
84
84
|
* // ephemerisType: "TLE" || "OEM" || "AZ_EL" || "SERVICE_MANAGED", // required
|
|
85
85
|
* // },
|
|
86
|
+
* // version: { // ContactVersion
|
|
87
|
+
* // versionId: Number("int"),
|
|
88
|
+
* // created: new Date("TIMESTAMP"),
|
|
89
|
+
* // activated: new Date("TIMESTAMP"),
|
|
90
|
+
* // superseded: new Date("TIMESTAMP"),
|
|
91
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
92
|
+
* // status: "UPDATING" || "ACTIVE" || "SUPERSEDED" || "FAILED_TO_UPDATE",
|
|
93
|
+
* // failureCodes: [ // VersionFailureReasonCodes
|
|
94
|
+
* // "INTERNAL_ERROR" || "INVALID_SATELLITE_ARN" || "INVALID_UPDATE_CONTACT_REQUEST" || "EPHEMERIS_NOT_FOUND" || "EPHEMERIS_TIME_RANGE_INVALID" || "EPHEMERIS_NOT_ENABLED" || "SATELLITE_DOES_NOT_MATCH_EPHEMERIS" || "NOT_ONBOARDED_TO_AZEL_EPHEMERIS" || "AZEL_EPHEMERIS_NOT_FOUND" || "AZEL_EPHEMERIS_WRONG_GROUND_STATION" || "AZEL_EPHEMERIS_INVALID_STATUS" || "AZEL_EPHEMERIS_TIME_RANGE_INVALID",
|
|
95
|
+
* // ],
|
|
96
|
+
* // failureMessage: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
86
98
|
* // },
|
|
87
99
|
* // ],
|
|
88
100
|
* // };
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import type { ListGroundStationReservationsRequest, ListGroundStationReservationsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListGroundStationReservationsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListGroundStationReservationsCommandInput extends ListGroundStationReservationsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListGroundStationReservationsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListGroundStationReservationsCommandOutput extends ListGroundStationReservationsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListGroundStationReservationsCommand_base: {
|
|
25
|
+
new (input: ListGroundStationReservationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroundStationReservationsCommandInput, ListGroundStationReservationsCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListGroundStationReservationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroundStationReservationsCommandInput, ListGroundStationReservationsCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns a list of reservations for a specified ground station.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GroundStationClient, ListGroundStationReservationsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
35
|
+
* // const { GroundStationClient, ListGroundStationReservationsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
36
|
+
* // import type { GroundStationClientConfig } from "@aws-sdk/client-groundstation";
|
|
37
|
+
* const config = {}; // type is GroundStationClientConfig
|
|
38
|
+
* const client = new GroundStationClient(config);
|
|
39
|
+
* const input = { // ListGroundStationReservationsRequest
|
|
40
|
+
* groundStationId: "STRING_VALUE", // required
|
|
41
|
+
* startTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* endTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* reservationTypes: [ // ReservationTypeFilterList
|
|
44
|
+
* "MAINTENANCE" || "CONTACT",
|
|
45
|
+
* ],
|
|
46
|
+
* maxResults: Number("int"),
|
|
47
|
+
* nextToken: "STRING_VALUE",
|
|
48
|
+
* };
|
|
49
|
+
* const command = new ListGroundStationReservationsCommand(input);
|
|
50
|
+
* const response = await client.send(command);
|
|
51
|
+
* // { // ListGroundStationReservationsResponse
|
|
52
|
+
* // reservationList: [ // GroundStationReservationList // required
|
|
53
|
+
* // { // GroundStationReservationListItem
|
|
54
|
+
* // reservationType: "MAINTENANCE" || "CONTACT", // required
|
|
55
|
+
* // groundStationId: "STRING_VALUE", // required
|
|
56
|
+
* // antennaName: "STRING_VALUE", // required
|
|
57
|
+
* // startTime: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // endTime: new Date("TIMESTAMP"), // required
|
|
59
|
+
* // reservationDetails: { // ReservationDetails Union: only one key present
|
|
60
|
+
* // maintenance: { // MaintenanceReservationDetails
|
|
61
|
+
* // maintenanceType: "PLANNED" || "UNPLANNED", // required
|
|
62
|
+
* // },
|
|
63
|
+
* // contact: { // ContactReservationDetails
|
|
64
|
+
* // contactId: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // nextToken: "STRING_VALUE",
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* @param ListGroundStationReservationsCommandInput - {@link ListGroundStationReservationsCommandInput}
|
|
75
|
+
* @returns {@link ListGroundStationReservationsCommandOutput}
|
|
76
|
+
* @see {@link ListGroundStationReservationsCommandInput} for command's `input` shape.
|
|
77
|
+
* @see {@link ListGroundStationReservationsCommandOutput} for command's `response` shape.
|
|
78
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link DependencyException} (server fault)
|
|
81
|
+
* <p>Dependency encountered an error.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
84
|
+
* <p>One or more parameters are not valid.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link GroundStationServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
88
|
+
*
|
|
89
|
+
*
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class ListGroundStationReservationsCommand extends ListGroundStationReservationsCommand_base {
|
|
93
|
+
/** @internal type navigation helper, not in runtime. */
|
|
94
|
+
protected static __types: {
|
|
95
|
+
api: {
|
|
96
|
+
input: ListGroundStationReservationsRequest;
|
|
97
|
+
output: ListGroundStationReservationsResponse;
|
|
98
|
+
};
|
|
99
|
+
sdk: {
|
|
100
|
+
input: ListGroundStationReservationsCommandInput;
|
|
101
|
+
output: ListGroundStationReservationsCommandOutput;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
}
|
|
@@ -50,6 +50,12 @@ declare const ReserveContactCommand_base: {
|
|
|
50
50
|
* azEl: { // AzElProgramTrackSettings
|
|
51
51
|
* ephemerisId: "STRING_VALUE", // required
|
|
52
52
|
* },
|
|
53
|
+
* oem: { // OemProgramTrackSettings
|
|
54
|
+
* ephemerisId: "STRING_VALUE", // required
|
|
55
|
+
* },
|
|
56
|
+
* tle: { // TleProgramTrackSettings
|
|
57
|
+
* ephemerisId: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
53
59
|
* },
|
|
54
60
|
* },
|
|
55
61
|
* };
|
|
@@ -57,6 +63,7 @@ declare const ReserveContactCommand_base: {
|
|
|
57
63
|
* const response = await client.send(command);
|
|
58
64
|
* // { // ContactIdResponse
|
|
59
65
|
* // contactId: "STRING_VALUE",
|
|
66
|
+
* // versionId: Number("int"),
|
|
60
67
|
* // };
|
|
61
68
|
*
|
|
62
69
|
* ```
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import type { UpdateContactRequest, UpdateContactResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateContactCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateContactCommandInput extends UpdateContactRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateContactCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateContactCommandOutput extends UpdateContactResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateContactCommand_base: {
|
|
25
|
+
new (input: UpdateContactCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContactCommandInput, UpdateContactCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateContactCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContactCommandInput, UpdateContactCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates a specific contact.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GroundStationClient, UpdateContactCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
35
|
+
* // const { GroundStationClient, UpdateContactCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
36
|
+
* // import type { GroundStationClientConfig } from "@aws-sdk/client-groundstation";
|
|
37
|
+
* const config = {}; // type is GroundStationClientConfig
|
|
38
|
+
* const client = new GroundStationClient(config);
|
|
39
|
+
* const input = { // UpdateContactRequest
|
|
40
|
+
* contactId: "STRING_VALUE", // required
|
|
41
|
+
* clientToken: "STRING_VALUE",
|
|
42
|
+
* trackingOverrides: { // TrackingOverrides
|
|
43
|
+
* programTrackSettings: { // ProgramTrackSettings Union: only one key present
|
|
44
|
+
* azEl: { // AzElProgramTrackSettings
|
|
45
|
+
* ephemerisId: "STRING_VALUE", // required
|
|
46
|
+
* },
|
|
47
|
+
* oem: { // OemProgramTrackSettings
|
|
48
|
+
* ephemerisId: "STRING_VALUE", // required
|
|
49
|
+
* },
|
|
50
|
+
* tle: { // TleProgramTrackSettings
|
|
51
|
+
* ephemerisId: "STRING_VALUE", // required
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* },
|
|
55
|
+
* satelliteArn: "STRING_VALUE",
|
|
56
|
+
* };
|
|
57
|
+
* const command = new UpdateContactCommand(input);
|
|
58
|
+
* const response = await client.send(command);
|
|
59
|
+
* // { // UpdateContactResponse
|
|
60
|
+
* // contactId: "STRING_VALUE",
|
|
61
|
+
* // versionId: Number("int"),
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param UpdateContactCommandInput - {@link UpdateContactCommandInput}
|
|
67
|
+
* @returns {@link UpdateContactCommandOutput}
|
|
68
|
+
* @see {@link UpdateContactCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link UpdateContactCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link DependencyException} (server fault)
|
|
73
|
+
* <p>Dependency encountered an error.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
76
|
+
* <p>One or more parameters are not valid.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceLimitExceededException} (client fault)
|
|
79
|
+
* <p>Account limits for this resource have been exceeded.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
82
|
+
* <p>Resource was not found.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link GroundStationServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
86
|
+
*
|
|
87
|
+
*
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export declare class UpdateContactCommand extends UpdateContactCommand_base {
|
|
91
|
+
/** @internal type navigation helper, not in runtime. */
|
|
92
|
+
protected static __types: {
|
|
93
|
+
api: {
|
|
94
|
+
input: UpdateContactRequest;
|
|
95
|
+
output: UpdateContactResponse;
|
|
96
|
+
};
|
|
97
|
+
sdk: {
|
|
98
|
+
input: UpdateContactCommandInput;
|
|
99
|
+
output: UpdateContactCommandOutput;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
}
|
|
@@ -9,6 +9,7 @@ export * from "./DeleteDataflowEndpointGroupCommand";
|
|
|
9
9
|
export * from "./DeleteEphemerisCommand";
|
|
10
10
|
export * from "./DeleteMissionProfileCommand";
|
|
11
11
|
export * from "./DescribeContactCommand";
|
|
12
|
+
export * from "./DescribeContactVersionCommand";
|
|
12
13
|
export * from "./DescribeEphemerisCommand";
|
|
13
14
|
export * from "./GetAgentConfigurationCommand";
|
|
14
15
|
export * from "./GetAgentTaskResponseUrlCommand";
|
|
@@ -17,10 +18,13 @@ export * from "./GetDataflowEndpointGroupCommand";
|
|
|
17
18
|
export * from "./GetMinuteUsageCommand";
|
|
18
19
|
export * from "./GetMissionProfileCommand";
|
|
19
20
|
export * from "./GetSatelliteCommand";
|
|
21
|
+
export * from "./ListAntennasCommand";
|
|
20
22
|
export * from "./ListConfigsCommand";
|
|
23
|
+
export * from "./ListContactVersionsCommand";
|
|
21
24
|
export * from "./ListContactsCommand";
|
|
22
25
|
export * from "./ListDataflowEndpointGroupsCommand";
|
|
23
26
|
export * from "./ListEphemeridesCommand";
|
|
27
|
+
export * from "./ListGroundStationReservationsCommand";
|
|
24
28
|
export * from "./ListGroundStationsCommand";
|
|
25
29
|
export * from "./ListMissionProfilesCommand";
|
|
26
30
|
export * from "./ListSatellitesCommand";
|
|
@@ -31,5 +35,6 @@ export * from "./TagResourceCommand";
|
|
|
31
35
|
export * from "./UntagResourceCommand";
|
|
32
36
|
export * from "./UpdateAgentStatusCommand";
|
|
33
37
|
export * from "./UpdateConfigCommand";
|
|
38
|
+
export * from "./UpdateContactCommand";
|
|
34
39
|
export * from "./UpdateEphemerisCommand";
|
|
35
40
|
export * from "./UpdateMissionProfileCommand";
|
|
@@ -209,6 +209,54 @@ export declare const EphemerisType: {
|
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
211
|
export type EphemerisType = (typeof EphemerisType)[keyof typeof EphemerisType];
|
|
212
|
+
/**
|
|
213
|
+
* @public
|
|
214
|
+
* @enum
|
|
215
|
+
*/
|
|
216
|
+
export declare const VersionFailureReasonCode: {
|
|
217
|
+
readonly AZEL_EPHEMERIS_INVALID_STATUS: "AZEL_EPHEMERIS_INVALID_STATUS";
|
|
218
|
+
readonly AZEL_EPHEMERIS_NOT_FOUND: "AZEL_EPHEMERIS_NOT_FOUND";
|
|
219
|
+
readonly AZEL_EPHEMERIS_TIME_RANGE_INVALID: "AZEL_EPHEMERIS_TIME_RANGE_INVALID";
|
|
220
|
+
readonly AZEL_EPHEMERIS_WRONG_GROUND_STATION: "AZEL_EPHEMERIS_WRONG_GROUND_STATION";
|
|
221
|
+
readonly EPHEMERIS_NOT_ENABLED: "EPHEMERIS_NOT_ENABLED";
|
|
222
|
+
readonly EPHEMERIS_NOT_FOUND: "EPHEMERIS_NOT_FOUND";
|
|
223
|
+
readonly EPHEMERIS_TIME_RANGE_INVALID: "EPHEMERIS_TIME_RANGE_INVALID";
|
|
224
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
225
|
+
readonly INVALID_SATELLITE_ARN: "INVALID_SATELLITE_ARN";
|
|
226
|
+
readonly INVALID_UPDATE_CONTACT_REQUEST: "INVALID_UPDATE_CONTACT_REQUEST";
|
|
227
|
+
readonly NOT_ONBOARDED_TO_AZEL_EPHEMERIS: "NOT_ONBOARDED_TO_AZEL_EPHEMERIS";
|
|
228
|
+
readonly SATELLITE_DOES_NOT_MATCH_EPHEMERIS: "SATELLITE_DOES_NOT_MATCH_EPHEMERIS";
|
|
229
|
+
};
|
|
230
|
+
/**
|
|
231
|
+
* @public
|
|
232
|
+
*/
|
|
233
|
+
export type VersionFailureReasonCode = (typeof VersionFailureReasonCode)[keyof typeof VersionFailureReasonCode];
|
|
234
|
+
/**
|
|
235
|
+
* @public
|
|
236
|
+
* @enum
|
|
237
|
+
*/
|
|
238
|
+
export declare const VersionStatus: {
|
|
239
|
+
/**
|
|
240
|
+
* <p>The version is the current active version of the contact.</p>
|
|
241
|
+
*/
|
|
242
|
+
readonly ACTIVE: "ACTIVE";
|
|
243
|
+
/**
|
|
244
|
+
* <p>The version update failed.</p>
|
|
245
|
+
*/
|
|
246
|
+
readonly FAILED_TO_UPDATE: "FAILED_TO_UPDATE";
|
|
247
|
+
/**
|
|
248
|
+
* <p>The version has been replaced by a newer version.</p>
|
|
249
|
+
*/
|
|
250
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
251
|
+
/**
|
|
252
|
+
* <p>The version is being applied to the contact.</p>
|
|
253
|
+
*/
|
|
254
|
+
readonly UPDATING: "UPDATING";
|
|
255
|
+
};
|
|
256
|
+
/**
|
|
257
|
+
* @public
|
|
258
|
+
*/
|
|
259
|
+
export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
|
|
212
260
|
/**
|
|
213
261
|
* @public
|
|
214
262
|
* @enum
|
|
@@ -263,23 +311,23 @@ export type EphemerisErrorCode = (typeof EphemerisErrorCode)[keyof typeof Epheme
|
|
|
263
311
|
*/
|
|
264
312
|
export declare const EphemerisInvalidReason: {
|
|
265
313
|
/**
|
|
266
|
-
* Provided KMS key is invalid
|
|
314
|
+
* <p>Provided KMS key is invalid.</p>
|
|
267
315
|
*/
|
|
268
316
|
readonly KMS_KEY_INVALID: "KMS_KEY_INVALID";
|
|
269
317
|
/**
|
|
270
|
-
* Provided spacecraft identifiers such as spacecraft NORAD
|
|
318
|
+
* <p>Provided spacecraft identifiers such as spacecraft NORAD ID are invalid.</p>
|
|
271
319
|
*/
|
|
272
320
|
readonly METADATA_INVALID: "METADATA_INVALID";
|
|
273
321
|
/**
|
|
274
|
-
* Start, end, or expiration time(s) are invalid for the provided ephemeris
|
|
322
|
+
* <p>Start, end, or expiration time(s) are invalid for the provided ephemeris.</p>
|
|
275
323
|
*/
|
|
276
324
|
readonly TIME_RANGE_INVALID: "TIME_RANGE_INVALID";
|
|
277
325
|
/**
|
|
278
|
-
* Provided ephemeris defines invalid spacecraft trajectory
|
|
326
|
+
* <p>Provided ephemeris defines invalid spacecraft trajectory.</p>
|
|
279
327
|
*/
|
|
280
328
|
readonly TRAJECTORY_INVALID: "TRAJECTORY_INVALID";
|
|
281
329
|
/**
|
|
282
|
-
* Internal
|
|
330
|
+
* <p>Internal service error occurred while processing ephemeris.</p>
|
|
283
331
|
*/
|
|
284
332
|
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
285
333
|
};
|
|
@@ -315,3 +363,27 @@ export declare const EphemerisSource: {
|
|
|
315
363
|
* @public
|
|
316
364
|
*/
|
|
317
365
|
export type EphemerisSource = (typeof EphemerisSource)[keyof typeof EphemerisSource];
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
* @enum
|
|
369
|
+
*/
|
|
370
|
+
export declare const ReservationType: {
|
|
371
|
+
readonly CONTACT: "CONTACT";
|
|
372
|
+
readonly MAINTENANCE: "MAINTENANCE";
|
|
373
|
+
};
|
|
374
|
+
/**
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
export type ReservationType = (typeof ReservationType)[keyof typeof ReservationType];
|
|
378
|
+
/**
|
|
379
|
+
* @public
|
|
380
|
+
* @enum
|
|
381
|
+
*/
|
|
382
|
+
export declare const MaintenanceType: {
|
|
383
|
+
readonly PLANNED: "PLANNED";
|
|
384
|
+
readonly UNPLANNED: "UNPLANNED";
|
|
385
|
+
};
|
|
386
|
+
/**
|
|
387
|
+
* @public
|
|
388
|
+
*/
|
|
389
|
+
export type MaintenanceType = (typeof MaintenanceType)[keyof typeof MaintenanceType];
|
|
@@ -8,7 +8,7 @@ export declare class DependencyException extends __BaseException {
|
|
|
8
8
|
readonly name: "DependencyException";
|
|
9
9
|
readonly $fault: "server";
|
|
10
10
|
/**
|
|
11
|
-
* <p
|
|
11
|
+
* <p>Name of the parameter that caused the exception.</p>
|
|
12
12
|
* @public
|
|
13
13
|
*/
|
|
14
14
|
parameterName?: string | undefined;
|
|
@@ -25,7 +25,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
25
25
|
readonly name: "InvalidParameterException";
|
|
26
26
|
readonly $fault: "client";
|
|
27
27
|
/**
|
|
28
|
-
* <p
|
|
28
|
+
* <p>Name of the invalid parameter.</p>
|
|
29
29
|
* @public
|
|
30
30
|
*/
|
|
31
31
|
parameterName?: string | undefined;
|
|
@@ -54,7 +54,7 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
54
54
|
readonly name: "ResourceLimitExceededException";
|
|
55
55
|
readonly $fault: "client";
|
|
56
56
|
/**
|
|
57
|
-
* <p
|
|
57
|
+
* <p>Name of the parameter that exceeded the resource limit.</p>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
60
|
parameterName?: string | undefined;
|