@aws-sdk/client-tnb 3.299.0 → 3.300.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist-types/commands/CancelSolNetworkOperationCommand.d.ts +3 -0
  2. package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +5 -0
  3. package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +8 -0
  4. package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +5 -0
  5. package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +3 -0
  6. package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +3 -0
  7. package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +3 -0
  8. package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +3 -0
  9. package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +3 -0
  10. package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +4 -0
  11. package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +4 -0
  12. package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +3 -0
  13. package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +3 -0
  14. package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +3 -0
  15. package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +4 -0
  16. package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +3 -0
  17. package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +8 -0
  18. package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +4 -0
  19. package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +4 -0
  20. package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +4 -0
  21. package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +4 -0
  22. package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +4 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  24. package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +5 -0
  25. package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +5 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  27. package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +6 -0
  28. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  29. package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +4 -0
  30. package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +11 -0
  31. package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +4 -0
  32. package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +5 -0
  33. package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +5 -0
  34. package/package.json +8 -8
@@ -27,6 +27,9 @@ export interface CancelSolNetworkOperationCommandOutput extends __MetadataBearer
27
27
  * import { TnbClient, CancelSolNetworkOperationCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, CancelSolNetworkOperationCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * nsLcmOpOccId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new CancelSolNetworkOperationCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -29,6 +29,11 @@ export interface CreateSolFunctionPackageCommandOutput extends CreateSolFunction
29
29
  * import { TnbClient, CreateSolFunctionPackageCommand } from "@aws-sdk/client-tnb"; // ES Modules import
30
30
  * // const { TnbClient, CreateSolFunctionPackageCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
31
31
  * const client = new TnbClient(config);
32
+ * const input = {
33
+ * tags: {
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * };
32
37
  * const command = new CreateSolFunctionPackageCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -28,6 +28,14 @@ export interface CreateSolNetworkInstanceCommandOutput extends CreateSolNetworkI
28
28
  * import { TnbClient, CreateSolNetworkInstanceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
29
29
  * // const { TnbClient, CreateSolNetworkInstanceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
30
30
  * const client = new TnbClient(config);
31
+ * const input = {
32
+ * nsdInfoId: "STRING_VALUE", // required
33
+ * nsName: "STRING_VALUE", // required
34
+ * nsDescription: "STRING_VALUE",
35
+ * tags: {
36
+ * "<keys>": "STRING_VALUE",
37
+ * },
38
+ * };
31
39
  * const command = new CreateSolNetworkInstanceCommand(input);
32
40
  * const response = await client.send(command);
33
41
  * ```
@@ -30,6 +30,11 @@ export interface CreateSolNetworkPackageCommandOutput extends CreateSolNetworkPa
30
30
  * import { TnbClient, CreateSolNetworkPackageCommand } from "@aws-sdk/client-tnb"; // ES Modules import
31
31
  * // const { TnbClient, CreateSolNetworkPackageCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
32
32
  * const client = new TnbClient(config);
33
+ * const input = {
34
+ * tags: {
35
+ * "<keys>": "STRING_VALUE",
36
+ * },
37
+ * };
33
38
  * const command = new CreateSolNetworkPackageCommand(input);
34
39
  * const response = await client.send(command);
35
40
  * ```
@@ -29,6 +29,9 @@ export interface DeleteSolFunctionPackageCommandOutput extends __MetadataBearer
29
29
  * import { TnbClient, DeleteSolFunctionPackageCommand } from "@aws-sdk/client-tnb"; // ES Modules import
30
30
  * // const { TnbClient, DeleteSolFunctionPackageCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
31
31
  * const client = new TnbClient(config);
32
+ * const input = {
33
+ * vnfPkgId: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DeleteSolFunctionPackageCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -28,6 +28,9 @@ export interface DeleteSolNetworkInstanceCommandOutput extends __MetadataBearer
28
28
  * import { TnbClient, DeleteSolNetworkInstanceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
29
29
  * // const { TnbClient, DeleteSolNetworkInstanceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
30
30
  * const client = new TnbClient(config);
31
+ * const input = {
32
+ * nsInstanceId: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DeleteSolNetworkInstanceCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -28,6 +28,9 @@ export interface DeleteSolNetworkPackageCommandOutput extends __MetadataBearer {
28
28
  * import { TnbClient, DeleteSolNetworkPackageCommand } from "@aws-sdk/client-tnb"; // ES Modules import
29
29
  * // const { TnbClient, DeleteSolNetworkPackageCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
30
30
  * const client = new TnbClient(config);
31
+ * const input = {
32
+ * nsdInfoId: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DeleteSolNetworkPackageCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -27,6 +27,9 @@ export interface GetSolFunctionInstanceCommandOutput extends GetSolFunctionInsta
27
27
  * import { TnbClient, GetSolFunctionInstanceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, GetSolFunctionInstanceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * vnfInstanceId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new GetSolFunctionInstanceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface GetSolFunctionPackageCommandOutput extends GetSolFunctionPackag
27
27
  * import { TnbClient, GetSolFunctionPackageCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, GetSolFunctionPackageCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * vnfPkgId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new GetSolFunctionPackageCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,10 @@ export interface GetSolFunctionPackageContentCommandOutput extends GetSolFunctio
27
27
  * import { TnbClient, GetSolFunctionPackageContentCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, GetSolFunctionPackageContentCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * vnfPkgId: "STRING_VALUE", // required
32
+ * accept: "application/zip", // required
33
+ * };
30
34
  * const command = new GetSolFunctionPackageContentCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -28,6 +28,10 @@ export interface GetSolFunctionPackageDescriptorCommandOutput extends GetSolFunc
28
28
  * import { TnbClient, GetSolFunctionPackageDescriptorCommand } from "@aws-sdk/client-tnb"; // ES Modules import
29
29
  * // const { TnbClient, GetSolFunctionPackageDescriptorCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
30
30
  * const client = new TnbClient(config);
31
+ * const input = {
32
+ * vnfPkgId: "STRING_VALUE", // required
33
+ * accept: "text/plain", // required
34
+ * };
31
35
  * const command = new GetSolFunctionPackageDescriptorCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -27,6 +27,9 @@ export interface GetSolNetworkInstanceCommandOutput extends GetSolNetworkInstanc
27
27
  * import { TnbClient, GetSolNetworkInstanceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, GetSolNetworkInstanceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * nsInstanceId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new GetSolNetworkInstanceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface GetSolNetworkOperationCommandOutput extends GetSolNetworkOperat
27
27
  * import { TnbClient, GetSolNetworkOperationCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, GetSolNetworkOperationCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * nsLcmOpOccId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new GetSolNetworkOperationCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface GetSolNetworkPackageCommandOutput extends GetSolNetworkPackageO
27
27
  * import { TnbClient, GetSolNetworkPackageCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, GetSolNetworkPackageCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * nsdInfoId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new GetSolNetworkPackageCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,10 @@ export interface GetSolNetworkPackageContentCommandOutput extends GetSolNetworkP
27
27
  * import { TnbClient, GetSolNetworkPackageContentCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, GetSolNetworkPackageContentCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * nsdInfoId: "STRING_VALUE", // required
32
+ * accept: "application/zip", // required
33
+ * };
30
34
  * const command = new GetSolNetworkPackageContentCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,9 @@ export interface GetSolNetworkPackageDescriptorCommandOutput extends GetSolNetwo
27
27
  * import { TnbClient, GetSolNetworkPackageDescriptorCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, GetSolNetworkPackageDescriptorCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * nsdInfoId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new GetSolNetworkPackageDescriptorCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -28,6 +28,14 @@ export interface InstantiateSolNetworkInstanceCommandOutput extends InstantiateS
28
28
  * import { TnbClient, InstantiateSolNetworkInstanceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
29
29
  * // const { TnbClient, InstantiateSolNetworkInstanceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
30
30
  * const client = new TnbClient(config);
31
+ * const input = {
32
+ * nsInstanceId: "STRING_VALUE", // required
33
+ * dryRun: true || false,
34
+ * additionalParamsForNs: "DOCUMENT_VALUE",
35
+ * tags: {
36
+ * "<keys>": "STRING_VALUE",
37
+ * },
38
+ * };
31
39
  * const command = new InstantiateSolNetworkInstanceCommand(input);
32
40
  * const response = await client.send(command);
33
41
  * ```
@@ -27,6 +27,10 @@ export interface ListSolFunctionInstancesCommandOutput extends ListSolFunctionIn
27
27
  * import { TnbClient, ListSolFunctionInstancesCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, ListSolFunctionInstancesCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * };
30
34
  * const command = new ListSolFunctionInstancesCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,10 @@ export interface ListSolFunctionPackagesCommandOutput extends ListSolFunctionPac
27
27
  * import { TnbClient, ListSolFunctionPackagesCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, ListSolFunctionPackagesCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * };
30
34
  * const command = new ListSolFunctionPackagesCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,10 @@ export interface ListSolNetworkInstancesCommandOutput extends ListSolNetworkInst
27
27
  * import { TnbClient, ListSolNetworkInstancesCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, ListSolNetworkInstancesCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * };
30
34
  * const command = new ListSolNetworkInstancesCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,10 @@ export interface ListSolNetworkOperationsCommandOutput extends ListSolNetworkOpe
27
27
  * import { TnbClient, ListSolNetworkOperationsCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, ListSolNetworkOperationsCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * };
30
34
  * const command = new ListSolNetworkOperationsCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,10 @@ export interface ListSolNetworkPackagesCommandOutput extends ListSolNetworkPacka
27
27
  * import { TnbClient, ListSolNetworkPackagesCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, ListSolNetworkPackagesCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * };
30
34
  * const command = new ListSolNetworkPackagesCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
26
26
  * import { TnbClient, ListTagsForResourceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
27
27
  * // const { TnbClient, ListTagsForResourceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
28
28
  * const client = new TnbClient(config);
29
+ * const input = {
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,11 @@ export interface PutSolFunctionPackageContentCommandOutput extends PutSolFunctio
27
27
  * import { TnbClient, PutSolFunctionPackageContentCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, PutSolFunctionPackageContentCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * vnfPkgId: "STRING_VALUE", // required
32
+ * contentType: "application/zip",
33
+ * file: "BLOB_VALUE", // required
34
+ * };
30
35
  * const command = new PutSolFunctionPackageContentCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,11 @@ export interface PutSolNetworkPackageContentCommandOutput extends PutSolNetworkP
27
27
  * import { TnbClient, PutSolNetworkPackageContentCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, PutSolNetworkPackageContentCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * nsdInfoId: "STRING_VALUE", // required
32
+ * contentType: "application/zip",
33
+ * file: "BLOB_VALUE", // required
34
+ * };
30
35
  * const command = new PutSolNetworkPackageContentCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,12 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
27
27
  * import { TnbClient, TagResourceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, TagResourceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * resourceArn: "STRING_VALUE", // required
32
+ * tags: { // required
33
+ * "<keys>": "STRING_VALUE",
34
+ * },
35
+ * };
30
36
  * const command = new TagResourceCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -28,6 +28,12 @@ export interface TerminateSolNetworkInstanceCommandOutput extends TerminateSolNe
28
28
  * import { TnbClient, TerminateSolNetworkInstanceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
29
29
  * // const { TnbClient, TerminateSolNetworkInstanceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
30
30
  * const client = new TnbClient(config);
31
+ * const input = {
32
+ * nsInstanceId: "STRING_VALUE", // required
33
+ * tags: {
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * };
31
37
  * const command = new TerminateSolNetworkInstanceCommand(input);
32
38
  * const response = await client.send(command);
33
39
  * ```
@@ -27,6 +27,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
27
27
  * import { TnbClient, UntagResourceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, UntagResourceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * resourceArn: "STRING_VALUE", // required
32
+ * tagKeys: [ // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * };
30
36
  * const command = new UntagResourceCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -27,6 +27,10 @@ export interface UpdateSolFunctionPackageCommandOutput extends UpdateSolFunction
27
27
  * import { TnbClient, UpdateSolFunctionPackageCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, UpdateSolFunctionPackageCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * vnfPkgId: "STRING_VALUE", // required
32
+ * operationalState: "ENABLED" || "DISABLED", // required
33
+ * };
30
34
  * const command = new UpdateSolFunctionPackageCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,17 @@ export interface UpdateSolNetworkInstanceCommandOutput extends UpdateSolNetworkI
27
27
  * import { TnbClient, UpdateSolNetworkInstanceCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, UpdateSolNetworkInstanceCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * nsInstanceId: "STRING_VALUE", // required
32
+ * updateType: "MODIFY_VNF_INFORMATION", // required
33
+ * modifyVnfInfoData: {
34
+ * vnfInstanceId: "STRING_VALUE", // required
35
+ * vnfConfigurableProperties: "DOCUMENT_VALUE", // required
36
+ * },
37
+ * tags: {
38
+ * "<keys>": "STRING_VALUE",
39
+ * },
40
+ * };
30
41
  * const command = new UpdateSolNetworkInstanceCommand(input);
31
42
  * const response = await client.send(command);
32
43
  * ```
@@ -28,6 +28,10 @@ export interface UpdateSolNetworkPackageCommandOutput extends UpdateSolNetworkPa
28
28
  * import { TnbClient, UpdateSolNetworkPackageCommand } from "@aws-sdk/client-tnb"; // ES Modules import
29
29
  * // const { TnbClient, UpdateSolNetworkPackageCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
30
30
  * const client = new TnbClient(config);
31
+ * const input = {
32
+ * nsdInfoId: "STRING_VALUE", // required
33
+ * nsdOperationalState: "ENABLED" || "DISABLED", // required
34
+ * };
31
35
  * const command = new UpdateSolNetworkPackageCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -27,6 +27,11 @@ export interface ValidateSolFunctionPackageContentCommandOutput extends Validate
27
27
  * import { TnbClient, ValidateSolFunctionPackageContentCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, ValidateSolFunctionPackageContentCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * vnfPkgId: "STRING_VALUE", // required
32
+ * contentType: "application/zip",
33
+ * file: "BLOB_VALUE", // required
34
+ * };
30
35
  * const command = new ValidateSolFunctionPackageContentCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,11 @@ export interface ValidateSolNetworkPackageContentCommandOutput extends ValidateS
27
27
  * import { TnbClient, ValidateSolNetworkPackageContentCommand } from "@aws-sdk/client-tnb"; // ES Modules import
28
28
  * // const { TnbClient, ValidateSolNetworkPackageContentCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
29
29
  * const client = new TnbClient(config);
30
+ * const input = {
31
+ * nsdInfoId: "STRING_VALUE", // required
32
+ * contentType: "application/zip",
33
+ * file: "BLOB_VALUE", // required
34
+ * };
30
35
  * const command = new ValidateSolNetworkPackageContentCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-tnb",
3
3
  "description": "AWS SDK for JavaScript Tnb Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.300.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },