@aws-sdk/client-tnb 3.276.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/LICENSE +201 -0
- package/README.md +205 -0
- package/dist-cjs/Tnb.js +502 -0
- package/dist-cjs/TnbClient.js +40 -0
- package/dist-cjs/commands/CancelSolNetworkOperationCommand.js +46 -0
- package/dist-cjs/commands/CreateSolFunctionPackageCommand.js +46 -0
- package/dist-cjs/commands/CreateSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/CreateSolNetworkPackageCommand.js +46 -0
- package/dist-cjs/commands/DeleteSolFunctionPackageCommand.js +46 -0
- package/dist-cjs/commands/DeleteSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/DeleteSolNetworkPackageCommand.js +46 -0
- package/dist-cjs/commands/GetSolFunctionInstanceCommand.js +46 -0
- package/dist-cjs/commands/GetSolFunctionPackageCommand.js +46 -0
- package/dist-cjs/commands/GetSolFunctionPackageContentCommand.js +46 -0
- package/dist-cjs/commands/GetSolFunctionPackageDescriptorCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkOperationCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkPackageCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkPackageContentCommand.js +46 -0
- package/dist-cjs/commands/GetSolNetworkPackageDescriptorCommand.js +46 -0
- package/dist-cjs/commands/InstantiateSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/ListSolFunctionInstancesCommand.js +46 -0
- package/dist-cjs/commands/ListSolFunctionPackagesCommand.js +46 -0
- package/dist-cjs/commands/ListSolNetworkInstancesCommand.js +46 -0
- package/dist-cjs/commands/ListSolNetworkOperationsCommand.js +46 -0
- package/dist-cjs/commands/ListSolNetworkPackagesCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/PutSolFunctionPackageContentCommand.js +46 -0
- package/dist-cjs/commands/PutSolNetworkPackageContentCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/TerminateSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateSolFunctionPackageCommand.js +46 -0
- package/dist-cjs/commands/UpdateSolNetworkInstanceCommand.js +46 -0
- package/dist-cjs/commands/UpdateSolNetworkPackageCommand.js +46 -0
- package/dist-cjs/commands/ValidateSolFunctionPackageContentCommand.js +46 -0
- package/dist-cjs/commands/ValidateSolNetworkPackageContentCommand.js +46 -0
- package/dist-cjs/commands/index.js +36 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/TnbServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +559 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListSolFunctionInstancesPaginator.js +36 -0
- package/dist-cjs/pagination/ListSolFunctionPackagesPaginator.js +36 -0
- package/dist-cjs/pagination/ListSolNetworkInstancesPaginator.js +36 -0
- package/dist-cjs/pagination/ListSolNetworkOperationsPaginator.js +36 -0
- package/dist-cjs/pagination/ListSolNetworkPackagesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +9 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2944 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +48 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +21 -0
- package/dist-es/Tnb.js +498 -0
- package/dist-es/TnbClient.js +36 -0
- package/dist-es/commands/CancelSolNetworkOperationCommand.js +42 -0
- package/dist-es/commands/CreateSolFunctionPackageCommand.js +42 -0
- package/dist-es/commands/CreateSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/CreateSolNetworkPackageCommand.js +42 -0
- package/dist-es/commands/DeleteSolFunctionPackageCommand.js +42 -0
- package/dist-es/commands/DeleteSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/DeleteSolNetworkPackageCommand.js +42 -0
- package/dist-es/commands/GetSolFunctionInstanceCommand.js +42 -0
- package/dist-es/commands/GetSolFunctionPackageCommand.js +42 -0
- package/dist-es/commands/GetSolFunctionPackageContentCommand.js +42 -0
- package/dist-es/commands/GetSolFunctionPackageDescriptorCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkOperationCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkPackageCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkPackageContentCommand.js +42 -0
- package/dist-es/commands/GetSolNetworkPackageDescriptorCommand.js +42 -0
- package/dist-es/commands/InstantiateSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/ListSolFunctionInstancesCommand.js +42 -0
- package/dist-es/commands/ListSolFunctionPackagesCommand.js +42 -0
- package/dist-es/commands/ListSolNetworkInstancesCommand.js +42 -0
- package/dist-es/commands/ListSolNetworkOperationsCommand.js +42 -0
- package/dist-es/commands/ListSolNetworkPackagesCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/PutSolFunctionPackageContentCommand.js +42 -0
- package/dist-es/commands/PutSolNetworkPackageContentCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/TerminateSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateSolFunctionPackageCommand.js +42 -0
- package/dist-es/commands/UpdateSolNetworkInstanceCommand.js +42 -0
- package/dist-es/commands/UpdateSolNetworkPackageCommand.js +42 -0
- package/dist-es/commands/ValidateSolFunctionPackageContentCommand.js +42 -0
- package/dist-es/commands/ValidateSolNetworkPackageContentCommand.js +42 -0
- package/dist-es/commands/index.js +33 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/TnbServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +455 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListSolFunctionInstancesPaginator.js +32 -0
- package/dist-es/pagination/ListSolFunctionPackagesPaginator.js +32 -0
- package/dist-es/pagination/ListSolNetworkInstancesPaginator.js +32 -0
- package/dist-es/pagination/ListSolNetworkOperationsPaginator.js +32 -0
- package/dist-es/pagination/ListSolNetworkPackagesPaginator.js +32 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +2874 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +17 -0
- package/dist-types/Tnb.d.ts +284 -0
- package/dist-types/TnbClient.d.ts +174 -0
- package/dist-types/commands/CancelSolNetworkOperationCommand.d.ts +38 -0
- package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +40 -0
- package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +39 -0
- package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +41 -0
- package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +40 -0
- package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +39 -0
- package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +39 -0
- package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +38 -0
- package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +38 -0
- package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +39 -0
- package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +38 -0
- package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +38 -0
- package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +38 -0
- package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +38 -0
- package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +39 -0
- package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +38 -0
- package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +38 -0
- package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +38 -0
- package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +38 -0
- package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +38 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +39 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +38 -0
- package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +38 -0
- package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +39 -0
- package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +33 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/TnbServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1935 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListSolFunctionInstancesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSolFunctionPackagesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSolNetworkInstancesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSolNetworkOperationsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSolNetworkPackagesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +101 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/dist-types/ts3.4/Tnb.d.ts +571 -0
- package/dist-types/ts3.4/TnbClient.d.ts +309 -0
- package/dist-types/ts3.4/commands/CancelSolNetworkOperationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateSolFunctionPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateSolNetworkPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteSolFunctionPackageCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSolNetworkInstanceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSolNetworkPackageCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetSolFunctionInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolFunctionPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolFunctionPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolFunctionPackageDescriptorCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkOperationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetSolNetworkPackageDescriptorCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/InstantiateSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolFunctionInstancesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolFunctionPackagesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolNetworkInstancesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolNetworkOperationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListSolNetworkPackagesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/PutSolFunctionPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutSolNetworkPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/TerminateSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateSolFunctionPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateSolNetworkInstanceCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateSolNetworkPackageCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ValidateSolFunctionPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ValidateSolNetworkPackageContentCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/TnbServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +855 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListSolFunctionInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolFunctionPackagesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolNetworkInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolNetworkOperationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolNetworkPackagesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +401 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/package.json +102 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdateSolNetworkPackageInputFilterSensitiveLog, UpdateSolNetworkPackageOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UpdateSolNetworkPackageCommand, serializeAws_restJson1UpdateSolNetworkPackageCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export class UpdateSolNetworkPackageCommand extends $Command {
|
|
7
|
+
constructor(input) {
|
|
8
|
+
super();
|
|
9
|
+
this.input = input;
|
|
10
|
+
}
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
20
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, UpdateSolNetworkPackageCommand.getEndpointParameterInstructions()));
|
|
22
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
23
|
+
const { logger } = configuration;
|
|
24
|
+
const clientName = "TnbClient";
|
|
25
|
+
const commandName = "UpdateSolNetworkPackageCommand";
|
|
26
|
+
const handlerExecutionContext = {
|
|
27
|
+
logger,
|
|
28
|
+
clientName,
|
|
29
|
+
commandName,
|
|
30
|
+
inputFilterSensitiveLog: UpdateSolNetworkPackageInputFilterSensitiveLog,
|
|
31
|
+
outputFilterSensitiveLog: UpdateSolNetworkPackageOutputFilterSensitiveLog,
|
|
32
|
+
};
|
|
33
|
+
const { requestHandler } = configuration;
|
|
34
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
|
+
}
|
|
36
|
+
serialize(input, context) {
|
|
37
|
+
return serializeAws_restJson1UpdateSolNetworkPackageCommand(input, context);
|
|
38
|
+
}
|
|
39
|
+
deserialize(output, context) {
|
|
40
|
+
return deserializeAws_restJson1UpdateSolNetworkPackageCommand(output, context);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ValidateSolFunctionPackageContentInputFilterSensitiveLog, ValidateSolFunctionPackageContentOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ValidateSolFunctionPackageContentCommand, serializeAws_restJson1ValidateSolFunctionPackageContentCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export class ValidateSolFunctionPackageContentCommand extends $Command {
|
|
7
|
+
constructor(input) {
|
|
8
|
+
super();
|
|
9
|
+
this.input = input;
|
|
10
|
+
}
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
20
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, ValidateSolFunctionPackageContentCommand.getEndpointParameterInstructions()));
|
|
22
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
23
|
+
const { logger } = configuration;
|
|
24
|
+
const clientName = "TnbClient";
|
|
25
|
+
const commandName = "ValidateSolFunctionPackageContentCommand";
|
|
26
|
+
const handlerExecutionContext = {
|
|
27
|
+
logger,
|
|
28
|
+
clientName,
|
|
29
|
+
commandName,
|
|
30
|
+
inputFilterSensitiveLog: ValidateSolFunctionPackageContentInputFilterSensitiveLog,
|
|
31
|
+
outputFilterSensitiveLog: ValidateSolFunctionPackageContentOutputFilterSensitiveLog,
|
|
32
|
+
};
|
|
33
|
+
const { requestHandler } = configuration;
|
|
34
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
|
+
}
|
|
36
|
+
serialize(input, context) {
|
|
37
|
+
return serializeAws_restJson1ValidateSolFunctionPackageContentCommand(input, context);
|
|
38
|
+
}
|
|
39
|
+
deserialize(output, context) {
|
|
40
|
+
return deserializeAws_restJson1ValidateSolFunctionPackageContentCommand(output, context);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ValidateSolNetworkPackageContentInputFilterSensitiveLog, ValidateSolNetworkPackageContentOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ValidateSolNetworkPackageContentCommand, serializeAws_restJson1ValidateSolNetworkPackageContentCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export class ValidateSolNetworkPackageContentCommand extends $Command {
|
|
7
|
+
constructor(input) {
|
|
8
|
+
super();
|
|
9
|
+
this.input = input;
|
|
10
|
+
}
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
20
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, ValidateSolNetworkPackageContentCommand.getEndpointParameterInstructions()));
|
|
22
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
23
|
+
const { logger } = configuration;
|
|
24
|
+
const clientName = "TnbClient";
|
|
25
|
+
const commandName = "ValidateSolNetworkPackageContentCommand";
|
|
26
|
+
const handlerExecutionContext = {
|
|
27
|
+
logger,
|
|
28
|
+
clientName,
|
|
29
|
+
commandName,
|
|
30
|
+
inputFilterSensitiveLog: ValidateSolNetworkPackageContentInputFilterSensitiveLog,
|
|
31
|
+
outputFilterSensitiveLog: ValidateSolNetworkPackageContentOutputFilterSensitiveLog,
|
|
32
|
+
};
|
|
33
|
+
const { requestHandler } = configuration;
|
|
34
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
|
+
}
|
|
36
|
+
serialize(input, context) {
|
|
37
|
+
return serializeAws_restJson1ValidateSolNetworkPackageContentCommand(input, context);
|
|
38
|
+
}
|
|
39
|
+
deserialize(output, context) {
|
|
40
|
+
return deserializeAws_restJson1ValidateSolNetworkPackageContentCommand(output, context);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export * from "./CancelSolNetworkOperationCommand";
|
|
2
|
+
export * from "./CreateSolFunctionPackageCommand";
|
|
3
|
+
export * from "./CreateSolNetworkInstanceCommand";
|
|
4
|
+
export * from "./CreateSolNetworkPackageCommand";
|
|
5
|
+
export * from "./DeleteSolFunctionPackageCommand";
|
|
6
|
+
export * from "./DeleteSolNetworkInstanceCommand";
|
|
7
|
+
export * from "./DeleteSolNetworkPackageCommand";
|
|
8
|
+
export * from "./GetSolFunctionInstanceCommand";
|
|
9
|
+
export * from "./GetSolFunctionPackageCommand";
|
|
10
|
+
export * from "./GetSolFunctionPackageContentCommand";
|
|
11
|
+
export * from "./GetSolFunctionPackageDescriptorCommand";
|
|
12
|
+
export * from "./GetSolNetworkInstanceCommand";
|
|
13
|
+
export * from "./GetSolNetworkOperationCommand";
|
|
14
|
+
export * from "./GetSolNetworkPackageCommand";
|
|
15
|
+
export * from "./GetSolNetworkPackageContentCommand";
|
|
16
|
+
export * from "./GetSolNetworkPackageDescriptorCommand";
|
|
17
|
+
export * from "./InstantiateSolNetworkInstanceCommand";
|
|
18
|
+
export * from "./ListSolFunctionInstancesCommand";
|
|
19
|
+
export * from "./ListSolFunctionPackagesCommand";
|
|
20
|
+
export * from "./ListSolNetworkInstancesCommand";
|
|
21
|
+
export * from "./ListSolNetworkOperationsCommand";
|
|
22
|
+
export * from "./ListSolNetworkPackagesCommand";
|
|
23
|
+
export * from "./ListTagsForResourceCommand";
|
|
24
|
+
export * from "./PutSolFunctionPackageContentCommand";
|
|
25
|
+
export * from "./PutSolNetworkPackageContentCommand";
|
|
26
|
+
export * from "./TagResourceCommand";
|
|
27
|
+
export * from "./TerminateSolNetworkInstanceCommand";
|
|
28
|
+
export * from "./UntagResourceCommand";
|
|
29
|
+
export * from "./UpdateSolFunctionPackageCommand";
|
|
30
|
+
export * from "./UpdateSolNetworkInstanceCommand";
|
|
31
|
+
export * from "./UpdateSolNetworkPackageCommand";
|
|
32
|
+
export * from "./ValidateSolFunctionPackageContentCommand";
|
|
33
|
+
export * from "./ValidateSolNetworkPackageContentCommand";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { resolveEndpoint } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { ruleSet } from "./ruleset";
|
|
3
|
+
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
|
+
return resolveEndpoint(ruleSet, {
|
|
5
|
+
endpointParams: endpointParams,
|
|
6
|
+
logger: context.logger,
|
|
7
|
+
});
|
|
8
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
2
|
+
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
3
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { type: b, rules: [{ conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }] }, { type: b, rules: [{ conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://tnb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://tnb-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://tnb.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { type: b, rules: [{ endpoint: { url: "https://tnb.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] }] };
|
|
4
|
+
export const ruleSet = _data;
|
package/dist-es/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,455 @@
|
|
|
1
|
+
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { TnbServiceException as __BaseException } from "./TnbServiceException";
|
|
3
|
+
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "AccessDeniedException",
|
|
7
|
+
$fault: "client",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "AccessDeniedException";
|
|
11
|
+
this.$fault = "client";
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export class InternalServerException extends __BaseException {
|
|
16
|
+
constructor(opts) {
|
|
17
|
+
super({
|
|
18
|
+
name: "InternalServerException",
|
|
19
|
+
$fault: "server",
|
|
20
|
+
...opts,
|
|
21
|
+
});
|
|
22
|
+
this.name = "InternalServerException";
|
|
23
|
+
this.$fault = "server";
|
|
24
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
28
|
+
constructor(opts) {
|
|
29
|
+
super({
|
|
30
|
+
name: "ResourceNotFoundException",
|
|
31
|
+
$fault: "client",
|
|
32
|
+
...opts,
|
|
33
|
+
});
|
|
34
|
+
this.name = "ResourceNotFoundException";
|
|
35
|
+
this.$fault = "client";
|
|
36
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
export class ThrottlingException extends __BaseException {
|
|
40
|
+
constructor(opts) {
|
|
41
|
+
super({
|
|
42
|
+
name: "ThrottlingException",
|
|
43
|
+
$fault: "client",
|
|
44
|
+
...opts,
|
|
45
|
+
});
|
|
46
|
+
this.name = "ThrottlingException";
|
|
47
|
+
this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
export class ValidationException extends __BaseException {
|
|
52
|
+
constructor(opts) {
|
|
53
|
+
super({
|
|
54
|
+
name: "ValidationException",
|
|
55
|
+
$fault: "client",
|
|
56
|
+
...opts,
|
|
57
|
+
});
|
|
58
|
+
this.name = "ValidationException";
|
|
59
|
+
this.$fault = "client";
|
|
60
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
export var OnboardingState;
|
|
64
|
+
(function (OnboardingState) {
|
|
65
|
+
OnboardingState["CREATED"] = "CREATED";
|
|
66
|
+
OnboardingState["ERROR"] = "ERROR";
|
|
67
|
+
OnboardingState["ONBOARDED"] = "ONBOARDED";
|
|
68
|
+
})(OnboardingState || (OnboardingState = {}));
|
|
69
|
+
export var OperationalState;
|
|
70
|
+
(function (OperationalState) {
|
|
71
|
+
OperationalState["DISABLED"] = "DISABLED";
|
|
72
|
+
OperationalState["ENABLED"] = "ENABLED";
|
|
73
|
+
})(OperationalState || (OperationalState = {}));
|
|
74
|
+
export var UsageState;
|
|
75
|
+
(function (UsageState) {
|
|
76
|
+
UsageState["IN_USE"] = "IN_USE";
|
|
77
|
+
UsageState["NOT_IN_USE"] = "NOT_IN_USE";
|
|
78
|
+
})(UsageState || (UsageState = {}));
|
|
79
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
80
|
+
constructor(opts) {
|
|
81
|
+
super({
|
|
82
|
+
name: "ServiceQuotaExceededException",
|
|
83
|
+
$fault: "client",
|
|
84
|
+
...opts,
|
|
85
|
+
});
|
|
86
|
+
this.name = "ServiceQuotaExceededException";
|
|
87
|
+
this.$fault = "client";
|
|
88
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
export var NsdOnboardingState;
|
|
92
|
+
(function (NsdOnboardingState) {
|
|
93
|
+
NsdOnboardingState["CREATED"] = "CREATED";
|
|
94
|
+
NsdOnboardingState["ERROR"] = "ERROR";
|
|
95
|
+
NsdOnboardingState["ONBOARDED"] = "ONBOARDED";
|
|
96
|
+
})(NsdOnboardingState || (NsdOnboardingState = {}));
|
|
97
|
+
export var NsdOperationalState;
|
|
98
|
+
(function (NsdOperationalState) {
|
|
99
|
+
NsdOperationalState["DISABLED"] = "DISABLED";
|
|
100
|
+
NsdOperationalState["ENABLED"] = "ENABLED";
|
|
101
|
+
})(NsdOperationalState || (NsdOperationalState = {}));
|
|
102
|
+
export var NsdUsageState;
|
|
103
|
+
(function (NsdUsageState) {
|
|
104
|
+
NsdUsageState["IN_USE"] = "IN_USE";
|
|
105
|
+
NsdUsageState["NOT_IN_USE"] = "NOT_IN_USE";
|
|
106
|
+
})(NsdUsageState || (NsdUsageState = {}));
|
|
107
|
+
export var DescriptorContentType;
|
|
108
|
+
(function (DescriptorContentType) {
|
|
109
|
+
DescriptorContentType["TEXT_PLAIN"] = "text/plain";
|
|
110
|
+
})(DescriptorContentType || (DescriptorContentType = {}));
|
|
111
|
+
export var VnfOperationalState;
|
|
112
|
+
(function (VnfOperationalState) {
|
|
113
|
+
VnfOperationalState["STARTED"] = "STARTED";
|
|
114
|
+
VnfOperationalState["STOPPED"] = "STOPPED";
|
|
115
|
+
})(VnfOperationalState || (VnfOperationalState = {}));
|
|
116
|
+
export var VnfInstantiationState;
|
|
117
|
+
(function (VnfInstantiationState) {
|
|
118
|
+
VnfInstantiationState["INSTANTIATED"] = "INSTANTIATED";
|
|
119
|
+
VnfInstantiationState["NOT_INSTANTIATED"] = "NOT_INSTANTIATED";
|
|
120
|
+
})(VnfInstantiationState || (VnfInstantiationState = {}));
|
|
121
|
+
export var PackageContentType;
|
|
122
|
+
(function (PackageContentType) {
|
|
123
|
+
PackageContentType["APPLICATION_ZIP"] = "application/zip";
|
|
124
|
+
})(PackageContentType || (PackageContentType = {}));
|
|
125
|
+
export var NsState;
|
|
126
|
+
(function (NsState) {
|
|
127
|
+
NsState["DELETED"] = "DELETED";
|
|
128
|
+
NsState["IMPAIRED"] = "IMPAIRED";
|
|
129
|
+
NsState["INSTANTIATED"] = "INSTANTIATED";
|
|
130
|
+
NsState["INSTANTIATE_IN_PROGRESS"] = "INSTANTIATE_IN_PROGRESS";
|
|
131
|
+
NsState["NOT_INSTANTIATED"] = "NOT_INSTANTIATED";
|
|
132
|
+
NsState["STOPPED"] = "STOPPED";
|
|
133
|
+
NsState["TERMINATE_IN_PROGRESS"] = "TERMINATE_IN_PROGRESS";
|
|
134
|
+
NsState["UPDATE_IN_PROGRESS"] = "UPDATE_IN_PROGRESS";
|
|
135
|
+
})(NsState || (NsState = {}));
|
|
136
|
+
export var LcmOperationType;
|
|
137
|
+
(function (LcmOperationType) {
|
|
138
|
+
LcmOperationType["INSTANTIATE"] = "INSTANTIATE";
|
|
139
|
+
LcmOperationType["TERMINATE"] = "TERMINATE";
|
|
140
|
+
LcmOperationType["UPDATE"] = "UPDATE";
|
|
141
|
+
})(LcmOperationType || (LcmOperationType = {}));
|
|
142
|
+
export var NsLcmOperationState;
|
|
143
|
+
(function (NsLcmOperationState) {
|
|
144
|
+
NsLcmOperationState["CANCELLED"] = "CANCELLED";
|
|
145
|
+
NsLcmOperationState["CANCELLING"] = "CANCELLING";
|
|
146
|
+
NsLcmOperationState["COMPLETED"] = "COMPLETED";
|
|
147
|
+
NsLcmOperationState["FAILED"] = "FAILED";
|
|
148
|
+
NsLcmOperationState["PROCESSING"] = "PROCESSING";
|
|
149
|
+
})(NsLcmOperationState || (NsLcmOperationState = {}));
|
|
150
|
+
export var TaskStatus;
|
|
151
|
+
(function (TaskStatus) {
|
|
152
|
+
TaskStatus["CANCELLED"] = "CANCELLED";
|
|
153
|
+
TaskStatus["COMPLETED"] = "COMPLETED";
|
|
154
|
+
TaskStatus["ERROR"] = "ERROR";
|
|
155
|
+
TaskStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
156
|
+
TaskStatus["SCHEDULED"] = "SCHEDULED";
|
|
157
|
+
TaskStatus["SKIPPED"] = "SKIPPED";
|
|
158
|
+
TaskStatus["STARTED"] = "STARTED";
|
|
159
|
+
})(TaskStatus || (TaskStatus = {}));
|
|
160
|
+
export var UpdateSolNetworkType;
|
|
161
|
+
(function (UpdateSolNetworkType) {
|
|
162
|
+
UpdateSolNetworkType["MODIFY_VNF_INFORMATION"] = "MODIFY_VNF_INFORMATION";
|
|
163
|
+
})(UpdateSolNetworkType || (UpdateSolNetworkType = {}));
|
|
164
|
+
export const CancelSolNetworkOperationInputFilterSensitiveLog = (obj) => ({
|
|
165
|
+
...obj,
|
|
166
|
+
});
|
|
167
|
+
export const CreateSolFunctionPackageInputFilterSensitiveLog = (obj) => ({
|
|
168
|
+
...obj,
|
|
169
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
170
|
+
});
|
|
171
|
+
export const CreateSolFunctionPackageOutputFilterSensitiveLog = (obj) => ({
|
|
172
|
+
...obj,
|
|
173
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
174
|
+
});
|
|
175
|
+
export const CreateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
176
|
+
...obj,
|
|
177
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
178
|
+
});
|
|
179
|
+
export const CreateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
180
|
+
...obj,
|
|
181
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
182
|
+
});
|
|
183
|
+
export const CreateSolNetworkPackageInputFilterSensitiveLog = (obj) => ({
|
|
184
|
+
...obj,
|
|
185
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
186
|
+
});
|
|
187
|
+
export const CreateSolNetworkPackageOutputFilterSensitiveLog = (obj) => ({
|
|
188
|
+
...obj,
|
|
189
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
190
|
+
});
|
|
191
|
+
export const DeleteSolFunctionPackageInputFilterSensitiveLog = (obj) => ({
|
|
192
|
+
...obj,
|
|
193
|
+
});
|
|
194
|
+
export const DeleteSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
195
|
+
...obj,
|
|
196
|
+
});
|
|
197
|
+
export const DeleteSolNetworkPackageInputFilterSensitiveLog = (obj) => ({
|
|
198
|
+
...obj,
|
|
199
|
+
});
|
|
200
|
+
export const ErrorInfoFilterSensitiveLog = (obj) => ({
|
|
201
|
+
...obj,
|
|
202
|
+
});
|
|
203
|
+
export const ToscaOverrideFilterSensitiveLog = (obj) => ({
|
|
204
|
+
...obj,
|
|
205
|
+
});
|
|
206
|
+
export const FunctionArtifactMetaFilterSensitiveLog = (obj) => ({
|
|
207
|
+
...obj,
|
|
208
|
+
});
|
|
209
|
+
export const GetSolFunctionInstanceInputFilterSensitiveLog = (obj) => ({
|
|
210
|
+
...obj,
|
|
211
|
+
});
|
|
212
|
+
export const GetSolVnfcResourceInfoMetadataFilterSensitiveLog = (obj) => ({
|
|
213
|
+
...obj,
|
|
214
|
+
});
|
|
215
|
+
export const GetSolVnfcResourceInfoFilterSensitiveLog = (obj) => ({
|
|
216
|
+
...obj,
|
|
217
|
+
});
|
|
218
|
+
export const GetSolVnfInfoFilterSensitiveLog = (obj) => ({
|
|
219
|
+
...obj,
|
|
220
|
+
});
|
|
221
|
+
export const GetSolFunctionInstanceMetadataFilterSensitiveLog = (obj) => ({
|
|
222
|
+
...obj,
|
|
223
|
+
});
|
|
224
|
+
export const GetSolFunctionInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
225
|
+
...obj,
|
|
226
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
227
|
+
});
|
|
228
|
+
export const GetSolFunctionPackageInputFilterSensitiveLog = (obj) => ({
|
|
229
|
+
...obj,
|
|
230
|
+
});
|
|
231
|
+
export const GetSolFunctionPackageMetadataFilterSensitiveLog = (obj) => ({
|
|
232
|
+
...obj,
|
|
233
|
+
});
|
|
234
|
+
export const GetSolFunctionPackageOutputFilterSensitiveLog = (obj) => ({
|
|
235
|
+
...obj,
|
|
236
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
237
|
+
});
|
|
238
|
+
export const GetSolFunctionPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
239
|
+
...obj,
|
|
240
|
+
});
|
|
241
|
+
export const GetSolFunctionPackageContentOutputFilterSensitiveLog = (obj) => ({
|
|
242
|
+
...obj,
|
|
243
|
+
});
|
|
244
|
+
export const GetSolFunctionPackageDescriptorInputFilterSensitiveLog = (obj) => ({
|
|
245
|
+
...obj,
|
|
246
|
+
});
|
|
247
|
+
export const GetSolFunctionPackageDescriptorOutputFilterSensitiveLog = (obj) => ({
|
|
248
|
+
...obj,
|
|
249
|
+
});
|
|
250
|
+
export const GetSolInstantiatedVnfInfoFilterSensitiveLog = (obj) => ({
|
|
251
|
+
...obj,
|
|
252
|
+
});
|
|
253
|
+
export const GetSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
254
|
+
...obj,
|
|
255
|
+
});
|
|
256
|
+
export const LcmOperationInfoFilterSensitiveLog = (obj) => ({
|
|
257
|
+
...obj,
|
|
258
|
+
});
|
|
259
|
+
export const GetSolNetworkInstanceMetadataFilterSensitiveLog = (obj) => ({
|
|
260
|
+
...obj,
|
|
261
|
+
});
|
|
262
|
+
export const GetSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
263
|
+
...obj,
|
|
264
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
265
|
+
});
|
|
266
|
+
export const GetSolNetworkOperationInputFilterSensitiveLog = (obj) => ({
|
|
267
|
+
...obj,
|
|
268
|
+
});
|
|
269
|
+
export const ProblemDetailsFilterSensitiveLog = (obj) => ({
|
|
270
|
+
...obj,
|
|
271
|
+
});
|
|
272
|
+
export const GetSolNetworkOperationMetadataFilterSensitiveLog = (obj) => ({
|
|
273
|
+
...obj,
|
|
274
|
+
});
|
|
275
|
+
export const GetSolNetworkOperationTaskDetailsFilterSensitiveLog = (obj) => ({
|
|
276
|
+
...obj,
|
|
277
|
+
});
|
|
278
|
+
export const GetSolNetworkOperationOutputFilterSensitiveLog = (obj) => ({
|
|
279
|
+
...obj,
|
|
280
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
281
|
+
});
|
|
282
|
+
export const GetSolNetworkPackageInputFilterSensitiveLog = (obj) => ({
|
|
283
|
+
...obj,
|
|
284
|
+
});
|
|
285
|
+
export const NetworkArtifactMetaFilterSensitiveLog = (obj) => ({
|
|
286
|
+
...obj,
|
|
287
|
+
});
|
|
288
|
+
export const GetSolNetworkPackageMetadataFilterSensitiveLog = (obj) => ({
|
|
289
|
+
...obj,
|
|
290
|
+
});
|
|
291
|
+
export const GetSolNetworkPackageOutputFilterSensitiveLog = (obj) => ({
|
|
292
|
+
...obj,
|
|
293
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
294
|
+
});
|
|
295
|
+
export const GetSolNetworkPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
296
|
+
...obj,
|
|
297
|
+
});
|
|
298
|
+
export const GetSolNetworkPackageContentOutputFilterSensitiveLog = (obj) => ({
|
|
299
|
+
...obj,
|
|
300
|
+
});
|
|
301
|
+
export const GetSolNetworkPackageDescriptorInputFilterSensitiveLog = (obj) => ({
|
|
302
|
+
...obj,
|
|
303
|
+
});
|
|
304
|
+
export const GetSolNetworkPackageDescriptorOutputFilterSensitiveLog = (obj) => ({
|
|
305
|
+
...obj,
|
|
306
|
+
});
|
|
307
|
+
export const InstantiateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
308
|
+
...obj,
|
|
309
|
+
});
|
|
310
|
+
export const InstantiateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
311
|
+
...obj,
|
|
312
|
+
});
|
|
313
|
+
export const ListSolFunctionInstanceMetadataFilterSensitiveLog = (obj) => ({
|
|
314
|
+
...obj,
|
|
315
|
+
});
|
|
316
|
+
export const ListSolFunctionInstanceInfoFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
});
|
|
319
|
+
export const ListSolFunctionInstancesInputFilterSensitiveLog = (obj) => ({
|
|
320
|
+
...obj,
|
|
321
|
+
});
|
|
322
|
+
export const ListSolFunctionInstancesOutputFilterSensitiveLog = (obj) => ({
|
|
323
|
+
...obj,
|
|
324
|
+
});
|
|
325
|
+
export const ListSolFunctionPackageMetadataFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
});
|
|
328
|
+
export const ListSolFunctionPackageInfoFilterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
});
|
|
331
|
+
export const ListSolFunctionPackagesInputFilterSensitiveLog = (obj) => ({
|
|
332
|
+
...obj,
|
|
333
|
+
});
|
|
334
|
+
export const ListSolFunctionPackagesOutputFilterSensitiveLog = (obj) => ({
|
|
335
|
+
...obj,
|
|
336
|
+
});
|
|
337
|
+
export const ListSolNetworkInstanceMetadataFilterSensitiveLog = (obj) => ({
|
|
338
|
+
...obj,
|
|
339
|
+
});
|
|
340
|
+
export const ListSolNetworkInstanceInfoFilterSensitiveLog = (obj) => ({
|
|
341
|
+
...obj,
|
|
342
|
+
});
|
|
343
|
+
export const ListSolNetworkInstancesInputFilterSensitiveLog = (obj) => ({
|
|
344
|
+
...obj,
|
|
345
|
+
});
|
|
346
|
+
export const ListSolNetworkInstancesOutputFilterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
});
|
|
349
|
+
export const ListSolNetworkOperationsInputFilterSensitiveLog = (obj) => ({
|
|
350
|
+
...obj,
|
|
351
|
+
});
|
|
352
|
+
export const ListSolNetworkOperationsMetadataFilterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
});
|
|
355
|
+
export const ListSolNetworkOperationsInfoFilterSensitiveLog = (obj) => ({
|
|
356
|
+
...obj,
|
|
357
|
+
});
|
|
358
|
+
export const ListSolNetworkOperationsOutputFilterSensitiveLog = (obj) => ({
|
|
359
|
+
...obj,
|
|
360
|
+
});
|
|
361
|
+
export const ListSolNetworkPackageMetadataFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
});
|
|
364
|
+
export const ListSolNetworkPackageInfoFilterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
});
|
|
367
|
+
export const ListSolNetworkPackagesInputFilterSensitiveLog = (obj) => ({
|
|
368
|
+
...obj,
|
|
369
|
+
});
|
|
370
|
+
export const ListSolNetworkPackagesOutputFilterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
});
|
|
373
|
+
export const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
|
|
374
|
+
...obj,
|
|
375
|
+
});
|
|
376
|
+
export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
|
|
377
|
+
...obj,
|
|
378
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
379
|
+
});
|
|
380
|
+
export const PutSolFunctionPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
381
|
+
...obj,
|
|
382
|
+
});
|
|
383
|
+
export const PutSolFunctionPackageContentMetadataFilterSensitiveLog = (obj) => ({
|
|
384
|
+
...obj,
|
|
385
|
+
});
|
|
386
|
+
export const PutSolFunctionPackageContentOutputFilterSensitiveLog = (obj) => ({
|
|
387
|
+
...obj,
|
|
388
|
+
});
|
|
389
|
+
export const PutSolNetworkPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
390
|
+
...obj,
|
|
391
|
+
});
|
|
392
|
+
export const PutSolNetworkPackageContentMetadataFilterSensitiveLog = (obj) => ({
|
|
393
|
+
...obj,
|
|
394
|
+
});
|
|
395
|
+
export const PutSolNetworkPackageContentOutputFilterSensitiveLog = (obj) => ({
|
|
396
|
+
...obj,
|
|
397
|
+
});
|
|
398
|
+
export const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
399
|
+
...obj,
|
|
400
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
401
|
+
});
|
|
402
|
+
export const TagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
403
|
+
...obj,
|
|
404
|
+
});
|
|
405
|
+
export const TerminateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
406
|
+
...obj,
|
|
407
|
+
});
|
|
408
|
+
export const TerminateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
409
|
+
...obj,
|
|
410
|
+
});
|
|
411
|
+
export const UntagResourceInputFilterSensitiveLog = (obj) => ({
|
|
412
|
+
...obj,
|
|
413
|
+
});
|
|
414
|
+
export const UntagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
415
|
+
...obj,
|
|
416
|
+
});
|
|
417
|
+
export const UpdateSolFunctionPackageInputFilterSensitiveLog = (obj) => ({
|
|
418
|
+
...obj,
|
|
419
|
+
});
|
|
420
|
+
export const UpdateSolFunctionPackageOutputFilterSensitiveLog = (obj) => ({
|
|
421
|
+
...obj,
|
|
422
|
+
});
|
|
423
|
+
export const UpdateSolNetworkModifyFilterSensitiveLog = (obj) => ({
|
|
424
|
+
...obj,
|
|
425
|
+
});
|
|
426
|
+
export const UpdateSolNetworkInstanceInputFilterSensitiveLog = (obj) => ({
|
|
427
|
+
...obj,
|
|
428
|
+
});
|
|
429
|
+
export const UpdateSolNetworkInstanceOutputFilterSensitiveLog = (obj) => ({
|
|
430
|
+
...obj,
|
|
431
|
+
});
|
|
432
|
+
export const UpdateSolNetworkPackageInputFilterSensitiveLog = (obj) => ({
|
|
433
|
+
...obj,
|
|
434
|
+
});
|
|
435
|
+
export const UpdateSolNetworkPackageOutputFilterSensitiveLog = (obj) => ({
|
|
436
|
+
...obj,
|
|
437
|
+
});
|
|
438
|
+
export const ValidateSolFunctionPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
439
|
+
...obj,
|
|
440
|
+
});
|
|
441
|
+
export const ValidateSolFunctionPackageContentMetadataFilterSensitiveLog = (obj) => ({
|
|
442
|
+
...obj,
|
|
443
|
+
});
|
|
444
|
+
export const ValidateSolFunctionPackageContentOutputFilterSensitiveLog = (obj) => ({
|
|
445
|
+
...obj,
|
|
446
|
+
});
|
|
447
|
+
export const ValidateSolNetworkPackageContentInputFilterSensitiveLog = (obj) => ({
|
|
448
|
+
...obj,
|
|
449
|
+
});
|
|
450
|
+
export const ValidateSolNetworkPackageContentMetadataFilterSensitiveLog = (obj) => ({
|
|
451
|
+
...obj,
|
|
452
|
+
});
|
|
453
|
+
export const ValidateSolNetworkPackageContentOutputFilterSensitiveLog = (obj) => ({
|
|
454
|
+
...obj,
|
|
455
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|