@aws-sdk/client-groundstation 3.1031.0 → 3.1033.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/endpoint/bdd.js +49 -0
- package/dist-cjs/endpoint/endpointResolver.js +2 -2
- 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/endpoint/bdd.js +46 -0
- package/dist-es/endpoint/endpointResolver.js +3 -3
- 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/endpoint/bdd.d.ts +2 -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/endpoint/bdd.d.ts +2 -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
- package/dist-cjs/endpoint/ruleset.js +0 -7
- package/dist-es/endpoint/ruleset.js +0 -4
- package/dist-types/endpoint/ruleset.d.ts +0 -2
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
|
@@ -18,6 +18,7 @@ import type { DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGro
|
|
|
18
18
|
import type { DeleteEphemerisCommandInput, DeleteEphemerisCommandOutput } from "./commands/DeleteEphemerisCommand";
|
|
19
19
|
import type { DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput } from "./commands/DeleteMissionProfileCommand";
|
|
20
20
|
import type { DescribeContactCommandInput, DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
21
|
+
import type { DescribeContactVersionCommandInput, DescribeContactVersionCommandOutput } from "./commands/DescribeContactVersionCommand";
|
|
21
22
|
import type { DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput } from "./commands/DescribeEphemerisCommand";
|
|
22
23
|
import type { GetAgentConfigurationCommandInput, GetAgentConfigurationCommandOutput } from "./commands/GetAgentConfigurationCommand";
|
|
23
24
|
import type { GetAgentTaskResponseUrlCommandInput, GetAgentTaskResponseUrlCommandOutput } from "./commands/GetAgentTaskResponseUrlCommand";
|
|
@@ -26,10 +27,13 @@ import type { GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupComm
|
|
|
26
27
|
import type { GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput } from "./commands/GetMinuteUsageCommand";
|
|
27
28
|
import type { GetMissionProfileCommandInput, GetMissionProfileCommandOutput } from "./commands/GetMissionProfileCommand";
|
|
28
29
|
import type { GetSatelliteCommandInput, GetSatelliteCommandOutput } from "./commands/GetSatelliteCommand";
|
|
30
|
+
import type { ListAntennasCommandInput, ListAntennasCommandOutput } from "./commands/ListAntennasCommand";
|
|
29
31
|
import type { ListConfigsCommandInput, ListConfigsCommandOutput } from "./commands/ListConfigsCommand";
|
|
30
32
|
import type { ListContactsCommandInput, ListContactsCommandOutput } from "./commands/ListContactsCommand";
|
|
33
|
+
import type { ListContactVersionsCommandInput, ListContactVersionsCommandOutput } from "./commands/ListContactVersionsCommand";
|
|
31
34
|
import type { ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput } from "./commands/ListDataflowEndpointGroupsCommand";
|
|
32
35
|
import type { ListEphemeridesCommandInput, ListEphemeridesCommandOutput } from "./commands/ListEphemeridesCommand";
|
|
36
|
+
import type { ListGroundStationReservationsCommandInput, ListGroundStationReservationsCommandOutput } from "./commands/ListGroundStationReservationsCommand";
|
|
33
37
|
import type { ListGroundStationsCommandInput, ListGroundStationsCommandOutput } from "./commands/ListGroundStationsCommand";
|
|
34
38
|
import type { ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput } from "./commands/ListMissionProfilesCommand";
|
|
35
39
|
import type { ListSatellitesCommandInput, ListSatellitesCommandOutput } from "./commands/ListSatellitesCommand";
|
|
@@ -40,6 +44,7 @@ import type { TagResourceCommandInput, TagResourceCommandOutput } from "./comman
|
|
|
40
44
|
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
41
45
|
import type { UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput } from "./commands/UpdateAgentStatusCommand";
|
|
42
46
|
import type { UpdateConfigCommandInput, UpdateConfigCommandOutput } from "./commands/UpdateConfigCommand";
|
|
47
|
+
import type { UpdateContactCommandInput, UpdateContactCommandOutput } from "./commands/UpdateContactCommand";
|
|
43
48
|
import type { UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput } from "./commands/UpdateEphemerisCommand";
|
|
44
49
|
import type { UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput } from "./commands/UpdateMissionProfileCommand";
|
|
45
50
|
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
@@ -48,11 +53,11 @@ export { __Client };
|
|
|
48
53
|
/**
|
|
49
54
|
* @public
|
|
50
55
|
*/
|
|
51
|
-
export type ServiceInputTypes = CancelContactCommandInput | CreateConfigCommandInput | CreateDataflowEndpointGroupCommandInput | CreateDataflowEndpointGroupV2CommandInput | CreateEphemerisCommandInput | CreateMissionProfileCommandInput | DeleteConfigCommandInput | DeleteDataflowEndpointGroupCommandInput | DeleteEphemerisCommandInput | DeleteMissionProfileCommandInput | DescribeContactCommandInput | DescribeEphemerisCommandInput | GetAgentConfigurationCommandInput | GetAgentTaskResponseUrlCommandInput | GetConfigCommandInput | GetDataflowEndpointGroupCommandInput | GetMinuteUsageCommandInput | GetMissionProfileCommandInput | GetSatelliteCommandInput | ListConfigsCommandInput | ListContactsCommandInput | ListDataflowEndpointGroupsCommandInput | ListEphemeridesCommandInput | ListGroundStationsCommandInput | ListMissionProfilesCommandInput | ListSatellitesCommandInput | ListTagsForResourceCommandInput | RegisterAgentCommandInput | ReserveContactCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateConfigCommandInput | UpdateEphemerisCommandInput | UpdateMissionProfileCommandInput;
|
|
56
|
+
export type ServiceInputTypes = CancelContactCommandInput | CreateConfigCommandInput | CreateDataflowEndpointGroupCommandInput | CreateDataflowEndpointGroupV2CommandInput | CreateEphemerisCommandInput | CreateMissionProfileCommandInput | DeleteConfigCommandInput | DeleteDataflowEndpointGroupCommandInput | DeleteEphemerisCommandInput | DeleteMissionProfileCommandInput | DescribeContactCommandInput | DescribeContactVersionCommandInput | DescribeEphemerisCommandInput | GetAgentConfigurationCommandInput | GetAgentTaskResponseUrlCommandInput | GetConfigCommandInput | GetDataflowEndpointGroupCommandInput | GetMinuteUsageCommandInput | GetMissionProfileCommandInput | GetSatelliteCommandInput | ListAntennasCommandInput | ListConfigsCommandInput | ListContactVersionsCommandInput | ListContactsCommandInput | ListDataflowEndpointGroupsCommandInput | ListEphemeridesCommandInput | ListGroundStationReservationsCommandInput | ListGroundStationsCommandInput | ListMissionProfilesCommandInput | ListSatellitesCommandInput | ListTagsForResourceCommandInput | RegisterAgentCommandInput | ReserveContactCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateConfigCommandInput | UpdateContactCommandInput | UpdateEphemerisCommandInput | UpdateMissionProfileCommandInput;
|
|
52
57
|
/**
|
|
53
58
|
* @public
|
|
54
59
|
*/
|
|
55
|
-
export type ServiceOutputTypes = CancelContactCommandOutput | CreateConfigCommandOutput | CreateDataflowEndpointGroupCommandOutput | CreateDataflowEndpointGroupV2CommandOutput | CreateEphemerisCommandOutput | CreateMissionProfileCommandOutput | DeleteConfigCommandOutput | DeleteDataflowEndpointGroupCommandOutput | DeleteEphemerisCommandOutput | DeleteMissionProfileCommandOutput | DescribeContactCommandOutput | DescribeEphemerisCommandOutput | GetAgentConfigurationCommandOutput | GetAgentTaskResponseUrlCommandOutput | GetConfigCommandOutput | GetDataflowEndpointGroupCommandOutput | GetMinuteUsageCommandOutput | GetMissionProfileCommandOutput | GetSatelliteCommandOutput | ListConfigsCommandOutput | ListContactsCommandOutput | ListDataflowEndpointGroupsCommandOutput | ListEphemeridesCommandOutput | ListGroundStationsCommandOutput | ListMissionProfilesCommandOutput | ListSatellitesCommandOutput | ListTagsForResourceCommandOutput | RegisterAgentCommandOutput | ReserveContactCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateConfigCommandOutput | UpdateEphemerisCommandOutput | UpdateMissionProfileCommandOutput;
|
|
60
|
+
export type ServiceOutputTypes = CancelContactCommandOutput | CreateConfigCommandOutput | CreateDataflowEndpointGroupCommandOutput | CreateDataflowEndpointGroupV2CommandOutput | CreateEphemerisCommandOutput | CreateMissionProfileCommandOutput | DeleteConfigCommandOutput | DeleteDataflowEndpointGroupCommandOutput | DeleteEphemerisCommandOutput | DeleteMissionProfileCommandOutput | DescribeContactCommandOutput | DescribeContactVersionCommandOutput | DescribeEphemerisCommandOutput | GetAgentConfigurationCommandOutput | GetAgentTaskResponseUrlCommandOutput | GetConfigCommandOutput | GetDataflowEndpointGroupCommandOutput | GetMinuteUsageCommandOutput | GetMissionProfileCommandOutput | GetSatelliteCommandOutput | ListAntennasCommandOutput | ListConfigsCommandOutput | ListContactVersionsCommandOutput | ListContactsCommandOutput | ListDataflowEndpointGroupsCommandOutput | ListEphemeridesCommandOutput | ListGroundStationReservationsCommandOutput | ListGroundStationsCommandOutput | ListMissionProfilesCommandOutput | ListSatellitesCommandOutput | ListTagsForResourceCommandOutput | RegisterAgentCommandOutput | ReserveContactCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateConfigCommandOutput | UpdateContactCommandOutput | UpdateEphemerisCommandOutput | UpdateMissionProfileCommandOutput;
|
|
56
61
|
/**
|
|
57
62
|
* @public
|
|
58
63
|
*/
|
|
@@ -266,12 +266,30 @@ declare const DescribeContactCommand_base: {
|
|
|
266
266
|
* // azEl: { // AzElProgramTrackSettings
|
|
267
267
|
* // ephemerisId: "STRING_VALUE", // required
|
|
268
268
|
* // },
|
|
269
|
+
* // oem: { // OemProgramTrackSettings
|
|
270
|
+
* // ephemerisId: "STRING_VALUE", // required
|
|
271
|
+
* // },
|
|
272
|
+
* // tle: { // TleProgramTrackSettings
|
|
273
|
+
* // ephemerisId: "STRING_VALUE", // required
|
|
274
|
+
* // },
|
|
269
275
|
* // },
|
|
270
276
|
* // },
|
|
271
277
|
* // ephemeris: { // EphemerisResponseData
|
|
272
278
|
* // ephemerisId: "STRING_VALUE",
|
|
273
279
|
* // ephemerisType: "TLE" || "OEM" || "AZ_EL" || "SERVICE_MANAGED", // required
|
|
274
280
|
* // },
|
|
281
|
+
* // version: { // ContactVersion
|
|
282
|
+
* // versionId: Number("int"),
|
|
283
|
+
* // created: new Date("TIMESTAMP"),
|
|
284
|
+
* // activated: new Date("TIMESTAMP"),
|
|
285
|
+
* // superseded: new Date("TIMESTAMP"),
|
|
286
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
287
|
+
* // status: "UPDATING" || "ACTIVE" || "SUPERSEDED" || "FAILED_TO_UPDATE",
|
|
288
|
+
* // failureCodes: [ // VersionFailureReasonCodes
|
|
289
|
+
* // "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",
|
|
290
|
+
* // ],
|
|
291
|
+
* // failureMessage: "STRING_VALUE",
|
|
292
|
+
* // },
|
|
275
293
|
* // };
|
|
276
294
|
*
|
|
277
295
|
* ```
|
|
@@ -0,0 +1,331 @@
|
|
|
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 { DescribeContactVersionRequest, DescribeContactVersionResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeContactVersionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeContactVersionCommandInput extends DescribeContactVersionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeContactVersionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeContactVersionCommandOutput extends DescribeContactVersionResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeContactVersionCommand_base: {
|
|
25
|
+
new (input: DescribeContactVersionCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeContactVersionCommandInput, DescribeContactVersionCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DescribeContactVersionCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeContactVersionCommandInput, DescribeContactVersionCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Describes a specific version of a 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, DescribeContactVersionCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
35
|
+
* // const { GroundStationClient, DescribeContactVersionCommand } = 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 = { // DescribeContactVersionRequest
|
|
40
|
+
* contactId: "STRING_VALUE", // required
|
|
41
|
+
* versionId: Number("int"), // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new DescribeContactVersionCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // DescribeContactVersionResponse
|
|
46
|
+
* // contactId: "STRING_VALUE",
|
|
47
|
+
* // missionProfileArn: "STRING_VALUE",
|
|
48
|
+
* // satelliteArn: "STRING_VALUE",
|
|
49
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // prePassStartTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // postPassEndTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // groundStation: "STRING_VALUE",
|
|
54
|
+
* // contactStatus: "SCHEDULING" || "FAILED_TO_SCHEDULE" || "SCHEDULED" || "CANCELLED" || "AWS_CANCELLED" || "PREPASS" || "PASS" || "POSTPASS" || "COMPLETED" || "FAILED" || "AVAILABLE" || "CANCELLING" || "AWS_FAILED",
|
|
55
|
+
* // errorMessage: "STRING_VALUE",
|
|
56
|
+
* // maximumElevation: { // Elevation
|
|
57
|
+
* // value: Number("double"), // required
|
|
58
|
+
* // unit: "DEGREE_ANGLE" || "RADIAN", // required
|
|
59
|
+
* // },
|
|
60
|
+
* // tags: { // TagsMap
|
|
61
|
+
* // "<keys>": "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // region: "STRING_VALUE",
|
|
64
|
+
* // dataflowList: [ // DataflowList
|
|
65
|
+
* // { // DataflowDetail
|
|
66
|
+
* // source: { // Source
|
|
67
|
+
* // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording" || "telemetry-sink",
|
|
68
|
+
* // configId: "STRING_VALUE",
|
|
69
|
+
* // configDetails: { // ConfigDetails Union: only one key present
|
|
70
|
+
* // endpointDetails: { // EndpointDetails
|
|
71
|
+
* // securityDetails: { // SecurityDetails
|
|
72
|
+
* // subnetIds: [ // SubnetList // required
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // securityGroupIds: [ // SecurityGroupIdList // required
|
|
76
|
+
* // "STRING_VALUE",
|
|
77
|
+
* // ],
|
|
78
|
+
* // roleArn: "STRING_VALUE", // required
|
|
79
|
+
* // },
|
|
80
|
+
* // endpoint: { // DataflowEndpoint
|
|
81
|
+
* // name: "STRING_VALUE",
|
|
82
|
+
* // address: { // SocketAddress
|
|
83
|
+
* // name: "STRING_VALUE", // required
|
|
84
|
+
* // port: Number("int"), // required
|
|
85
|
+
* // },
|
|
86
|
+
* // status: "created" || "creating" || "deleted" || "deleting" || "failed",
|
|
87
|
+
* // mtu: Number("int"),
|
|
88
|
+
* // },
|
|
89
|
+
* // awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
|
|
90
|
+
* // name: "STRING_VALUE", // required
|
|
91
|
+
* // egressAddress: { // ConnectionDetails
|
|
92
|
+
* // socketAddress: {
|
|
93
|
+
* // name: "STRING_VALUE", // required
|
|
94
|
+
* // port: Number("int"), // required
|
|
95
|
+
* // },
|
|
96
|
+
* // mtu: Number("int"),
|
|
97
|
+
* // },
|
|
98
|
+
* // ingressAddress: { // RangedConnectionDetails
|
|
99
|
+
* // socketAddress: { // RangedSocketAddress
|
|
100
|
+
* // name: "STRING_VALUE", // required
|
|
101
|
+
* // portRange: { // IntegerRange
|
|
102
|
+
* // minimum: Number("int"), // required
|
|
103
|
+
* // maximum: Number("int"), // required
|
|
104
|
+
* // },
|
|
105
|
+
* // },
|
|
106
|
+
* // mtu: Number("int"),
|
|
107
|
+
* // },
|
|
108
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
109
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
110
|
+
* // },
|
|
111
|
+
* // uplinkAwsGroundStationAgentEndpoint: { // UplinkAwsGroundStationAgentEndpointDetails
|
|
112
|
+
* // name: "STRING_VALUE", // required
|
|
113
|
+
* // dataflowDetails: { // UplinkDataflowDetails Union: only one key present
|
|
114
|
+
* // agentConnectionDetails: { // UplinkConnectionDetails
|
|
115
|
+
* // ingressAddressAndPort: {
|
|
116
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
117
|
+
* // mtu: Number("int"),
|
|
118
|
+
* // },
|
|
119
|
+
* // agentIpAndPortAddress: {
|
|
120
|
+
* // socketAddress: {
|
|
121
|
+
* // name: "STRING_VALUE", // required
|
|
122
|
+
* // portRange: {
|
|
123
|
+
* // minimum: Number("int"), // required
|
|
124
|
+
* // maximum: Number("int"), // required
|
|
125
|
+
* // },
|
|
126
|
+
* // },
|
|
127
|
+
* // mtu: Number("int"),
|
|
128
|
+
* // },
|
|
129
|
+
* // },
|
|
130
|
+
* // },
|
|
131
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
132
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
133
|
+
* // },
|
|
134
|
+
* // downlinkAwsGroundStationAgentEndpoint: { // DownlinkAwsGroundStationAgentEndpointDetails
|
|
135
|
+
* // name: "STRING_VALUE", // required
|
|
136
|
+
* // dataflowDetails: { // DownlinkDataflowDetails Union: only one key present
|
|
137
|
+
* // agentConnectionDetails: { // DownlinkConnectionDetails
|
|
138
|
+
* // agentIpAndPortAddress: {
|
|
139
|
+
* // socketAddress: {
|
|
140
|
+
* // name: "STRING_VALUE", // required
|
|
141
|
+
* // portRange: {
|
|
142
|
+
* // minimum: Number("int"), // required
|
|
143
|
+
* // maximum: Number("int"), // required
|
|
144
|
+
* // },
|
|
145
|
+
* // },
|
|
146
|
+
* // mtu: Number("int"),
|
|
147
|
+
* // },
|
|
148
|
+
* // egressAddressAndPort: {
|
|
149
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
150
|
+
* // mtu: Number("int"),
|
|
151
|
+
* // },
|
|
152
|
+
* // },
|
|
153
|
+
* // },
|
|
154
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
155
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
156
|
+
* // },
|
|
157
|
+
* // healthStatus: "HEALTHY" || "UNHEALTHY",
|
|
158
|
+
* // healthReasons: [ // CapabilityHealthReasonList
|
|
159
|
+
* // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
|
|
160
|
+
* // ],
|
|
161
|
+
* // },
|
|
162
|
+
* // antennaDemodDecodeDetails: { // AntennaDemodDecodeDetails
|
|
163
|
+
* // outputNode: "STRING_VALUE",
|
|
164
|
+
* // },
|
|
165
|
+
* // s3RecordingDetails: { // S3RecordingDetails
|
|
166
|
+
* // bucketArn: "STRING_VALUE",
|
|
167
|
+
* // keyTemplate: "STRING_VALUE",
|
|
168
|
+
* // },
|
|
169
|
+
* // },
|
|
170
|
+
* // dataflowSourceRegion: "STRING_VALUE",
|
|
171
|
+
* // },
|
|
172
|
+
* // destination: { // Destination
|
|
173
|
+
* // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording" || "telemetry-sink",
|
|
174
|
+
* // configId: "STRING_VALUE",
|
|
175
|
+
* // configDetails: {// Union: only one key present
|
|
176
|
+
* // endpointDetails: {
|
|
177
|
+
* // securityDetails: {
|
|
178
|
+
* // subnetIds: [ // required
|
|
179
|
+
* // "STRING_VALUE",
|
|
180
|
+
* // ],
|
|
181
|
+
* // securityGroupIds: [ // required
|
|
182
|
+
* // "STRING_VALUE",
|
|
183
|
+
* // ],
|
|
184
|
+
* // roleArn: "STRING_VALUE", // required
|
|
185
|
+
* // },
|
|
186
|
+
* // endpoint: {
|
|
187
|
+
* // name: "STRING_VALUE",
|
|
188
|
+
* // address: "<SocketAddress>",
|
|
189
|
+
* // status: "created" || "creating" || "deleted" || "deleting" || "failed",
|
|
190
|
+
* // mtu: Number("int"),
|
|
191
|
+
* // },
|
|
192
|
+
* // awsGroundStationAgentEndpoint: {
|
|
193
|
+
* // name: "STRING_VALUE", // required
|
|
194
|
+
* // egressAddress: {
|
|
195
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
196
|
+
* // mtu: Number("int"),
|
|
197
|
+
* // },
|
|
198
|
+
* // ingressAddress: {
|
|
199
|
+
* // socketAddress: {
|
|
200
|
+
* // name: "STRING_VALUE", // required
|
|
201
|
+
* // portRange: {
|
|
202
|
+
* // minimum: Number("int"), // required
|
|
203
|
+
* // maximum: Number("int"), // required
|
|
204
|
+
* // },
|
|
205
|
+
* // },
|
|
206
|
+
* // mtu: Number("int"),
|
|
207
|
+
* // },
|
|
208
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
209
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
210
|
+
* // },
|
|
211
|
+
* // uplinkAwsGroundStationAgentEndpoint: {
|
|
212
|
+
* // name: "STRING_VALUE", // required
|
|
213
|
+
* // dataflowDetails: {// Union: only one key present
|
|
214
|
+
* // agentConnectionDetails: {
|
|
215
|
+
* // ingressAddressAndPort: {
|
|
216
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
217
|
+
* // mtu: Number("int"),
|
|
218
|
+
* // },
|
|
219
|
+
* // agentIpAndPortAddress: {
|
|
220
|
+
* // socketAddress: {
|
|
221
|
+
* // name: "STRING_VALUE", // required
|
|
222
|
+
* // portRange: {
|
|
223
|
+
* // minimum: Number("int"), // required
|
|
224
|
+
* // maximum: Number("int"), // required
|
|
225
|
+
* // },
|
|
226
|
+
* // },
|
|
227
|
+
* // mtu: Number("int"),
|
|
228
|
+
* // },
|
|
229
|
+
* // },
|
|
230
|
+
* // },
|
|
231
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
232
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
233
|
+
* // },
|
|
234
|
+
* // downlinkAwsGroundStationAgentEndpoint: {
|
|
235
|
+
* // name: "STRING_VALUE", // required
|
|
236
|
+
* // dataflowDetails: {// Union: only one key present
|
|
237
|
+
* // agentConnectionDetails: {
|
|
238
|
+
* // agentIpAndPortAddress: "<RangedConnectionDetails>", // required
|
|
239
|
+
* // egressAddressAndPort: "<ConnectionDetails>", // required
|
|
240
|
+
* // },
|
|
241
|
+
* // },
|
|
242
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
243
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
244
|
+
* // },
|
|
245
|
+
* // healthStatus: "HEALTHY" || "UNHEALTHY",
|
|
246
|
+
* // healthReasons: [
|
|
247
|
+
* // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
|
|
248
|
+
* // ],
|
|
249
|
+
* // },
|
|
250
|
+
* // antennaDemodDecodeDetails: {
|
|
251
|
+
* // outputNode: "STRING_VALUE",
|
|
252
|
+
* // },
|
|
253
|
+
* // s3RecordingDetails: {
|
|
254
|
+
* // bucketArn: "STRING_VALUE",
|
|
255
|
+
* // keyTemplate: "STRING_VALUE",
|
|
256
|
+
* // },
|
|
257
|
+
* // },
|
|
258
|
+
* // dataflowDestinationRegion: "STRING_VALUE",
|
|
259
|
+
* // },
|
|
260
|
+
* // errorMessage: "STRING_VALUE",
|
|
261
|
+
* // },
|
|
262
|
+
* // ],
|
|
263
|
+
* // visibilityStartTime: new Date("TIMESTAMP"),
|
|
264
|
+
* // visibilityEndTime: new Date("TIMESTAMP"),
|
|
265
|
+
* // trackingOverrides: { // TrackingOverrides
|
|
266
|
+
* // programTrackSettings: { // ProgramTrackSettings Union: only one key present
|
|
267
|
+
* // azEl: { // AzElProgramTrackSettings
|
|
268
|
+
* // ephemerisId: "STRING_VALUE", // required
|
|
269
|
+
* // },
|
|
270
|
+
* // oem: { // OemProgramTrackSettings
|
|
271
|
+
* // ephemerisId: "STRING_VALUE", // required
|
|
272
|
+
* // },
|
|
273
|
+
* // tle: { // TleProgramTrackSettings
|
|
274
|
+
* // ephemerisId: "STRING_VALUE", // required
|
|
275
|
+
* // },
|
|
276
|
+
* // },
|
|
277
|
+
* // },
|
|
278
|
+
* // ephemeris: { // EphemerisResponseData
|
|
279
|
+
* // ephemerisId: "STRING_VALUE",
|
|
280
|
+
* // ephemerisType: "TLE" || "OEM" || "AZ_EL" || "SERVICE_MANAGED", // required
|
|
281
|
+
* // },
|
|
282
|
+
* // version: { // ContactVersion
|
|
283
|
+
* // versionId: Number("int"),
|
|
284
|
+
* // created: new Date("TIMESTAMP"),
|
|
285
|
+
* // activated: new Date("TIMESTAMP"),
|
|
286
|
+
* // superseded: new Date("TIMESTAMP"),
|
|
287
|
+
* // lastUpdated: new Date("TIMESTAMP"),
|
|
288
|
+
* // status: "UPDATING" || "ACTIVE" || "SUPERSEDED" || "FAILED_TO_UPDATE",
|
|
289
|
+
* // failureCodes: [ // VersionFailureReasonCodes
|
|
290
|
+
* // "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",
|
|
291
|
+
* // ],
|
|
292
|
+
* // failureMessage: "STRING_VALUE",
|
|
293
|
+
* // },
|
|
294
|
+
* // };
|
|
295
|
+
*
|
|
296
|
+
* ```
|
|
297
|
+
*
|
|
298
|
+
* @param DescribeContactVersionCommandInput - {@link DescribeContactVersionCommandInput}
|
|
299
|
+
* @returns {@link DescribeContactVersionCommandOutput}
|
|
300
|
+
* @see {@link DescribeContactVersionCommandInput} for command's `input` shape.
|
|
301
|
+
* @see {@link DescribeContactVersionCommandOutput} for command's `response` shape.
|
|
302
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
303
|
+
*
|
|
304
|
+
* @throws {@link DependencyException} (server fault)
|
|
305
|
+
* <p>Dependency encountered an error.</p>
|
|
306
|
+
*
|
|
307
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
308
|
+
* <p>One or more parameters are not valid.</p>
|
|
309
|
+
*
|
|
310
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
311
|
+
* <p>Resource was not found.</p>
|
|
312
|
+
*
|
|
313
|
+
* @throws {@link GroundStationServiceException}
|
|
314
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
315
|
+
*
|
|
316
|
+
*
|
|
317
|
+
* @public
|
|
318
|
+
*/
|
|
319
|
+
export declare class DescribeContactVersionCommand extends DescribeContactVersionCommand_base {
|
|
320
|
+
/** @internal type navigation helper, not in runtime. */
|
|
321
|
+
protected static __types: {
|
|
322
|
+
api: {
|
|
323
|
+
input: DescribeContactVersionRequest;
|
|
324
|
+
output: DescribeContactVersionResponse;
|
|
325
|
+
};
|
|
326
|
+
sdk: {
|
|
327
|
+
input: DescribeContactVersionCommandInput;
|
|
328
|
+
output: DescribeContactVersionCommandOutput;
|
|
329
|
+
};
|
|
330
|
+
};
|
|
331
|
+
}
|
|
@@ -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
|
* // };
|