@aws-sdk/client-groundstation 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/GroundStationServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +58 -2
- package/dist-cjs/protocols/Aws_restJson1.js +227 -750
- package/dist-es/index.js +1 -0
- package/dist-es/models/GroundStationServiceException.js +12 -0
- package/dist-es/models/models_0.js +53 -1
- package/dist-es/protocols/Aws_restJson1.js +497 -856
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/GroundStationServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +30 -17
- package/dist-types/ts3.4/GroundStation.d.ts +130 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +98 -0
- package/dist-types/ts3.4/commands/CancelContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataflowEndpointGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateMissionProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDataflowEndpointGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMissionProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDataflowEndpointGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMinuteUsageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMissionProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSatelliteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListConfigsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDataflowEndpointGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListGroundStationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListMissionProfilesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListSatellitesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ReserveContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateMissionProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +25 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/GroundStationServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1210 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListConfigsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDataflowEndpointGroupsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListGroundStationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListMissionProfilesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListSatellitesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from GroundStation service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class GroundStationServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
|
|
2
3
|
export declare enum AngleUnits {
|
|
3
4
|
DEGREE_ANGLE = "DEGREE_ANGLE",
|
|
4
5
|
RADIAN = "RADIAN"
|
|
@@ -282,34 +283,43 @@ export declare namespace ContactIdResponse {
|
|
|
282
283
|
/**
|
|
283
284
|
* <p>Dependency encountered an error.</p>
|
|
284
285
|
*/
|
|
285
|
-
export
|
|
286
|
-
name: "DependencyException";
|
|
287
|
-
$fault: "server";
|
|
288
|
-
message?: string;
|
|
286
|
+
export declare class DependencyException extends __BaseException {
|
|
287
|
+
readonly name: "DependencyException";
|
|
288
|
+
readonly $fault: "server";
|
|
289
289
|
/**
|
|
290
290
|
* <p/>
|
|
291
291
|
*/
|
|
292
292
|
parameterName?: string;
|
|
293
|
+
/**
|
|
294
|
+
* @internal
|
|
295
|
+
*/
|
|
296
|
+
constructor(opts: __ExceptionOptionType<DependencyException, __BaseException>);
|
|
293
297
|
}
|
|
294
298
|
/**
|
|
295
299
|
* <p>One or more parameters are not valid.</p>
|
|
296
300
|
*/
|
|
297
|
-
export
|
|
298
|
-
name: "InvalidParameterException";
|
|
299
|
-
$fault: "client";
|
|
300
|
-
message?: string;
|
|
301
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
302
|
+
readonly name: "InvalidParameterException";
|
|
303
|
+
readonly $fault: "client";
|
|
301
304
|
/**
|
|
302
305
|
* <p/>
|
|
303
306
|
*/
|
|
304
307
|
parameterName?: string;
|
|
308
|
+
/**
|
|
309
|
+
* @internal
|
|
310
|
+
*/
|
|
311
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
305
312
|
}
|
|
306
313
|
/**
|
|
307
314
|
* <p>Resource was not found.</p>
|
|
308
315
|
*/
|
|
309
|
-
export
|
|
310
|
-
name: "ResourceNotFoundException";
|
|
311
|
-
$fault: "client";
|
|
312
|
-
|
|
316
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
317
|
+
readonly name: "ResourceNotFoundException";
|
|
318
|
+
readonly $fault: "client";
|
|
319
|
+
/**
|
|
320
|
+
* @internal
|
|
321
|
+
*/
|
|
322
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
313
323
|
}
|
|
314
324
|
export declare enum ConfigCapabilityType {
|
|
315
325
|
ANTENNA_DOWNLINK = "antenna-downlink",
|
|
@@ -580,14 +590,17 @@ export declare namespace CreateConfigRequest {
|
|
|
580
590
|
/**
|
|
581
591
|
* <p>Account limits for this resource have been exceeded.</p>
|
|
582
592
|
*/
|
|
583
|
-
export
|
|
584
|
-
name: "ResourceLimitExceededException";
|
|
585
|
-
$fault: "client";
|
|
586
|
-
message?: string;
|
|
593
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
594
|
+
readonly name: "ResourceLimitExceededException";
|
|
595
|
+
readonly $fault: "client";
|
|
587
596
|
/**
|
|
588
597
|
* <p/>
|
|
589
598
|
*/
|
|
590
599
|
parameterName?: string;
|
|
600
|
+
/**
|
|
601
|
+
* @internal
|
|
602
|
+
*/
|
|
603
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
591
604
|
}
|
|
592
605
|
/**
|
|
593
606
|
* <p/>
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CancelContactCommandInput, CancelContactCommandOutput } from "./commands/CancelContactCommand";
|
|
3
|
+
import { CreateConfigCommandInput, CreateConfigCommandOutput } from "./commands/CreateConfigCommand";
|
|
4
|
+
import { CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput } from "./commands/CreateDataflowEndpointGroupCommand";
|
|
5
|
+
import { CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput } from "./commands/CreateMissionProfileCommand";
|
|
6
|
+
import { DeleteConfigCommandInput, DeleteConfigCommandOutput } from "./commands/DeleteConfigCommand";
|
|
7
|
+
import { DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput } from "./commands/DeleteDataflowEndpointGroupCommand";
|
|
8
|
+
import { DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput } from "./commands/DeleteMissionProfileCommand";
|
|
9
|
+
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
10
|
+
import { GetConfigCommandInput, GetConfigCommandOutput } from "./commands/GetConfigCommand";
|
|
11
|
+
import { GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput } from "./commands/GetDataflowEndpointGroupCommand";
|
|
12
|
+
import { GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput } from "./commands/GetMinuteUsageCommand";
|
|
13
|
+
import { GetMissionProfileCommandInput, GetMissionProfileCommandOutput } from "./commands/GetMissionProfileCommand";
|
|
14
|
+
import { GetSatelliteCommandInput, GetSatelliteCommandOutput } from "./commands/GetSatelliteCommand";
|
|
15
|
+
import { ListConfigsCommandInput, ListConfigsCommandOutput } from "./commands/ListConfigsCommand";
|
|
16
|
+
import { ListContactsCommandInput, ListContactsCommandOutput } from "./commands/ListContactsCommand";
|
|
17
|
+
import { ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput } from "./commands/ListDataflowEndpointGroupsCommand";
|
|
18
|
+
import { ListGroundStationsCommandInput, ListGroundStationsCommandOutput } from "./commands/ListGroundStationsCommand";
|
|
19
|
+
import { ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput } from "./commands/ListMissionProfilesCommand";
|
|
20
|
+
import { ListSatellitesCommandInput, ListSatellitesCommandOutput } from "./commands/ListSatellitesCommand";
|
|
21
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
22
|
+
import { ReserveContactCommandInput, ReserveContactCommandOutput } from "./commands/ReserveContactCommand";
|
|
23
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
|
+
import { UpdateConfigCommandInput, UpdateConfigCommandOutput } from "./commands/UpdateConfigCommand";
|
|
26
|
+
import { UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput } from "./commands/UpdateMissionProfileCommand";
|
|
27
|
+
import { GroundStationClient } from "./GroundStationClient";
|
|
28
|
+
|
|
29
|
+
export declare class GroundStation extends GroundStationClient {
|
|
30
|
+
|
|
31
|
+
cancelContact(args: CancelContactCommandInput, options?: __HttpHandlerOptions): Promise<CancelContactCommandOutput>;
|
|
32
|
+
cancelContact(args: CancelContactCommandInput, cb: (err: any, data?: CancelContactCommandOutput) => void): void;
|
|
33
|
+
cancelContact(args: CancelContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelContactCommandOutput) => void): void;
|
|
34
|
+
|
|
35
|
+
createConfig(args: CreateConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigCommandOutput>;
|
|
36
|
+
createConfig(args: CreateConfigCommandInput, cb: (err: any, data?: CreateConfigCommandOutput) => void): void;
|
|
37
|
+
createConfig(args: CreateConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigCommandOutput) => void): void;
|
|
38
|
+
|
|
39
|
+
createDataflowEndpointGroup(args: CreateDataflowEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataflowEndpointGroupCommandOutput>;
|
|
40
|
+
createDataflowEndpointGroup(args: CreateDataflowEndpointGroupCommandInput, cb: (err: any, data?: CreateDataflowEndpointGroupCommandOutput) => void): void;
|
|
41
|
+
createDataflowEndpointGroup(args: CreateDataflowEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataflowEndpointGroupCommandOutput) => void): void;
|
|
42
|
+
|
|
43
|
+
createMissionProfile(args: CreateMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateMissionProfileCommandOutput>;
|
|
44
|
+
createMissionProfile(args: CreateMissionProfileCommandInput, cb: (err: any, data?: CreateMissionProfileCommandOutput) => void): void;
|
|
45
|
+
createMissionProfile(args: CreateMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMissionProfileCommandOutput) => void): void;
|
|
46
|
+
|
|
47
|
+
deleteConfig(args: DeleteConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigCommandOutput>;
|
|
48
|
+
deleteConfig(args: DeleteConfigCommandInput, cb: (err: any, data?: DeleteConfigCommandOutput) => void): void;
|
|
49
|
+
deleteConfig(args: DeleteConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigCommandOutput) => void): void;
|
|
50
|
+
|
|
51
|
+
deleteDataflowEndpointGroup(args: DeleteDataflowEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataflowEndpointGroupCommandOutput>;
|
|
52
|
+
deleteDataflowEndpointGroup(args: DeleteDataflowEndpointGroupCommandInput, cb: (err: any, data?: DeleteDataflowEndpointGroupCommandOutput) => void): void;
|
|
53
|
+
deleteDataflowEndpointGroup(args: DeleteDataflowEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataflowEndpointGroupCommandOutput) => void): void;
|
|
54
|
+
|
|
55
|
+
deleteMissionProfile(args: DeleteMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMissionProfileCommandOutput>;
|
|
56
|
+
deleteMissionProfile(args: DeleteMissionProfileCommandInput, cb: (err: any, data?: DeleteMissionProfileCommandOutput) => void): void;
|
|
57
|
+
deleteMissionProfile(args: DeleteMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMissionProfileCommandOutput) => void): void;
|
|
58
|
+
|
|
59
|
+
describeContact(args: DescribeContactCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContactCommandOutput>;
|
|
60
|
+
describeContact(args: DescribeContactCommandInput, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
61
|
+
describeContact(args: DescribeContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContactCommandOutput) => void): void;
|
|
62
|
+
|
|
63
|
+
getConfig(args: GetConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigCommandOutput>;
|
|
64
|
+
getConfig(args: GetConfigCommandInput, cb: (err: any, data?: GetConfigCommandOutput) => void): void;
|
|
65
|
+
getConfig(args: GetConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigCommandOutput) => void): void;
|
|
66
|
+
|
|
67
|
+
getDataflowEndpointGroup(args: GetDataflowEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetDataflowEndpointGroupCommandOutput>;
|
|
68
|
+
getDataflowEndpointGroup(args: GetDataflowEndpointGroupCommandInput, cb: (err: any, data?: GetDataflowEndpointGroupCommandOutput) => void): void;
|
|
69
|
+
getDataflowEndpointGroup(args: GetDataflowEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataflowEndpointGroupCommandOutput) => void): void;
|
|
70
|
+
|
|
71
|
+
getMinuteUsage(args: GetMinuteUsageCommandInput, options?: __HttpHandlerOptions): Promise<GetMinuteUsageCommandOutput>;
|
|
72
|
+
getMinuteUsage(args: GetMinuteUsageCommandInput, cb: (err: any, data?: GetMinuteUsageCommandOutput) => void): void;
|
|
73
|
+
getMinuteUsage(args: GetMinuteUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMinuteUsageCommandOutput) => void): void;
|
|
74
|
+
|
|
75
|
+
getMissionProfile(args: GetMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetMissionProfileCommandOutput>;
|
|
76
|
+
getMissionProfile(args: GetMissionProfileCommandInput, cb: (err: any, data?: GetMissionProfileCommandOutput) => void): void;
|
|
77
|
+
getMissionProfile(args: GetMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMissionProfileCommandOutput) => void): void;
|
|
78
|
+
|
|
79
|
+
getSatellite(args: GetSatelliteCommandInput, options?: __HttpHandlerOptions): Promise<GetSatelliteCommandOutput>;
|
|
80
|
+
getSatellite(args: GetSatelliteCommandInput, cb: (err: any, data?: GetSatelliteCommandOutput) => void): void;
|
|
81
|
+
getSatellite(args: GetSatelliteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSatelliteCommandOutput) => void): void;
|
|
82
|
+
|
|
83
|
+
listConfigs(args: ListConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigsCommandOutput>;
|
|
84
|
+
listConfigs(args: ListConfigsCommandInput, cb: (err: any, data?: ListConfigsCommandOutput) => void): void;
|
|
85
|
+
listConfigs(args: ListConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigsCommandOutput) => void): void;
|
|
86
|
+
|
|
87
|
+
listContacts(args: ListContactsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactsCommandOutput>;
|
|
88
|
+
listContacts(args: ListContactsCommandInput, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
89
|
+
listContacts(args: ListContactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
90
|
+
|
|
91
|
+
listDataflowEndpointGroups(args: ListDataflowEndpointGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataflowEndpointGroupsCommandOutput>;
|
|
92
|
+
listDataflowEndpointGroups(args: ListDataflowEndpointGroupsCommandInput, cb: (err: any, data?: ListDataflowEndpointGroupsCommandOutput) => void): void;
|
|
93
|
+
listDataflowEndpointGroups(args: ListDataflowEndpointGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataflowEndpointGroupsCommandOutput) => void): void;
|
|
94
|
+
|
|
95
|
+
listGroundStations(args: ListGroundStationsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroundStationsCommandOutput>;
|
|
96
|
+
listGroundStations(args: ListGroundStationsCommandInput, cb: (err: any, data?: ListGroundStationsCommandOutput) => void): void;
|
|
97
|
+
listGroundStations(args: ListGroundStationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroundStationsCommandOutput) => void): void;
|
|
98
|
+
|
|
99
|
+
listMissionProfiles(args: ListMissionProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListMissionProfilesCommandOutput>;
|
|
100
|
+
listMissionProfiles(args: ListMissionProfilesCommandInput, cb: (err: any, data?: ListMissionProfilesCommandOutput) => void): void;
|
|
101
|
+
listMissionProfiles(args: ListMissionProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMissionProfilesCommandOutput) => void): void;
|
|
102
|
+
|
|
103
|
+
listSatellites(args: ListSatellitesCommandInput, options?: __HttpHandlerOptions): Promise<ListSatellitesCommandOutput>;
|
|
104
|
+
listSatellites(args: ListSatellitesCommandInput, cb: (err: any, data?: ListSatellitesCommandOutput) => void): void;
|
|
105
|
+
listSatellites(args: ListSatellitesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSatellitesCommandOutput) => void): void;
|
|
106
|
+
|
|
107
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
108
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
109
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
110
|
+
|
|
111
|
+
reserveContact(args: ReserveContactCommandInput, options?: __HttpHandlerOptions): Promise<ReserveContactCommandOutput>;
|
|
112
|
+
reserveContact(args: ReserveContactCommandInput, cb: (err: any, data?: ReserveContactCommandOutput) => void): void;
|
|
113
|
+
reserveContact(args: ReserveContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReserveContactCommandOutput) => void): void;
|
|
114
|
+
|
|
115
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
116
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
117
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
118
|
+
|
|
119
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
120
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
121
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
122
|
+
|
|
123
|
+
updateConfig(args: UpdateConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigCommandOutput>;
|
|
124
|
+
updateConfig(args: UpdateConfigCommandInput, cb: (err: any, data?: UpdateConfigCommandOutput) => void): void;
|
|
125
|
+
updateConfig(args: UpdateConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigCommandOutput) => void): void;
|
|
126
|
+
|
|
127
|
+
updateMissionProfile(args: UpdateMissionProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMissionProfileCommandOutput>;
|
|
128
|
+
updateMissionProfile(args: UpdateMissionProfileCommandInput, cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void): void;
|
|
129
|
+
updateMissionProfile(args: UpdateMissionProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMissionProfileCommandOutput) => void): void;
|
|
130
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { CancelContactCommandInput, CancelContactCommandOutput } from "./commands/CancelContactCommand";
|
|
10
|
+
import { CreateConfigCommandInput, CreateConfigCommandOutput } from "./commands/CreateConfigCommand";
|
|
11
|
+
import { CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput } from "./commands/CreateDataflowEndpointGroupCommand";
|
|
12
|
+
import { CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput } from "./commands/CreateMissionProfileCommand";
|
|
13
|
+
import { DeleteConfigCommandInput, DeleteConfigCommandOutput } from "./commands/DeleteConfigCommand";
|
|
14
|
+
import { DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput } from "./commands/DeleteDataflowEndpointGroupCommand";
|
|
15
|
+
import { DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput } from "./commands/DeleteMissionProfileCommand";
|
|
16
|
+
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
17
|
+
import { GetConfigCommandInput, GetConfigCommandOutput } from "./commands/GetConfigCommand";
|
|
18
|
+
import { GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput } from "./commands/GetDataflowEndpointGroupCommand";
|
|
19
|
+
import { GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput } from "./commands/GetMinuteUsageCommand";
|
|
20
|
+
import { GetMissionProfileCommandInput, GetMissionProfileCommandOutput } from "./commands/GetMissionProfileCommand";
|
|
21
|
+
import { GetSatelliteCommandInput, GetSatelliteCommandOutput } from "./commands/GetSatelliteCommand";
|
|
22
|
+
import { ListConfigsCommandInput, ListConfigsCommandOutput } from "./commands/ListConfigsCommand";
|
|
23
|
+
import { ListContactsCommandInput, ListContactsCommandOutput } from "./commands/ListContactsCommand";
|
|
24
|
+
import { ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput } from "./commands/ListDataflowEndpointGroupsCommand";
|
|
25
|
+
import { ListGroundStationsCommandInput, ListGroundStationsCommandOutput } from "./commands/ListGroundStationsCommand";
|
|
26
|
+
import { ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput } from "./commands/ListMissionProfilesCommand";
|
|
27
|
+
import { ListSatellitesCommandInput, ListSatellitesCommandOutput } from "./commands/ListSatellitesCommand";
|
|
28
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
29
|
+
import { ReserveContactCommandInput, ReserveContactCommandOutput } from "./commands/ReserveContactCommand";
|
|
30
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
31
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
32
|
+
import { UpdateConfigCommandInput, UpdateConfigCommandOutput } from "./commands/UpdateConfigCommand";
|
|
33
|
+
import { UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput } from "./commands/UpdateMissionProfileCommand";
|
|
34
|
+
export declare type ServiceInputTypes = CancelContactCommandInput | CreateConfigCommandInput | CreateDataflowEndpointGroupCommandInput | CreateMissionProfileCommandInput | DeleteConfigCommandInput | DeleteDataflowEndpointGroupCommandInput | DeleteMissionProfileCommandInput | DescribeContactCommandInput | GetConfigCommandInput | GetDataflowEndpointGroupCommandInput | GetMinuteUsageCommandInput | GetMissionProfileCommandInput | GetSatelliteCommandInput | ListConfigsCommandInput | ListContactsCommandInput | ListDataflowEndpointGroupsCommandInput | ListGroundStationsCommandInput | ListMissionProfilesCommandInput | ListSatellitesCommandInput | ListTagsForResourceCommandInput | ReserveContactCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConfigCommandInput | UpdateMissionProfileCommandInput;
|
|
35
|
+
export declare type ServiceOutputTypes = CancelContactCommandOutput | CreateConfigCommandOutput | CreateDataflowEndpointGroupCommandOutput | CreateMissionProfileCommandOutput | DeleteConfigCommandOutput | DeleteDataflowEndpointGroupCommandOutput | DeleteMissionProfileCommandOutput | DescribeContactCommandOutput | GetConfigCommandOutput | GetDataflowEndpointGroupCommandOutput | GetMinuteUsageCommandOutput | GetMissionProfileCommandOutput | GetSatelliteCommandOutput | ListConfigsCommandOutput | ListContactsCommandOutput | ListDataflowEndpointGroupsCommandOutput | ListGroundStationsCommandOutput | ListMissionProfilesCommandOutput | ListSatellitesCommandOutput | ListTagsForResourceCommandOutput | ReserveContactCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConfigCommandOutput | UpdateMissionProfileCommandOutput;
|
|
36
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
37
|
+
|
|
38
|
+
requestHandler?: __HttpHandler;
|
|
39
|
+
|
|
40
|
+
sha256?: __HashConstructor;
|
|
41
|
+
|
|
42
|
+
urlParser?: __UrlParser;
|
|
43
|
+
|
|
44
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
45
|
+
|
|
46
|
+
streamCollector?: __StreamCollector;
|
|
47
|
+
|
|
48
|
+
base64Decoder?: __Decoder;
|
|
49
|
+
|
|
50
|
+
base64Encoder?: __Encoder;
|
|
51
|
+
|
|
52
|
+
utf8Decoder?: __Decoder;
|
|
53
|
+
|
|
54
|
+
utf8Encoder?: __Encoder;
|
|
55
|
+
|
|
56
|
+
runtime?: string;
|
|
57
|
+
|
|
58
|
+
disableHostPrefix?: boolean;
|
|
59
|
+
|
|
60
|
+
maxAttempts?: number | __Provider<number>;
|
|
61
|
+
|
|
62
|
+
retryMode?: string | __Provider<string>;
|
|
63
|
+
|
|
64
|
+
logger?: __Logger;
|
|
65
|
+
|
|
66
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
67
|
+
|
|
68
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
69
|
+
|
|
70
|
+
serviceId?: string;
|
|
71
|
+
|
|
72
|
+
region?: string | __Provider<string>;
|
|
73
|
+
|
|
74
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
75
|
+
|
|
76
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
77
|
+
|
|
78
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
79
|
+
|
|
80
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
81
|
+
}
|
|
82
|
+
declare type GroundStationClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
83
|
+
|
|
84
|
+
export interface GroundStationClientConfig extends GroundStationClientConfigType {
|
|
85
|
+
}
|
|
86
|
+
declare type GroundStationClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
87
|
+
|
|
88
|
+
export interface GroundStationClientResolvedConfig extends GroundStationClientResolvedConfigType {
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export declare class GroundStationClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, GroundStationClientResolvedConfig> {
|
|
92
|
+
|
|
93
|
+
readonly config: GroundStationClientResolvedConfig;
|
|
94
|
+
constructor(configuration: GroundStationClientConfig);
|
|
95
|
+
|
|
96
|
+
destroy(): void;
|
|
97
|
+
}
|
|
98
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { CancelContactRequest, ContactIdResponse } from "../models/models_0";
|
|
5
|
+
export interface CancelContactCommandInput extends CancelContactRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CancelContactCommandOutput extends ContactIdResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CancelContactCommand extends $Command<CancelContactCommandInput, CancelContactCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: CancelContactCommandInput;
|
|
12
|
+
constructor(input: CancelContactCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelContactCommandInput, CancelContactCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { ConfigIdResponse, CreateConfigRequest } from "../models/models_0";
|
|
5
|
+
export interface CreateConfigCommandInput extends CreateConfigRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateConfigCommand extends $Command<CreateConfigCommandInput, CreateConfigCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateConfigCommandInput;
|
|
12
|
+
constructor(input: CreateConfigCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConfigCommandInput, CreateConfigCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { CreateDataflowEndpointGroupRequest, DataflowEndpointGroupIdResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateDataflowEndpointGroupCommandInput extends CreateDataflowEndpointGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDataflowEndpointGroupCommandOutput extends DataflowEndpointGroupIdResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateDataflowEndpointGroupCommand extends $Command<CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateDataflowEndpointGroupCommandInput;
|
|
12
|
+
constructor(input: CreateDataflowEndpointGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { CreateMissionProfileRequest, MissionProfileIdResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateMissionProfileCommandInput extends CreateMissionProfileRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateMissionProfileCommandOutput extends MissionProfileIdResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateMissionProfileCommand extends $Command<CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateMissionProfileCommandInput;
|
|
12
|
+
constructor(input: CreateMissionProfileCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { ConfigIdResponse, DeleteConfigRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteConfigCommandInput extends DeleteConfigRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteConfigCommandOutput extends ConfigIdResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteConfigCommand extends $Command<DeleteConfigCommandInput, DeleteConfigCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteConfigCommandInput;
|
|
12
|
+
constructor(input: DeleteConfigCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConfigCommandInput, DeleteConfigCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { DataflowEndpointGroupIdResponse, DeleteDataflowEndpointGroupRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteDataflowEndpointGroupCommandInput extends DeleteDataflowEndpointGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpointGroupIdResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteDataflowEndpointGroupCommand extends $Command<DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteDataflowEndpointGroupCommandInput;
|
|
12
|
+
constructor(input: DeleteDataflowEndpointGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataflowEndpointGroupCommandInput, DeleteDataflowEndpointGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { DeleteMissionProfileRequest, MissionProfileIdResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteMissionProfileCommandInput extends DeleteMissionProfileRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteMissionProfileCommandOutput extends MissionProfileIdResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteMissionProfileCommand extends $Command<DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteMissionProfileCommandInput;
|
|
12
|
+
constructor(input: DeleteMissionProfileCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { DescribeContactRequest, DescribeContactResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeContactCommandInput extends DescribeContactRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeContactCommandOutput extends DescribeContactResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeContactCommand extends $Command<DescribeContactCommandInput, DescribeContactCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeContactCommandInput;
|
|
12
|
+
constructor(input: DescribeContactCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeContactCommandInput, DescribeContactCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { GetConfigRequest, GetConfigResponse } from "../models/models_0";
|
|
5
|
+
export interface GetConfigCommandInput extends GetConfigRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetConfigCommand extends $Command<GetConfigCommandInput, GetConfigCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: GetConfigCommandInput;
|
|
12
|
+
constructor(input: GetConfigCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConfigCommandInput, GetConfigCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { GetDataflowEndpointGroupRequest, GetDataflowEndpointGroupResponse } from "../models/models_0";
|
|
5
|
+
export interface GetDataflowEndpointGroupCommandInput extends GetDataflowEndpointGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpointGroupResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetDataflowEndpointGroupCommand extends $Command<GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: GetDataflowEndpointGroupCommandInput;
|
|
12
|
+
constructor(input: GetDataflowEndpointGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { GetMinuteUsageRequest, GetMinuteUsageResponse } from "../models/models_0";
|
|
5
|
+
export interface GetMinuteUsageCommandInput extends GetMinuteUsageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetMinuteUsageCommand extends $Command<GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: GetMinuteUsageCommandInput;
|
|
12
|
+
constructor(input: GetMinuteUsageCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { GetMissionProfileRequest, GetMissionProfileResponse } from "../models/models_0";
|
|
5
|
+
export interface GetMissionProfileCommandInput extends GetMissionProfileRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetMissionProfileCommandOutput extends GetMissionProfileResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetMissionProfileCommand extends $Command<GetMissionProfileCommandInput, GetMissionProfileCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: GetMissionProfileCommandInput;
|
|
12
|
+
constructor(input: GetMissionProfileCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMissionProfileCommandInput, GetMissionProfileCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { GetSatelliteRequest, GetSatelliteResponse } from "../models/models_0";
|
|
5
|
+
export interface GetSatelliteCommandInput extends GetSatelliteRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetSatelliteCommand extends $Command<GetSatelliteCommandInput, GetSatelliteCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: GetSatelliteCommandInput;
|
|
12
|
+
constructor(input: GetSatelliteCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSatelliteCommandInput, GetSatelliteCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { ListConfigsRequest, ListConfigsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListConfigsCommandInput extends ListConfigsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListConfigsCommandOutput extends ListConfigsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListConfigsCommand extends $Command<ListConfigsCommandInput, ListConfigsCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: ListConfigsCommandInput;
|
|
12
|
+
constructor(input: ListConfigsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConfigsCommandInput, ListConfigsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { ListContactsRequest, ListContactsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListContactsCommandInput extends ListContactsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListContactsCommandOutput extends ListContactsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListContactsCommand extends $Command<ListContactsCommandInput, ListContactsCommandOutput, GroundStationClientResolvedConfig> {
|
|
11
|
+
readonly input: ListContactsCommandInput;
|
|
12
|
+
constructor(input: ListContactsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListContactsCommandInput, ListContactsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|