@aws-sdk/client-tnb 3.952.0 → 3.954.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-cjs/index.js +437 -299
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelSolNetworkOperationCommand.js +2 -2
- package/dist-es/commands/CreateSolFunctionPackageCommand.js +2 -2
- package/dist-es/commands/CreateSolNetworkInstanceCommand.js +2 -2
- package/dist-es/commands/CreateSolNetworkPackageCommand.js +2 -2
- package/dist-es/commands/DeleteSolFunctionPackageCommand.js +2 -2
- package/dist-es/commands/DeleteSolNetworkInstanceCommand.js +2 -2
- package/dist-es/commands/DeleteSolNetworkPackageCommand.js +2 -2
- package/dist-es/commands/GetSolFunctionInstanceCommand.js +2 -2
- package/dist-es/commands/GetSolFunctionPackageCommand.js +2 -2
- package/dist-es/commands/GetSolFunctionPackageContentCommand.js +2 -2
- package/dist-es/commands/GetSolFunctionPackageDescriptorCommand.js +2 -2
- package/dist-es/commands/GetSolNetworkInstanceCommand.js +2 -2
- package/dist-es/commands/GetSolNetworkOperationCommand.js +2 -2
- package/dist-es/commands/GetSolNetworkPackageCommand.js +2 -2
- package/dist-es/commands/GetSolNetworkPackageContentCommand.js +2 -2
- package/dist-es/commands/GetSolNetworkPackageDescriptorCommand.js +2 -2
- package/dist-es/commands/InstantiateSolNetworkInstanceCommand.js +2 -2
- package/dist-es/commands/ListSolFunctionInstancesCommand.js +2 -2
- package/dist-es/commands/ListSolFunctionPackagesCommand.js +2 -2
- package/dist-es/commands/ListSolNetworkInstancesCommand.js +2 -2
- package/dist-es/commands/ListSolNetworkOperationsCommand.js +2 -2
- package/dist-es/commands/ListSolNetworkPackagesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutSolFunctionPackageContentCommand.js +2 -2
- package/dist-es/commands/PutSolNetworkPackageContentCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TerminateSolNetworkInstanceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateSolFunctionPackageCommand.js +2 -2
- package/dist-es/commands/UpdateSolNetworkInstanceCommand.js +2 -2
- package/dist-es/commands/UpdateSolNetworkPackageCommand.js +2 -2
- package/dist-es/commands/ValidateSolFunctionPackageContentCommand.js +2 -2
- package/dist-es/commands/ValidateSolNetworkPackageContentCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +255 -254
- package/dist-types/TnbClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +138 -152
- package/dist-types/ts3.4/TnbClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +137 -154
- package/package.json +35 -35
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.tnb",
|
|
32
|
+
version: "2008-10-21",
|
|
33
|
+
serviceTarget: "TNB",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "tnb",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelSolNetworkOperation } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelSolNetworkOperation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelSolNetworkOperationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelSolNetworkOperationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "CancelSolNetworkOperation", {})
|
|
13
13
|
.n("TnbClient", "CancelSolNetworkOperationCommand")
|
|
14
|
-
.sc(CancelSolNetworkOperation)
|
|
14
|
+
.sc(CancelSolNetworkOperation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSolFunctionPackage } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSolFunctionPackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSolFunctionPackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSolFunctionPackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "CreateSolFunctionPackage", {})
|
|
13
13
|
.n("TnbClient", "CreateSolFunctionPackageCommand")
|
|
14
|
-
.sc(CreateSolFunctionPackage)
|
|
14
|
+
.sc(CreateSolFunctionPackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSolNetworkInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSolNetworkInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSolNetworkInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSolNetworkInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "CreateSolNetworkInstance", {})
|
|
13
13
|
.n("TnbClient", "CreateSolNetworkInstanceCommand")
|
|
14
|
-
.sc(CreateSolNetworkInstance)
|
|
14
|
+
.sc(CreateSolNetworkInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSolNetworkPackage } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSolNetworkPackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSolNetworkPackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSolNetworkPackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "CreateSolNetworkPackage", {})
|
|
13
13
|
.n("TnbClient", "CreateSolNetworkPackageCommand")
|
|
14
|
-
.sc(CreateSolNetworkPackage)
|
|
14
|
+
.sc(CreateSolNetworkPackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSolFunctionPackage } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSolFunctionPackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSolFunctionPackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSolFunctionPackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "DeleteSolFunctionPackage", {})
|
|
13
13
|
.n("TnbClient", "DeleteSolFunctionPackageCommand")
|
|
14
|
-
.sc(DeleteSolFunctionPackage)
|
|
14
|
+
.sc(DeleteSolFunctionPackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSolNetworkInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSolNetworkInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSolNetworkInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSolNetworkInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "DeleteSolNetworkInstance", {})
|
|
13
13
|
.n("TnbClient", "DeleteSolNetworkInstanceCommand")
|
|
14
|
-
.sc(DeleteSolNetworkInstance)
|
|
14
|
+
.sc(DeleteSolNetworkInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSolNetworkPackage } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSolNetworkPackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSolNetworkPackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSolNetworkPackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "DeleteSolNetworkPackage", {})
|
|
13
13
|
.n("TnbClient", "DeleteSolNetworkPackageCommand")
|
|
14
|
-
.sc(DeleteSolNetworkPackage)
|
|
14
|
+
.sc(DeleteSolNetworkPackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSolFunctionInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSolFunctionInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSolFunctionInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSolFunctionInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "GetSolFunctionInstance", {})
|
|
13
13
|
.n("TnbClient", "GetSolFunctionInstanceCommand")
|
|
14
|
-
.sc(GetSolFunctionInstance)
|
|
14
|
+
.sc(GetSolFunctionInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSolFunctionPackage } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSolFunctionPackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSolFunctionPackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSolFunctionPackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "GetSolFunctionPackage", {})
|
|
13
13
|
.n("TnbClient", "GetSolFunctionPackageCommand")
|
|
14
|
-
.sc(GetSolFunctionPackage)
|
|
14
|
+
.sc(GetSolFunctionPackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSolFunctionPackageContent } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSolFunctionPackageContent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSolFunctionPackageContentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSolFunctionPackageContentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "GetSolFunctionPackageContent", {})
|
|
13
13
|
.n("TnbClient", "GetSolFunctionPackageContentCommand")
|
|
14
|
-
.sc(GetSolFunctionPackageContent)
|
|
14
|
+
.sc(GetSolFunctionPackageContent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSolFunctionPackageDescriptor } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSolFunctionPackageDescriptor$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSolFunctionPackageDescriptorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSolFunctionPackageDescriptorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "GetSolFunctionPackageDescriptor", {})
|
|
13
13
|
.n("TnbClient", "GetSolFunctionPackageDescriptorCommand")
|
|
14
|
-
.sc(GetSolFunctionPackageDescriptor)
|
|
14
|
+
.sc(GetSolFunctionPackageDescriptor$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSolNetworkInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSolNetworkInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSolNetworkInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSolNetworkInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "GetSolNetworkInstance", {})
|
|
13
13
|
.n("TnbClient", "GetSolNetworkInstanceCommand")
|
|
14
|
-
.sc(GetSolNetworkInstance)
|
|
14
|
+
.sc(GetSolNetworkInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSolNetworkOperation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSolNetworkOperation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSolNetworkOperationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSolNetworkOperationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "GetSolNetworkOperation", {})
|
|
13
13
|
.n("TnbClient", "GetSolNetworkOperationCommand")
|
|
14
|
-
.sc(GetSolNetworkOperation)
|
|
14
|
+
.sc(GetSolNetworkOperation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSolNetworkPackage } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSolNetworkPackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSolNetworkPackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSolNetworkPackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "GetSolNetworkPackage", {})
|
|
13
13
|
.n("TnbClient", "GetSolNetworkPackageCommand")
|
|
14
|
-
.sc(GetSolNetworkPackage)
|
|
14
|
+
.sc(GetSolNetworkPackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSolNetworkPackageContent } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSolNetworkPackageContent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSolNetworkPackageContentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSolNetworkPackageContentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "GetSolNetworkPackageContent", {})
|
|
13
13
|
.n("TnbClient", "GetSolNetworkPackageContentCommand")
|
|
14
|
-
.sc(GetSolNetworkPackageContent)
|
|
14
|
+
.sc(GetSolNetworkPackageContent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSolNetworkPackageDescriptor } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSolNetworkPackageDescriptor$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSolNetworkPackageDescriptorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSolNetworkPackageDescriptorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "GetSolNetworkPackageDescriptor", {})
|
|
13
13
|
.n("TnbClient", "GetSolNetworkPackageDescriptorCommand")
|
|
14
|
-
.sc(GetSolNetworkPackageDescriptor)
|
|
14
|
+
.sc(GetSolNetworkPackageDescriptor$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InstantiateSolNetworkInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { InstantiateSolNetworkInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InstantiateSolNetworkInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InstantiateSolNetworkInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "InstantiateSolNetworkInstance", {})
|
|
13
13
|
.n("TnbClient", "InstantiateSolNetworkInstanceCommand")
|
|
14
|
-
.sc(InstantiateSolNetworkInstance)
|
|
14
|
+
.sc(InstantiateSolNetworkInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSolFunctionInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSolFunctionInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSolFunctionInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSolFunctionInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "ListSolFunctionInstances", {})
|
|
13
13
|
.n("TnbClient", "ListSolFunctionInstancesCommand")
|
|
14
|
-
.sc(ListSolFunctionInstances)
|
|
14
|
+
.sc(ListSolFunctionInstances$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSolFunctionPackages } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSolFunctionPackages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSolFunctionPackagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSolFunctionPackagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "ListSolFunctionPackages", {})
|
|
13
13
|
.n("TnbClient", "ListSolFunctionPackagesCommand")
|
|
14
|
-
.sc(ListSolFunctionPackages)
|
|
14
|
+
.sc(ListSolFunctionPackages$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSolNetworkInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSolNetworkInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSolNetworkInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSolNetworkInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "ListSolNetworkInstances", {})
|
|
13
13
|
.n("TnbClient", "ListSolNetworkInstancesCommand")
|
|
14
|
-
.sc(ListSolNetworkInstances)
|
|
14
|
+
.sc(ListSolNetworkInstances$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSolNetworkOperations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSolNetworkOperations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSolNetworkOperationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSolNetworkOperationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "ListSolNetworkOperations", {})
|
|
13
13
|
.n("TnbClient", "ListSolNetworkOperationsCommand")
|
|
14
|
-
.sc(ListSolNetworkOperations)
|
|
14
|
+
.sc(ListSolNetworkOperations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSolNetworkPackages } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSolNetworkPackages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSolNetworkPackagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSolNetworkPackagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "ListSolNetworkPackages", {})
|
|
13
13
|
.n("TnbClient", "ListSolNetworkPackagesCommand")
|
|
14
|
-
.sc(ListSolNetworkPackages)
|
|
14
|
+
.sc(ListSolNetworkPackages$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "ListTagsForResource", {})
|
|
13
13
|
.n("TnbClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutSolFunctionPackageContent } from "../schemas/schemas_0";
|
|
4
|
+
import { PutSolFunctionPackageContent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutSolFunctionPackageContentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutSolFunctionPackageContentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "PutSolFunctionPackageContent", {})
|
|
13
13
|
.n("TnbClient", "PutSolFunctionPackageContentCommand")
|
|
14
|
-
.sc(PutSolFunctionPackageContent)
|
|
14
|
+
.sc(PutSolFunctionPackageContent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutSolNetworkPackageContent } from "../schemas/schemas_0";
|
|
4
|
+
import { PutSolNetworkPackageContent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutSolNetworkPackageContentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutSolNetworkPackageContentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "PutSolNetworkPackageContent", {})
|
|
13
13
|
.n("TnbClient", "PutSolNetworkPackageContentCommand")
|
|
14
|
-
.sc(PutSolNetworkPackageContent)
|
|
14
|
+
.sc(PutSolNetworkPackageContent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "TagResource", {})
|
|
13
13
|
.n("TnbClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TerminateSolNetworkInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { TerminateSolNetworkInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TerminateSolNetworkInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TerminateSolNetworkInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "TerminateSolNetworkInstance", {})
|
|
13
13
|
.n("TnbClient", "TerminateSolNetworkInstanceCommand")
|
|
14
|
-
.sc(TerminateSolNetworkInstance)
|
|
14
|
+
.sc(TerminateSolNetworkInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "UntagResource", {})
|
|
13
13
|
.n("TnbClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSolFunctionPackage } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSolFunctionPackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSolFunctionPackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSolFunctionPackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "UpdateSolFunctionPackage", {})
|
|
13
13
|
.n("TnbClient", "UpdateSolFunctionPackageCommand")
|
|
14
|
-
.sc(UpdateSolFunctionPackage)
|
|
14
|
+
.sc(UpdateSolFunctionPackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSolNetworkInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSolNetworkInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSolNetworkInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSolNetworkInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "UpdateSolNetworkInstance", {})
|
|
13
13
|
.n("TnbClient", "UpdateSolNetworkInstanceCommand")
|
|
14
|
-
.sc(UpdateSolNetworkInstance)
|
|
14
|
+
.sc(UpdateSolNetworkInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSolNetworkPackage } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSolNetworkPackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSolNetworkPackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSolNetworkPackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "UpdateSolNetworkPackage", {})
|
|
13
13
|
.n("TnbClient", "UpdateSolNetworkPackageCommand")
|
|
14
|
-
.sc(UpdateSolNetworkPackage)
|
|
14
|
+
.sc(UpdateSolNetworkPackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ValidateSolFunctionPackageContent } from "../schemas/schemas_0";
|
|
4
|
+
import { ValidateSolFunctionPackageContent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ValidateSolFunctionPackageContentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ValidateSolFunctionPackageContentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "ValidateSolFunctionPackageContent", {})
|
|
13
13
|
.n("TnbClient", "ValidateSolFunctionPackageContentCommand")
|
|
14
|
-
.sc(ValidateSolFunctionPackageContent)
|
|
14
|
+
.sc(ValidateSolFunctionPackageContent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ValidateSolNetworkPackageContent } from "../schemas/schemas_0";
|
|
4
|
+
import { ValidateSolNetworkPackageContent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ValidateSolNetworkPackageContentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ValidateSolNetworkPackageContentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("TNB", "ValidateSolNetworkPackageContent", {})
|
|
13
13
|
.n("TnbClient", "ValidateSolNetworkPackageContentCommand")
|
|
14
|
-
.sc(ValidateSolNetworkPackageContent)
|
|
14
|
+
.sc(ValidateSolNetworkPackageContent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.tnb",
|
|
29
|
+
version: "2008-10-21",
|
|
30
|
+
serviceTarget: "TNB",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "tnb",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|