@aws-sdk/client-tnb 3.928.0 → 3.930.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 +1439 -1635
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/TnbClient.js +2 -0
- package/dist-es/commands/CancelSolNetworkOperationCommand.js +3 -9
- package/dist-es/commands/CreateSolFunctionPackageCommand.js +3 -10
- package/dist-es/commands/CreateSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/CreateSolNetworkPackageCommand.js +3 -10
- package/dist-es/commands/DeleteSolFunctionPackageCommand.js +3 -9
- package/dist-es/commands/DeleteSolNetworkInstanceCommand.js +3 -9
- package/dist-es/commands/DeleteSolNetworkPackageCommand.js +3 -9
- package/dist-es/commands/GetSolFunctionInstanceCommand.js +3 -10
- package/dist-es/commands/GetSolFunctionPackageCommand.js +3 -10
- package/dist-es/commands/GetSolFunctionPackageContentCommand.js +3 -9
- package/dist-es/commands/GetSolFunctionPackageDescriptorCommand.js +3 -9
- package/dist-es/commands/GetSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/GetSolNetworkOperationCommand.js +3 -10
- package/dist-es/commands/GetSolNetworkPackageCommand.js +3 -10
- package/dist-es/commands/GetSolNetworkPackageContentCommand.js +3 -9
- package/dist-es/commands/GetSolNetworkPackageDescriptorCommand.js +3 -9
- package/dist-es/commands/InstantiateSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/ListSolFunctionInstancesCommand.js +3 -9
- package/dist-es/commands/ListSolFunctionPackagesCommand.js +3 -9
- package/dist-es/commands/ListSolNetworkInstancesCommand.js +3 -9
- package/dist-es/commands/ListSolNetworkOperationsCommand.js +3 -9
- package/dist-es/commands/ListSolNetworkPackagesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/PutSolFunctionPackageContentCommand.js +3 -10
- package/dist-es/commands/PutSolNetworkPackageContentCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/TerminateSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateSolFunctionPackageCommand.js +3 -9
- package/dist-es/commands/UpdateSolNetworkInstanceCommand.js +3 -10
- package/dist-es/commands/UpdateSolNetworkPackageCommand.js +3 -9
- package/dist-es/commands/ValidateSolFunctionPackageContentCommand.js +3 -10
- package/dist-es/commands/ValidateSolNetworkPackageContentCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -93
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1364 -0
- package/dist-types/TnbClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -92
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +152 -0
- package/dist-types/ts3.4/TnbClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -69
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +159 -0
- package/package.json +34 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1280
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -299
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -401
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListTagsForResourceCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("TNB", "ListTagsForResource", {})
|
|
18
13
|
.n("TnbClient", "ListTagsForResourceCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListTagsForResourceCommand)
|
|
21
|
-
.de(de_ListTagsForResourceCommand)
|
|
14
|
+
.sc(ListTagsForResource)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_PutSolFunctionPackageContentCommand, se_PutSolFunctionPackageContentCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { PutSolFunctionPackageContent } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class PutSolFunctionPackageContentCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("TNB", "PutSolFunctionPackageContent", {})
|
|
18
13
|
.n("TnbClient", "PutSolFunctionPackageContentCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_PutSolFunctionPackageContentCommand)
|
|
21
|
-
.de(de_PutSolFunctionPackageContentCommand)
|
|
14
|
+
.sc(PutSolFunctionPackageContent)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_PutSolNetworkPackageContentCommand, se_PutSolNetworkPackageContentCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { PutSolNetworkPackageContent } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class PutSolNetworkPackageContentCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("TNB", "PutSolNetworkPackageContent", {})
|
|
18
13
|
.n("TnbClient", "PutSolNetworkPackageContentCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_PutSolNetworkPackageContentCommand)
|
|
21
|
-
.de(de_PutSolNetworkPackageContentCommand)
|
|
14
|
+
.sc(PutSolNetworkPackageContent)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { TagResource } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class TagResourceCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("TNB", "TagResource", {})
|
|
18
13
|
.n("TnbClient", "TagResourceCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_TagResourceCommand)
|
|
21
|
-
.de(de_TagResourceCommand)
|
|
14
|
+
.sc(TagResource)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_TerminateSolNetworkInstanceCommand, se_TerminateSolNetworkInstanceCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { TerminateSolNetworkInstance } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class TerminateSolNetworkInstanceCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("TNB", "TerminateSolNetworkInstance", {})
|
|
18
13
|
.n("TnbClient", "TerminateSolNetworkInstanceCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_TerminateSolNetworkInstanceCommand)
|
|
21
|
-
.de(de_TerminateSolNetworkInstanceCommand)
|
|
14
|
+
.sc(TerminateSolNetworkInstance)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UntagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UntagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("TNB", "UntagResource", {})
|
|
17
13
|
.n("TnbClient", "UntagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UntagResourceCommand)
|
|
20
|
-
.de(de_UntagResourceCommand)
|
|
14
|
+
.sc(UntagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateSolFunctionPackage } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateSolFunctionPackageCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("TNB", "UpdateSolFunctionPackage", {})
|
|
17
13
|
.n("TnbClient", "UpdateSolFunctionPackageCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateSolFunctionPackageCommand)
|
|
20
|
-
.de(de_UpdateSolFunctionPackageCommand)
|
|
14
|
+
.sc(UpdateSolFunctionPackage)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_UpdateSolNetworkInstanceCommand, se_UpdateSolNetworkInstanceCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { UpdateSolNetworkInstance } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class UpdateSolNetworkInstanceCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("TNB", "UpdateSolNetworkInstance", {})
|
|
18
13
|
.n("TnbClient", "UpdateSolNetworkInstanceCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_UpdateSolNetworkInstanceCommand)
|
|
21
|
-
.de(de_UpdateSolNetworkInstanceCommand)
|
|
14
|
+
.sc(UpdateSolNetworkInstance)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateSolNetworkPackage } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateSolNetworkPackageCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("TNB", "UpdateSolNetworkPackage", {})
|
|
17
13
|
.n("TnbClient", "UpdateSolNetworkPackageCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateSolNetworkPackageCommand)
|
|
20
|
-
.de(de_UpdateSolNetworkPackageCommand)
|
|
14
|
+
.sc(UpdateSolNetworkPackage)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ValidateSolFunctionPackageContentCommand, se_ValidateSolFunctionPackageContentCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ValidateSolFunctionPackageContent } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ValidateSolFunctionPackageContentCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("TNB", "ValidateSolFunctionPackageContent", {})
|
|
18
13
|
.n("TnbClient", "ValidateSolFunctionPackageContentCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ValidateSolFunctionPackageContentCommand)
|
|
21
|
-
.de(de_ValidateSolFunctionPackageContentCommand)
|
|
14
|
+
.sc(ValidateSolFunctionPackageContent)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ValidateSolNetworkPackageContentCommand, se_ValidateSolNetworkPackageContentCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ValidateSolNetworkPackageContent } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ValidateSolNetworkPackageContentCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("TNB", "ValidateSolNetworkPackageContent", {})
|
|
18
13
|
.n("TnbClient", "ValidateSolNetworkPackageContentCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ValidateSolNetworkPackageContentCommand)
|
|
21
|
-
.de(de_ValidateSolNetworkPackageContentCommand)
|
|
14
|
+
.sc(ValidateSolNetworkPackageContent)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
1
|
import { TnbServiceException as __BaseException } from "./TnbServiceException";
|
|
3
2
|
export class AccessDeniedException extends __BaseException {
|
|
4
3
|
name = "AccessDeniedException";
|
|
@@ -150,95 +149,3 @@ export const UpdateSolNetworkType = {
|
|
|
150
149
|
MODIFY_VNF_INFORMATION: "MODIFY_VNF_INFORMATION",
|
|
151
150
|
UPDATE_NS: "UPDATE_NS",
|
|
152
151
|
};
|
|
153
|
-
export const CreateSolFunctionPackageInputFilterSensitiveLog = (obj) => ({
|
|
154
|
-
...obj,
|
|
155
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
156
|
-
});
|
|
157
|
-
export const CreateSolFunctionPackageOutputFilterSensitiveLog = (obj) => ({
|
|
158
|
-
...obj,
|
|
159
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
160
|
-
});
|
|
161
|
-
export const CreateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
162
|
-
...obj,
|
|
163
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
164
|
-
});
|
|
165
|
-
export const CreateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
166
|
-
...obj,
|
|
167
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
168
|
-
});
|
|
169
|
-
export const CreateSolNetworkPackageInputFilterSensitiveLog = (obj) => ({
|
|
170
|
-
...obj,
|
|
171
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
172
|
-
});
|
|
173
|
-
export const CreateSolNetworkPackageOutputFilterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
176
|
-
});
|
|
177
|
-
export const GetSolFunctionInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
178
|
-
...obj,
|
|
179
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
180
|
-
});
|
|
181
|
-
export const GetSolFunctionPackageOutputFilterSensitiveLog = (obj) => ({
|
|
182
|
-
...obj,
|
|
183
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
184
|
-
});
|
|
185
|
-
export const GetSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
188
|
-
});
|
|
189
|
-
export const GetSolNetworkOperationOutputFilterSensitiveLog = (obj) => ({
|
|
190
|
-
...obj,
|
|
191
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
192
|
-
});
|
|
193
|
-
export const GetSolNetworkPackageOutputFilterSensitiveLog = (obj) => ({
|
|
194
|
-
...obj,
|
|
195
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
196
|
-
});
|
|
197
|
-
export const InstantiateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
198
|
-
...obj,
|
|
199
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
200
|
-
});
|
|
201
|
-
export const InstantiateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
202
|
-
...obj,
|
|
203
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
204
|
-
});
|
|
205
|
-
export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
|
|
206
|
-
...obj,
|
|
207
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
208
|
-
});
|
|
209
|
-
export const PutSolFunctionPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
...(obj.file && { file: SENSITIVE_STRING }),
|
|
212
|
-
});
|
|
213
|
-
export const PutSolNetworkPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
214
|
-
...obj,
|
|
215
|
-
...(obj.file && { file: SENSITIVE_STRING }),
|
|
216
|
-
});
|
|
217
|
-
export const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
218
|
-
...obj,
|
|
219
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
220
|
-
});
|
|
221
|
-
export const TerminateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
224
|
-
});
|
|
225
|
-
export const TerminateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
226
|
-
...obj,
|
|
227
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
228
|
-
});
|
|
229
|
-
export const UpdateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
230
|
-
...obj,
|
|
231
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
232
|
-
});
|
|
233
|
-
export const UpdateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
236
|
-
});
|
|
237
|
-
export const ValidateSolFunctionPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
238
|
-
...obj,
|
|
239
|
-
...(obj.file && { file: SENSITIVE_STRING }),
|
|
240
|
-
});
|
|
241
|
-
export const ValidateSolNetworkPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
242
|
-
...obj,
|
|
243
|
-
...(obj.file && { file: SENSITIVE_STRING }),
|
|
244
|
-
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.tnb" }),
|
|
25
27
|
serviceId: config?.serviceId ?? "tnb",
|
|
26
28
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
29
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|