@aws-sdk/client-tnb 3.289.0 → 3.292.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 (41) hide show
  1. package/dist-cjs/models/models_0.js +6 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +17 -1
  3. package/dist-es/models/models_0.js +6 -0
  4. package/dist-es/protocols/Aws_restJson1.js +17 -1
  5. package/dist-types/Tnb.d.ts +9 -9
  6. package/dist-types/commands/CancelSolNetworkOperationCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +17 -1
  8. package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +20 -1
  9. package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +17 -1
  10. package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +17 -1
  11. package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +17 -1
  12. package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +17 -1
  13. package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +16 -0
  14. package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +16 -0
  15. package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +16 -0
  16. package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +16 -0
  17. package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +16 -0
  18. package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +16 -0
  19. package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +16 -0
  20. package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +16 -0
  21. package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +16 -0
  22. package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +20 -1
  23. package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +13 -0
  24. package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +13 -0
  25. package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +13 -0
  26. package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +13 -0
  27. package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +13 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  29. package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +16 -0
  30. package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +16 -0
  31. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  32. package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +19 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +19 -0
  36. package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +16 -0
  37. package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +17 -1
  38. package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +17 -1
  39. package/dist-types/models/models_0.d.ts +32 -8
  40. package/dist-types/ts3.4/models/models_0.d.ts +6 -0
  41. package/package.json +35 -40
@@ -14,7 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
14
14
  }
15
15
  export interface CancelSolNetworkOperationInput {
16
16
  /**
17
- * <p>The ID of a network operation occurrence.</p>
17
+ * <p>The identifier of the network operation.</p>
18
18
  */
19
19
  nsLcmOpOccId: string | undefined;
20
20
  }
