@aws-sdk/client-tnb 3.312.0 → 3.316.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.
@@ -33,286 +33,209 @@ import { UpdateSolNetworkPackageCommandInput, UpdateSolNetworkPackageCommandOutp
33
33
  import { ValidateSolFunctionPackageContentCommandInput, ValidateSolFunctionPackageContentCommandOutput } from "./commands/ValidateSolFunctionPackageContentCommand";
34
34
  import { ValidateSolNetworkPackageContentCommandInput, ValidateSolNetworkPackageContentCommandOutput } from "./commands/ValidateSolNetworkPackageContentCommand";
35
35
  import { TnbClient } from "./TnbClient";
36
- /**
37
- * @public
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>
39
- */
40
- export declare class Tnb extends TnbClient {
36
+ export interface Tnb {
41
37
  /**
42
- * @public
43
- * <p>Cancels a network operation.</p>
44
- * <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
38
+ * @see {@link CancelSolNetworkOperationCommand}
45
39
  */
46
40
  cancelSolNetworkOperation(args: CancelSolNetworkOperationCommandInput, options?: __HttpHandlerOptions): Promise<CancelSolNetworkOperationCommandOutput>;
47
41
  cancelSolNetworkOperation(args: CancelSolNetworkOperationCommandInput, cb: (err: any, data?: CancelSolNetworkOperationCommandOutput) => void): void;
48
42
  cancelSolNetworkOperation(args: CancelSolNetworkOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelSolNetworkOperationCommandOutput) => void): void;
49
43
  /**
50
- * @public
51
- * <p>Creates a function package.</p>
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>.
53
- * </p>
54
- * <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>
44
+ * @see {@link CreateSolFunctionPackageCommand}
55
45
  */
56
46
  createSolFunctionPackage(args: CreateSolFunctionPackageCommandInput, options?: __HttpHandlerOptions): Promise<CreateSolFunctionPackageCommandOutput>;
57
47
  createSolFunctionPackage(args: CreateSolFunctionPackageCommandInput, cb: (err: any, data?: CreateSolFunctionPackageCommandOutput) => void): void;
58
48
  createSolFunctionPackage(args: CreateSolFunctionPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSolFunctionPackageCommandOutput) => void): void;
59
49
  /**
60
- * @public
61
- * <p>Creates a network instance.</p>
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>
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>
50
+ * @see {@link CreateSolNetworkInstanceCommand}
64
51
  */
65
52
  createSolNetworkInstance(args: CreateSolNetworkInstanceCommandInput, options?: __HttpHandlerOptions): Promise<CreateSolNetworkInstanceCommandOutput>;
66
53
  createSolNetworkInstance(args: CreateSolNetworkInstanceCommandInput, cb: (err: any, data?: CreateSolNetworkInstanceCommandOutput) => void): void;
67
54
  createSolNetworkInstance(args: CreateSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSolNetworkInstanceCommandOutput) => void): void;
68
55
  /**
69
- * @public
70
- * <p>Creates a network package.</p>
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>.
72
- * </p>
73
- * <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>
74
- * <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>
56
+ * @see {@link CreateSolNetworkPackageCommand}
75
57
  */
76
58
  createSolNetworkPackage(args: CreateSolNetworkPackageCommandInput, options?: __HttpHandlerOptions): Promise<CreateSolNetworkPackageCommandOutput>;
77
59
  createSolNetworkPackage(args: CreateSolNetworkPackageCommandInput, cb: (err: any, data?: CreateSolNetworkPackageCommandOutput) => void): void;
78
60
  createSolNetworkPackage(args: CreateSolNetworkPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSolNetworkPackageCommandOutput) => void): void;
79
61
  /**
80
- * @public
81
- * <p>Deletes a function package.</p>
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>
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>.
84
- * </p>
62
+ * @see {@link DeleteSolFunctionPackageCommand}
85
63
  */
86
64
  deleteSolFunctionPackage(args: DeleteSolFunctionPackageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSolFunctionPackageCommandOutput>;
87
65
  deleteSolFunctionPackage(args: DeleteSolFunctionPackageCommandInput, cb: (err: any, data?: DeleteSolFunctionPackageCommandOutput) => void): void;
88
66
  deleteSolFunctionPackage(args: DeleteSolFunctionPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSolFunctionPackageCommandOutput) => void): void;
89
67
  /**
90
- * @public
91
- * <p>Deletes a network instance.</p>
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>
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>
68
+ * @see {@link DeleteSolNetworkInstanceCommand}
94
69
  */
95
70
  deleteSolNetworkInstance(args: DeleteSolNetworkInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSolNetworkInstanceCommandOutput>;
96
71
  deleteSolNetworkInstance(args: DeleteSolNetworkInstanceCommandInput, cb: (err: any, data?: DeleteSolNetworkInstanceCommandOutput) => void): void;
97
72
  deleteSolNetworkInstance(args: DeleteSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSolNetworkInstanceCommandOutput) => void): void;
98
73
  /**
99
- * @public
100
- * <p>Deletes network package.</p>
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>
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>
74
+ * @see {@link DeleteSolNetworkPackageCommand}
103
75
  */
104
76
  deleteSolNetworkPackage(args: DeleteSolNetworkPackageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSolNetworkPackageCommandOutput>;
105
77
  deleteSolNetworkPackage(args: DeleteSolNetworkPackageCommandInput, cb: (err: any, data?: DeleteSolNetworkPackageCommandOutput) => void): void;
106
78
  deleteSolNetworkPackage(args: DeleteSolNetworkPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSolNetworkPackageCommandOutput) => void): void;
107
79
  /**
108
- * @public
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>
110
- * <p>A network function instance is a function in a function package .</p>
80
+ * @see {@link GetSolFunctionInstanceCommand}
111
81
  */
112
82
  getSolFunctionInstance(args: GetSolFunctionInstanceCommandInput, options?: __HttpHandlerOptions): Promise<GetSolFunctionInstanceCommandOutput>;
113
83
  getSolFunctionInstance(args: GetSolFunctionInstanceCommandInput, cb: (err: any, data?: GetSolFunctionInstanceCommandOutput) => void): void;
114
84
  getSolFunctionInstance(args: GetSolFunctionInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolFunctionInstanceCommandOutput) => void): void;
115
85
  /**
116
- * @public
117
- * <p>Gets the details of an individual function package, such as the operational state and whether the package is in use.</p>
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>
86
+ * @see {@link GetSolFunctionPackageCommand}
119
87
  */
120
88
  getSolFunctionPackage(args: GetSolFunctionPackageCommandInput, options?: __HttpHandlerOptions): Promise<GetSolFunctionPackageCommandOutput>;
121
89
  getSolFunctionPackage(args: GetSolFunctionPackageCommandInput, cb: (err: any, data?: GetSolFunctionPackageCommandOutput) => void): void;
122
90
  getSolFunctionPackage(args: GetSolFunctionPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolFunctionPackageCommandOutput) => void): void;
123
91
  /**
124
- * @public
125
- * <p>Gets the contents of a function package.</p>
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>
92
+ * @see {@link GetSolFunctionPackageContentCommand}
127
93
  */
128
94
  getSolFunctionPackageContent(args: GetSolFunctionPackageContentCommandInput, options?: __HttpHandlerOptions): Promise<GetSolFunctionPackageContentCommandOutput>;
129
95
  getSolFunctionPackageContent(args: GetSolFunctionPackageContentCommandInput, cb: (err: any, data?: GetSolFunctionPackageContentCommandOutput) => void): void;
130
96
  getSolFunctionPackageContent(args: GetSolFunctionPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolFunctionPackageContentCommandOutput) => void): void;
131
97
  /**
132
- * @public
133
- * <p>Gets a function package descriptor in a function package.</p>
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>
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>
98
+ * @see {@link GetSolFunctionPackageDescriptorCommand}
136
99
  */
137
100
  getSolFunctionPackageDescriptor(args: GetSolFunctionPackageDescriptorCommandInput, options?: __HttpHandlerOptions): Promise<GetSolFunctionPackageDescriptorCommandOutput>;
138
101
  getSolFunctionPackageDescriptor(args: GetSolFunctionPackageDescriptorCommandInput, cb: (err: any, data?: GetSolFunctionPackageDescriptorCommandOutput) => void): void;
139
102
  getSolFunctionPackageDescriptor(args: GetSolFunctionPackageDescriptorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolFunctionPackageDescriptorCommandOutput) => void): void;
140
103
  /**
141
- * @public
142
- * <p>Gets the details of the network instance.</p>
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>
104
+ * @see {@link GetSolNetworkInstanceCommand}
144
105
  */
145
106
  getSolNetworkInstance(args: GetSolNetworkInstanceCommandInput, options?: __HttpHandlerOptions): Promise<GetSolNetworkInstanceCommandOutput>;
146
107
  getSolNetworkInstance(args: GetSolNetworkInstanceCommandInput, cb: (err: any, data?: GetSolNetworkInstanceCommandOutput) => void): void;
147
108
  getSolNetworkInstance(args: GetSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkInstanceCommandOutput) => void): void;
148
109
  /**
149
- * @public
150
- * <p>Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks.</p>
151
- * <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
110
+ * @see {@link GetSolNetworkOperationCommand}
152
111
  */
153
112
  getSolNetworkOperation(args: GetSolNetworkOperationCommandInput, options?: __HttpHandlerOptions): Promise<GetSolNetworkOperationCommandOutput>;
154
113
  getSolNetworkOperation(args: GetSolNetworkOperationCommandInput, cb: (err: any, data?: GetSolNetworkOperationCommandOutput) => void): void;
155
114
  getSolNetworkOperation(args: GetSolNetworkOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkOperationCommandOutput) => void): void;
156
115
  /**
157
- * @public
158
- * <p>Gets the details of a network package.</p>
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>
116
+ * @see {@link GetSolNetworkPackageCommand}
160
117
  */
161
118
  getSolNetworkPackage(args: GetSolNetworkPackageCommandInput, options?: __HttpHandlerOptions): Promise<GetSolNetworkPackageCommandOutput>;
162
119
  getSolNetworkPackage(args: GetSolNetworkPackageCommandInput, cb: (err: any, data?: GetSolNetworkPackageCommandOutput) => void): void;
163
120
  getSolNetworkPackage(args: GetSolNetworkPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkPackageCommandOutput) => void): void;
164
121
  /**
165
- * @public
166
- * <p>Gets the contents of a network package.</p>
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>
122
+ * @see {@link GetSolNetworkPackageContentCommand}
168
123
  */
169
124
  getSolNetworkPackageContent(args: GetSolNetworkPackageContentCommandInput, options?: __HttpHandlerOptions): Promise<GetSolNetworkPackageContentCommandOutput>;
170
125
  getSolNetworkPackageContent(args: GetSolNetworkPackageContentCommandInput, cb: (err: any, data?: GetSolNetworkPackageContentCommandOutput) => void): void;
171
126
  getSolNetworkPackageContent(args: GetSolNetworkPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkPackageContentCommandOutput) => void): void;
172
127
  /**
173
- * @public
174
- * <p>Gets the content of the network service descriptor.</p>
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>
128
+ * @see {@link GetSolNetworkPackageDescriptorCommand}
176
129
  */
177
130
  getSolNetworkPackageDescriptor(args: GetSolNetworkPackageDescriptorCommandInput, options?: __HttpHandlerOptions): Promise<GetSolNetworkPackageDescriptorCommandOutput>;
178
131
  getSolNetworkPackageDescriptor(args: GetSolNetworkPackageDescriptorCommandInput, cb: (err: any, data?: GetSolNetworkPackageDescriptorCommandOutput) => void): void;
179
132
  getSolNetworkPackageDescriptor(args: GetSolNetworkPackageDescriptorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSolNetworkPackageDescriptorCommandOutput) => void): void;
