@aws-sdk/client-tnb 3.620.1 → 3.622.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 (56) hide show
  1. package/README.md +5 -1
  2. package/dist-cjs/index.js +87 -28
  3. package/dist-es/TnbClient.js +12 -18
  4. package/dist-es/commands/PutSolFunctionPackageContentCommand.js +2 -1
  5. package/dist-es/commands/PutSolNetworkPackageContentCommand.js +2 -1
  6. package/dist-es/commands/ValidateSolFunctionPackageContentCommand.js +2 -1
  7. package/dist-es/commands/ValidateSolNetworkPackageContentCommand.js +2 -1
  8. package/dist-es/models/models_0.js +20 -0
  9. package/dist-es/protocols/Aws_restJson1.js +37 -0
  10. package/dist-types/Tnb.d.ts +5 -1
  11. package/dist-types/TnbClient.d.ts +7 -5
  12. package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
  13. package/dist-types/commands/CancelSolNetworkOperationCommand.d.ts +2 -1
  14. package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +7 -4
  15. package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +7 -3
  16. package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +10 -5
  17. package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +4 -3
  18. package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +4 -2
  19. package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +4 -2
  20. package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +4 -2
  21. package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +4 -2
  22. package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +2 -1
  23. package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +2 -1
  24. package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +3 -2
  25. package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +17 -2
  26. package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +2 -1
  27. package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +2 -1
  28. package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +2 -1
  29. package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +4 -2
  30. package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +2 -1
  31. package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +2 -1
  32. package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +3 -2
  33. package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +8 -2
  34. package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +2 -1
  35. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  36. package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +2 -1
  37. package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +2 -1
  38. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  39. package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +2 -1
  40. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  41. package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +2 -1
  42. package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +8 -2
  43. package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +2 -1
  44. package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +4 -2
  45. package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +4 -2
  46. package/dist-types/index.d.ts +5 -1
  47. package/dist-types/models/models_0.d.ts +180 -22
  48. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  49. package/dist-types/runtimeConfig.d.ts +2 -2
  50. package/dist-types/runtimeConfig.native.d.ts +2 -2
  51. package/dist-types/ts3.4/TnbClient.d.ts +6 -8
  52. package/dist-types/ts3.4/models/models_0.d.ts +46 -5
  53. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
  54. package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
  55. package/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
  56. package/package.json +12 -12
@@ -30,12 +30,12 @@ export declare const defaultTnbHttpAuthSchemeProvider: TnbHttpAuthSchemeProvider
30
30
  */
31
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
32
  /**
33
- * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
33
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
34
34
  * @internal
35
35
  */
36
36
  httpAuthSchemes?: HttpAuthScheme[];
37
37
  /**
38
- * experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
38
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
39
39
  * @internal
40
40
  */
41
41
  httpAuthSchemeProvider?: TnbHttpAuthSchemeProvider;
@@ -45,12 +45,12 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
45
45
  */
46
46
  export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
47
47
  /**
48
- * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
48
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
49
49
  * @internal
50
50
  */
51
51
  readonly httpAuthSchemes: HttpAuthScheme[];
52
52
  /**
53
- * experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
53
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
54
54
  * @internal
55
55
  */
56
56
  readonly httpAuthSchemeProvider: TnbHttpAuthSchemeProvider;
