@aws-sdk/client-iotsecuretunneling 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/IoTSecureTunneling.d.ts +140 -45
- package/dist-types/ts3.4/IoTSecureTunnelingClient.d.ts +153 -81
- package/dist-types/ts3.4/commands/CloseTunnelCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeTunnelCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTunnelsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/OpenTunnelCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RotateTunnelAccessTokenCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +8 -8
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IoTSecureTunnelingServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +185 -229
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListTunnelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +101 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-iotsecuretunneling
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-iotsecuretunneling
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-iotsecuretunneling
|
|
@@ -1,45 +1,140 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CloseTunnelCommandInput,
|
|
4
|
+
CloseTunnelCommandOutput,
|
|
5
|
+
} from "./commands/CloseTunnelCommand";
|
|
6
|
+
import {
|
|
7
|
+
DescribeTunnelCommandInput,
|
|
8
|
+
DescribeTunnelCommandOutput,
|
|
9
|
+
} from "./commands/DescribeTunnelCommand";
|
|
10
|
+
import {
|
|
11
|
+
ListTagsForResourceCommandInput,
|
|
12
|
+
ListTagsForResourceCommandOutput,
|
|
13
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
14
|
+
import {
|
|
15
|
+
ListTunnelsCommandInput,
|
|
16
|
+
ListTunnelsCommandOutput,
|
|
17
|
+
} from "./commands/ListTunnelsCommand";
|
|
18
|
+
import {
|
|
19
|
+
OpenTunnelCommandInput,
|
|
20
|
+
OpenTunnelCommandOutput,
|
|
21
|
+
} from "./commands/OpenTunnelCommand";
|
|
22
|
+
import {
|
|
23
|
+
RotateTunnelAccessTokenCommandInput,
|
|
24
|
+
RotateTunnelAccessTokenCommandOutput,
|
|
25
|
+
} from "./commands/RotateTunnelAccessTokenCommand";
|
|
26
|
+
import {
|
|
27
|
+
TagResourceCommandInput,
|
|
28
|
+
TagResourceCommandOutput,
|
|
29
|
+
} from "./commands/TagResourceCommand";
|
|
30
|
+
import {
|
|
31
|
+
UntagResourceCommandInput,
|
|
32
|
+
UntagResourceCommandOutput,
|
|
33
|
+
} from "./commands/UntagResourceCommand";
|
|
34
|
+
import { IoTSecureTunnelingClient } from "./IoTSecureTunnelingClient";
|
|
35
|
+
export declare class IoTSecureTunneling extends IoTSecureTunnelingClient {
|
|
36
|
+
closeTunnel(
|
|
37
|
+
args: CloseTunnelCommandInput,
|
|
38
|
+
options?: __HttpHandlerOptions
|
|
39
|
+
): Promise<CloseTunnelCommandOutput>;
|
|
40
|
+
closeTunnel(
|
|
41
|
+
args: CloseTunnelCommandInput,
|
|
42
|
+
cb: (err: any, data?: CloseTunnelCommandOutput) => void
|
|
43
|
+
): void;
|
|
44
|
+
closeTunnel(
|
|
45
|
+
args: CloseTunnelCommandInput,
|
|
46
|
+
options: __HttpHandlerOptions,
|
|
47
|
+
cb: (err: any, data?: CloseTunnelCommandOutput) => void
|
|
48
|
+
): void;
|
|
49
|
+
describeTunnel(
|
|
50
|
+
args: DescribeTunnelCommandInput,
|
|
51
|
+
options?: __HttpHandlerOptions
|
|
52
|
+
): Promise<DescribeTunnelCommandOutput>;
|
|
53
|
+
describeTunnel(
|
|
54
|
+
args: DescribeTunnelCommandInput,
|
|
55
|
+
cb: (err: any, data?: DescribeTunnelCommandOutput) => void
|
|
56
|
+
): void;
|
|
57
|
+
describeTunnel(
|
|
58
|
+
args: DescribeTunnelCommandInput,
|
|
59
|
+
options: __HttpHandlerOptions,
|
|
60
|
+
cb: (err: any, data?: DescribeTunnelCommandOutput) => void
|
|
61
|
+
): void;
|
|
62
|
+
listTagsForResource(
|
|
63
|
+
args: ListTagsForResourceCommandInput,
|
|
64
|
+
options?: __HttpHandlerOptions
|
|
65
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
66
|
+
listTagsForResource(
|
|
67
|
+
args: ListTagsForResourceCommandInput,
|
|
68
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
69
|
+
): void;
|
|
70
|
+
listTagsForResource(
|
|
71
|
+
args: ListTagsForResourceCommandInput,
|
|
72
|
+
options: __HttpHandlerOptions,
|
|
73
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
74
|
+
): void;
|
|
75
|
+
listTunnels(
|
|
76
|
+
args: ListTunnelsCommandInput,
|
|
77
|
+
options?: __HttpHandlerOptions
|
|
78
|
+
): Promise<ListTunnelsCommandOutput>;
|
|
79
|
+
listTunnels(
|
|
80
|
+
args: ListTunnelsCommandInput,
|
|
81
|
+
cb: (err: any, data?: ListTunnelsCommandOutput) => void
|
|
82
|
+
): void;
|
|
83
|
+
listTunnels(
|
|
84
|
+
args: ListTunnelsCommandInput,
|
|
85
|
+
options: __HttpHandlerOptions,
|
|
86
|
+
cb: (err: any, data?: ListTunnelsCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
openTunnel(
|
|
89
|
+
args: OpenTunnelCommandInput,
|
|
90
|
+
options?: __HttpHandlerOptions
|
|
91
|
+
): Promise<OpenTunnelCommandOutput>;
|
|
92
|
+
openTunnel(
|
|
93
|
+
args: OpenTunnelCommandInput,
|
|
94
|
+
cb: (err: any, data?: OpenTunnelCommandOutput) => void
|
|
95
|
+
): void;
|
|
96
|
+
openTunnel(
|
|
97
|
+
args: OpenTunnelCommandInput,
|
|
98
|
+
options: __HttpHandlerOptions,
|
|
99
|
+
cb: (err: any, data?: OpenTunnelCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
rotateTunnelAccessToken(
|
|
102
|
+
args: RotateTunnelAccessTokenCommandInput,
|
|
103
|
+
options?: __HttpHandlerOptions
|
|
104
|
+
): Promise<RotateTunnelAccessTokenCommandOutput>;
|
|
105
|
+
rotateTunnelAccessToken(
|
|
106
|
+
args: RotateTunnelAccessTokenCommandInput,
|
|
107
|
+
cb: (err: any, data?: RotateTunnelAccessTokenCommandOutput) => void
|
|
108
|
+
): void;
|
|
109
|
+
rotateTunnelAccessToken(
|
|
110
|
+
args: RotateTunnelAccessTokenCommandInput,
|
|
111
|
+
options: __HttpHandlerOptions,
|
|
112
|
+
cb: (err: any, data?: RotateTunnelAccessTokenCommandOutput) => void
|
|
113
|
+
): void;
|
|
114
|
+
tagResource(
|
|
115
|
+
args: TagResourceCommandInput,
|
|
116
|
+
options?: __HttpHandlerOptions
|
|
117
|
+
): Promise<TagResourceCommandOutput>;
|
|
118
|
+
tagResource(
|
|
119
|
+
args: TagResourceCommandInput,
|
|
120
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
121
|
+
): void;
|
|
122
|
+
tagResource(
|
|
123
|
+
args: TagResourceCommandInput,
|
|
124
|
+
options: __HttpHandlerOptions,
|
|
125
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
126
|
+
): void;
|
|
127
|
+
untagResource(
|
|
128
|
+
args: UntagResourceCommandInput,
|
|
129
|
+
options?: __HttpHandlerOptions
|
|
130
|
+
): Promise<UntagResourceCommandOutput>;
|
|
131
|
+
untagResource(
|
|
132
|
+
args: UntagResourceCommandInput,
|
|
133
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
134
|
+
): void;
|
|
135
|
+
untagResource(
|
|
136
|
+
args: UntagResourceCommandInput,
|
|
137
|
+
options: __HttpHandlerOptions,
|
|
138
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
139
|
+
): void;
|
|
140
|
+
}
|
|
@@ -1,81 +1,153 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CloseTunnelCommandInput,
|
|
47
|
+
CloseTunnelCommandOutput,
|
|
48
|
+
} from "./commands/CloseTunnelCommand";
|
|
49
|
+
import {
|
|
50
|
+
DescribeTunnelCommandInput,
|
|
51
|
+
DescribeTunnelCommandOutput,
|
|
52
|
+
} from "./commands/DescribeTunnelCommand";
|
|
53
|
+
import {
|
|
54
|
+
ListTagsForResourceCommandInput,
|
|
55
|
+
ListTagsForResourceCommandOutput,
|
|
56
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
57
|
+
import {
|
|
58
|
+
ListTunnelsCommandInput,
|
|
59
|
+
ListTunnelsCommandOutput,
|
|
60
|
+
} from "./commands/ListTunnelsCommand";
|
|
61
|
+
import {
|
|
62
|
+
OpenTunnelCommandInput,
|
|
63
|
+
OpenTunnelCommandOutput,
|
|
64
|
+
} from "./commands/OpenTunnelCommand";
|
|
65
|
+
import {
|
|
66
|
+
RotateTunnelAccessTokenCommandInput,
|
|
67
|
+
RotateTunnelAccessTokenCommandOutput,
|
|
68
|
+
} from "./commands/RotateTunnelAccessTokenCommand";
|
|
69
|
+
import {
|
|
70
|
+
TagResourceCommandInput,
|
|
71
|
+
TagResourceCommandOutput,
|
|
72
|
+
} from "./commands/TagResourceCommand";
|
|
73
|
+
import {
|
|
74
|
+
UntagResourceCommandInput,
|
|
75
|
+
UntagResourceCommandOutput,
|
|
76
|
+
} from "./commands/UntagResourceCommand";
|
|
77
|
+
export declare type ServiceInputTypes =
|
|
78
|
+
| CloseTunnelCommandInput
|
|
79
|
+
| DescribeTunnelCommandInput
|
|
80
|
+
| ListTagsForResourceCommandInput
|
|
81
|
+
| ListTunnelsCommandInput
|
|
82
|
+
| OpenTunnelCommandInput
|
|
83
|
+
| RotateTunnelAccessTokenCommandInput
|
|
84
|
+
| TagResourceCommandInput
|
|
85
|
+
| UntagResourceCommandInput;
|
|
86
|
+
export declare type ServiceOutputTypes =
|
|
87
|
+
| CloseTunnelCommandOutput
|
|
88
|
+
| DescribeTunnelCommandOutput
|
|
89
|
+
| ListTagsForResourceCommandOutput
|
|
90
|
+
| ListTunnelsCommandOutput
|
|
91
|
+
| OpenTunnelCommandOutput
|
|
92
|
+
| RotateTunnelAccessTokenCommandOutput
|
|
93
|
+
| TagResourceCommandOutput
|
|
94
|
+
| UntagResourceCommandOutput;
|
|
95
|
+
export interface ClientDefaults
|
|
96
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
97
|
+
requestHandler?: __HttpHandler;
|
|
98
|
+
sha256?: __HashConstructor;
|
|
99
|
+
urlParser?: __UrlParser;
|
|
100
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
101
|
+
streamCollector?: __StreamCollector;
|
|
102
|
+
base64Decoder?: __Decoder;
|
|
103
|
+
base64Encoder?: __Encoder;
|
|
104
|
+
utf8Decoder?: __Decoder;
|
|
105
|
+
utf8Encoder?: __Encoder;
|
|
106
|
+
runtime?: string;
|
|
107
|
+
disableHostPrefix?: boolean;
|
|
108
|
+
maxAttempts?: number | __Provider<number>;
|
|
109
|
+
retryMode?: string | __Provider<string>;
|
|
110
|
+
logger?: __Logger;
|
|
111
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
112
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
113
|
+
serviceId?: string;
|
|
114
|
+
region?: string | __Provider<string>;
|
|
115
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
116
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
117
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
118
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
119
|
+
}
|
|
120
|
+
declare type IoTSecureTunnelingClientConfigType = Partial<
|
|
121
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
122
|
+
> &
|
|
123
|
+
ClientDefaults &
|
|
124
|
+
RegionInputConfig &
|
|
125
|
+
EndpointsInputConfig &
|
|
126
|
+
RetryInputConfig &
|
|
127
|
+
HostHeaderInputConfig &
|
|
128
|
+
AwsAuthInputConfig &
|
|
129
|
+
UserAgentInputConfig;
|
|
130
|
+
export interface IoTSecureTunnelingClientConfig
|
|
131
|
+
extends IoTSecureTunnelingClientConfigType {}
|
|
132
|
+
declare type IoTSecureTunnelingClientResolvedConfigType =
|
|
133
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
134
|
+
Required<ClientDefaults> &
|
|
135
|
+
RegionResolvedConfig &
|
|
136
|
+
EndpointsResolvedConfig &
|
|
137
|
+
RetryResolvedConfig &
|
|
138
|
+
HostHeaderResolvedConfig &
|
|
139
|
+
AwsAuthResolvedConfig &
|
|
140
|
+
UserAgentResolvedConfig;
|
|
141
|
+
export interface IoTSecureTunnelingClientResolvedConfig
|
|
142
|
+
extends IoTSecureTunnelingClientResolvedConfigType {}
|
|
143
|
+
export declare class IoTSecureTunnelingClient extends __Client<
|
|
144
|
+
__HttpHandlerOptions,
|
|
145
|
+
ServiceInputTypes,
|
|
146
|
+
ServiceOutputTypes,
|
|
147
|
+
IoTSecureTunnelingClientResolvedConfig
|
|
148
|
+
> {
|
|
149
|
+
readonly config: IoTSecureTunnelingClientResolvedConfig;
|
|
150
|
+
constructor(configuration: IoTSecureTunnelingClientConfig);
|
|
151
|
+
destroy(): void;
|
|
152
|
+
}
|
|
153
|
+
export {};
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTSecureTunnelingClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTSecureTunnelingClient";
|
|
13
|
+
import { CloseTunnelRequest, CloseTunnelResponse } from "../models/models_0";
|
|
14
|
+
export interface CloseTunnelCommandInput extends CloseTunnelRequest {}
|
|
15
|
+
export interface CloseTunnelCommandOutput
|
|
16
|
+
extends CloseTunnelResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class CloseTunnelCommand extends $Command<
|
|
19
|
+
CloseTunnelCommandInput,
|
|
20
|
+
CloseTunnelCommandOutput,
|
|
21
|
+
IoTSecureTunnelingClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: CloseTunnelCommandInput;
|
|
24
|
+
constructor(input: CloseTunnelCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IoTSecureTunnelingClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<CloseTunnelCommandInput, CloseTunnelCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTSecureTunnelingClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTSecureTunnelingClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeTunnelRequest,
|
|
15
|
+
DescribeTunnelResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeTunnelCommandInput extends DescribeTunnelRequest {}
|
|
18
|
+
export interface DescribeTunnelCommandOutput
|
|
19
|
+
extends DescribeTunnelResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeTunnelCommand extends $Command<
|
|
22
|
+
DescribeTunnelCommandInput,
|
|
23
|
+
DescribeTunnelCommandOutput,
|
|
24
|
+
IoTSecureTunnelingClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeTunnelCommandInput;
|
|
27
|
+
constructor(input: DescribeTunnelCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: IoTSecureTunnelingClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeTunnelCommandInput, DescribeTunnelCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTSecureTunnelingClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTSecureTunnelingClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
IoTSecureTunnelingClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IoTSecureTunnelingClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|