180
133
  /**
181
- * @public
182
- * <p>Instantiates a network instance.</p>
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>
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>
134
+ * @see {@link InstantiateSolNetworkInstanceCommand}
185
135
  */
186
136
  instantiateSolNetworkInstance(args: InstantiateSolNetworkInstanceCommandInput, options?: __HttpHandlerOptions): Promise<InstantiateSolNetworkInstanceCommandOutput>;
187
137
  instantiateSolNetworkInstance(args: InstantiateSolNetworkInstanceCommandInput, cb: (err: any, data?: InstantiateSolNetworkInstanceCommandOutput) => void): void;
188
138
  instantiateSolNetworkInstance(args: InstantiateSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InstantiateSolNetworkInstanceCommandOutput) => void): void;
189
139
  /**
190
- * @public
191
- * <p>Lists network function instances.</p>
192
- * <p>A network function instance is a function in a function package .</p>
140
+ * @see {@link ListSolFunctionInstancesCommand}
193
141
  */
194
142
  listSolFunctionInstances(args: ListSolFunctionInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListSolFunctionInstancesCommandOutput>;
195
143
  listSolFunctionInstances(args: ListSolFunctionInstancesCommandInput, cb: (err: any, data?: ListSolFunctionInstancesCommandOutput) => void): void;
196
144
  listSolFunctionInstances(args: ListSolFunctionInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolFunctionInstancesCommandOutput) => void): void;
197
145
  /**
198
- * @public
199
- * <p>Lists information about function packages.</p>
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>
146
+ * @see {@link ListSolFunctionPackagesCommand}
201
147
  */
202
148
  listSolFunctionPackages(args: ListSolFunctionPackagesCommandInput, options?: __HttpHandlerOptions): Promise<ListSolFunctionPackagesCommandOutput>;
203
149
  listSolFunctionPackages(args: ListSolFunctionPackagesCommandInput, cb: (err: any, data?: ListSolFunctionPackagesCommandOutput) => void): void;
204
150
  listSolFunctionPackages(args: ListSolFunctionPackagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolFunctionPackagesCommandOutput) => void): void;
205
151
  /**
206
- * @public
207
- * <p>Lists your network instances.</p>
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>
152
+ * @see {@link ListSolNetworkInstancesCommand}
209
153
  */
210
154
  listSolNetworkInstances(args: ListSolNetworkInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListSolNetworkInstancesCommandOutput>;
211
155
  listSolNetworkInstances(args: ListSolNetworkInstancesCommandInput, cb: (err: any, data?: ListSolNetworkInstancesCommandOutput) => void): void;
212
156
  listSolNetworkInstances(args: ListSolNetworkInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolNetworkInstancesCommandOutput) => void): void;
213
157
  /**
214
- * @public
215
- * <p>Lists details for a network operation, including when the operation started and the status of the operation.</p>
216
- * <p>A network operation is any operation that is done to your network, such as network instance instantiation or termination.</p>
158
+ * @see {@link ListSolNetworkOperationsCommand}
217
159
  */
218
160
  listSolNetworkOperations(args: ListSolNetworkOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListSolNetworkOperationsCommandOutput>;
219
161
  listSolNetworkOperations(args: ListSolNetworkOperationsCommandInput, cb: (err: any, data?: ListSolNetworkOperationsCommandOutput) => void): void;
220
162
  listSolNetworkOperations(args: ListSolNetworkOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolNetworkOperationsCommandOutput) => void): void;
221
163
  /**
222
- * @public
223
- * <p>Lists network packages.</p>
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>
164
+ * @see {@link ListSolNetworkPackagesCommand}
225
165
  */
226
166
  listSolNetworkPackages(args: ListSolNetworkPackagesCommandInput, options?: __HttpHandlerOptions): Promise<ListSolNetworkPackagesCommandOutput>;
227
167
  listSolNetworkPackages(args: ListSolNetworkPackagesCommandInput, cb: (err: any, data?: ListSolNetworkPackagesCommandOutput) => void): void;