@@ -63,7 +63,8 @@ declare const CancelSolNetworkOperationCommand_base: {
63
63
  * <p>Exception caused by throttling.</p>
64
64
  *
65
65
  * @throws {@link ValidationException} (client fault)
66
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
66
+ * <p>Unable to process the request because the client provided input failed to satisfy
67
+ * request constraints.</p>
67
68
  *
68
69
  * @throws {@link TnbServiceException}
69
70
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -28,9 +28,11 @@ declare const CreateSolFunctionPackageCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Creates a function package.</p>
31
- * <p>A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network. For more information, see <a href="https://docs.aws.amazon.com/tnb/latest/ug/function-packages.html">Function packages</a> in the <i>Amazon Web Services Telco Network Builder User Guide</i>.
32
- * </p>
33
- * <p>Creating a function package is the first step for creating a network in AWS TNB. This request creates an empty container with an ID. The next step is to upload the actual CSAR zip file into that empty container. To upload function package content, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_PutSolFunctionPackageContent.html">PutSolFunctionPackageContent</a>.</p>
31
+ * <p>A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network. For more information, see <a href="https://docs.aws.amazon.com/tnb/latest/ug/function-packages.html">Function packages</a> in the
32
+ * <i>Amazon Web Services Telco Network Builder User Guide</i>. </p>
33
+ * <p>Creating a function package is the first step for creating a network in AWS TNB. This
34
+ * request creates an empty container with an ID. The next step is to upload the actual CSAR
35
+ * zip file into that empty container. To upload function package content, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_PutSolFunctionPackageContent.html">PutSolFunctionPackageContent</a>.</p>
34
36
  * @example
35
37
  * Use a bare-bones client and the command you need to make an API call.
36
38
  * ```javascript
@@ -76,7 +78,8 @@ declare const CreateSolFunctionPackageCommand_base: {
76
78
  * <p>Exception caused by throttling.</p>
77
79
  *
78
80
  * @throws {@link ValidationException} (client fault)
79
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
81
+ * <p>Unable to process the request because the client provided input failed to satisfy
82
+ * request constraints.</p>
80
83
  *
81
84
  * @throws {@link TnbServiceException}
82
85
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -28,8 +28,11 @@ declare const CreateSolNetworkInstanceCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Creates a network instance.</p>
31
- * <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed. Creating a network instance is the third step after creating a network package. For more information about network instances, <a href="https://docs.aws.amazon.com/tnb/latest/ug/network-instances.html">Network instances</a> in the <i>Amazon Web Services Telco Network Builder User Guide</i>.</p>
32
- * <p>Once you create a network instance, you can instantiate it. To instantiate a network, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_InstantiateSolNetworkInstance.html">InstantiateSolNetworkInstance</a>.</p>
31
+ * <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed. Creating a network instance is the third step after creating a network
32
+ * package. For more information about network instances, <a href="https://docs.aws.amazon.com/tnb/latest/ug/network-instances.html">Network instances</a> in the
33
+ * <i>Amazon Web Services Telco Network Builder User Guide</i>.</p>
34
+ * <p>Once you create a network instance, you can instantiate it. To instantiate a network,
35
+ * see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_InstantiateSolNetworkInstance.html">InstantiateSolNetworkInstance</a>.</p>
33
36
  * @example
34
37
  * Use a bare-bones client and the command you need to make an API call.
35
38
  * ```javascript
@@ -80,7 +83,8 @@ declare const CreateSolNetworkInstanceCommand_base: {
80
83
  * <p>Exception caused by throttling.</p>
81
84
  *
82
85
  * @throws {@link ValidationException} (client fault)
83
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
86
+ * <p>Unable to process the request because the client provided input failed to satisfy
87
+ * request constraints.</p>
84
88
  *
85
89
  * @throws {@link TnbServiceException}
86
90
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -28,10 +28,14 @@ declare const CreateSolNetworkPackageCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Creates a network package.</p>
31
- * <p>A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on. For more information, see <a href="https://docs.aws.amazon.com/tnb/latest/ug/network-instances.html">Network instances</a> in the <i>Amazon Web Services Telco Network Builder User Guide</i>.
32
- * </p>
33
- * <p>A network package consists of a network service descriptor (NSD) file (required) and any additional files (optional), such as scripts specific to your needs. For example, if you have multiple function packages in your network package, you can use the NSD to define which network functions should run in certain VPCs, subnets, or EKS clusters.</p>
34
- * <p>This request creates an empty network package container with an ID. Once you create a network package, you can upload the network package content using <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_PutSolNetworkPackageContent.html">PutSolNetworkPackageContent</a>.</p>
31
+ * <p>A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on. For more information, see <a href="https://docs.aws.amazon.com/tnb/latest/ug/network-instances.html">Network instances</a> in the
32
+ * <i>Amazon Web Services Telco Network Builder User Guide</i>. </p>
33
+ * <p>A network package consists of a network service descriptor (NSD) file (required) and any
34
+ * additional files (optional), such as scripts specific to your needs. For example, if you
35
+ * have multiple function packages in your network package, you can use the NSD to define
36
+ * which network functions should run in certain VPCs, subnets, or EKS clusters.</p>
37
+ * <p>This request creates an empty network package container with an ID. Once you create a
38
+ * network package, you can upload the network package content using <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_PutSolNetworkPackageContent.html">PutSolNetworkPackageContent</a>.</p>
35
39
  * @example
36
40
  * Use a bare-bones client and the command you need to make an API call.
37
41
  * ```javascript
@@ -77,7 +81,8 @@ declare const CreateSolNetworkPackageCommand_base: {
77
81
  * <p>Exception caused by throttling.</p>
78
82
  *
79
83
  * @throws {@link ValidationException} (client fault)
80
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
84
+ * <p>Unable to process the request because the client provided input failed to satisfy
85
+ * request constraints.</p>
81
86
  *
82
87
  * @throws {@link TnbServiceException}
83
88
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -29,8 +29,8 @@ declare const DeleteSolFunctionPackageCommand_base: {
29
29
  /**
30
30
  * <p>Deletes a function package.</p>
31
31
  * <p>A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network.</p>
32
- * <p>To delete a function package, the package must be in a disabled state. To disable a function package, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_UpdateSolFunctionPackage.html">UpdateSolFunctionPackage</a>.
33
- * </p>
32
+ * <p>To delete a function package, the package must be in a disabled state. To disable a
33
+ * function package, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_UpdateSolFunctionPackage.html">UpdateSolFunctionPackage</a>. </p>
34
34
  * @example
35
35
  * Use a bare-bones client and the command you need to make an API call.
36
36
  * ```javascript
@@ -65,7 +65,8 @@ declare const DeleteSolFunctionPackageCommand_base: {
65
65
  * <p>Exception caused by throttling.</p>
66
66
  *
67
67
  * @throws {@link ValidationException} (client fault)
68
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
68
+ * <p>Unable to process the request because the client provided input failed to satisfy
69
+ * request constraints.</p>
69
70
  *
70
71
  * @throws {@link TnbServiceException}
71
72
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -29,7 +29,8 @@ declare const DeleteSolNetworkInstanceCommand_base: {
29
29
  /**
30
30
  * <p>Deletes a network instance.</p>
31
31
  * <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.</p>
32
- * <p>To delete a network instance, the instance must be in a stopped or terminated state. To terminate a network instance, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_TerminateSolNetworkInstance.html">TerminateSolNetworkInstance</a>.</p>
32
+ * <p>To delete a network instance, the instance must be in a stopped or terminated state. To
33
+ * terminate a network instance, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_TerminateSolNetworkInstance.html">TerminateSolNetworkInstance</a>.</p>
33
34
  * @example
34
35
  * Use a bare-bones client and the command you need to make an API call.
35
36
  * ```javascript
@@ -64,7 +65,8 @@ declare const DeleteSolNetworkInstanceCommand_base: {
64
65
  * <p>Exception caused by throttling.</p>
65
66
  *
66
67
  * @throws {@link ValidationException} (client fault)
67
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
68
+ * <p>Unable to process the request because the client provided input failed to satisfy
69
+ * request constraints.</p>
68
70
  *
69
71
  * @throws {@link TnbServiceException}
70
72
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -29,7 +29,8 @@ declare const DeleteSolNetworkPackageCommand_base: {
29
29
  /**
30
30
  * <p>Deletes network package.</p>
31
31
  * <p>A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.</p>
32
- * <p>To delete a network package, the package must be in a disable state. To disable a network package, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_UpdateSolNetworkPackage.html">UpdateSolNetworkPackage</a>.</p>
32
+ * <p>To delete a network package, the package must be in a disable state. To disable a
33
+ * network package, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_UpdateSolNetworkPackage.html">UpdateSolNetworkPackage</a>.</p>
33
34
  * @example
34
35
  * Use a bare-bones client and the command you need to make an API call.
35
36
  * ```javascript
@@ -64,7 +65,8 @@ declare const DeleteSolNetworkPackageCommand_base: {
64
65
  * <p>Exception caused by throttling.</p>
65
66
  *
66
67
  * @throws {@link ValidationException} (client fault)
67
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
68
+ * <p>Unable to process the request because the client provided input failed to satisfy
69
+ * request constraints.</p>
68
70
  *
69
71
  * @throws {@link TnbServiceException}
70
72
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -27,7 +27,8 @@ declare const GetSolFunctionInstanceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets the details of a network function instance, including the instantation state and metadata from the function package descriptor in the network function package.</p>
30
+ * <p>Gets the details of a network function instance, including the instantiation state and
31
+ * metadata from the function package descriptor in the network function package.</p>
31
32
  * <p>A network function instance is a function in a function package .</p>
32
33
  * @example
33
34
  * Use a bare-bones client and the command you need to make an API call.
@@ -92,7 +93,8 @@ declare const GetSolFunctionInstanceCommand_base: {
92
93
  * <p>Exception caused by throttling.</p>
93
94
  *
94
95
  * @throws {@link ValidationException} (client fault)
95
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
96
+ * <p>Unable to process the request because the client provided input failed to satisfy
97
+ * request constraints.</p>
96
98
  *
97
99
  * @throws {@link TnbServiceException}
98
100
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -27,7 +27,8 @@ declare const GetSolFunctionPackageCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets the details of an individual function package, such as the operational state and whether the package is in use.</p>
30
+ * <p>Gets the details of an individual function package, such as the operational state and
31
+ * whether the package is in use.</p>
31
32
  * <p>A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network..</p>
32
33
  * @example
33
34
  * Use a bare-bones client and the command you need to make an API call.
@@ -88,7 +89,8 @@ declare const GetSolFunctionPackageCommand_base: {
88
89
  * <p>Exception caused by throttling.</p>
89
90
  *
90
91
  * @throws {@link ValidationException} (client fault)
91
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
92
+ * <p>Unable to process the request because the client provided input failed to satisfy
93
+ * request constraints.</p>
92
94
  *
93
95
  * @throws {@link TnbServiceException}
94
96
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -74,7 +74,8 @@ declare const GetSolFunctionPackageContentCommand_base: {
74
74
  * <p>Exception caused by throttling.</p>
75
75
  *
76
76
  * @throws {@link ValidationException} (client fault)
77
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
77
+ * <p>Unable to process the request because the client provided input failed to satisfy
78
+ * request constraints.</p>
78
79
  *
79
80
  * @throws {@link TnbServiceException}
80
81
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -75,7 +75,8 @@ declare const GetSolFunctionPackageDescriptorCommand_base: {
75
75
  * <p>Exception caused by throttling.</p>
76
76
  *
77
77
  * @throws {@link ValidationException} (client fault)
78
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
78
+ * <p>Unable to process the request because the client provided input failed to satisfy
79
+ * request constraints.</p>
79
80
  *
80
81
  * @throws {@link TnbServiceException}
81
82
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -47,7 +47,7 @@ declare const GetSolNetworkInstanceCommand_base: {
47
47
  * // nsInstanceDescription: "STRING_VALUE", // required
48
48
  * // nsdId: "STRING_VALUE", // required
49
49
  * // nsdInfoId: "STRING_VALUE", // required
50
- * // nsState: "INSTANTIATED" || "NOT_INSTANTIATED" || "IMPAIRED" || "STOPPED" || "DELETED" || "INSTANTIATE_IN_PROGRESS" || "UPDATE_IN_PROGRESS" || "TERMINATE_IN_PROGRESS",
50
+ * // nsState: "INSTANTIATED" || "NOT_INSTANTIATED" || "UPDATED" || "IMPAIRED" || "UPDATE_FAILED" || "STOPPED" || "DELETED" || "INSTANTIATE_IN_PROGRESS" || "INTENT_TO_UPDATE_IN_PROGRESS" || "UPDATE_IN_PROGRESS" || "TERMINATE_IN_PROGRESS",
51
51
  * // lcmOpInfo: { // LcmOperationInfo
52
52
  * // nsLcmOpOccId: "STRING_VALUE", // required
53
53
  * // },
@@ -81,7 +81,8 @@ declare const GetSolNetworkInstanceCommand_base: {
81
81
  * <p>Exception caused by throttling.</p>
82
82
  *
83
83
  * @throws {@link ValidationException} (client fault)
84
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
84
+ * <p>Unable to process the request because the client provided input failed to satisfy
85
+ * request constraints.</p>
85
86
  *
86
87
  * @throws {@link TnbServiceException}
87
88
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -27,7 +27,8 @@ declare const GetSolNetworkOperationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks.</p>
30
+ * <p>Gets the details of a network operation, including the tasks involved in the network
31
+ * operation and the status of the tasks.</p>
31
32
  * <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
32
33
  * @example
33
34
  * Use a bare-bones client and the command you need to make an API call.
@@ -46,11 +47,24 @@ declare const GetSolNetworkOperationCommand_base: {
46
47
  * // operationState: "PROCESSING" || "COMPLETED" || "FAILED" || "CANCELLING" || "CANCELLED",
47
48
  * // nsInstanceId: "STRING_VALUE",
48
49
  * // lcmOperationType: "INSTANTIATE" || "UPDATE" || "TERMINATE",
50
+ * // updateType: "MODIFY_VNF_INFORMATION" || "UPDATE_NS",
49
51
  * // error: { // ProblemDetails
50
52
  * // detail: "STRING_VALUE", // required
51
53
  * // title: "STRING_VALUE",
52
54
  * // },
53
55
  * // metadata: { // GetSolNetworkOperationMetadata
56
+ * // updateNsMetadata: { // UpdateNsMetadata
57
+ * // nsdInfoId: "STRING_VALUE", // required
58
+ * // additionalParamsForNs: "DOCUMENT_VALUE",
59
+ * // },
60
+ * // modifyVnfInfoMetadata: { // ModifyVnfInfoMetadata
61
+ * // vnfInstanceId: "STRING_VALUE", // required
62
+ * // vnfConfigurableProperties: "DOCUMENT_VALUE", // required
63
+ * // },
64
+ * // instantiateMetadata: { // InstantiateMetadata
65
+ * // nsdInfoId: "STRING_VALUE", // required
66
+ * // additionalParamsForNs: "DOCUMENT_VALUE",
67
+ * // },
54
68
  * // createdAt: new Date("TIMESTAMP"), // required
55
69
  * // lastModified: new Date("TIMESTAMP"), // required
56
70
  * // },
@@ -95,7 +109,8 @@ declare const GetSolNetworkOperationCommand_base: {
95
109
  * <p>Exception caused by throttling.</p>
96
110
  *
97
111
  * @throws {@link ValidationException} (client fault)
98
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
112
+ * <p>Unable to process the request because the client provided input failed to satisfy
113
+ * request constraints.</p>
99
114
  *
100
115
  * @throws {@link TnbServiceException}
101
116
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -90,7 +90,8 @@ declare const GetSolNetworkPackageCommand_base: {
90
90
  * <p>Exception caused by throttling.</p>
91
91
  *
92
92
  * @throws {@link ValidationException} (client fault)
93
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
93
+ * <p>Unable to process the request because the client provided input failed to satisfy
94
+ * request constraints.</p>
94
95
  *
95
96
  * @throws {@link TnbServiceException}
96
97
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -74,7 +74,8 @@ declare const GetSolNetworkPackageContentCommand_base: {
74
74
  * <p>Exception caused by throttling.</p>
75
75
  *
76
76
  * @throws {@link ValidationException} (client fault)
77
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
77
+ * <p>Unable to process the request because the client provided input failed to satisfy
78
+ * request constraints.</p>
78
79
  *
79
80
  * @throws {@link TnbServiceException}
80
81
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -73,7 +73,8 @@ declare const GetSolNetworkPackageDescriptorCommand_base: {
73
73
  * <p>Exception caused by throttling.</p>
74
74
  *
75
75
  * @throws {@link ValidationException} (client fault)
76
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
76
+ * <p>Unable to process the request because the client provided input failed to satisfy
77
+ * request constraints.</p>
77
78
  *
78
79
  * @throws {@link TnbServiceException}
79
80
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -29,7 +29,8 @@ declare const InstantiateSolNetworkInstanceCommand_base: {
29
29
  /**
30
30
  * <p>Instantiates a network instance.</p>
31
31
  * <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.</p>
32
- * <p>Before you can instantiate a network instance, you have to create a network instance. For more information, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_CreateSolNetworkInstance.html">CreateSolNetworkInstance</a>.</p>
32
+ * <p>Before you can instantiate a network instance, you have to create a network instance.
33
+ * For more information, see <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_CreateSolNetworkInstance.html">CreateSolNetworkInstance</a>.</p>
33
34
  * @example
34
35
  * Use a bare-bones client and the command you need to make an API call.
35
36
  * ```javascript
@@ -77,7 +78,8 @@ declare const InstantiateSolNetworkInstanceCommand_base: {
77
78
  * <p>Exception caused by throttling.</p>
78
79
  *
79
80
  * @throws {@link ValidationException} (client fault)
80
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
81
+ * <p>Unable to process the request because the client provided input failed to satisfy
82
+ * request constraints.</p>
81
83
  *
82
84
  * @throws {@link TnbServiceException}
83
85
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -80,7 +80,8 @@ declare const ListSolFunctionInstancesCommand_base: {
80
80
  * <p>Exception caused by throttling.</p>
81
81
  *
82
82
  * @throws {@link ValidationException} (client fault)
83
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
83
+ * <p>Unable to process the request because the client provided input failed to satisfy
84
+ * request constraints.</p>
84
85
  *
85
86
  * @throws {@link TnbServiceException}
86
87
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -80,7 +80,8 @@ declare const ListSolFunctionPackagesCommand_base: {
80
80
  * <p>Exception caused by throttling.</p>
81
81
  *
82
82
  * @throws {@link ValidationException} (client fault)
83
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
83
+ * <p>Unable to process the request because the client provided input failed to satisfy
84
+ * request constraints.</p>
84
85
  *
85
86
  * @throws {@link TnbServiceException}
86
87
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -51,7 +51,7 @@ declare const ListSolNetworkInstancesCommand_base: {
51
51
  * // nsInstanceDescription: "STRING_VALUE", // required
52
52
  * // nsdId: "STRING_VALUE", // required
53
53
  * // nsdInfoId: "STRING_VALUE", // required
54
- * // nsState: "INSTANTIATED" || "NOT_INSTANTIATED" || "IMPAIRED" || "STOPPED" || "DELETED" || "INSTANTIATE_IN_PROGRESS" || "UPDATE_IN_PROGRESS" || "TERMINATE_IN_PROGRESS", // required
54
+ * // nsState: "INSTANTIATED" || "NOT_INSTANTIATED" || "UPDATED" || "IMPAIRED" || "UPDATE_FAILED" || "STOPPED" || "DELETED" || "INSTANTIATE_IN_PROGRESS" || "INTENT_TO_UPDATE_IN_PROGRESS" || "UPDATE_IN_PROGRESS" || "TERMINATE_IN_PROGRESS", // required
55
55
  * // metadata: { // ListSolNetworkInstanceMetadata
56
56
  * // createdAt: new Date("TIMESTAMP"), // required
57
57
  * // lastModified: new Date("TIMESTAMP"), // required
@@ -78,7 +78,8 @@ declare const ListSolNetworkInstancesCommand_base: {
78
78
  * <p>Exception caused by throttling.</p>
79
79
  *
80
80
  * @throws {@link ValidationException} (client fault)
81
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
81
+ * <p>Unable to process the request because the client provided input failed to satisfy
82
+ * request constraints.</p>
82
83
  *
83
84
  * @throws {@link TnbServiceException}
84
85
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -27,7 +27,8 @@ declare const ListSolNetworkOperationsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists details for a network operation, including when the operation started and the status of the operation.</p>
30
+ * <p>Lists details for a network operation, including when the operation started and the
31
+ * status of the operation.</p>
31
32
  * <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
32
33
  * @example
33
34
  * Use a bare-bones client and the command you need to make an API call.
@@ -36,6 +37,7 @@ declare const ListSolNetworkOperationsCommand_base: {
36
37
  * // const { TnbClient, ListSolNetworkOperationsCommand } = require("@aws-sdk/client-tnb"); // CommonJS import
37
38
  * const client = new TnbClient(config);
38
39
  * const input = { // ListSolNetworkOperationsInput
40
+ * nsInstanceId: "STRING_VALUE",
39
41
  * maxResults: Number("int"),
40
42
  * nextToken: "STRING_VALUE",
41
43
  * };
@@ -50,11 +52,14 @@ declare const ListSolNetworkOperationsCommand_base: {
50
52
  * // operationState: "PROCESSING" || "COMPLETED" || "FAILED" || "CANCELLING" || "CANCELLED", // required
51
53
  * // nsInstanceId: "STRING_VALUE", // required
52
54
  * // lcmOperationType: "INSTANTIATE" || "UPDATE" || "TERMINATE", // required
55
+ * // updateType: "MODIFY_VNF_INFORMATION" || "UPDATE_NS",
53
56
  * // error: { // ProblemDetails
54
57
  * // detail: "STRING_VALUE", // required
55
58
  * // title: "STRING_VALUE",
56
59
  * // },
57
60
  * // metadata: { // ListSolNetworkOperationsMetadata
61
+ * // nsdInfoId: "STRING_VALUE",
62
+ * // vnfInstanceId: "STRING_VALUE",
58
63
  * // createdAt: new Date("TIMESTAMP"), // required
59
64
  * // lastModified: new Date("TIMESTAMP"), // required
60
65
  * // },
@@ -80,7 +85,8 @@ declare const ListSolNetworkOperationsCommand_base: {
80
85
  * <p>Exception caused by throttling.</p>
81
86
  *
82
87
  * @throws {@link ValidationException} (client fault)
83
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
88
+ * <p>Unable to process the request because the client provided input failed to satisfy
89
+ * request constraints.</p>
84
90
  *
85
91
  * @throws {@link TnbServiceException}
86
92
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -84,7 +84,8 @@ declare const ListSolNetworkPackagesCommand_base: {
84
84
  * <p>Exception caused by throttling.</p>
85
85
  *
86
86
  * @throws {@link ValidationException} (client fault)
87
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
87
+ * <p>Unable to process the request because the client provided input failed to satisfy
88
+ * request constraints.</p>
88
89
  *
89
90
  * @throws {@link TnbServiceException}
90
91
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -66,7 +66,8 @@ declare const ListTagsForResourceCommand_base: {
66
66
  * <p>Exception caused by throttling.</p>
67
67
  *
68
68
  * @throws {@link ValidationException} (client fault)
69
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
69
+ * <p>Unable to process the request because the client provided input failed to satisfy
70
+ * request constraints.</p>
70
71
  *
71
72
  * @throws {@link TnbServiceException}
72
73
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -87,7 +87,8 @@ declare const PutSolFunctionPackageContentCommand_base: {
87
87
  * <p>Exception caused by throttling.</p>
88
88
  *
89
89
  * @throws {@link ValidationException} (client fault)
90
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
90
+ * <p>Unable to process the request because the client provided input failed to satisfy
91
+ * request constraints.</p>
91
92
  *
92
93
  * @throws {@link TnbServiceException}
93
94
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -90,7 +90,8 @@ declare const PutSolNetworkPackageContentCommand_base: {
90
90
  * <p>Exception caused by throttling.</p>
91
91
  *
92
92
  * @throws {@link ValidationException} (client fault)
93
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
93
+ * <p>Unable to process the request because the client provided input failed to satisfy
94
+ * request constraints.</p>
94
95
  *
95
96
  * @throws {@link TnbServiceException}
96
97
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -66,7 +66,8 @@ declare const TagResourceCommand_base: {
66
66
  * <p>Exception caused by throttling.</p>
67
67
  *
68
68
  * @throws {@link ValidationException} (client fault)
69
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
69
+ * <p>Unable to process the request because the client provided input failed to satisfy
70
+ * request constraints.</p>
70
71
  *
71
72
  * @throws {@link TnbServiceException}
72
73
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -75,7 +75,8 @@ declare const TerminateSolNetworkInstanceCommand_base: {
75
75
  * <p>Exception caused by throttling.</p>
76
76
  *
77
77
  * @throws {@link ValidationException} (client fault)
78
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
78
+ * <p>Unable to process the request because the client provided input failed to satisfy
79
+ * request constraints.</p>
79
80
  *
80
81
  * @throws {@link TnbServiceException}
81
82
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -66,7 +66,8 @@ declare const UntagResourceCommand_base: {
66
66
  * <p>Exception caused by throttling.</p>
67
67
  *
68
68
  * @throws {@link ValidationException} (client fault)
69
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
69
+ * <p>Unable to process the request because the client provided input failed to satisfy
70
+ * request constraints.</p>
70
71
  *
71
72
  * @throws {@link TnbServiceException}
72
73
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -66,7 +66,8 @@ declare const UpdateSolFunctionPackageCommand_base: {
66
66
  * <p>Exception caused by throttling.</p>
67
67
  *
68
68
  * @throws {@link ValidationException} (client fault)
69
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
69
+ * <p>Unable to process the request because the client provided input failed to satisfy
70
+ * request constraints.</p>
70
71
  *
71
72
  * @throws {@link TnbServiceException}
72
73
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -29,6 +29,7 @@ declare const UpdateSolNetworkInstanceCommand_base: {
29
29
  /**
30
30
  * <p>Update a network instance.</p>
31
31
  * <p>A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.</p>
32
+ * <p>Choose the <i>updateType</i> parameter to target the necessary update of the network instance.</p>
32
33
  * @example
33
34
  * Use a bare-bones client and the command you need to make an API call.
34
35
  * ```javascript
@@ -37,11 +38,15 @@ declare const UpdateSolNetworkInstanceCommand_base: {
37
38
  * const client = new TnbClient(config);
38
39
  * const input = { // UpdateSolNetworkInstanceInput
39
40
  * nsInstanceId: "STRING_VALUE", // required
40
- * updateType: "MODIFY_VNF_INFORMATION", // required
41
+ * updateType: "MODIFY_VNF_INFORMATION" || "UPDATE_NS", // required
41
42
  * modifyVnfInfoData: { // UpdateSolNetworkModify
42
43
  * vnfInstanceId: "STRING_VALUE", // required
43
44
  * vnfConfigurableProperties: "DOCUMENT_VALUE", // required
44
45
  * },
46
+ * updateNs: { // UpdateSolNetworkServiceData
47
+ * nsdInfoId: "STRING_VALUE", // required
48
+ * additionalParamsForNs: "DOCUMENT_VALUE",
49
+ * },
45
50
  * tags: { // TagMap
46
51
  * "<keys>": "STRING_VALUE",
47
52
  * },
@@ -79,7 +84,8 @@ declare const UpdateSolNetworkInstanceCommand_base: {
79
84
  * <p>Exception caused by throttling.</p>
80
85
  *
81
86
  * @throws {@link ValidationException} (client fault)
82
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
87
+ * <p>Unable to process the request because the client provided input failed to satisfy
88
+ * request constraints.</p>
83
89
  *
84
90
  * @throws {@link TnbServiceException}
85
91
  * <p>Base exception class for all service exceptions from Tnb service.</p>
@@ -67,7 +67,8 @@ declare const UpdateSolNetworkPackageCommand_base: {
67
67
  * <p>Exception caused by throttling.</p>
68
68
  *
69
69
  * @throws {@link ValidationException} (client fault)
70
- * <p>Unable to process the request because the client provided input failed to satisfy request constraints.</p>
70
+ * <p>Unable to process the request because the client provided input failed to satisfy
71
+ * request constraints.</p>
71
72
  *
72
73
  * @throws {@link TnbServiceException}
73
74
  * <p>Base exception class for all service exceptions from Tnb service.</p>