@aws-sdk/client-tnb 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/Tnb.d.ts +34 -0
- package/dist-types/TnbClient.d.ts +24 -4
- package/dist-types/commands/CancelSolNetworkOperationCommand.d.ts +16 -0
- package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +16 -0
- package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +16 -0
- package/dist-types/models/TnbServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +268 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListSolFunctionInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolFunctionPackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolNetworkInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolNetworkOperationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolNetworkPackagesPaginator.d.ts +3 -0
- package/package.json +3 -3
package/dist-types/Tnb.d.ts
CHANGED
|
@@ -34,10 +34,12 @@ import { ValidateSolFunctionPackageContentCommandInput, ValidateSolFunctionPacka
|
|
|
34
34
|
import { ValidateSolNetworkPackageContentCommandInput, ValidateSolNetworkPackageContentCommandOutput } from "./commands/ValidateSolNetworkPackageContentCommand";
|
|
35
35
|
import { TnbClient } from "./TnbClient";
|
|
36
36
|
/**
|
|
37
|
+
* @public
|
|
37
38
|
* <p> Amazon Web Services Telco Network Builder (TNB) is a network automation service that helps you deploy and manage telecom networks. AWS TNB helps you with the lifecycle management of your telecommunication network functions throughout planning, deployment, and post-deployment activities.</p>
|
|
38
39
|
*/
|
|
39
40
|
export declare class Tnb extends TnbClient {
|
|
40
41
|
/**
|
|
42
|
+
* @public
|
|
41
43
|
* <p>Cancels a network operation.</p>
|
|
42
44
|
* <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
|
|
43
45
|
*/
|
|
@@ -45,6 +47,7 @@ export declare class Tnb extends TnbClient {
|
|
|
45
47
|
cancelSolNetworkOperation(args: CancelSolNetworkOperationCommandInput, cb: (err: any, data?: CancelSolNetworkOperationCommandOutput) => void): void;
|
|
46
48
|
cancelSolNetworkOperation(args: CancelSolNetworkOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelSolNetworkOperationCommandOutput) => void): void;
|
|
47
49
|
/**
|
|
50
|
+
* @public
|
|
48
51
|
* <p>Creates a function package.</p>
|
|
49
52
|
* <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>.
|
|
50
53
|
* </p>
|
|
@@ -54,6 +57,7 @@ export declare class Tnb extends TnbClient {
|
|
|
54
57
|
createSolFunctionPackage(args: CreateSolFunctionPackageCommandInput, cb: (err: any, data?: CreateSolFunctionPackageCommandOutput) => void): void;
|
|
55
58
|
createSolFunctionPackage(args: CreateSolFunctionPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSolFunctionPackageCommandOutput) => void): void;
|
|
56
59
|
/**
|
|
60
|
+
* @public
|
|
57
61
|
* <p>Creates a network instance.</p>
|
|
58
62
|
* <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>
|
|
59
63
|
* <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>
|
|
@@ -62,6 +66,7 @@ export declare class Tnb extends TnbClient {
|
|
|
62
66
|
createSolNetworkInstance(args: CreateSolNetworkInstanceCommandInput, cb: (err: any, data?: CreateSolNetworkInstanceCommandOutput) => void): void;
|
|
63
67
|
createSolNetworkInstance(args: CreateSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSolNetworkInstanceCommandOutput) => void): void;
|
|
64
68
|
/**
|
|
69
|
+
* @public
|
|
65
70
|
* <p>Creates a network package.</p>
|
|
66
71
|
* <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>.
|
|
67
72
|
* </p>
|
|
@@ -72,6 +77,7 @@ export declare class Tnb extends TnbClient {
|
|
|
72
77
|
createSolNetworkPackage(args: CreateSolNetworkPackageCommandInput, cb: (err: any, data?: CreateSolNetworkPackageCommandOutput) => void): void;
|
|
73
78
|
createSolNetworkPackage(args: CreateSolNetworkPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSolNetworkPackageCommandOutput) => void): void;
|
|
74
79
|
/**
|
|
80
|
+
* @public
|
|
75
81
|
* <p>Deletes a function package.</p>
|
|
76
82
|
* <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>
|
|
77
83
|
* <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>.
|
|
@@ -81,6 +87,7 @@ export declare class Tnb extends TnbClient {
|
|
|
81
87
|
deleteSolFunctionPackage(args: DeleteSolFunctionPackageCommandInput, cb: (err: any, data?: DeleteSolFunctionPackageCommandOutput) => void): void;
|
|
82
88
|
deleteSolFunctionPackage(args: DeleteSolFunctionPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSolFunctionPackageCommandOutput) => void): void;
|
|
83
89
|
/**
|
|
90
|
+
* @public
|
|
84
91
|
* <p>Deletes a network instance.</p>
|
|
85
92
|
* <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>
|
|
86
93
|
* <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>
|
|
@@ -89,6 +96,7 @@ export declare class Tnb extends TnbClient {
|
|
|
89
96
|
deleteSolNetworkInstance(args: DeleteSolNetworkInstanceCommandInput, cb: (err: any, data?: DeleteSolNetworkInstanceCommandOutput) => void): void;
|
|
90
97
|
deleteSolNetworkInstance(args: DeleteSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSolNetworkInstanceCommandOutput) => void): void;
|
|
91
98
|
/**
|
|
99
|
+
* @public
|
|
92
100
|
* <p>Deletes network package.</p>
|
|
93
101
|
* <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>
|
|
94
102
|
* <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>
|
|
@@ -97,6 +105,7 @@ export declare class Tnb extends TnbClient {
|
|
|
97
105
|
deleteSolNetworkPackage(args: DeleteSolNetworkPackageCommandInput, cb: (err: any, data?: DeleteSolNetworkPackageCommandOutput) => void): void;
|
|
98
106
|
deleteSolNetworkPackage(args: DeleteSolNetworkPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSolNetworkPackageCommandOutput) => void): void;
|
|
99
107
|
/**
|
|
108
|
+
* @public
|
|
100
109
|
* <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>
|
|
101
110
|
* <p>A network function instance is a function in a function package .</p>
|
|
102
111
|
*/
|
|
@@ -104,6 +113,7 @@ export declare class Tnb extends TnbClient {
|
|
|
104
113
|
getSolFunctionInstance(args: GetSolFunctionInstanceCommandInput, cb: (err: any, data?: GetSolFunctionInstanceCommandOutput) => void): void;
|
|
105
114
|
getSolFunctionInstance(args: GetSolFunctionInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolFunctionInstanceCommandOutput) => void): void;
|
|
106
115
|
/**
|
|
116
|
+
* @public
|
|
107
117
|
* <p>Gets the details of an individual function package, such as the operational state and whether the package is in use.</p>
|
|
108
118
|
* <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>
|
|
109
119
|
*/
|
|
@@ -111,6 +121,7 @@ export declare class Tnb extends TnbClient {
|
|
|
111
121
|
getSolFunctionPackage(args: GetSolFunctionPackageCommandInput, cb: (err: any, data?: GetSolFunctionPackageCommandOutput) => void): void;
|
|
112
122
|
getSolFunctionPackage(args: GetSolFunctionPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolFunctionPackageCommandOutput) => void): void;
|
|
113
123
|
/**
|
|
124
|
+
* @public
|
|
114
125
|
* <p>Gets the contents of a function package.</p>
|
|
115
126
|
* <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>
|
|
116
127
|
*/
|
|
@@ -118,6 +129,7 @@ export declare class Tnb extends TnbClient {
|
|
|
118
129
|
getSolFunctionPackageContent(args: GetSolFunctionPackageContentCommandInput, cb: (err: any, data?: GetSolFunctionPackageContentCommandOutput) => void): void;
|
|
119
130
|
getSolFunctionPackageContent(args: GetSolFunctionPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolFunctionPackageContentCommandOutput) => void): void;
|
|
120
131
|
/**
|
|
132
|
+
* @public
|
|
121
133
|
* <p>Gets a function package descriptor in a function package.</p>
|
|
122
134
|
* <p>A function package descriptor is a .yaml file in a function package that uses the TOSCA standard to describe how the network function in the function package should run on your network.</p>
|
|
123
135
|
* <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>
|
|
@@ -126,6 +138,7 @@ export declare class Tnb extends TnbClient {
|
|
|
126
138
|
getSolFunctionPackageDescriptor(args: GetSolFunctionPackageDescriptorCommandInput, cb: (err: any, data?: GetSolFunctionPackageDescriptorCommandOutput) => void): void;
|
|
127
139
|
getSolFunctionPackageDescriptor(args: GetSolFunctionPackageDescriptorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolFunctionPackageDescriptorCommandOutput) => void): void;
|
|
128
140
|
/**
|
|
141
|
+
* @public
|
|
129
142
|
* <p>Gets the details of the network instance.</p>
|
|
130
143
|
* <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>
|
|
131
144
|
*/
|
|
@@ -133,6 +146,7 @@ export declare class Tnb extends TnbClient {
|
|
|
133
146
|
getSolNetworkInstance(args: GetSolNetworkInstanceCommandInput, cb: (err: any, data?: GetSolNetworkInstanceCommandOutput) => void): void;
|
|
134
147
|
getSolNetworkInstance(args: GetSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkInstanceCommandOutput) => void): void;
|
|
135
148
|
/**
|
|
149
|
+
* @public
|
|
136
150
|
* <p>Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks.</p>
|
|
137
151
|
* <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
|
|
138
152
|
*/
|
|
@@ -140,6 +154,7 @@ export declare class Tnb extends TnbClient {
|
|
|
140
154
|
getSolNetworkOperation(args: GetSolNetworkOperationCommandInput, cb: (err: any, data?: GetSolNetworkOperationCommandOutput) => void): void;
|
|
141
155
|
getSolNetworkOperation(args: GetSolNetworkOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkOperationCommandOutput) => void): void;
|
|
142
156
|
/**
|
|
157
|
+
* @public
|
|
143
158
|
* <p>Gets the details of a network package.</p>
|
|
144
159
|
* <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>
|
|
145
160
|
*/
|
|
@@ -147,6 +162,7 @@ export declare class Tnb extends TnbClient {
|
|
|
147
162
|
getSolNetworkPackage(args: GetSolNetworkPackageCommandInput, cb: (err: any, data?: GetSolNetworkPackageCommandOutput) => void): void;
|
|
148
163
|
getSolNetworkPackage(args: GetSolNetworkPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkPackageCommandOutput) => void): void;
|
|
149
164
|
/**
|
|
165
|
+
* @public
|
|
150
166
|
* <p>Gets the contents of a network package.</p>
|
|
151
167
|
* <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>
|
|
152
168
|
*/
|
|
@@ -154,6 +170,7 @@ export declare class Tnb extends TnbClient {
|
|
|
154
170
|
getSolNetworkPackageContent(args: GetSolNetworkPackageContentCommandInput, cb: (err: any, data?: GetSolNetworkPackageContentCommandOutput) => void): void;
|
|
155
171
|
getSolNetworkPackageContent(args: GetSolNetworkPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkPackageContentCommandOutput) => void): void;
|
|
156
172
|
/**
|
|
173
|
+
* @public
|
|
157
174
|
* <p>Gets the content of the network service descriptor.</p>
|
|
158
175
|
* <p>A network service descriptor is a .yaml file in a network package that uses the TOSCA standard to describe the network functions you want to deploy and the Amazon Web Services infrastructure you want to deploy the network functions on.</p>
|
|
159
176
|
*/
|
|
@@ -161,6 +178,7 @@ export declare class Tnb extends TnbClient {
|
|
|
161
178
|
getSolNetworkPackageDescriptor(args: GetSolNetworkPackageDescriptorCommandInput, cb: (err: any, data?: GetSolNetworkPackageDescriptorCommandOutput) => void): void;
|
|
162
179
|
getSolNetworkPackageDescriptor(args: GetSolNetworkPackageDescriptorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkPackageDescriptorCommandOutput) => void): void;
|
|
163
180
|
/**
|
|
181
|
+
* @public
|
|
164
182
|
* <p>Instantiates a network instance.</p>
|
|
165
183
|
* <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>
|
|
166
184
|
* <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>
|
|
@@ -169,6 +187,7 @@ export declare class Tnb extends TnbClient {
|
|
|
169
187
|
instantiateSolNetworkInstance(args: InstantiateSolNetworkInstanceCommandInput, cb: (err: any, data?: InstantiateSolNetworkInstanceCommandOutput) => void): void;
|
|
170
188
|
instantiateSolNetworkInstance(args: InstantiateSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InstantiateSolNetworkInstanceCommandOutput) => void): void;
|
|
171
189
|
/**
|
|
190
|
+
* @public
|
|
172
191
|
* <p>Lists network function instances.</p>
|
|
173
192
|
* <p>A network function instance is a function in a function package .</p>
|
|
174
193
|
*/
|
|
@@ -176,6 +195,7 @@ export declare class Tnb extends TnbClient {
|
|
|
176
195
|
listSolFunctionInstances(args: ListSolFunctionInstancesCommandInput, cb: (err: any, data?: ListSolFunctionInstancesCommandOutput) => void): void;
|
|
177
196
|
listSolFunctionInstances(args: ListSolFunctionInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolFunctionInstancesCommandOutput) => void): void;
|
|
178
197
|
/**
|
|
198
|
+
* @public
|
|
179
199
|
* <p>Lists information about function packages.</p>
|
|
180
200
|
* <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>
|
|
181
201
|
*/
|
|
@@ -183,6 +203,7 @@ export declare class Tnb extends TnbClient {
|
|
|
183
203
|
listSolFunctionPackages(args: ListSolFunctionPackagesCommandInput, cb: (err: any, data?: ListSolFunctionPackagesCommandOutput) => void): void;
|
|
184
204
|
listSolFunctionPackages(args: ListSolFunctionPackagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolFunctionPackagesCommandOutput) => void): void;
|
|
185
205
|
/**
|
|
206
|
+
* @public
|
|
186
207
|
* <p>Lists your network instances.</p>
|
|
187
208
|
* <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>
|
|
188
209
|
*/
|
|
@@ -190,6 +211,7 @@ export declare class Tnb extends TnbClient {
|
|
|
190
211
|
listSolNetworkInstances(args: ListSolNetworkInstancesCommandInput, cb: (err: any, data?: ListSolNetworkInstancesCommandOutput) => void): void;
|
|
191
212
|
listSolNetworkInstances(args: ListSolNetworkInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolNetworkInstancesCommandOutput) => void): void;
|
|
192
213
|
/**
|
|
214
|
+
* @public
|
|
193
215
|
* <p>Lists details for a network operation, including when the operation started and the status of the operation.</p>
|
|
194
216
|
* <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
|
|
195
217
|
*/
|
|
@@ -197,6 +219,7 @@ export declare class Tnb extends TnbClient {
|
|
|
197
219
|
listSolNetworkOperations(args: ListSolNetworkOperationsCommandInput, cb: (err: any, data?: ListSolNetworkOperationsCommandOutput) => void): void;
|
|
198
220
|
listSolNetworkOperations(args: ListSolNetworkOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolNetworkOperationsCommandOutput) => void): void;
|
|
199
221
|
/**
|
|
222
|
+
* @public
|
|
200
223
|
* <p>Lists network packages.</p>
|
|
201
224
|
* <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>
|
|
202
225
|
*/
|
|
@@ -204,12 +227,14 @@ export declare class Tnb extends TnbClient {
|
|
|
204
227
|
listSolNetworkPackages(args: ListSolNetworkPackagesCommandInput, cb: (err: any, data?: ListSolNetworkPackagesCommandOutput) => void): void;
|
|
205
228
|
listSolNetworkPackages(args: ListSolNetworkPackagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolNetworkPackagesCommandOutput) => void): void;
|
|
206
229
|
/**
|
|
230
|
+
* @public
|
|
207
231
|
* <p>Lists tags for AWS TNB resources.</p>
|
|
208
232
|
*/
|
|
209
233
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
210
234
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
211
235
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
212
236
|
/**
|
|
237
|
+
* @public
|
|
213
238
|
* <p>Uploads the contents of a function package.</p>
|
|
214
239
|
* <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>
|
|
215
240
|
*/
|
|
@@ -217,6 +242,7 @@ export declare class Tnb extends TnbClient {
|
|
|
217
242
|
putSolFunctionPackageContent(args: PutSolFunctionPackageContentCommandInput, cb: (err: any, data?: PutSolFunctionPackageContentCommandOutput) => void): void;
|
|
218
243
|
putSolFunctionPackageContent(args: PutSolFunctionPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSolFunctionPackageContentCommandOutput) => void): void;
|
|
219
244
|
/**
|
|
245
|
+
* @public
|
|
220
246
|
* <p>Uploads the contents of a network package.</p>
|
|
221
247
|
* <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>
|
|
222
248
|
*/
|
|
@@ -224,6 +250,7 @@ export declare class Tnb extends TnbClient {
|
|
|
224
250
|
putSolNetworkPackageContent(args: PutSolNetworkPackageContentCommandInput, cb: (err: any, data?: PutSolNetworkPackageContentCommandOutput) => void): void;
|
|
225
251
|
putSolNetworkPackageContent(args: PutSolNetworkPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSolNetworkPackageContentCommandOutput) => void): void;
|
|
226
252
|
/**
|
|
253
|
+
* @public
|
|
227
254
|
* <p>Tags an AWS TNB resource.</p>
|
|
228
255
|
* <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. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
229
256
|
*/
|
|
@@ -231,6 +258,7 @@ export declare class Tnb extends TnbClient {
|
|
|
231
258
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
232
259
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
233
260
|
/**
|
|
261
|
+
* @public
|
|
234
262
|
* <p>Terminates a network instance.</p>
|
|
235
263
|
* <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>
|
|
236
264
|
* <p>You must terminate a network instance before you can delete it.</p>
|
|
@@ -239,6 +267,7 @@ export declare class Tnb extends TnbClient {
|
|
|
239
267
|
terminateSolNetworkInstance(args: TerminateSolNetworkInstanceCommandInput, cb: (err: any, data?: TerminateSolNetworkInstanceCommandOutput) => void): void;
|
|
240
268
|
terminateSolNetworkInstance(args: TerminateSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateSolNetworkInstanceCommandOutput) => void): void;
|
|
241
269
|
/**
|
|
270
|
+
* @public
|
|
242
271
|
* <p>Untags an AWS TNB resource.</p>
|
|
243
272
|
* <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. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
|
|
244
273
|
*/
|
|
@@ -246,6 +275,7 @@ export declare class Tnb extends TnbClient {
|
|
|
246
275
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
247
276
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
248
277
|
/**
|
|
278
|
+
* @public
|
|
249
279
|
* <p>Updates the operational state of function package.</p>
|
|
250
280
|
* <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>
|
|
251
281
|
*/
|
|
@@ -253,6 +283,7 @@ export declare class Tnb extends TnbClient {
|
|
|
253
283
|
updateSolFunctionPackage(args: UpdateSolFunctionPackageCommandInput, cb: (err: any, data?: UpdateSolFunctionPackageCommandOutput) => void): void;
|
|
254
284
|
updateSolFunctionPackage(args: UpdateSolFunctionPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSolFunctionPackageCommandOutput) => void): void;
|
|
255
285
|
/**
|
|
286
|
+
* @public
|
|
256
287
|
* <p>Update a network instance.</p>
|
|
257
288
|
* <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>
|
|
258
289
|
*/
|
|
@@ -260,6 +291,7 @@ export declare class Tnb extends TnbClient {
|
|
|
260
291
|
updateSolNetworkInstance(args: UpdateSolNetworkInstanceCommandInput, cb: (err: any, data?: UpdateSolNetworkInstanceCommandOutput) => void): void;
|
|
261
292
|
updateSolNetworkInstance(args: UpdateSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSolNetworkInstanceCommandOutput) => void): void;
|
|
262
293
|
/**
|
|
294
|
+
* @public
|
|
263
295
|
* <p>Updates the operational state of a network package.</p>
|
|
264
296
|
* <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>
|
|
265
297
|
* <p>A network service descriptor is a .yaml file in a network package that uses the TOSCA standard to describe the network functions you want to deploy and the Amazon Web Services infrastructure you want to deploy the network functions on.</p>
|
|
@@ -268,6 +300,7 @@ export declare class Tnb extends TnbClient {
|
|
|
268
300
|
updateSolNetworkPackage(args: UpdateSolNetworkPackageCommandInput, cb: (err: any, data?: UpdateSolNetworkPackageCommandOutput) => void): void;
|
|
269
301
|
updateSolNetworkPackage(args: UpdateSolNetworkPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSolNetworkPackageCommandOutput) => void): void;
|
|
270
302
|
/**
|
|
303
|
+
* @public
|
|
271
304
|
* <p>Validates function package content. This can be used as a dry run before uploading function package content with <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_PutSolFunctionPackageContent.html">PutSolFunctionPackageContent</a>.</p>
|
|
272
305
|
* <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>
|
|
273
306
|
*/
|
|
@@ -275,6 +308,7 @@ export declare class Tnb extends TnbClient {
|
|
|
275
308
|
validateSolFunctionPackageContent(args: ValidateSolFunctionPackageContentCommandInput, cb: (err: any, data?: ValidateSolFunctionPackageContentCommandOutput) => void): void;
|
|
276
309
|
validateSolFunctionPackageContent(args: ValidateSolFunctionPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateSolFunctionPackageContentCommandOutput) => void): void;
|
|
277
310
|
/**
|
|
311
|
+
* @public
|
|
278
312
|
* <p>Validates network package content. This can be used as a dry run before uploading network package content with <a href="https://docs.aws.amazon.com/tnb/latest/APIReference/API_PutSolNetworkPackageContent.html">PutSolNetworkPackageContent</a>.</p>
|
|
279
313
|
* <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>
|
|
280
314
|
*/
|
|
@@ -41,15 +41,24 @@ import { UpdateSolNetworkPackageCommandInput, UpdateSolNetworkPackageCommandOutp
|
|
|
41
41
|
import { ValidateSolFunctionPackageContentCommandInput, ValidateSolFunctionPackageContentCommandOutput } from "./commands/ValidateSolFunctionPackageContentCommand";
|
|
42
42
|
import { ValidateSolNetworkPackageContentCommandInput, ValidateSolNetworkPackageContentCommandOutput } from "./commands/ValidateSolNetworkPackageContentCommand";
|
|
43
43
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
44
47
|
export type ServiceInputTypes = CancelSolNetworkOperationCommandInput | CreateSolFunctionPackageCommandInput | CreateSolNetworkInstanceCommandInput | CreateSolNetworkPackageCommandInput | DeleteSolFunctionPackageCommandInput | DeleteSolNetworkInstanceCommandInput | DeleteSolNetworkPackageCommandInput | GetSolFunctionInstanceCommandInput | GetSolFunctionPackageCommandInput | GetSolFunctionPackageContentCommandInput | GetSolFunctionPackageDescriptorCommandInput | GetSolNetworkInstanceCommandInput | GetSolNetworkOperationCommandInput | GetSolNetworkPackageCommandInput | GetSolNetworkPackageContentCommandInput | GetSolNetworkPackageDescriptorCommandInput | InstantiateSolNetworkInstanceCommandInput | ListSolFunctionInstancesCommandInput | ListSolFunctionPackagesCommandInput | ListSolNetworkInstancesCommandInput | ListSolNetworkOperationsCommandInput | ListSolNetworkPackagesCommandInput | ListTagsForResourceCommandInput | PutSolFunctionPackageContentCommandInput | PutSolNetworkPackageContentCommandInput | TagResourceCommandInput | TerminateSolNetworkInstanceCommandInput | UntagResourceCommandInput | UpdateSolFunctionPackageCommandInput | UpdateSolNetworkInstanceCommandInput | UpdateSolNetworkPackageCommandInput | ValidateSolFunctionPackageContentCommandInput | ValidateSolNetworkPackageContentCommandInput;
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
45
51
|
export type ServiceOutputTypes = CancelSolNetworkOperationCommandOutput | CreateSolFunctionPackageCommandOutput | CreateSolNetworkInstanceCommandOutput | CreateSolNetworkPackageCommandOutput | DeleteSolFunctionPackageCommandOutput | DeleteSolNetworkInstanceCommandOutput | DeleteSolNetworkPackageCommandOutput | GetSolFunctionInstanceCommandOutput | GetSolFunctionPackageCommandOutput | GetSolFunctionPackageContentCommandOutput | GetSolFunctionPackageDescriptorCommandOutput | GetSolNetworkInstanceCommandOutput | GetSolNetworkOperationCommandOutput | GetSolNetworkPackageCommandOutput | GetSolNetworkPackageContentCommandOutput | GetSolNetworkPackageDescriptorCommandOutput | InstantiateSolNetworkInstanceCommandOutput | ListSolFunctionInstancesCommandOutput | ListSolFunctionPackagesCommandOutput | ListSolNetworkInstancesCommandOutput | ListSolNetworkOperationsCommandOutput | ListSolNetworkPackagesCommandOutput | ListTagsForResourceCommandOutput | PutSolFunctionPackageContentCommandOutput | PutSolNetworkPackageContentCommandOutput | TagResourceCommandOutput | TerminateSolNetworkInstanceCommandOutput | UntagResourceCommandOutput | UpdateSolFunctionPackageCommandOutput | UpdateSolNetworkInstanceCommandOutput | UpdateSolNetworkPackageCommandOutput | ValidateSolFunctionPackageContentCommandOutput | ValidateSolNetworkPackageContentCommandOutput;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
46
55
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
47
56
|
/**
|
|
48
57
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
49
58
|
*/
|
|
50
59
|
requestHandler?: __HttpHandler;
|
|
51
60
|
/**
|
|
52
|
-
* A constructor for a class implementing the {@link
|
|
61
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
53
62
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
54
63
|
* @internal
|
|
55
64
|
*/
|
|
@@ -139,23 +148,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
139
148
|
*/
|
|
140
149
|
logger?: __Logger;
|
|
141
150
|
/**
|
|
142
|
-
* The {@link
|
|
151
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
143
152
|
*/
|
|
144
153
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
145
154
|
}
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
146
158
|
type TnbClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
147
159
|
/**
|
|
148
|
-
*
|
|
160
|
+
* @public
|
|
161
|
+
*
|
|
162
|
+
* The configuration interface of TnbClient class constructor that set the region, credentials and other options.
|
|
149
163
|
*/
|
|
150
164
|
export interface TnbClientConfig extends TnbClientConfigType {
|
|
151
165
|
}
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
152
169
|
type TnbClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
153
170
|
/**
|
|
154
|
-
*
|
|
171
|
+
* @public
|
|
172
|
+
*
|
|
173
|
+
* The resolved configuration interface of TnbClient class. This is resolved and normalized from the {@link TnbClientConfig | constructor configuration interface}.
|
|
155
174
|
*/
|
|
156
175
|
export interface TnbClientResolvedConfig extends TnbClientResolvedConfigType {
|
|
157
176
|
}
|
|
158
177
|
/**
|
|
178
|
+
* @public
|
|
159
179
|
* <p> Amazon Web Services Telco Network Builder (TNB) is a network automation service that helps you deploy and manage telecom networks. AWS TNB helps you with the lifecycle management of your telecommunication network functions throughout planning, deployment, and post-deployment activities.</p>
|
|
160
180
|
*/
|
|
161
181
|
export declare class TnbClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig> {
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CancelSolNetworkOperationInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelSolNetworkOperationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelSolNetworkOperationCommandInput extends CancelSolNetworkOperationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelSolNetworkOperationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelSolNetworkOperationCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Cancels a network operation.</p>
|
|
18
23
|
* <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CancelSolNetworkOperationCommandOutput extends __MetadataBearer
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CancelSolNetworkOperationCommandInput - {@link CancelSolNetworkOperationCommandInput}
|
|
35
|
+
* @returns {@link CancelSolNetworkOperationCommandOutput}
|
|
29
36
|
* @see {@link CancelSolNetworkOperationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CancelSolNetworkOperationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface CancelSolNetworkOperationCommandOutput extends __MetadataBearer
|
|
|
50
57
|
export declare class CancelSolNetworkOperationCommand extends $Command<CancelSolNetworkOperationCommandInput, CancelSolNetworkOperationCommandOutput, TnbClientResolvedConfig> {
|
|
51
58
|
readonly input: CancelSolNetworkOperationCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: CancelSolNetworkOperationCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelSolNetworkOperationCommandInput, CancelSolNetworkOperationCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateSolFunctionPackageInput, CreateSolFunctionPackageOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSolFunctionPackageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSolFunctionPackageCommandInput extends CreateSolFunctionPackageInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSolFunctionPackageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSolFunctionPackageCommandOutput extends CreateSolFunctionPackageOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a function package.</p>
|
|
18
23
|
* <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>.
|
|
19
24
|
* </p>
|
|
@@ -28,6 +33,8 @@ export interface CreateSolFunctionPackageCommandOutput extends CreateSolFunction
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateSolFunctionPackageCommandInput - {@link CreateSolFunctionPackageCommandInput}
|
|
37
|
+
* @returns {@link CreateSolFunctionPackageCommandOutput}
|
|
31
38
|
* @see {@link CreateSolFunctionPackageCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateSolFunctionPackageCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateSolFunctionPackageCommandOutput extends CreateSolFunction
|
|
|
52
59
|
export declare class CreateSolFunctionPackageCommand extends $Command<CreateSolFunctionPackageCommandInput, CreateSolFunctionPackageCommandOutput, TnbClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateSolFunctionPackageCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateSolFunctionPackageCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSolFunctionPackageCommandInput, CreateSolFunctionPackageCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateSolNetworkInstanceInput, CreateSolNetworkInstanceOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSolNetworkInstanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSolNetworkInstanceCommandInput extends CreateSolNetworkInstanceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSolNetworkInstanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSolNetworkInstanceCommandOutput extends CreateSolNetworkInstanceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a network instance.</p>
|
|
18
23
|
* <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>
|
|
19
24
|
* <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>
|
|
@@ -27,6 +32,8 @@ export interface CreateSolNetworkInstanceCommandOutput extends CreateSolNetworkI
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateSolNetworkInstanceCommandInput - {@link CreateSolNetworkInstanceCommandInput}
|
|
36
|
+
* @returns {@link CreateSolNetworkInstanceCommandOutput}
|
|
30
37
|
* @see {@link CreateSolNetworkInstanceCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateSolNetworkInstanceCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface CreateSolNetworkInstanceCommandOutput extends CreateSolNetworkI
|
|
|
54
61
|
export declare class CreateSolNetworkInstanceCommand extends $Command<CreateSolNetworkInstanceCommandInput, CreateSolNetworkInstanceCommandOutput, TnbClientResolvedConfig> {
|
|
55
62
|
readonly input: CreateSolNetworkInstanceCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: CreateSolNetworkInstanceCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSolNetworkInstanceCommandInput, CreateSolNetworkInstanceCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateSolNetworkPackageInput, CreateSolNetworkPackageOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSolNetworkPackageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSolNetworkPackageCommandInput extends CreateSolNetworkPackageInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSolNetworkPackageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSolNetworkPackageCommandOutput extends CreateSolNetworkPackageOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a network package.</p>
|
|
18
23
|
* <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>.
|
|
19
24
|
* </p>
|
|
@@ -29,6 +34,8 @@ export interface CreateSolNetworkPackageCommandOutput extends CreateSolNetworkPa
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param CreateSolNetworkPackageCommandInput - {@link CreateSolNetworkPackageCommandInput}
|
|
38
|
+
* @returns {@link CreateSolNetworkPackageCommandOutput}
|
|
32
39
|
* @see {@link CreateSolNetworkPackageCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link CreateSolNetworkPackageCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateSolNetworkPackageCommandOutput extends CreateSolNetworkPa
|
|
|
53
60
|
export declare class CreateSolNetworkPackageCommand extends $Command<CreateSolNetworkPackageCommandInput, CreateSolNetworkPackageCommandOutput, TnbClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateSolNetworkPackageCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateSolNetworkPackageCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSolNetworkPackageCommandInput, CreateSolNetworkPackageCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteSolFunctionPackageInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSolFunctionPackageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSolFunctionPackageCommandInput extends DeleteSolFunctionPackageInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSolFunctionPackageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSolFunctionPackageCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a function package.</p>
|
|
18
23
|
* <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>
|
|
19
24
|
* <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>.
|
|
@@ -28,6 +33,8 @@ export interface DeleteSolFunctionPackageCommandOutput extends __MetadataBearer
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteSolFunctionPackageCommandInput - {@link DeleteSolFunctionPackageCommandInput}
|
|
37
|
+
* @returns {@link DeleteSolFunctionPackageCommandOutput}
|
|
31
38
|
* @see {@link DeleteSolFunctionPackageCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteSolFunctionPackageCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteSolFunctionPackageCommandOutput extends __MetadataBearer
|
|
|
52
59
|
export declare class DeleteSolFunctionPackageCommand extends $Command<DeleteSolFunctionPackageCommandInput, DeleteSolFunctionPackageCommandOutput, TnbClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteSolFunctionPackageCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteSolFunctionPackageCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TnbClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSolFunctionPackageCommandInput, DeleteSolFunctionPackageCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|