228
168
  listSolNetworkPackages(args: ListSolNetworkPackagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolNetworkPackagesCommandOutput) => void): void;
229
169
  /**
230
- * @public
231
- * <p>Lists tags for AWS TNB resources.</p>
170
+ * @see {@link ListTagsForResourceCommand}
232
171
  */
233
172
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
234
173
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
235
174
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
236
175
  /**
237
- * @public
238
- * <p>Uploads the contents of a function package.</p>
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>
176
+ * @see {@link PutSolFunctionPackageContentCommand}
240
177
  */
241
178
  putSolFunctionPackageContent(args: PutSolFunctionPackageContentCommandInput, options?: __HttpHandlerOptions): Promise<PutSolFunctionPackageContentCommandOutput>;
242
179
  putSolFunctionPackageContent(args: PutSolFunctionPackageContentCommandInput, cb: (err: any, data?: PutSolFunctionPackageContentCommandOutput) => void): void;
243
180
  putSolFunctionPackageContent(args: PutSolFunctionPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSolFunctionPackageContentCommandOutput) => void): void;
244
181
  /**
245
- * @public
246
- * <p>Uploads the contents of a network package.</p>
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>
182
+ * @see {@link PutSolNetworkPackageContentCommand}
248
183
  */
249
184
  putSolNetworkPackageContent(args: PutSolNetworkPackageContentCommandInput, options?: __HttpHandlerOptions): Promise<PutSolNetworkPackageContentCommandOutput>;
250
185
  putSolNetworkPackageContent(args: PutSolNetworkPackageContentCommandInput, cb: (err: any, data?: PutSolNetworkPackageContentCommandOutput) => void): void;
251
186
  putSolNetworkPackageContent(args: PutSolNetworkPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSolNetworkPackageContentCommandOutput) => void): void;
252
187
  /**
253
- * @public
254
- * <p>Tags an AWS TNB resource.</p>
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>
188
+ * @see {@link TagResourceCommand}
256
189
  */
257
190
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
258
191
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
259
192
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
260
193
  /**
261
- * @public
262
- * <p>Terminates a network instance.</p>
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>
264
- * <p>You must terminate a network instance before you can delete it.</p>
194
+ * @see {@link TerminateSolNetworkInstanceCommand}
265
195
  */
266
196
  terminateSolNetworkInstance(args: TerminateSolNetworkInstanceCommandInput, options?: __HttpHandlerOptions): Promise<TerminateSolNetworkInstanceCommandOutput>;
267
197
  terminateSolNetworkInstance(args: TerminateSolNetworkInstanceCommandInput, cb: (err: any, data?: TerminateSolNetworkInstanceCommandOutput) => void): void;
268
198
  terminateSolNetworkInstance(args: TerminateSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateSolNetworkInstanceCommandOutput) => void): void;
269
199
  /**
270
- * @public
271
- * <p>Untags an AWS TNB resource.</p>
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>
200
+ * @see {@link UntagResourceCommand}
273
201
  */
274
202
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
275
203
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
276
204
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
277
205
  /**
278
- * @public
279
- * <p>Updates the operational state of function package.</p>
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>
206
+ * @see {@link UpdateSolFunctionPackageCommand}
281
207
  */
282
208
  updateSolFunctionPackage(args: UpdateSolFunctionPackageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSolFunctionPackageCommandOutput>;
283
209
  updateSolFunctionPackage(args: UpdateSolFunctionPackageCommandInput, cb: (err: any, data?: UpdateSolFunctionPackageCommandOutput) => void): void;
284
210
  updateSolFunctionPackage(args: UpdateSolFunctionPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSolFunctionPackageCommandOutput) => void): void;
285
211
  /**
286
- * @public
287
- * <p>Update a network instance.</p>
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>
212
+ * @see {@link UpdateSolNetworkInstanceCommand}
289
213
  */
