@aws-sdk/client-groundstation 3.295.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist-types/GroundStation.d.ts +34 -0
  2. package/dist-types/GroundStationClient.d.ts +24 -4
  3. package/dist-types/commands/CancelContactCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateConfigCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateEphemerisCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateMissionProfileCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteConfigCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteDataflowEndpointGroupCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteEphemerisCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteMissionProfileCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeContactCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeEphemerisCommand.d.ts +16 -0
  14. package/dist-types/commands/GetAgentConfigurationCommand.d.ts +16 -0
  15. package/dist-types/commands/GetConfigCommand.d.ts +16 -0
  16. package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +16 -0
  17. package/dist-types/commands/GetMinuteUsageCommand.d.ts +16 -0
  18. package/dist-types/commands/GetMissionProfileCommand.d.ts +16 -0
  19. package/dist-types/commands/GetSatelliteCommand.d.ts +16 -0
  20. package/dist-types/commands/ListConfigsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListContactsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListDataflowEndpointGroupsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListEphemeridesCommand.d.ts +16 -0
  24. package/dist-types/commands/ListGroundStationsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListMissionProfilesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListSatellitesCommand.d.ts +16 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/RegisterAgentCommand.d.ts +16 -0
  29. package/dist-types/commands/ReserveContactCommand.d.ts +16 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateAgentStatusCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateConfigCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateEphemerisCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateMissionProfileCommand.d.ts +16 -0
  36. package/dist-types/models/GroundStationServiceException.d.ts +2 -0
  37. package/dist-types/models/models_0.d.ts +203 -0
  38. package/dist-types/pagination/Interfaces.d.ts +3 -0
  39. package/dist-types/pagination/ListConfigsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListContactsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListDataflowEndpointGroupsPaginator.d.ts +3 -0
  42. package/dist-types/pagination/ListEphemeridesPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListGroundStationsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListMissionProfilesPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListSatellitesPaginator.d.ts +3 -0
  46. package/package.json +30 -30
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { ListDataflowEndpointGroupsRequest, ListDataflowEndpointGroupsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDataflowEndpointGroupsCommand}.
8
10
  */
9
11
  export interface ListDataflowEndpointGroupsCommandInput extends ListDataflowEndpointGroupsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDataflowEndpointGroupsCommand}.
13
17
  */
14
18
  export interface ListDataflowEndpointGroupsCommandOutput extends ListDataflowEndpointGroupsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of <code>DataflowEndpoint</code> groups.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListDataflowEndpointGroupsCommandOutput extends ListDataflowEnd
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListDataflowEndpointGroupsCommandInput - {@link ListDataflowEndpointGroupsCommandInput}
34
+ * @returns {@link ListDataflowEndpointGroupsCommandOutput}
28
35
  * @see {@link ListDataflowEndpointGroupsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListDataflowEndpointGroupsCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListDataflowEndpointGroupsCommandOutput extends ListDataflowEnd
43
50
  export declare class ListDataflowEndpointGroupsCommand extends $Command<ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: ListDataflowEndpointGroupsCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListDataflowEndpointGroupsCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataflowEndpointGroupsCommandInput, ListDataflowEndpointGroupsCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { ListEphemeridesRequest, ListEphemeridesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListEphemeridesCommand}.
8
10
  */
9
11
  export interface ListEphemeridesCommandInput extends ListEphemeridesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListEphemeridesCommand}.
13
17
  */
14
18
  export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List existing ephemerides.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListEphemeridesCommandInput - {@link ListEphemeridesCommandInput}
34
+ * @returns {@link ListEphemeridesCommandOutput}
28
35
  * @see {@link ListEphemeridesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListEphemeridesCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, _
43
50
  export declare class ListEphemeridesCommand extends $Command<ListEphemeridesCommandInput, ListEphemeridesCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: ListEphemeridesCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListEphemeridesCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEphemeridesCommandInput, ListEphemeridesCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { ListGroundStationsRequest, ListGroundStationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListGroundStationsCommand}.
8
10
  */
9
11
  export interface ListGroundStationsCommandInput extends ListGroundStationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListGroundStationsCommand}.
13
17
  */
14
18
  export interface ListGroundStationsCommandOutput extends ListGroundStationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of ground stations. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListGroundStationsCommandOutput extends ListGroundStationsRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListGroundStationsCommandInput - {@link ListGroundStationsCommandInput}
34
+ * @returns {@link ListGroundStationsCommandOutput}
28
35
  * @see {@link ListGroundStationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListGroundStationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListGroundStationsCommandOutput extends ListGroundStationsRespo
43
50
  export declare class ListGroundStationsCommand extends $Command<ListGroundStationsCommandInput, ListGroundStationsCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: ListGroundStationsCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListGroundStationsCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGroundStationsCommandInput, ListGroundStationsCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { ListMissionProfilesRequest, ListMissionProfilesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListMissionProfilesCommand}.
8
10
  */
9
11
  export interface ListMissionProfilesCommandInput extends ListMissionProfilesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListMissionProfilesCommand}.
13
17
  */
14
18
  export interface ListMissionProfilesCommandOutput extends ListMissionProfilesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of mission profiles.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListMissionProfilesCommandOutput extends ListMissionProfilesRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListMissionProfilesCommandInput - {@link ListMissionProfilesCommandInput}
34
+ * @returns {@link ListMissionProfilesCommandOutput}
28
35
  * @see {@link ListMissionProfilesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListMissionProfilesCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListMissionProfilesCommandOutput extends ListMissionProfilesRes
43
50
  export declare class ListMissionProfilesCommand extends $Command<ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: ListMissionProfilesCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListMissionProfilesCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { ListSatellitesRequest, ListSatellitesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSatellitesCommand}.
8
10
  */
9
11
  export interface ListSatellitesCommandInput extends ListSatellitesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSatellitesCommand}.
13
17
  */
14
18
  export interface ListSatellitesCommandOutput extends ListSatellitesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of satellites.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListSatellitesCommandOutput extends ListSatellitesResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListSatellitesCommandInput - {@link ListSatellitesCommandInput}
34
+ * @returns {@link ListSatellitesCommandOutput}
28
35
  * @see {@link ListSatellitesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListSatellitesCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListSatellitesCommandOutput extends ListSatellitesResponse, __M
43
50
  export declare class ListSatellitesCommand extends $Command<ListSatellitesCommandInput, ListSatellitesCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: ListSatellitesCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListSatellitesCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSatellitesCommandInput, ListSatellitesCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of tags for a specified resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
43
50
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: ListTagsForResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListTagsForResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { RegisterAgentRequest, RegisterAgentResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RegisterAgentCommand}.
8
10
  */
9
11
  export interface RegisterAgentCommandInput extends RegisterAgentRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RegisterAgentCommand}.
13
17
  */
14
18
  export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Registers a new agent with AWS Groundstation.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param RegisterAgentCommandInput - {@link RegisterAgentCommandInput}
34
+ * @returns {@link RegisterAgentCommandOutput}
28
35
  * @see {@link RegisterAgentCommandInput} for command's `input` shape.
29
36
  * @see {@link RegisterAgentCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __Met
43
50
  export declare class RegisterAgentCommand extends $Command<RegisterAgentCommandInput, RegisterAgentCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: RegisterAgentCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: RegisterAgentCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterAgentCommandInput, RegisterAgentCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { ContactIdResponse, ReserveContactRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ReserveContactCommand}.
8
10
  */
9
11
  export interface ReserveContactCommandInput extends ReserveContactRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ReserveContactCommand}.
13
17
  */
14
18
  export interface ReserveContactCommandOutput extends ContactIdResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Reserves a contact using specified parameters.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ReserveContactCommandOutput extends ContactIdResponse, __Metada
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ReserveContactCommandInput - {@link ReserveContactCommandInput}
34
+ * @returns {@link ReserveContactCommandOutput}
28
35
  * @see {@link ReserveContactCommandInput} for command's `input` shape.
