@aws-sdk/client-groundstation 3.325.0 → 3.326.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/commands/CancelContactCommand.d.ts +6 -0
- package/dist-types/commands/CreateConfigCommand.d.ts +8 -0
- package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +6 -0
- package/dist-types/commands/CreateEphemerisCommand.d.ts +6 -0
- package/dist-types/commands/CreateMissionProfileCommand.d.ts +6 -0
- package/dist-types/commands/DeleteConfigCommand.d.ts +8 -0
- package/dist-types/commands/DeleteDataflowEndpointGroupCommand.d.ts +6 -0
- package/dist-types/commands/DeleteEphemerisCommand.d.ts +6 -0
- package/dist-types/commands/DeleteMissionProfileCommand.d.ts +6 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +148 -0
- package/dist-types/commands/DescribeEphemerisCommand.d.ts +34 -0
- package/dist-types/commands/GetAgentConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/GetConfigCommand.d.ts +76 -0
- package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +60 -0
- package/dist-types/commands/GetMinuteUsageCommand.d.ts +10 -0
- package/dist-types/commands/GetMissionProfileCommand.d.ts +26 -0
- package/dist-types/commands/GetSatelliteCommand.d.ts +17 -0
- package/dist-types/commands/ListConfigsCommand.d.ts +14 -0
- package/dist-types/commands/ListContactsCommand.d.ts +28 -0
- package/dist-types/commands/ListDataflowEndpointGroupsCommand.d.ts +12 -0
- package/dist-types/commands/ListEphemeridesCommand.d.ts +21 -0
- package/dist-types/commands/ListGroundStationsCommand.d.ts +13 -0
- package/dist-types/commands/ListMissionProfilesCommand.d.ts +14 -0
- package/dist-types/commands/ListSatellitesCommand.d.ts +22 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/RegisterAgentCommand.d.ts +6 -0
- package/dist-types/commands/ReserveContactCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAgentStatusCommand.d.ts +6 -0
- package/dist-types/commands/UpdateConfigCommand.d.ts +8 -0
- package/dist-types/commands/UpdateEphemerisCommand.d.ts +6 -0
- package/dist-types/commands/UpdateMissionProfileCommand.d.ts +6 -0
- package/package.json +3 -3
|
@@ -31,6 +31,10 @@ export interface CancelContactCommandOutput extends ContactIdResponse, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelContactCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ContactIdResponse
|
|
35
|
+
* // contactId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param CancelContactCommandInput - {@link CancelContactCommandInput}
|
|
@@ -48,6 +52,8 @@ export interface CancelContactCommandOutput extends ContactIdResponse, __Metadat
|
|
|
48
52
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
53
|
* <p>Resource was not found.</p>
|
|
50
54
|
*
|
|
55
|
+
* @throws {@link GroundStationServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
57
|
*
|
|
52
58
|
*/
|
|
53
59
|
export declare class CancelContactCommand extends $Command<CancelContactCommandInput, CancelContactCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -99,6 +99,12 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB
|
|
|
99
99
|
* };
|
|
100
100
|
* const command = new CreateConfigCommand(input);
|
|
101
101
|
* const response = await client.send(command);
|
|
102
|
+
* // { // ConfigIdResponse
|
|
103
|
+
* // configId: "STRING_VALUE",
|
|
104
|
+
* // configType: "STRING_VALUE",
|
|
105
|
+
* // configArn: "STRING_VALUE",
|
|
106
|
+
* // };
|
|
107
|
+
*
|
|
102
108
|
* ```
|
|
103
109
|
*
|
|
104
110
|
* @param CreateConfigCommandInput - {@link CreateConfigCommandInput}
|
|
@@ -119,6 +125,8 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB
|
|
|
119
125
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
120
126
|
* <p>Resource was not found.</p>
|
|
121
127
|
*
|
|
128
|
+
* @throws {@link GroundStationServiceException}
|
|
129
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
122
130
|
*
|
|
123
131
|
*/
|
|
124
132
|
export declare class CreateConfigCommand extends $Command<CreateConfigCommandInput, CreateConfigCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -87,6 +87,10 @@ export interface CreateDataflowEndpointGroupCommandOutput extends DataflowEndpoi
|
|
|
87
87
|
* };
|
|
88
88
|
* const command = new CreateDataflowEndpointGroupCommand(input);
|
|
89
89
|
* const response = await client.send(command);
|
|
90
|
+
* // { // DataflowEndpointGroupIdResponse
|
|
91
|
+
* // dataflowEndpointGroupId: "STRING_VALUE",
|
|
92
|
+
* // };
|
|
93
|
+
*
|
|
90
94
|
* ```
|
|
91
95
|
*
|
|
92
96
|
* @param CreateDataflowEndpointGroupCommandInput - {@link CreateDataflowEndpointGroupCommandInput}
|
|
@@ -104,6 +108,8 @@ export interface CreateDataflowEndpointGroupCommandOutput extends DataflowEndpoi
|
|
|
104
108
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
105
109
|
* <p>Resource was not found.</p>
|
|
106
110
|
*
|
|
111
|
+
* @throws {@link GroundStationServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
107
113
|
*
|
|
108
114
|
*/
|
|
109
115
|
export declare class CreateDataflowEndpointGroupCommand extends $Command<CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -66,6 +66,10 @@ export interface CreateEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
66
66
|
* };
|
|
67
67
|
* const command = new CreateEphemerisCommand(input);
|
|
68
68
|
* const response = await client.send(command);
|
|
69
|
+
* // { // EphemerisIdResponse
|
|
70
|
+
* // ephemerisId: "STRING_VALUE",
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
69
73
|
* ```
|
|
70
74
|
*
|
|
71
75
|
* @param CreateEphemerisCommandInput - {@link CreateEphemerisCommandInput}
|
|
@@ -83,6 +87,8 @@ export interface CreateEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
83
87
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
84
88
|
* <p>Resource was not found.</p>
|
|
85
89
|
*
|
|
90
|
+
* @throws {@link GroundStationServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
86
92
|
*
|
|
87
93
|
*/
|
|
88
94
|
export declare class CreateEphemerisCommand extends $Command<CreateEphemerisCommandInput, CreateEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -51,6 +51,10 @@ export interface CreateMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new CreateMissionProfileCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // MissionProfileIdResponse
|
|
55
|
+
* // missionProfileId: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
54
58
|
* ```
|
|
55
59
|
*
|
|
56
60
|
* @param CreateMissionProfileCommandInput - {@link CreateMissionProfileCommandInput}
|
|
@@ -68,6 +72,8 @@ export interface CreateMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
68
72
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
69
73
|
* <p>Resource was not found.</p>
|
|
70
74
|
*
|
|
75
|
+
* @throws {@link GroundStationServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
71
77
|
*
|
|
72
78
|
*/
|
|
73
79
|
export declare class CreateMissionProfileCommand extends $Command<CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface DeleteConfigCommandOutput extends ConfigIdResponse, __MetadataB
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteConfigCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ConfigIdResponse
|
|
36
|
+
* // configId: "STRING_VALUE",
|
|
37
|
+
* // configType: "STRING_VALUE",
|
|
38
|
+
* // configArn: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param DeleteConfigCommandInput - {@link DeleteConfigCommandInput}
|
|
@@ -49,6 +55,8 @@ export interface DeleteConfigCommandOutput extends ConfigIdResponse, __MetadataB
|
|
|
49
55
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
56
|
* <p>Resource was not found.</p>
|
|
51
57
|
*
|
|
58
|
+
* @throws {@link GroundStationServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
52
60
|
*
|
|
53
61
|
*/
|
|
54
62
|
export declare class DeleteConfigCommand extends $Command<DeleteConfigCommandInput, DeleteConfigCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpoi
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteDataflowEndpointGroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DataflowEndpointGroupIdResponse
|
|
35
|
+
* // dataflowEndpointGroupId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param DeleteDataflowEndpointGroupCommandInput - {@link DeleteDataflowEndpointGroupCommandInput}
|
|
@@ -48,6 +52,8 @@ export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpoi
|
|
|
48
52
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
53
|
* <p>Resource was not found.</p>
|
|
50
54
|
*
|
|
55
|
+
* @throws {@link GroundStationServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
57
|
*
|
|
52
58
|
*/
|
|
53
59
|
export declare class DeleteDataflowEndpointGroupCommand extends $Command<DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface DeleteEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteEphemerisCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // EphemerisIdResponse
|
|
35
|
+
* // ephemerisId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param DeleteEphemerisCommandInput - {@link DeleteEphemerisCommandInput}
|
|
@@ -48,6 +52,8 @@ export interface DeleteEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
48
52
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
53
|
* <p>Resource was not found.</p>
|
|
50
54
|
*
|
|
55
|
+
* @throws {@link GroundStationServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
57
|
*
|
|
52
58
|
*/
|
|
53
59
|
export declare class DeleteEphemerisCommand extends $Command<DeleteEphemerisCommandInput, DeleteEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface DeleteMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteMissionProfileCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // MissionProfileIdResponse
|
|
35
|
+
* // missionProfileId: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param DeleteMissionProfileCommandInput - {@link DeleteMissionProfileCommandInput}
|
|
@@ -48,6 +52,8 @@ export interface DeleteMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
48
52
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
53
|
* <p>Resource was not found.</p>
|
|
50
54
|
*
|
|
55
|
+
* @throws {@link GroundStationServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
57
|
*
|
|
52
58
|
*/
|
|
53
59
|
export declare class DeleteMissionProfileCommand extends $Command<DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -31,6 +31,152 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeContactCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeContactResponse
|
|
35
|
+
* // contactId: "STRING_VALUE",
|
|
36
|
+
* // missionProfileArn: "STRING_VALUE",
|
|
37
|
+
* // satelliteArn: "STRING_VALUE",
|
|
38
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
39
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // prePassStartTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // postPassEndTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // groundStation: "STRING_VALUE",
|
|
43
|
+
* // contactStatus: "STRING_VALUE",
|
|
44
|
+
* // errorMessage: "STRING_VALUE",
|
|
45
|
+
* // maximumElevation: { // Elevation
|
|
46
|
+
* // value: Number("double"), // required
|
|
47
|
+
* // unit: "STRING_VALUE", // required
|
|
48
|
+
* // },
|
|
49
|
+
* // tags: { // TagsMap
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // region: "STRING_VALUE",
|
|
53
|
+
* // dataflowList: [ // DataflowList
|
|
54
|
+
* // { // DataflowDetail
|
|
55
|
+
* // source: { // Source
|
|
56
|
+
* // configType: "STRING_VALUE",
|
|
57
|
+
* // configId: "STRING_VALUE",
|
|
58
|
+
* // configDetails: { // ConfigDetails Union: only one key present
|
|
59
|
+
* // endpointDetails: { // EndpointDetails
|
|
60
|
+
* // securityDetails: { // SecurityDetails
|
|
61
|
+
* // subnetIds: [ // SubnetList // required
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // securityGroupIds: [ // SecurityGroupIdList // required
|
|
65
|
+
* // "STRING_VALUE",
|
|
66
|
+
* // ],
|
|
67
|
+
* // roleArn: "STRING_VALUE", // required
|
|
68
|
+
* // },
|
|
69
|
+
* // endpoint: { // DataflowEndpoint
|
|
70
|
+
* // name: "STRING_VALUE",
|
|
71
|
+
* // address: { // SocketAddress
|
|
72
|
+
* // name: "STRING_VALUE", // required
|
|
73
|
+
* // port: Number("int"), // required
|
|
74
|
+
* // },
|
|
75
|
+
* // status: "STRING_VALUE",
|
|
76
|
+
* // mtu: Number("int"),
|
|
77
|
+
* // },
|
|
78
|
+
* // awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
|
|
79
|
+
* // name: "STRING_VALUE", // required
|
|
80
|
+
* // egressAddress: { // ConnectionDetails
|
|
81
|
+
* // socketAddress: {
|
|
82
|
+
* // name: "STRING_VALUE", // required
|
|
83
|
+
* // port: Number("int"), // required
|
|
84
|
+
* // },
|
|
85
|
+
* // mtu: Number("int"),
|
|
86
|
+
* // },
|
|
87
|
+
* // ingressAddress: { // RangedConnectionDetails
|
|
88
|
+
* // socketAddress: { // RangedSocketAddress
|
|
89
|
+
* // name: "STRING_VALUE", // required
|
|
90
|
+
* // portRange: { // IntegerRange
|
|
91
|
+
* // minimum: Number("int"), // required
|
|
92
|
+
* // maximum: Number("int"), // required
|
|
93
|
+
* // },
|
|
94
|
+
* // },
|
|
95
|
+
* // mtu: Number("int"),
|
|
96
|
+
* // },
|
|
97
|
+
* // agentStatus: "STRING_VALUE",
|
|
98
|
+
* // auditResults: "STRING_VALUE",
|
|
99
|
+
* // },
|
|
100
|
+
* // healthStatus: "STRING_VALUE",
|
|
101
|
+
* // healthReasons: [ // CapabilityHealthReasonList
|
|
102
|
+
* // "STRING_VALUE",
|
|
103
|
+
* // ],
|
|
104
|
+
* // },
|
|
105
|
+
* // antennaDemodDecodeDetails: { // AntennaDemodDecodeDetails
|
|
106
|
+
* // outputNode: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // s3RecordingDetails: { // S3RecordingDetails
|
|
109
|
+
* // bucketArn: "STRING_VALUE",
|
|
110
|
+
* // keyTemplate: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // },
|
|
113
|
+
* // dataflowSourceRegion: "STRING_VALUE",
|
|
114
|
+
* // },
|
|
115
|
+
* // destination: { // Destination
|
|
116
|
+
* // configType: "STRING_VALUE",
|
|
117
|
+
* // configId: "STRING_VALUE",
|
|
118
|
+
* // configDetails: {// Union: only one key present
|
|
119
|
+
* // endpointDetails: {
|
|
120
|
+
* // securityDetails: {
|
|
121
|
+
* // subnetIds: [ // required
|
|
122
|
+
* // "STRING_VALUE",
|
|
123
|
+
* // ],
|
|
124
|
+
* // securityGroupIds: [ // required
|
|
125
|
+
* // "STRING_VALUE",
|
|
126
|
+
* // ],
|
|
127
|
+
* // roleArn: "STRING_VALUE", // required
|
|
128
|
+
* // },
|
|
129
|
+
* // endpoint: {
|
|
130
|
+
* // name: "STRING_VALUE",
|
|
131
|
+
* // address: {
|
|
132
|
+
* // name: "STRING_VALUE", // required
|
|
133
|
+
* // port: Number("int"), // required
|
|
134
|
+
* // },
|
|
135
|
+
* // status: "STRING_VALUE",
|
|
136
|
+
* // mtu: Number("int"),
|
|
137
|
+
* // },
|
|
138
|
+
* // awsGroundStationAgentEndpoint: {
|
|
139
|
+
* // name: "STRING_VALUE", // required
|
|
140
|
+
* // egressAddress: {
|
|
141
|
+
* // socketAddress: {
|
|
142
|
+
* // name: "STRING_VALUE", // required
|
|
143
|
+
* // port: Number("int"), // required
|
|
144
|
+
* // },
|
|
145
|
+
* // mtu: Number("int"),
|
|
146
|
+
* // },
|
|
147
|
+
* // ingressAddress: {
|
|
148
|
+
* // socketAddress: {
|
|
149
|
+
* // name: "STRING_VALUE", // required
|
|
150
|
+
* // portRange: {
|
|
151
|
+
* // minimum: Number("int"), // required
|
|
152
|
+
* // maximum: Number("int"), // required
|
|
153
|
+
* // },
|
|
154
|
+
* // },
|
|
155
|
+
* // mtu: Number("int"),
|
|
156
|
+
* // },
|
|
157
|
+
* // agentStatus: "STRING_VALUE",
|
|
158
|
+
* // auditResults: "STRING_VALUE",
|
|
159
|
+
* // },
|
|
160
|
+
* // healthStatus: "STRING_VALUE",
|
|
161
|
+
* // healthReasons: [
|
|
162
|
+
* // "STRING_VALUE",
|
|
163
|
+
* // ],
|
|
164
|
+
* // },
|
|
165
|
+
* // antennaDemodDecodeDetails: {
|
|
166
|
+
* // outputNode: "STRING_VALUE",
|
|
167
|
+
* // },
|
|
168
|
+
* // s3RecordingDetails: {
|
|
169
|
+
* // bucketArn: "STRING_VALUE",
|
|
170
|
+
* // keyTemplate: "STRING_VALUE",
|
|
171
|
+
* // },
|
|
172
|
+
* // },
|
|
173
|
+
* // dataflowDestinationRegion: "STRING_VALUE",
|
|
174
|
+
* // },
|
|
175
|
+
* // errorMessage: "STRING_VALUE",
|
|
176
|
+
* // },
|
|
177
|
+
* // ],
|
|
178
|
+
* // };
|
|
179
|
+
*
|
|
34
180
|
* ```
|
|
35
181
|
*
|
|
36
182
|
* @param DescribeContactCommandInput - {@link DescribeContactCommandInput}
|
|
@@ -48,6 +194,8 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
|
|
|
48
194
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
195
|
* <p>Resource was not found.</p>
|
|
50
196
|
*
|
|
197
|
+
* @throws {@link GroundStationServiceException}
|
|
198
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
199
|
*
|
|
52
200
|
*/
|
|
53
201
|
export declare class DescribeContactCommand extends $Command<DescribeContactCommandInput, DescribeContactCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -31,6 +31,38 @@ export interface DescribeEphemerisCommandOutput extends DescribeEphemerisRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeEphemerisCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeEphemerisResponse
|
|
35
|
+
* // ephemerisId: "STRING_VALUE",
|
|
36
|
+
* // satelliteId: "STRING_VALUE",
|
|
37
|
+
* // status: "STRING_VALUE",
|
|
38
|
+
* // priority: Number("int"),
|
|
39
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // enabled: true || false,
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // tags: { // TagsMap
|
|
43
|
+
* // "<keys>": "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // suppliedData: { // EphemerisTypeDescription Union: only one key present
|
|
46
|
+
* // tle: { // EphemerisDescription
|
|
47
|
+
* // sourceS3Object: { // S3Object
|
|
48
|
+
* // bucket: "STRING_VALUE",
|
|
49
|
+
* // key: "STRING_VALUE",
|
|
50
|
+
* // version: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ephemerisData: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // oem: {
|
|
55
|
+
* // sourceS3Object: {
|
|
56
|
+
* // bucket: "STRING_VALUE",
|
|
57
|
+
* // key: "STRING_VALUE",
|
|
58
|
+
* // version: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // ephemerisData: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // },
|
|
63
|
+
* // invalidReason: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
34
66
|
* ```
|
|
35
67
|
*
|
|
36
68
|
* @param DescribeEphemerisCommandInput - {@link DescribeEphemerisCommandInput}
|
|
@@ -48,6 +80,8 @@ export interface DescribeEphemerisCommandOutput extends DescribeEphemerisRespons
|
|
|
48
80
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
81
|
* <p>Resource was not found.</p>
|
|
50
82
|
*
|
|
83
|
+
* @throws {@link GroundStationServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
85
|
*
|
|
52
86
|
*/
|
|
53
87
|
export declare class DescribeEphemerisCommand extends $Command<DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -34,6 +34,11 @@ export interface GetAgentConfigurationCommandOutput extends GetAgentConfiguratio
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetAgentConfigurationCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetAgentConfigurationResponse
|
|
38
|
+
* // agentId: "STRING_VALUE",
|
|
39
|
+
* // taskingDocument: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
39
44
|
* @param GetAgentConfigurationCommandInput - {@link GetAgentConfigurationCommandInput}
|
|
@@ -51,6 +56,8 @@ export interface GetAgentConfigurationCommandOutput extends GetAgentConfiguratio
|
|
|
51
56
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
57
|
* <p>Resource was not found.</p>
|
|
53
58
|
*
|
|
59
|
+
* @throws {@link GroundStationServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
54
61
|
*
|
|
55
62
|
*/
|
|
56
63
|
export declare class GetAgentConfigurationCommand extends $Command<GetAgentConfigurationCommandInput, GetAgentConfigurationCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -33,6 +33,80 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetConfigCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetConfigResponse
|
|
37
|
+
* // configId: "STRING_VALUE", // required
|
|
38
|
+
* // configArn: "STRING_VALUE", // required
|
|
39
|
+
* // name: "STRING_VALUE", // required
|
|
40
|
+
* // configType: "STRING_VALUE",
|
|
41
|
+
* // configData: { // ConfigTypeData Union: only one key present
|
|
42
|
+
* // antennaDownlinkConfig: { // AntennaDownlinkConfig
|
|
43
|
+
* // spectrumConfig: { // SpectrumConfig
|
|
44
|
+
* // centerFrequency: { // Frequency
|
|
45
|
+
* // value: Number("double"), // required
|
|
46
|
+
* // units: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // bandwidth: { // FrequencyBandwidth
|
|
49
|
+
* // value: Number("double"), // required
|
|
50
|
+
* // units: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // polarization: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // trackingConfig: { // TrackingConfig
|
|
56
|
+
* // autotrack: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // dataflowEndpointConfig: { // DataflowEndpointConfig
|
|
59
|
+
* // dataflowEndpointName: "STRING_VALUE", // required
|
|
60
|
+
* // dataflowEndpointRegion: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // antennaDownlinkDemodDecodeConfig: { // AntennaDownlinkDemodDecodeConfig
|
|
63
|
+
* // spectrumConfig: {
|
|
64
|
+
* // centerFrequency: {
|
|
65
|
+
* // value: Number("double"), // required
|
|
66
|
+
* // units: "STRING_VALUE", // required
|
|
67
|
+
* // },
|
|
68
|
+
* // bandwidth: {
|
|
69
|
+
* // value: Number("double"), // required
|
|
70
|
+
* // units: "STRING_VALUE", // required
|
|
71
|
+
* // },
|
|
72
|
+
* // polarization: "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // demodulationConfig: { // DemodulationConfig
|
|
75
|
+
* // unvalidatedJSON: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // decodeConfig: { // DecodeConfig
|
|
78
|
+
* // unvalidatedJSON: "STRING_VALUE", // required
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // antennaUplinkConfig: { // AntennaUplinkConfig
|
|
82
|
+
* // transmitDisabled: true || false,
|
|
83
|
+
* // spectrumConfig: { // UplinkSpectrumConfig
|
|
84
|
+
* // centerFrequency: {
|
|
85
|
+
* // value: Number("double"), // required
|
|
86
|
+
* // units: "STRING_VALUE", // required
|
|
87
|
+
* // },
|
|
88
|
+
* // polarization: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // targetEirp: { // Eirp
|
|
91
|
+
* // value: Number("double"), // required
|
|
92
|
+
* // units: "STRING_VALUE", // required
|
|
93
|
+
* // },
|
|
94
|
+
* // },
|
|
95
|
+
* // uplinkEchoConfig: { // UplinkEchoConfig
|
|
96
|
+
* // enabled: true || false, // required
|
|
97
|
+
* // antennaUplinkConfigArn: "STRING_VALUE", // required
|
|
98
|
+
* // },
|
|
99
|
+
* // s3RecordingConfig: { // S3RecordingConfig
|
|
100
|
+
* // bucketArn: "STRING_VALUE", // required
|
|
101
|
+
* // roleArn: "STRING_VALUE", // required
|
|
102
|
+
* // prefix: "STRING_VALUE",
|
|
103
|
+
* // },
|
|
104
|
+
* // },
|
|
105
|
+
* // tags: { // TagsMap
|
|
106
|
+
* // "<keys>": "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // };
|
|
109
|
+
*
|
|
36
110
|
* ```
|
|
37
111
|
*
|
|
38
112
|
* @param GetConfigCommandInput - {@link GetConfigCommandInput}
|
|
@@ -50,6 +124,8 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
|
|
|
50
124
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
125
|
* <p>Resource was not found.</p>
|
|
52
126
|
*
|
|
127
|
+
* @throws {@link GroundStationServiceException}
|
|
128
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
53
129
|
*
|
|
54
130
|
*/
|
|
55
131
|
export declare class GetConfigCommand extends $Command<GetConfigCommandInput, GetConfigCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -31,6 +31,64 @@ export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpoi
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDataflowEndpointGroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetDataflowEndpointGroupResponse
|
|
35
|
+
* // dataflowEndpointGroupId: "STRING_VALUE",
|
|
36
|
+
* // dataflowEndpointGroupArn: "STRING_VALUE",
|
|
37
|
+
* // endpointsDetails: [ // EndpointDetailsList
|
|
38
|
+
* // { // EndpointDetails
|
|
39
|
+
* // securityDetails: { // SecurityDetails
|
|
40
|
+
* // subnetIds: [ // SubnetList // required
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // securityGroupIds: [ // SecurityGroupIdList // required
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // roleArn: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // endpoint: { // DataflowEndpoint
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // address: { // SocketAddress
|
|
51
|
+
* // name: "STRING_VALUE", // required
|
|
52
|
+
* // port: Number("int"), // required
|
|
53
|
+
* // },
|
|
54
|
+
* // status: "STRING_VALUE",
|
|
55
|
+
* // mtu: Number("int"),
|
|
56
|
+
* // },
|
|
57
|
+
* // awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
|
|
58
|
+
* // name: "STRING_VALUE", // required
|
|
59
|
+
* // egressAddress: { // ConnectionDetails
|
|
60
|
+
* // socketAddress: {
|
|
61
|
+
* // name: "STRING_VALUE", // required
|
|
62
|
+
* // port: Number("int"), // required
|
|
63
|
+
* // },
|
|
64
|
+
* // mtu: Number("int"),
|
|
65
|
+
* // },
|
|
66
|
+
* // ingressAddress: { // RangedConnectionDetails
|
|
67
|
+
* // socketAddress: { // RangedSocketAddress
|
|
68
|
+
* // name: "STRING_VALUE", // required
|
|
69
|
+
* // portRange: { // IntegerRange
|
|
70
|
+
* // minimum: Number("int"), // required
|
|
71
|
+
* // maximum: Number("int"), // required
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // mtu: Number("int"),
|
|
75
|
+
* // },
|
|
76
|
+
* // agentStatus: "STRING_VALUE",
|
|
77
|
+
* // auditResults: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // healthStatus: "STRING_VALUE",
|
|
80
|
+
* // healthReasons: [ // CapabilityHealthReasonList
|
|
81
|
+
* // "STRING_VALUE",
|
|
82
|
+
* // ],
|
|
83
|
+
* // },
|
|
84
|
+
* // ],
|
|
85
|
+
* // tags: { // TagsMap
|
|
86
|
+
* // "<keys>": "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // contactPrePassDurationSeconds: Number("int"),
|
|
89
|
+
* // contactPostPassDurationSeconds: Number("int"),
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
34
92
|
* ```
|
|
35
93
|
*
|
|
36
94
|
* @param GetDataflowEndpointGroupCommandInput - {@link GetDataflowEndpointGroupCommandInput}
|
|
@@ -48,6 +106,8 @@ export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpoi
|
|
|
48
106
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
107
|
* <p>Resource was not found.</p>
|
|
50
108
|
*
|
|
109
|
+
* @throws {@link GroundStationServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
111
|
*
|
|
52
112
|
*/
|
|
53
113
|
export declare class GetDataflowEndpointGroupCommand extends $Command<GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -32,6 +32,14 @@ export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetMinuteUsageCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetMinuteUsageResponse
|
|
36
|
+
* // isReservedMinutesCustomer: true || false,
|
|
37
|
+
* // totalReservedMinuteAllocation: Number("int"),
|
|
38
|
+
* // upcomingMinutesScheduled: Number("int"),
|
|
39
|
+
* // totalScheduledMinutes: Number("int"),
|
|
40
|
+
* // estimatedMinutesRemaining: Number("int"),
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
35
43
|
* ```
|
|
36
44
|
*
|
|
37
45
|
* @param GetMinuteUsageCommandInput - {@link GetMinuteUsageCommandInput}
|
|
@@ -49,6 +57,8 @@ export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __M
|
|
|
49
57
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
58
|
* <p>Resource was not found.</p>
|
|
51
59
|
*
|
|
60
|
+
* @throws {@link GroundStationServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
52
62
|
*
|
|
53
63
|
*/
|
|
54
64
|
export declare class GetMinuteUsageCommand extends $Command<GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -31,6 +31,30 @@ export interface GetMissionProfileCommandOutput extends GetMissionProfileRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetMissionProfileCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetMissionProfileResponse
|
|
35
|
+
* // missionProfileId: "STRING_VALUE",
|
|
36
|
+
* // missionProfileArn: "STRING_VALUE",
|
|
37
|
+
* // name: "STRING_VALUE",
|
|
38
|
+
* // region: "STRING_VALUE",
|
|
39
|
+
* // contactPrePassDurationSeconds: Number("int"),
|
|
40
|
+
* // contactPostPassDurationSeconds: Number("int"),
|
|
41
|
+
* // minimumViableContactDurationSeconds: Number("int"),
|
|
42
|
+
* // dataflowEdges: [ // DataflowEdgeList
|
|
43
|
+
* // [ // DataflowEdge
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // ],
|
|
47
|
+
* // trackingConfigArn: "STRING_VALUE",
|
|
48
|
+
* // tags: { // TagsMap
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // streamsKmsKey: { // KmsKey Union: only one key present
|
|
52
|
+
* // kmsKeyArn: "STRING_VALUE",
|
|
53
|
+
* // kmsAliasArn: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // streamsKmsRole: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
34
58
|
* ```
|
|
35
59
|
*
|
|
36
60
|
* @param GetMissionProfileCommandInput - {@link GetMissionProfileCommandInput}
|
|
@@ -48,6 +72,8 @@ export interface GetMissionProfileCommandOutput extends GetMissionProfileRespons
|
|
|
48
72
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
73
|
* <p>Resource was not found.</p>
|
|
50
74
|
*
|
|
75
|
+
* @throws {@link GroundStationServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
77
|
*
|
|
52
78
|
*/
|
|
53
79
|
export declare class GetMissionProfileCommand extends $Command<GetMissionProfileCommandInput, GetMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -31,6 +31,21 @@ export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __Metad
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetSatelliteCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetSatelliteResponse
|
|
35
|
+
* // satelliteId: "STRING_VALUE",
|
|
36
|
+
* // satelliteArn: "STRING_VALUE",
|
|
37
|
+
* // noradSatelliteID: Number("int"),
|
|
38
|
+
* // groundStations: [ // GroundStationIdList
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // currentEphemeris: { // EphemerisMetaData
|
|
42
|
+
* // source: "STRING_VALUE", // required
|
|
43
|
+
* // ephemerisId: "STRING_VALUE",
|
|
44
|
+
* // epoch: new Date("TIMESTAMP"),
|
|
45
|
+
* // name: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
34
49
|
* ```
|
|
35
50
|
*
|
|
36
51
|
* @param GetSatelliteCommandInput - {@link GetSatelliteCommandInput}
|
|
@@ -48,6 +63,8 @@ export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __Metad
|
|
|
48
63
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
64
|
* <p>Resource was not found.</p>
|
|
50
65
|
*
|
|
66
|
+
* @throws {@link GroundStationServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
68
|
*
|
|
52
69
|
*/
|
|
53
70
|
export declare class GetSatelliteCommand extends $Command<GetSatelliteCommandInput, GetSatelliteCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -32,6 +32,18 @@ export interface ListConfigsCommandOutput extends ListConfigsResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListConfigsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListConfigsResponse
|
|
36
|
+
* // nextToken: "STRING_VALUE",
|
|
37
|
+
* // configList: [ // ConfigList
|
|
38
|
+
* // { // ConfigListItem
|
|
39
|
+
* // configId: "STRING_VALUE",
|
|
40
|
+
* // configType: "STRING_VALUE",
|
|
41
|
+
* // configArn: "STRING_VALUE",
|
|
42
|
+
* // name: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
35
47
|
* ```
|
|
36
48
|
*
|
|
37
49
|
* @param ListConfigsCommandInput - {@link ListConfigsCommandInput}
|
|
@@ -49,6 +61,8 @@ export interface ListConfigsCommandOutput extends ListConfigsResponse, __Metadat
|
|
|
49
61
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
62
|
* <p>Resource was not found.</p>
|
|
51
63
|
*
|
|
64
|
+
* @throws {@link GroundStationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
52
66
|
*
|
|
53
67
|
*/
|
|
54
68
|
export declare class ListConfigsCommand extends $Command<ListConfigsCommandInput, ListConfigsCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -43,6 +43,32 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new ListContactsCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // ListContactsResponse
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // contactList: [ // ContactList
|
|
49
|
+
* // { // ContactData
|
|
50
|
+
* // contactId: "STRING_VALUE",
|
|
51
|
+
* // missionProfileArn: "STRING_VALUE",
|
|
52
|
+
* // satelliteArn: "STRING_VALUE",
|
|
53
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
55
|
+
* // prePassStartTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // postPassEndTime: new Date("TIMESTAMP"),
|
|
57
|
+
* // groundStation: "STRING_VALUE",
|
|
58
|
+
* // contactStatus: "STRING_VALUE",
|
|
59
|
+
* // errorMessage: "STRING_VALUE",
|
|
60
|
+
* // maximumElevation: { // Elevation
|
|
61
|
+
* // value: Number("double"), // required
|
|
62
|
+
* // unit: "STRING_VALUE", // required
|
|
63
|
+
* // },
|
|
64
|
+
* // region: "STRING_VALUE",
|
|
65
|
+
* // tags: { // TagsMap
|
|
66
|
+
* // "<keys>": "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
46
72
|
* ```
|
|
47
73
|
*
|
|
48
74
|
* @param ListContactsCommandInput - {@link ListContactsCommandInput}
|
|
@@ -60,6 +86,8 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad
|
|
|
60
86
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
87
|
* <p>Resource was not found.</p>
|
|
62
88
|
*
|
|
89
|
+
* @throws {@link GroundStationServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
63
91
|
*
|
|
64
92
|
*/
|
|
65
93
|
export declare class ListContactsCommand extends $Command<ListContactsCommandInput, ListContactsCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface ListDataflowEndpointGroupsCommandOutput extends ListDataflowEnd
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListDataflowEndpointGroupsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListDataflowEndpointGroupsResponse
|
|
36
|
+
* // nextToken: "STRING_VALUE",
|
|
37
|
+
* // dataflowEndpointGroupList: [ // DataflowEndpointGroupList
|
|
38
|
+
* // { // DataflowEndpointListItem
|
|
39
|
+
* // dataflowEndpointGroupId: "STRING_VALUE",
|
|
40
|
+
* // dataflowEndpointGroupArn: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param ListDataflowEndpointGroupsCommandInput - {@link ListDataflowEndpointGroupsCommandInput}
|
|
@@ -49,6 +59,8 @@ export interface ListDataflowEndpointGroupsCommandOutput extends ListDataflowEnd
|
|
|
49
59
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
60
|
* <p>Resource was not found.</p>
|
|
51
61
|
*
|
|
62
|
+
* @throws {@link GroundStationServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
52
64
|
*
|
|
53
65
|
*/
|
|
54
66
|
export declare class ListDataflowEndpointGroupsCommand extends $Command<ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -38,6 +38,25 @@ export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, _
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListEphemeridesCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListEphemeridesResponse
|
|
42
|
+
* // nextToken: "STRING_VALUE",
|
|
43
|
+
* // ephemerides: [ // EphemeridesList
|
|
44
|
+
* // { // EphemerisItem
|
|
45
|
+
* // ephemerisId: "STRING_VALUE",
|
|
46
|
+
* // status: "STRING_VALUE",
|
|
47
|
+
* // priority: Number("int"),
|
|
48
|
+
* // enabled: true || false,
|
|
49
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // name: "STRING_VALUE",
|
|
51
|
+
* // sourceS3Object: { // S3Object
|
|
52
|
+
* // bucket: "STRING_VALUE",
|
|
53
|
+
* // key: "STRING_VALUE",
|
|
54
|
+
* // version: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
41
60
|
* ```
|
|
42
61
|
*
|
|
43
62
|
* @param ListEphemeridesCommandInput - {@link ListEphemeridesCommandInput}
|
|
@@ -55,6 +74,8 @@ export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, _
|
|
|
55
74
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
75
|
* <p>Resource was not found.</p>
|
|
57
76
|
*
|
|
77
|
+
* @throws {@link GroundStationServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
58
79
|
*
|
|
59
80
|
*/
|
|
60
81
|
export declare class ListEphemeridesCommand extends $Command<ListEphemeridesCommandInput, ListEphemeridesCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -33,6 +33,17 @@ export interface ListGroundStationsCommandOutput extends ListGroundStationsRespo
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListGroundStationsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListGroundStationsResponse
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // groundStationList: [ // GroundStationList
|
|
39
|
+
* // { // GroundStationData
|
|
40
|
+
* // groundStationId: "STRING_VALUE",
|
|
41
|
+
* // groundStationName: "STRING_VALUE",
|
|
42
|
+
* // region: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
36
47
|
* ```
|
|
37
48
|
*
|
|
38
49
|
* @param ListGroundStationsCommandInput - {@link ListGroundStationsCommandInput}
|
|
@@ -50,6 +61,8 @@ export interface ListGroundStationsCommandOutput extends ListGroundStationsRespo
|
|
|
50
61
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
62
|
* <p>Resource was not found.</p>
|
|
52
63
|
*
|
|
64
|
+
* @throws {@link GroundStationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
53
66
|
*
|
|
54
67
|
*/
|
|
55
68
|
export declare class ListGroundStationsCommand extends $Command<ListGroundStationsCommandInput, ListGroundStationsCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -32,6 +32,18 @@ export interface ListMissionProfilesCommandOutput extends ListMissionProfilesRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListMissionProfilesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListMissionProfilesResponse
|
|
36
|
+
* // nextToken: "STRING_VALUE",
|
|
37
|
+
* // missionProfileList: [ // MissionProfileList
|
|
38
|
+
* // { // MissionProfileListItem
|
|
39
|
+
* // missionProfileId: "STRING_VALUE",
|
|
40
|
+
* // missionProfileArn: "STRING_VALUE",
|
|
41
|
+
* // region: "STRING_VALUE",
|
|
42
|
+
* // name: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
35
47
|
* ```
|
|
36
48
|
*
|
|
37
49
|
* @param ListMissionProfilesCommandInput - {@link ListMissionProfilesCommandInput}
|
|
@@ -49,6 +61,8 @@ export interface ListMissionProfilesCommandOutput extends ListMissionProfilesRes
|
|
|
49
61
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
62
|
* <p>Resource was not found.</p>
|
|
51
63
|
*
|
|
64
|
+
* @throws {@link GroundStationServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
52
66
|
*
|
|
53
67
|
*/
|
|
54
68
|
export declare class ListMissionProfilesCommand extends $Command<ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -32,6 +32,26 @@ export interface ListSatellitesCommandOutput extends ListSatellitesResponse, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListSatellitesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListSatellitesResponse
|
|
36
|
+
* // nextToken: "STRING_VALUE",
|
|
37
|
+
* // satellites: [ // SatelliteList
|
|
38
|
+
* // { // SatelliteListItem
|
|
39
|
+
* // satelliteId: "STRING_VALUE",
|
|
40
|
+
* // satelliteArn: "STRING_VALUE",
|
|
41
|
+
* // noradSatelliteID: Number("int"),
|
|
42
|
+
* // groundStations: [ // GroundStationIdList
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // currentEphemeris: { // EphemerisMetaData
|
|
46
|
+
* // source: "STRING_VALUE", // required
|
|
47
|
+
* // ephemerisId: "STRING_VALUE",
|
|
48
|
+
* // epoch: new Date("TIMESTAMP"),
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
35
55
|
* ```
|
|
36
56
|
*
|
|
37
57
|
* @param ListSatellitesCommandInput - {@link ListSatellitesCommandInput}
|
|
@@ -49,6 +69,8 @@ export interface ListSatellitesCommandOutput extends ListSatellitesResponse, __M
|
|
|
49
69
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
70
|
* <p>Resource was not found.</p>
|
|
51
71
|
*
|
|
72
|
+
* @throws {@link GroundStationServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
52
74
|
*
|
|
53
75
|
*/
|
|
54
76
|
export declare class ListSatellitesCommand extends $Command<ListSatellitesCommandInput, ListSatellitesCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagsMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
54
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
55
|
* <p>Resource was not found.</p>
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link GroundStationServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -63,6 +63,10 @@ export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __Met
|
|
|
63
63
|
* };
|
|
64
64
|
* const command = new RegisterAgentCommand(input);
|
|
65
65
|
* const response = await client.send(command);
|
|
66
|
+
* // { // RegisterAgentResponse
|
|
67
|
+
* // agentId: "STRING_VALUE",
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
66
70
|
* ```
|
|
67
71
|
*
|
|
68
72
|
* @param RegisterAgentCommandInput - {@link RegisterAgentCommandInput}
|
|
@@ -80,6 +84,8 @@ export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __Met
|
|
|
80
84
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
81
85
|
* <p>Resource was not found.</p>
|
|
82
86
|
*
|
|
87
|
+
* @throws {@link GroundStationServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
83
89
|
*
|
|
84
90
|
*/
|
|
85
91
|
export declare class RegisterAgentCommand extends $Command<RegisterAgentCommandInput, RegisterAgentCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -38,6 +38,10 @@ export interface ReserveContactCommandOutput extends ContactIdResponse, __Metada
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ReserveContactCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ContactIdResponse
|
|
42
|
+
* // contactId: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
41
45
|
* ```
|
|
42
46
|
*
|
|
43
47
|
* @param ReserveContactCommandInput - {@link ReserveContactCommandInput}
|
|
@@ -55,6 +59,8 @@ export interface ReserveContactCommandOutput extends ContactIdResponse, __Metada
|
|
|
55
59
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
60
|
* <p>Resource was not found.</p>
|
|
57
61
|
*
|
|
62
|
+
* @throws {@link GroundStationServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
58
64
|
*
|
|
59
65
|
*/
|
|
60
66
|
export declare class ReserveContactCommand extends $Command<ReserveContactCommandInput, ReserveContactCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
51
53
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
54
|
* <p>Resource was not found.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link GroundStationServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
51
53
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
54
|
* <p>Resource was not found.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link GroundStationServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -52,6 +52,10 @@ export interface UpdateAgentStatusCommandOutput extends UpdateAgentStatusRespons
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new UpdateAgentStatusCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // UpdateAgentStatusResponse
|
|
56
|
+
* // agentId: "STRING_VALUE", // required
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
55
59
|
* ```
|
|
56
60
|
*
|
|
57
61
|
* @param UpdateAgentStatusCommandInput - {@link UpdateAgentStatusCommandInput}
|
|
@@ -69,6 +73,8 @@ export interface UpdateAgentStatusCommandOutput extends UpdateAgentStatusRespons
|
|
|
69
73
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
74
|
* <p>Resource was not found.</p>
|
|
71
75
|
*
|
|
76
|
+
* @throws {@link GroundStationServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
72
78
|
*
|
|
73
79
|
*/
|
|
74
80
|
export declare class UpdateAgentStatusCommand extends $Command<UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -99,6 +99,12 @@ export interface UpdateConfigCommandOutput extends ConfigIdResponse, __MetadataB
|
|
|
99
99
|
* };
|
|
100
100
|
* const command = new UpdateConfigCommand(input);
|
|
101
101
|
* const response = await client.send(command);
|
|
102
|
+
* // { // ConfigIdResponse
|
|
103
|
+
* // configId: "STRING_VALUE",
|
|
104
|
+
* // configType: "STRING_VALUE",
|
|
105
|
+
* // configArn: "STRING_VALUE",
|
|
106
|
+
* // };
|
|
107
|
+
*
|
|
102
108
|
* ```
|
|
103
109
|
*
|
|
104
110
|
* @param UpdateConfigCommandInput - {@link UpdateConfigCommandInput}
|
|
@@ -116,6 +122,8 @@ export interface UpdateConfigCommandOutput extends ConfigIdResponse, __MetadataB
|
|
|
116
122
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
117
123
|
* <p>Resource was not found.</p>
|
|
118
124
|
*
|
|
125
|
+
* @throws {@link GroundStationServiceException}
|
|
126
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
119
127
|
*
|
|
120
128
|
*/
|
|
121
129
|
export declare class UpdateConfigCommand extends $Command<UpdateConfigCommandInput, UpdateConfigCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -34,6 +34,10 @@ export interface UpdateEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateEphemerisCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // EphemerisIdResponse
|
|
38
|
+
* // ephemerisId: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
37
41
|
* ```
|
|
38
42
|
*
|
|
39
43
|
* @param UpdateEphemerisCommandInput - {@link UpdateEphemerisCommandInput}
|
|
@@ -51,6 +55,8 @@ export interface UpdateEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
51
55
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
56
|
* <p>Resource was not found.</p>
|
|
53
57
|
*
|
|
58
|
+
* @throws {@link GroundStationServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
54
60
|
*
|
|
55
61
|
*/
|
|
56
62
|
export declare class UpdateEphemerisCommand extends $Command<UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput, GroundStationClientResolvedConfig> {
|
|
@@ -48,6 +48,10 @@ export interface UpdateMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new UpdateMissionProfileCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // MissionProfileIdResponse
|
|
52
|
+
* // missionProfileId: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
51
55
|
* ```
|
|
52
56
|
*
|
|
53
57
|
* @param UpdateMissionProfileCommandInput - {@link UpdateMissionProfileCommandInput}
|
|
@@ -65,6 +69,8 @@ export interface UpdateMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
65
69
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
70
|
* <p>Resource was not found.</p>
|
|
67
71
|
*
|
|
72
|
+
* @throws {@link GroundStationServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
68
74
|
*
|
|
69
75
|
*/
|
|
70
76
|
export declare class UpdateMissionProfileCommand extends $Command<UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-groundstation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|