290
214
  updateSolNetworkInstance(args: UpdateSolNetworkInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSolNetworkInstanceCommandOutput>;
291
215
  updateSolNetworkInstance(args: UpdateSolNetworkInstanceCommandInput, cb: (err: any, data?: UpdateSolNetworkInstanceCommandOutput) => void): void;
292
216
  updateSolNetworkInstance(args: UpdateSolNetworkInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSolNetworkInstanceCommandOutput) => void): void;
293
217
  /**
294
- * @public
295
- * <p>Updates the operational state of a network package.</p>
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>
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>
218
+ * @see {@link UpdateSolNetworkPackageCommand}
298
219
  */
299
220
  updateSolNetworkPackage(args: UpdateSolNetworkPackageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSolNetworkPackageCommandOutput>;
300
221
  updateSolNetworkPackage(args: UpdateSolNetworkPackageCommandInput, cb: (err: any, data?: UpdateSolNetworkPackageCommandOutput) => void): void;
301
222
  updateSolNetworkPackage(args: UpdateSolNetworkPackageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSolNetworkPackageCommandOutput) => void): void;
302
223
  /**
303
- * @public
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>
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>
224
+ * @see {@link ValidateSolFunctionPackageContentCommand}
306
225
  */
307
226
  validateSolFunctionPackageContent(args: ValidateSolFunctionPackageContentCommandInput, options?: __HttpHandlerOptions): Promise<ValidateSolFunctionPackageContentCommandOutput>;
308
227
  validateSolFunctionPackageContent(args: ValidateSolFunctionPackageContentCommandInput, cb: (err: any, data?: ValidateSolFunctionPackageContentCommandOutput) => void): void;
309
228
  validateSolFunctionPackageContent(args: ValidateSolFunctionPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateSolFunctionPackageContentCommandOutput) => void): void;
310
229
  /**
311
- * @public
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>
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>
230
+ * @see {@link ValidateSolNetworkPackageContentCommand}
314
231
  */
315
232
  validateSolNetworkPackageContent(args: ValidateSolNetworkPackageContentCommandInput, options?: __HttpHandlerOptions): Promise<ValidateSolNetworkPackageContentCommandOutput>;
316
233
  validateSolNetworkPackageContent(args: ValidateSolNetworkPackageContentCommandInput, cb: (err: any, data?: ValidateSolNetworkPackageContentCommandOutput) => void): void;
317
234
  validateSolNetworkPackageContent(args: ValidateSolNetworkPackageContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateSolNetworkPackageContentCommandOutput) => void): void;
318
235
  }
236
+ /**
237
+ * @public
238
+ * <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>
239
+ */
240
+ export declare class Tnb extends TnbClient implements Tnb {
241
+ }
@@ -132,7 +132,7 @@ import {
132
132
  ValidateSolNetworkPackageContentCommandOutput,
133
133
  } from "./commands/ValidateSolNetworkPackageContentCommand";
134
134
  import { TnbClient } from "./TnbClient";
135
- export declare class Tnb extends TnbClient {
135
+ export interface Tnb {
136
136
  cancelSolNetworkOperation(
137
137
  args: CancelSolNetworkOperationCommandInput,
138
138
  options?: __HttpHandlerOptions
@@ -569,3 +569,4 @@ export declare class Tnb extends TnbClient {
569
569
  cb: (err: any, data?: ValidateSolNetworkPackageContentCommandOutput) => void
570
570
  ): void;
571
571
  }
572
+ export declare class Tnb extends TnbClient implements Tnb {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-tnb",
3
3
  "description": "AWS SDK for JavaScript Tnb Client for Node.js, Browser and React Native",
4
- "version": "3.312.0",
4
+ "version": "3.316.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.312.0",
24
+ "@aws-sdk/client-sts": "3.316.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.310.0",
26
+ "@aws-sdk/credential-provider-node": "3.316.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -40,14 +40,14 @@
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.310.0",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.310.0",
43
+ "@aws-sdk/smithy-client": "3.316.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.310.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.310.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.316.0",
51
51
  "@aws-sdk/util-endpoints": "3.310.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",