@@ -518,7 +518,7 @@ export interface GetSolNetworkInstanceInput {
518
518
  */
519
519
  export interface LcmOperationInfo {
520
520
  /**
521
- * <p>The identifier of the latest network lifecycle management operation occurrence.</p>
521
+ * <p>The identifier of the network operation.</p>
522
522
  */
523
523
  nsLcmOpOccId: string | undefined;
524
524
  }
@@ -592,7 +592,7 @@ export interface GetSolNetworkInstanceOutput {
592
592
  }
593
593
  export interface GetSolNetworkOperationInput {
594
594
  /**
595
- * <p>The identifier of the operation occurrence.</p>
595
+ * <p>The identifier of the network operation.</p>
596
596
  */
597
597
  nsLcmOpOccId: string | undefined;
598
598
  }
@@ -615,7 +615,7 @@ export declare enum LcmOperationType {
615
615
  UPDATE = "UPDATE"
616
616
  }
617
617
  /**
618
- * <p>Metadata related to a network operation occurence.</p>
618
+ * <p>Metadata related to a network operation occurrence.</p>
619
619
  * <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
620
620
  */
621
621
  export interface GetSolNetworkOperationMetadata {
@@ -696,7 +696,7 @@ export interface GetSolNetworkOperationOutput {
696
696
  */
697
697
  lcmOperationType?: LcmOperationType | string;
698
698
  /**
699
- * <p>Error related to this specific network operation occurence.</p>
699
+ * <p>Error related to this specific network operation occurrence.</p>
700
700
  */
701
701
  error?: ProblemDetails;
702
702
  /**
@@ -844,12 +844,20 @@ export interface InstantiateSolNetworkInstanceInput {
844
844
  * <p>Provides values for the configurable properties.</p>
845
845
  */
846
846
  additionalParamsForNs?: __DocumentType;
847
+ /**
848
+ * <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
849
+ */
850
+ tags?: Record<string, string>;
847
851
  }
848
852
  export interface InstantiateSolNetworkInstanceOutput {
849
853
  /**
850
- * <p>The identifier of the network instance.</p>
854
+ * <p>The identifier of the network operation.</p>
851
855
  */
852
856
  nsLcmOpOccId: string | undefined;
857
+ /**
858
+ * <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
859
+ */
860
+ tags?: Record<string, string>;
853
861
  }
854
862
  /**
855
863
  * <p>Lists network function instance metadata.</p>
@@ -1366,12 +1374,20 @@ export interface TerminateSolNetworkInstanceInput {
1366
1374
  * <p>ID of the network instance.</p>
1367
1375
  */
1368
1376
  nsInstanceId: string | undefined;
1377
+ /**
1378
+ * <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
1379
+ */
1380
+ tags?: Record<string, string>;
1369
1381
  }
1370
1382
  export interface TerminateSolNetworkInstanceOutput {
1371
1383
  /**
1372
- * <p>The identifier of the operation occurrence.</p>
1384
+ * <p>The identifier of the network operation.</p>
1373
1385
  */
1374
1386
  nsLcmOpOccId?: string;
1387
+ /**
1388
+ * <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
1389
+ */
1390
+ tags?: Record<string, string>;
1375
1391
  }
1376
1392
  export interface UntagResourceInput {
1377
1393
  /**
@@ -1432,12 +1448,20 @@ export interface UpdateSolNetworkInstanceInput {
1432
1448
  * <p>Identifies the network function information parameters and/or the configurable properties of the network function to be modified.</p>
1433
1449
  */
1434
1450
  modifyVnfInfoData?: UpdateSolNetworkModify;
1451
+ /**
1452
+ * <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
1453
+ */
1454
+ tags?: Record<string, string>;
1435
1455
  }
1436
1456
  export interface UpdateSolNetworkInstanceOutput {
1437
1457
  /**
1438
- * <p>The identifier of the network instance operation occurrence.</p>
1458
+ * <p>The identifier of the network operation.</p>
1439
1459
  */
1440
1460
  nsLcmOpOccId?: string;
1461
+ /**
1462
+ * <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. When you use this API, the tags are transferred to the network operation that is created. Use tags to search and filter your resources or track your Amazon Web Services costs.</p>
1463
+ */
1464
+ tags?: Record<string, string>;
1441
1465
  }
1442
1466
  export interface UpdateSolNetworkPackageInput {
1443
1467
  /**
@@ -340,9 +340,11 @@ export interface InstantiateSolNetworkInstanceInput {
340
340
  nsInstanceId: string | undefined;
341
341
  dryRun?: boolean;
342
342
  additionalParamsForNs?: __DocumentType;
343
+ tags?: Record<string, string>;
343
344
  }
344
345
  export interface InstantiateSolNetworkInstanceOutput {
345
346
  nsLcmOpOccId: string | undefined;
347
+ tags?: Record<string, string>;
346
348
  }
347
349
  export interface ListSolFunctionInstanceMetadata {
348
350
  createdAt: Date | undefined;
@@ -505,9 +507,11 @@ export interface TagResourceInput {
505
507
  export interface TagResourceOutput {}
506
508
  export interface TerminateSolNetworkInstanceInput {
507
509
  nsInstanceId: string | undefined;
510
+ tags?: Record<string, string>;
508
511
  }
509
512
  export interface TerminateSolNetworkInstanceOutput {
510
513
  nsLcmOpOccId?: string;
514
+ tags?: Record<string, string>;
511
515
  }
512
516
  export interface UntagResourceInput {
513
517
  resourceArn: string | undefined;
@@ -532,9 +536,11 @@ export interface UpdateSolNetworkInstanceInput {
532
536
  nsInstanceId: string | undefined;
533
537
  updateType: UpdateSolNetworkType | string | undefined;
534
538
  modifyVnfInfoData?: UpdateSolNetworkModify;
539
+ tags?: Record<string, string>;
535
540
  }
536
541
  export interface UpdateSolNetworkInstanceOutput {
537
542
  nsLcmOpOccId?: string;
543
+ tags?: Record<string, string>;
538
544
  }
539
545
  export interface UpdateSolNetworkPackageInput {
540
546
  nsdInfoId: string | undefined;
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.289.0",
4
+ "version": "3.292.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",
@@ -20,55 +20,50 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
45
- "@aws-sdk/util-base64": "3.208.0",
46
- "@aws-sdk/util-body-length-browser": "3.188.0",
47
- "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
54
- "@aws-sdk/util-utf8": "3.254.0",
23
+ "@aws-sdk/client-sts": "3.292.0",
24
+ "@aws-sdk/config-resolver": "3.292.0",
25
+ "@aws-sdk/credential-provider-node": "3.292.0",
26
+ "@aws-sdk/fetch-http-handler": "3.292.0",
27
+ "@aws-sdk/hash-node": "3.292.0",
28
+ "@aws-sdk/invalid-dependency": "3.292.0",
29
+ "@aws-sdk/middleware-content-length": "3.292.0",
30
+ "@aws-sdk/middleware-endpoint": "3.292.0",
31
+ "@aws-sdk/middleware-host-header": "3.292.0",
32
+ "@aws-sdk/middleware-logger": "3.292.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
34
+ "@aws-sdk/middleware-retry": "3.292.0",
35
+ "@aws-sdk/middleware-serde": "3.292.0",
36
+ "@aws-sdk/middleware-signing": "3.292.0",
37
+ "@aws-sdk/middleware-stack": "3.292.0",
38
+ "@aws-sdk/middleware-user-agent": "3.292.0",
39
+ "@aws-sdk/node-config-provider": "3.292.0",
40
+ "@aws-sdk/node-http-handler": "3.292.0",
41
+ "@aws-sdk/protocol-http": "3.292.0",
42
+ "@aws-sdk/smithy-client": "3.292.0",
43
+ "@aws-sdk/types": "3.292.0",
44
+ "@aws-sdk/url-parser": "3.292.0",
45
+ "@aws-sdk/util-base64": "3.292.0",
46
+ "@aws-sdk/util-body-length-browser": "3.292.0",
47
+ "@aws-sdk/util-body-length-node": "3.292.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
50
+ "@aws-sdk/util-endpoints": "3.292.0",
51
+ "@aws-sdk/util-retry": "3.292.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
53
+ "@aws-sdk/util-user-agent-node": "3.292.0",
54
+ "@aws-sdk/util-utf8": "3.292.0",
55
55
  "tslib": "^2.3.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
58
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
59
59
  "@tsconfig/node14": "1.0.3",
60
60
  "@types/node": "^14.14.31",
61
61
  "concurrently": "7.0.0",
62
62
  "downlevel-dts": "0.10.1",
63
63
  "rimraf": "3.0.2",
64
- "typedoc": "0.19.2",
64
+ "typedoc": "0.23.23",
65
65
  "typescript": "~4.6.2"
66
66
  },
67
- "overrides": {
68
- "typedoc": {
69
- "typescript": "~4.6.2"
70
- }
71
- },
72
67
  "engines": {
73
68
  "node": ">=14.0.0"
74
69
  },