@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.
Files changed (26) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/IoTSecureTunneling.d.ts +140 -45
  3. package/dist-types/ts3.4/IoTSecureTunnelingClient.d.ts +153 -81
  4. package/dist-types/ts3.4/commands/CloseTunnelCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/DescribeTunnelCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/ListTunnelsCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/OpenTunnelCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/RotateTunnelAccessTokenCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/index.d.ts +8 -8
  13. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  14. package/dist-types/ts3.4/index.d.ts +6 -6
  15. package/dist-types/ts3.4/models/IoTSecureTunnelingServiceException.d.ts +7 -6
  16. package/dist-types/ts3.4/models/index.d.ts +1 -1
  17. package/dist-types/ts3.4/models/models_0.d.ts +185 -229
  18. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  19. package/dist-types/ts3.4/pagination/ListTunnelsPaginator.d.ts +11 -4
  20. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  21. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +101 -26
  22. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  23. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  24. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  25. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  26. package/package.json +34 -34
@@ -1,17 +1,32 @@
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 { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
4
- import { ListTunnelsRequest, ListTunnelsResponse } from "../models/models_0";
5
- export interface ListTunnelsCommandInput extends ListTunnelsRequest {
6
- }
7
- export interface ListTunnelsCommandOutput extends ListTunnelsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTunnelsCommand extends $Command<ListTunnelsCommandInput, ListTunnelsCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
11
- readonly input: ListTunnelsCommandInput;
12
- constructor(input: ListTunnelsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTunnelsCommandInput, ListTunnelsCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { ListTunnelsRequest, ListTunnelsResponse } from "../models/models_0";
14
+ export interface ListTunnelsCommandInput extends ListTunnelsRequest {}
15
+ export interface ListTunnelsCommandOutput
16
+ extends ListTunnelsResponse,
17
+ __MetadataBearer {}
18
+ export declare class ListTunnelsCommand extends $Command<
19
+ ListTunnelsCommandInput,
20
+ ListTunnelsCommandOutput,
21
+ IoTSecureTunnelingClientResolvedConfig
22
+ > {
23
+ readonly input: ListTunnelsCommandInput;
24
+ constructor(input: ListTunnelsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: IoTSecureTunnelingClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListTunnelsCommandInput, ListTunnelsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
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 { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
4
- import { OpenTunnelRequest, OpenTunnelResponse } from "../models/models_0";
5
- export interface OpenTunnelCommandInput extends OpenTunnelRequest {
6
- }
7
- export interface OpenTunnelCommandOutput extends OpenTunnelResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class OpenTunnelCommand extends $Command<OpenTunnelCommandInput, OpenTunnelCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
11
- readonly input: OpenTunnelCommandInput;
12
- constructor(input: OpenTunnelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<OpenTunnelCommandInput, OpenTunnelCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { OpenTunnelRequest, OpenTunnelResponse } from "../models/models_0";
14
+ export interface OpenTunnelCommandInput extends OpenTunnelRequest {}
15
+ export interface OpenTunnelCommandOutput
16
+ extends OpenTunnelResponse,
17
+ __MetadataBearer {}
18
+ export declare class OpenTunnelCommand extends $Command<
19
+ OpenTunnelCommandInput,
20
+ OpenTunnelCommandOutput,
21
+ IoTSecureTunnelingClientResolvedConfig
22
+ > {
23
+ readonly input: OpenTunnelCommandInput;
24
+ constructor(input: OpenTunnelCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: IoTSecureTunnelingClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<OpenTunnelCommandInput, OpenTunnelCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
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 { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
4
- import { RotateTunnelAccessTokenRequest, RotateTunnelAccessTokenResponse } from "../models/models_0";
5
- export interface RotateTunnelAccessTokenCommandInput extends RotateTunnelAccessTokenRequest {
6
- }
7
- export interface RotateTunnelAccessTokenCommandOutput extends RotateTunnelAccessTokenResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RotateTunnelAccessTokenCommand extends $Command<RotateTunnelAccessTokenCommandInput, RotateTunnelAccessTokenCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
11
- readonly input: RotateTunnelAccessTokenCommandInput;
12
- constructor(input: RotateTunnelAccessTokenCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RotateTunnelAccessTokenCommandInput, RotateTunnelAccessTokenCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ RotateTunnelAccessTokenRequest,
15
+ RotateTunnelAccessTokenResponse,
16
+ } from "../models/models_0";
17
+ export interface RotateTunnelAccessTokenCommandInput
18
+ extends RotateTunnelAccessTokenRequest {}
19
+ export interface RotateTunnelAccessTokenCommandOutput
20
+ extends RotateTunnelAccessTokenResponse,
21
+ __MetadataBearer {}
22
+ export declare class RotateTunnelAccessTokenCommand extends $Command<
23
+ RotateTunnelAccessTokenCommandInput,
24
+ RotateTunnelAccessTokenCommandOutput,
25
+ IoTSecureTunnelingClientResolvedConfig
26
+ > {
27
+ readonly input: RotateTunnelAccessTokenCommandInput;
28
+ constructor(input: RotateTunnelAccessTokenCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: IoTSecureTunnelingClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ RotateTunnelAccessTokenCommandInput,
35
+ RotateTunnelAccessTokenCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
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 { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ IoTSecureTunnelingClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: IoTSecureTunnelingClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSecureTunnelingClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTSecureTunnelingClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSecureTunnelingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ IoTSecureTunnelingClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: IoTSecureTunnelingClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,8 +1,8 @@
1
- export * from "./CloseTunnelCommand";
2
- export * from "./DescribeTunnelCommand";
3
- export * from "./ListTagsForResourceCommand";
4
- export * from "./ListTunnelsCommand";
5
- export * from "./OpenTunnelCommand";
6
- export * from "./RotateTunnelAccessTokenCommand";
7
- export * from "./TagResourceCommand";
8
- export * from "./UntagResourceCommand";
1
+ export * from "./CloseTunnelCommand";
2
+ export * from "./DescribeTunnelCommand";
3
+ export * from "./ListTagsForResourceCommand";
4
+ export * from "./ListTunnelsCommand";
5
+ export * from "./OpenTunnelCommand";
6
+ export * from "./RotateTunnelAccessTokenCommand";
7
+ export * from "./TagResourceCommand";
8
+ export * from "./UntagResourceCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./IoTSecureTunneling";
2
- export * from "./IoTSecureTunnelingClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { IoTSecureTunnelingServiceException } from "./models/IoTSecureTunnelingServiceException";
1
+ export * from "./IoTSecureTunneling";
2
+ export * from "./IoTSecureTunnelingClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { IoTSecureTunnelingServiceException } from "./models/IoTSecureTunnelingServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class IoTSecureTunnelingServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class IoTSecureTunnelingServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";