@aws-sdk/client-tnb 3.300.0 → 3.301.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist-types/commands/CancelSolNetworkOperationCommand.d.ts +1 -1
  2. package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +2 -2
  3. package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +2 -2
  4. package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +2 -2
  5. package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +1 -1
  8. package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +1 -1
  9. package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +1 -1
  10. package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +1 -1
  11. package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +1 -1
  12. package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +1 -1
  13. package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +1 -1
  14. package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +1 -1
  15. package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +1 -1
  16. package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +1 -1
  17. package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +2 -2
  18. package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +1 -1
  19. package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +1 -1
  20. package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +1 -1
  21. package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +1 -1
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  24. package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +1 -1
  25. package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +1 -1
  26. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  27. package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +2 -2
  28. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  29. package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +3 -3
  31. package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +1 -1
  32. package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +1 -1
  33. package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +1 -1
  34. package/package.json +3 -3
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // CancelSolNetworkOperationInput
31
31
  * nsLcmOpOccId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new CancelSolNetworkOperationCommand(input);
@@ -29,8 +29,8 @@ 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: {
32
+ * const input = { // CreateSolFunctionPackageInput
33
+ * tags: { // TagMap
34
34
  * "<keys>": "STRING_VALUE",
35
35
  * },
36
36
  * };
@@ -28,11 +28,11 @@ 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 = {
31
+ * const input = { // CreateSolNetworkInstanceInput
32
32
  * nsdInfoId: "STRING_VALUE", // required
33
33
  * nsName: "STRING_VALUE", // required
34
34
  * nsDescription: "STRING_VALUE",
35
- * tags: {
35
+ * tags: { // TagMap
36
36
  * "<keys>": "STRING_VALUE",
37
37
  * },
38
38
  * };
@@ -30,8 +30,8 @@ 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: {
33
+ * const input = { // CreateSolNetworkPackageInput
34
+ * tags: { // TagMap
35
35
  * "<keys>": "STRING_VALUE",
36
36
  * },
37
37
  * };
@@ -29,7 +29,7 @@ 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 = {
32
+ * const input = { // DeleteSolFunctionPackageInput
33
33
  * vnfPkgId: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new DeleteSolFunctionPackageCommand(input);
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // DeleteSolNetworkInstanceInput
32
32
  * nsInstanceId: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteSolNetworkInstanceCommand(input);
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // DeleteSolNetworkPackageInput
32
32
  * nsdInfoId: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteSolNetworkPackageCommand(input);
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // GetSolFunctionInstanceInput
31
31
  * vnfInstanceId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetSolFunctionInstanceCommand(input);
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // GetSolFunctionPackageInput
31
31
  * vnfPkgId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetSolFunctionPackageCommand(input);
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // GetSolFunctionPackageContentInput
31
31
  * vnfPkgId: "STRING_VALUE", // required
32
32
  * accept: "application/zip", // required
33
33
  * };
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // GetSolFunctionPackageDescriptorInput
32
32
  * vnfPkgId: "STRING_VALUE", // required
33
33
  * accept: "text/plain", // required
34
34
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // GetSolNetworkInstanceInput
31
31
  * nsInstanceId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetSolNetworkInstanceCommand(input);
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // GetSolNetworkOperationInput
31
31
  * nsLcmOpOccId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetSolNetworkOperationCommand(input);
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // GetSolNetworkPackageInput
31
31
  * nsdInfoId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetSolNetworkPackageCommand(input);
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // GetSolNetworkPackageContentInput
31
31
  * nsdInfoId: "STRING_VALUE", // required
32
32
  * accept: "application/zip", // required
33
33
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // GetSolNetworkPackageDescriptorInput
31
31
  * nsdInfoId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetSolNetworkPackageDescriptorCommand(input);
@@ -28,11 +28,11 @@ 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 = {
31
+ * const input = { // InstantiateSolNetworkInstanceInput
32
32
  * nsInstanceId: "STRING_VALUE", // required
33
33
  * dryRun: true || false,
34
34
  * additionalParamsForNs: "DOCUMENT_VALUE",
35
- * tags: {
35
+ * tags: { // TagMap
36
36
  * "<keys>": "STRING_VALUE",
37
37
  * },
38
38
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // ListSolFunctionInstancesInput
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
33
33
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // ListSolFunctionPackagesInput
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
33
33
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // ListSolNetworkInstancesInput
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
33
33
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // ListSolNetworkOperationsInput
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
33
33
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // ListSolNetworkPackagesInput
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
33
33
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListTagsForResourceInput
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // PutSolFunctionPackageContentInput
31
31
  * vnfPkgId: "STRING_VALUE", // required
32
32
  * contentType: "application/zip",
33
33
  * file: "BLOB_VALUE", // required
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // PutSolNetworkPackageContentInput
31
31
  * nsdInfoId: "STRING_VALUE", // required
32
32
  * contentType: "application/zip",
33
33
  * file: "BLOB_VALUE", // required
@@ -27,9 +27,9 @@ 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 = {
30
+ * const input = { // TagResourceInput
31
31
  * resourceArn: "STRING_VALUE", // required
32
- * tags: { // required
32
+ * tags: { // TagMap // required
33
33
  * "<keys>": "STRING_VALUE",
34
34
  * },
35
35
  * };
@@ -28,9 +28,9 @@ 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 = {
31
+ * const input = { // TerminateSolNetworkInstanceInput
32
32
  * nsInstanceId: "STRING_VALUE", // required
33
- * tags: {
33
+ * tags: { // TagMap
34
34
  * "<keys>": "STRING_VALUE",
35
35
  * },
36
36
  * };
@@ -27,9 +27,9 @@ 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 = {
30
+ * const input = { // UntagResourceInput
31
31
  * resourceArn: "STRING_VALUE", // required
32
- * tagKeys: [ // required
32
+ * tagKeys: [ // TagKeys // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // UpdateSolFunctionPackageInput
31
31
  * vnfPkgId: "STRING_VALUE", // required
32
32
  * operationalState: "ENABLED" || "DISABLED", // required
33
33
  * };
@@ -27,14 +27,14 @@ 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 = {
30
+ * const input = { // UpdateSolNetworkInstanceInput
31
31
  * nsInstanceId: "STRING_VALUE", // required
32
32
  * updateType: "MODIFY_VNF_INFORMATION", // required
33
- * modifyVnfInfoData: {
33
+ * modifyVnfInfoData: { // UpdateSolNetworkModify
34
34
  * vnfInstanceId: "STRING_VALUE", // required
35
35
  * vnfConfigurableProperties: "DOCUMENT_VALUE", // required
36
36
  * },
37
- * tags: {
37
+ * tags: { // TagMap
38
38
  * "<keys>": "STRING_VALUE",
39
39
  * },
40
40
  * };
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // UpdateSolNetworkPackageInput
32
32
  * nsdInfoId: "STRING_VALUE", // required
33
33
  * nsdOperationalState: "ENABLED" || "DISABLED", // required
34
34
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // ValidateSolFunctionPackageContentInput
31
31
  * vnfPkgId: "STRING_VALUE", // required
32
32
  * contentType: "application/zip",
33
33
  * file: "BLOB_VALUE", // required
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // ValidateSolNetworkPackageContentInput
31
31
  * nsdInfoId: "STRING_VALUE", // required
32
32
  * contentType: "application/zip",
33
33
  * file: "BLOB_VALUE", // required
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.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",