29
36
  * @see {@link ReserveContactCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ReserveContactCommandOutput extends ContactIdResponse, __Metada
43
50
  export declare class ReserveContactCommand extends $Command<ReserveContactCommandInput, ReserveContactCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: ReserveContactCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ReserveContactCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ReserveContactCommandInput, ReserveContactCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Assigns a tag to a resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
43
50
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: TagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: TagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deassigns a resource tag.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
43
50
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: UntagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UntagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { UpdateAgentStatusRequest, UpdateAgentStatusResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateAgentStatusCommand}.
8
10
  */
9
11
  export interface UpdateAgentStatusCommandInput extends UpdateAgentStatusRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateAgentStatusCommand}.
13
17
  */
14
18
  export interface UpdateAgentStatusCommandOutput extends UpdateAgentStatusResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update the status of the agent.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateAgentStatusCommandOutput extends UpdateAgentStatusRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateAgentStatusCommandInput - {@link UpdateAgentStatusCommandInput}
34
+ * @returns {@link UpdateAgentStatusCommandOutput}
28
35
  * @see {@link UpdateAgentStatusCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateAgentStatusCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UpdateAgentStatusCommandOutput extends UpdateAgentStatusRespons
43
50
  export declare class UpdateAgentStatusCommand extends $Command<UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: UpdateAgentStatusCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UpdateAgentStatusCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { ConfigIdResponse, UpdateConfigRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateConfigCommand}.
8
10
  */
9
11
  export interface UpdateConfigCommandInput extends UpdateConfigRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateConfigCommand}.
13
17
  */
14
18
  export interface UpdateConfigCommandOutput extends ConfigIdResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the <code>Config</code> used when scheduling contacts.</p>
18
23
  * <p>Updating a <code>Config</code> will not update the execution parameters
19
24
  * for existing future contacts scheduled with this <code>Config</code>.</p>
@@ -27,6 +32,8 @@ export interface UpdateConfigCommandOutput extends ConfigIdResponse, __MetadataB
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UpdateConfigCommandInput - {@link UpdateConfigCommandInput}
36
+ * @returns {@link UpdateConfigCommandOutput}
30
37
  * @see {@link UpdateConfigCommandInput} for command's `input` shape.
31
38
  * @see {@link UpdateConfigCommandOutput} for command's `response` shape.
32
39
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -45,11 +52,20 @@ export interface UpdateConfigCommandOutput extends ConfigIdResponse, __MetadataB
45
52
  export declare class UpdateConfigCommand extends $Command<UpdateConfigCommandInput, UpdateConfigCommandOutput, GroundStationClientResolvedConfig> {
46
53
  readonly input: UpdateConfigCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: UpdateConfigCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConfigCommandInput, UpdateConfigCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
5
5
  import { EphemerisIdResponse, UpdateEphemerisRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateEphemerisCommand}.
8
10
  */
9
11
  export interface UpdateEphemerisCommandInput extends UpdateEphemerisRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateEphemerisCommand}.
13
17
  */
14
18
  export interface UpdateEphemerisCommandOutput extends EphemerisIdResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing ephemeris</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateEphemerisCommandOutput extends EphemerisIdResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateEphemerisCommandInput - {@link UpdateEphemerisCommandInput}
34
+ * @returns {@link UpdateEphemerisCommandOutput}
28
35
  * @see {@link UpdateEphemerisCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateEphemerisCommandOutput} for command's `response` shape.
30
37
  * @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UpdateEphemerisCommandOutput extends EphemerisIdResponse, __Met
43
50
  export declare class UpdateEphemerisCommand extends $Command<UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput, GroundStationClientResolvedConfig> {
44
51
  readonly input: UpdateEphemerisCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UpdateEphemerisCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GroundStationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }