@aws-sdk/client-iotsecuretunneling 3.477.0 → 3.481.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 (41) hide show
  1. package/dist-cjs/commands/CloseTunnelCommand.js +18 -41
  2. package/dist-cjs/commands/DescribeTunnelCommand.js +18 -41
  3. package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
  4. package/dist-cjs/commands/ListTunnelsCommand.js +18 -41
  5. package/dist-cjs/commands/OpenTunnelCommand.js +18 -41
  6. package/dist-cjs/commands/RotateTunnelAccessTokenCommand.js +18 -41
  7. package/dist-cjs/commands/TagResourceCommand.js +18 -41
  8. package/dist-cjs/commands/UntagResourceCommand.js +18 -41
  9. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  10. package/dist-cjs/pagination/ListTunnelsPaginator.js +2 -24
  11. package/dist-es/commands/CloseTunnelCommand.js +18 -41
  12. package/dist-es/commands/DescribeTunnelCommand.js +18 -41
  13. package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
  14. package/dist-es/commands/ListTunnelsCommand.js +18 -41
  15. package/dist-es/commands/OpenTunnelCommand.js +18 -41
  16. package/dist-es/commands/RotateTunnelAccessTokenCommand.js +18 -41
  17. package/dist-es/commands/TagResourceCommand.js +18 -41
  18. package/dist-es/commands/UntagResourceCommand.js +18 -41
  19. package/dist-es/endpoint/EndpointParameters.js +6 -0
  20. package/dist-es/pagination/ListTunnelsPaginator.js +2 -23
  21. package/dist-types/commands/CloseTunnelCommand.d.ts +6 -21
  22. package/dist-types/commands/DescribeTunnelCommand.d.ts +6 -21
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
  24. package/dist-types/commands/ListTunnelsCommand.d.ts +6 -21
  25. package/dist-types/commands/OpenTunnelCommand.d.ts +6 -21
  26. package/dist-types/commands/RotateTunnelAccessTokenCommand.d.ts +6 -21
  27. package/dist-types/commands/TagResourceCommand.d.ts +6 -21
  28. package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
  29. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  30. package/dist-types/pagination/ListTunnelsPaginator.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/CloseTunnelCommand.d.ts +14 -23
  32. package/dist-types/ts3.4/commands/DescribeTunnelCommand.d.ts +14 -23
  33. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
  34. package/dist-types/ts3.4/commands/ListTunnelsCommand.d.ts +14 -23
  35. package/dist-types/ts3.4/commands/OpenTunnelCommand.d.ts +14 -23
  36. package/dist-types/ts3.4/commands/RotateTunnelAccessTokenCommand.d.ts +12 -24
  37. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
  38. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
  39. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  40. package/dist-types/ts3.4/pagination/ListTunnelsPaginator.d.ts +3 -3
  41. package/package.json +11 -10
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
4
  import { DescribeTunnelRequest, DescribeTunnelResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DescribeTunnelCommandInput extends DescribeTunnelRequest {
21
20
  */
22
21
  export interface DescribeTunnelCommandOutput extends DescribeTunnelResponse, __MetadataBearer {
23
22
  }
23
+ declare const DescribeTunnelCommand_base: {
24
+ new (input: DescribeTunnelCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeTunnelCommandInput, DescribeTunnelCommandOutput, IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Gets information about a tunnel identified by the unique tunnel id.</p>
@@ -85,23 +88,5 @@ export interface DescribeTunnelCommandOutput extends DescribeTunnelResponse, __M
85
88
  * <p>Base exception class for all service exceptions from IoTSecureTunneling service.</p>
86
89
  *
87
90
  */
88
- export declare class DescribeTunnelCommand extends $Command<DescribeTunnelCommandInput, DescribeTunnelCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
89
- readonly input: DescribeTunnelCommandInput;
90
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
- /**
92
- * @public
93
- */
94
- constructor(input: DescribeTunnelCommandInput);
95
- /**
96
- * @internal
97
- */
98
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTunnelCommandInput, DescribeTunnelCommandOutput>;
99
- /**
100
- * @internal
101
- */
102
- private serialize;
103
- /**
104
- * @internal
105
- */
106
- private deserialize;
91
+ export declare class DescribeTunnelCommand extends DescribeTunnelCommand_base {
107
92
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
4
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
21
20
  */
22
21
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListTagsForResourceCommand_base: {
24
+ new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists the tags for the specified resource.</p>
@@ -59,23 +62,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
59
62
  * <p>Base exception class for all service exceptions from IoTSecureTunneling service.</p>
60
63
  *
61
64
  */
62
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
63
- readonly input: ListTagsForResourceCommandInput;
64
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
- /**
66
- * @public
67
- */
68
- constructor(input: ListTagsForResourceCommandInput);
69
- /**
70
- * @internal
71
- */
72
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
73
- /**
74
- * @internal
75
- */
76
- private serialize;
77
- /**
78
- * @internal
79
- */
80
- private deserialize;
65
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
81
66
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
4
  import { ListTunnelsRequest, ListTunnelsResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTunnelsCommandInput extends ListTunnelsRequest {
21
20
  */
22
21
  export interface ListTunnelsCommandOutput extends ListTunnelsResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListTunnelsCommand_base: {
24
+ new (input: ListTunnelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTunnelsCommandInput, ListTunnelsCommandOutput, IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>List all tunnels for an Amazon Web Services account. Tunnels are listed by creation time in
@@ -65,23 +68,5 @@ export interface ListTunnelsCommandOutput extends ListTunnelsResponse, __Metadat
65
68
  * <p>Base exception class for all service exceptions from IoTSecureTunneling service.</p>
66
69
  *
67
70
  */
68
- export declare class ListTunnelsCommand extends $Command<ListTunnelsCommandInput, ListTunnelsCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
69
- readonly input: ListTunnelsCommandInput;
70
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
- /**
72
- * @public
73
- */
74
- constructor(input: ListTunnelsCommandInput);
75
- /**
76
- * @internal
77
- */
78
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTunnelsCommandInput, ListTunnelsCommandOutput>;
79
- /**
80
- * @internal
81
- */
82
- private serialize;
83
- /**
84
- * @internal
85
- */
86
- private deserialize;
71
+ export declare class ListTunnelsCommand extends ListTunnelsCommand_base {
87
72
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
4
  import { OpenTunnelRequest, OpenTunnelResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface OpenTunnelCommandInput extends OpenTunnelRequest {
21
20
  */
22
21
  export interface OpenTunnelCommandOutput extends OpenTunnelResponse, __MetadataBearer {
23
22
  }
23
+ declare const OpenTunnelCommand_base: {
24
+ new (input: OpenTunnelCommandInput): import("@smithy/smithy-client").CommandImpl<OpenTunnelCommandInput, OpenTunnelCommandOutput, IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Creates a new tunnel, and returns two client access tokens for clients to use to
@@ -74,23 +77,5 @@ export interface OpenTunnelCommandOutput extends OpenTunnelResponse, __MetadataB
74
77
  * <p>Base exception class for all service exceptions from IoTSecureTunneling service.</p>
75
78
  *
76
79
  */
77
- export declare class OpenTunnelCommand extends $Command<OpenTunnelCommandInput, OpenTunnelCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
78
- readonly input: OpenTunnelCommandInput;
79
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
- /**
81
- * @public
82
- */
83
- constructor(input: OpenTunnelCommandInput);
84
- /**
85
- * @internal
86
- */
87
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<OpenTunnelCommandInput, OpenTunnelCommandOutput>;
88
- /**
89
- * @internal
90
- */
91
- private serialize;
92
- /**
93
- * @internal
94
- */
95
- private deserialize;
80
+ export declare class OpenTunnelCommand extends OpenTunnelCommand_base {
96
81
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
4
  import { RotateTunnelAccessTokenRequest, RotateTunnelAccessTokenResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface RotateTunnelAccessTokenCommandInput extends RotateTunnelAccessT
21
20
  */
22
21
  export interface RotateTunnelAccessTokenCommandOutput extends RotateTunnelAccessTokenResponse, __MetadataBearer {
23
22
  }
23
+ declare const RotateTunnelAccessTokenCommand_base: {
24
+ new (input: RotateTunnelAccessTokenCommandInput): import("@smithy/smithy-client").CommandImpl<RotateTunnelAccessTokenCommandInput, RotateTunnelAccessTokenCommandOutput, IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Revokes the current client access token (CAT) and returns new CAT for clients to
@@ -71,23 +74,5 @@ export interface RotateTunnelAccessTokenCommandOutput extends RotateTunnelAccess
71
74
  * <p>Base exception class for all service exceptions from IoTSecureTunneling service.</p>
72
75
  *
73
76
  */
74
- export declare class RotateTunnelAccessTokenCommand extends $Command<RotateTunnelAccessTokenCommandInput, RotateTunnelAccessTokenCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
75
- readonly input: RotateTunnelAccessTokenCommandInput;
76
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
- /**
78
- * @public
79
- */
80
- constructor(input: RotateTunnelAccessTokenCommandInput);
81
- /**
82
- * @internal
83
- */
84
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RotateTunnelAccessTokenCommandInput, RotateTunnelAccessTokenCommandOutput>;
85
- /**
86
- * @internal
87
- */
88
- private serialize;
89
- /**
90
- * @internal
91
- */
92
- private deserialize;
77
+ export declare class RotateTunnelAccessTokenCommand extends RotateTunnelAccessTokenCommand_base {
93
78
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
4
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
21
20
  */
22
21
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const TagResourceCommand_base: {
24
+ new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>A resource tag.</p>
@@ -58,23 +61,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
58
61
  * <p>Base exception class for all service exceptions from IoTSecureTunneling service.</p>
59
62
  *
60
63
  */
61
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
62
- readonly input: TagResourceCommandInput;
63
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
- /**
65
- * @public
66
- */
67
- constructor(input: TagResourceCommandInput);
68
- /**
69
- * @internal
70
- */
71
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
72
- /**
73
- * @internal
74
- */
75
- private serialize;
76
- /**
77
- * @internal
78
- */
79
- private deserialize;
64
+ export declare class TagResourceCommand extends TagResourceCommand_base {
80
65
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
5
4
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
21
20
  */
22
21
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const UntagResourceCommand_base: {
24
+ new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Removes a tag from a resource.</p>
@@ -55,23 +58,5 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
55
58
  * <p>Base exception class for all service exceptions from IoTSecureTunneling service.</p>
56
59
  *
57
60
  */
58
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
59
- readonly input: UntagResourceCommandInput;
60
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
- /**
62
- * @public
63
- */
64
- constructor(input: UntagResourceCommandInput);
65
- /**
66
- * @internal
67
- */
68
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
69
- /**
70
- * @internal
71
- */
72
- private serialize;
73
- /**
74
- * @internal
75
- */
76
- private deserialize;
61
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
77
62
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -4,4 +4,4 @@ import { IoTSecureTunnelingPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListTunnels(config: IoTSecureTunnelingPaginationConfiguration, input: ListTunnelsCommandInput, ...additionalArguments: any): Paginator<ListTunnelsCommandOutput>;
7
+ export declare const paginateListTunnels: (config: IoTSecureTunnelingPaginationConfiguration, input: ListTunnelsCommandInput, ...rest: any[]) => Paginator<ListTunnelsCommandOutput>;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  IoTSecureTunnelingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface CloseTunnelCommandInput extends CloseTunnelRequest {}
17
11
  export interface CloseTunnelCommandOutput
18
12
  extends CloseTunnelResponse,
19
13
  __MetadataBearer {}
20
- export declare class CloseTunnelCommand extends $Command<
21
- CloseTunnelCommandInput,
22
- CloseTunnelCommandOutput,
23
- IoTSecureTunnelingClientResolvedConfig
24
- > {
25
- readonly input: CloseTunnelCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: CloseTunnelCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: IoTSecureTunnelingClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<CloseTunnelCommandInput, CloseTunnelCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const CloseTunnelCommand_base: {
15
+ new (
16
+ input: CloseTunnelCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CloseTunnelCommandInput,
19
+ CloseTunnelCommandOutput,
20
+ IoTSecureTunnelingClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class CloseTunnelCommand extends CloseTunnelCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  IoTSecureTunnelingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -20,19 +14,16 @@ export interface DescribeTunnelCommandInput extends DescribeTunnelRequest {}
20
14
  export interface DescribeTunnelCommandOutput
21
15
  extends DescribeTunnelResponse,
22
16
  __MetadataBearer {}
23
- export declare class DescribeTunnelCommand extends $Command<
24
- DescribeTunnelCommandInput,
25
- DescribeTunnelCommandOutput,
26
- IoTSecureTunnelingClientResolvedConfig
27
- > {
28
- readonly input: DescribeTunnelCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: DescribeTunnelCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: IoTSecureTunnelingClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<DescribeTunnelCommandInput, DescribeTunnelCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const DescribeTunnelCommand_base: {
18
+ new (
19
+ input: DescribeTunnelCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ DescribeTunnelCommandInput,
22
+ DescribeTunnelCommandOutput,
23
+ IoTSecureTunnelingClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class DescribeTunnelCommand extends DescribeTunnelCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  IoTSecureTunnelingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,19 +15,16 @@ export interface ListTagsForResourceCommandInput
21
15
  export interface ListTagsForResourceCommandOutput
22
16
  extends ListTagsForResourceResponse,
23
17
  __MetadataBearer {}
24
- export declare class ListTagsForResourceCommand extends $Command<
25
- ListTagsForResourceCommandInput,
26
- ListTagsForResourceCommandOutput,
27
- IoTSecureTunnelingClientResolvedConfig
28
- > {
29
- readonly input: ListTagsForResourceCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListTagsForResourceCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: IoTSecureTunnelingClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ IoTSecureTunnelingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  IoTSecureTunnelingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface ListTunnelsCommandInput extends ListTunnelsRequest {}
17
11
  export interface ListTunnelsCommandOutput
18
12
  extends ListTunnelsResponse,
19
13
  __MetadataBearer {}
20
- export declare class ListTunnelsCommand extends $Command<
21
- ListTunnelsCommandInput,
22
- ListTunnelsCommandOutput,
23
- IoTSecureTunnelingClientResolvedConfig
24
- > {
25
- readonly input: ListTunnelsCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: ListTunnelsCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: IoTSecureTunnelingClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<ListTunnelsCommandInput, ListTunnelsCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const ListTunnelsCommand_base: {
15
+ new (
16
+ input: ListTunnelsCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListTunnelsCommandInput,
19
+ ListTunnelsCommandOutput,
20
+ IoTSecureTunnelingClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListTunnelsCommand extends ListTunnelsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  IoTSecureTunnelingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface OpenTunnelCommandInput extends OpenTunnelRequest {}
17
11
  export interface OpenTunnelCommandOutput
18
12
  extends OpenTunnelResponse,
19
13
  __MetadataBearer {}
20
- export declare class OpenTunnelCommand extends $Command<
21
- OpenTunnelCommandInput,
22
- OpenTunnelCommandOutput,
23
- IoTSecureTunnelingClientResolvedConfig
24
- > {
25
- readonly input: OpenTunnelCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: OpenTunnelCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: IoTSecureTunnelingClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<OpenTunnelCommandInput, OpenTunnelCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const OpenTunnelCommand_base: {
15
+ new (
16
+ input: OpenTunnelCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ OpenTunnelCommandInput,
19
+ OpenTunnelCommandOutput,
20
+ IoTSecureTunnelingClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class OpenTunnelCommand extends OpenTunnelCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  IoTSecureTunnelingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface RotateTunnelAccessTokenCommandInput
21
15
  export interface RotateTunnelAccessTokenCommandOutput
22
16
  extends RotateTunnelAccessTokenResponse,
23
17
  __MetadataBearer {}
24
- export declare class RotateTunnelAccessTokenCommand extends $Command<
25
- RotateTunnelAccessTokenCommandInput,
26
- RotateTunnelAccessTokenCommandOutput,
27
- IoTSecureTunnelingClientResolvedConfig
28
- > {
29
- readonly input: RotateTunnelAccessTokenCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: RotateTunnelAccessTokenCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: IoTSecureTunnelingClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const RotateTunnelAccessTokenCommand_base: {
19
+ new (
20
+ input: RotateTunnelAccessTokenCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  RotateTunnelAccessTokenCommandInput,
38
- RotateTunnelAccessTokenCommandOutput
23
+ RotateTunnelAccessTokenCommandOutput,
24
+ IoTSecureTunnelingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class RotateTunnelAccessTokenCommand extends RotateTunnelAccessTokenCommand_base {}