@aws-sdk/client-iotsecuretunneling 3.300.0 → 3.301.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/dist-types/commands/CloseTunnelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTunnelCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTunnelsCommand.d.ts +1 -1
- package/dist-types/commands/OpenTunnelCommand.d.ts +6 -6
- package/dist-types/commands/RotateTunnelAccessTokenCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -29,7 +29,7 @@ export interface CloseTunnelCommandOutput extends CloseTunnelResponse, __Metadat
|
|
|
29
29
|
* import { IoTSecureTunnelingClient, CloseTunnelCommand } from "@aws-sdk/client-iotsecuretunneling"; // ES Modules import
|
|
30
30
|
* // const { IoTSecureTunnelingClient, CloseTunnelCommand } = require("@aws-sdk/client-iotsecuretunneling"); // CommonJS import
|
|
31
31
|
* const client = new IoTSecureTunnelingClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CloseTunnelRequest
|
|
33
33
|
* tunnelId: "STRING_VALUE", // required
|
|
34
34
|
* delete: true || false,
|
|
35
35
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DescribeTunnelCommandOutput extends DescribeTunnelResponse, __M
|
|
|
27
27
|
* import { IoTSecureTunnelingClient, DescribeTunnelCommand } from "@aws-sdk/client-iotsecuretunneling"; // ES Modules import
|
|
28
28
|
* // const { IoTSecureTunnelingClient, DescribeTunnelCommand } = require("@aws-sdk/client-iotsecuretunneling"); // CommonJS import
|
|
29
29
|
* const client = new IoTSecureTunnelingClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeTunnelRequest
|
|
31
31
|
* tunnelId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeTunnelCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { IoTSecureTunnelingClient, ListTagsForResourceCommand } from "@aws-sdk/client-iotsecuretunneling"; // ES Modules import
|
|
27
27
|
* // const { IoTSecureTunnelingClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iotsecuretunneling"); // CommonJS import
|
|
28
28
|
* const client = new IoTSecureTunnelingClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface ListTunnelsCommandOutput extends ListTunnelsResponse, __Metadat
|
|
|
28
28
|
* import { IoTSecureTunnelingClient, ListTunnelsCommand } from "@aws-sdk/client-iotsecuretunneling"; // ES Modules import
|
|
29
29
|
* // const { IoTSecureTunnelingClient, ListTunnelsCommand } = require("@aws-sdk/client-iotsecuretunneling"); // CommonJS import
|
|
30
30
|
* const client = new IoTSecureTunnelingClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListTunnelsRequest
|
|
32
32
|
* thingName: "STRING_VALUE",
|
|
33
33
|
* maxResults: Number("int"),
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
@@ -28,21 +28,21 @@ export interface OpenTunnelCommandOutput extends OpenTunnelResponse, __MetadataB
|
|
|
28
28
|
* import { IoTSecureTunnelingClient, OpenTunnelCommand } from "@aws-sdk/client-iotsecuretunneling"; // ES Modules import
|
|
29
29
|
* // const { IoTSecureTunnelingClient, OpenTunnelCommand } = require("@aws-sdk/client-iotsecuretunneling"); // CommonJS import
|
|
30
30
|
* const client = new IoTSecureTunnelingClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // OpenTunnelRequest
|
|
32
32
|
* description: "STRING_VALUE",
|
|
33
|
-
* tags: [
|
|
34
|
-
* {
|
|
33
|
+
* tags: [ // TagList
|
|
34
|
+
* { // Tag
|
|
35
35
|
* key: "STRING_VALUE", // required
|
|
36
36
|
* value: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
38
38
|
* ],
|
|
39
|
-
* destinationConfig: {
|
|
39
|
+
* destinationConfig: { // DestinationConfig
|
|
40
40
|
* thingName: "STRING_VALUE",
|
|
41
|
-
* services: [ // required
|
|
41
|
+
* services: [ // ServiceList // required
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
45
|
-
* timeoutConfig: {
|
|
45
|
+
* timeoutConfig: { // TimeoutConfig
|
|
46
46
|
* maxLifetimeTimeoutMinutes: Number("int"),
|
|
47
47
|
* },
|
|
48
48
|
* };
|
|
@@ -34,12 +34,12 @@ export interface RotateTunnelAccessTokenCommandOutput extends RotateTunnelAccess
|
|
|
34
34
|
* import { IoTSecureTunnelingClient, RotateTunnelAccessTokenCommand } from "@aws-sdk/client-iotsecuretunneling"; // ES Modules import
|
|
35
35
|
* // const { IoTSecureTunnelingClient, RotateTunnelAccessTokenCommand } = require("@aws-sdk/client-iotsecuretunneling"); // CommonJS import
|
|
36
36
|
* const client = new IoTSecureTunnelingClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // RotateTunnelAccessTokenRequest
|
|
38
38
|
* tunnelId: "STRING_VALUE", // required
|
|
39
39
|
* clientMode: "STRING_VALUE", // required
|
|
40
|
-
* destinationConfig: {
|
|
40
|
+
* destinationConfig: { // DestinationConfig
|
|
41
41
|
* thingName: "STRING_VALUE",
|
|
42
|
-
* services: [ // required
|
|
42
|
+
* services: [ // ServiceList // required
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
45
|
* },
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { IoTSecureTunnelingClient, TagResourceCommand } from "@aws-sdk/client-iotsecuretunneling"; // ES Modules import
|
|
27
27
|
* // const { IoTSecureTunnelingClient, TagResourceCommand } = require("@aws-sdk/client-iotsecuretunneling"); // CommonJS import
|
|
28
28
|
* const client = new IoTSecureTunnelingClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* tags: [ // TagList // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* key: "STRING_VALUE", // required
|
|
34
34
|
* value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { IoTSecureTunnelingClient, UntagResourceCommand } from "@aws-sdk/client-iotsecuretunneling"; // ES Modules import
|
|
27
27
|
* // const { IoTSecureTunnelingClient, UntagResourceCommand } = require("@aws-sdk/client-iotsecuretunneling"); // CommonJS import
|
|
28
28
|
* const client = new IoTSecureTunnelingClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotsecuretunneling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotsecuretunneling Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|