Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Tnb

import { Tnb } from "https://aws-api.deno.dev/v0.4/services/tnb.ts?docs=full";
class Tnb {
constructor(apiFactory: client.ApiFactory);
async cancelSolNetworkOperation(params: CancelSolNetworkOperationInput, opts?: client.RequestOptions): Promise<void>;
async createSolFunctionPackage(params?: CreateSolFunctionPackageInput, opts?: client.RequestOptions): Promise<CreateSolFunctionPackageOutput>;
async createSolNetworkInstance(params: CreateSolNetworkInstanceInput, opts?: client.RequestOptions): Promise<CreateSolNetworkInstanceOutput>;
async createSolNetworkPackage(params?: CreateSolNetworkPackageInput, opts?: client.RequestOptions): Promise<CreateSolNetworkPackageOutput>;
async deleteSolFunctionPackage(params: DeleteSolFunctionPackageInput, opts?: client.RequestOptions): Promise<void>;
async deleteSolNetworkInstance(params: DeleteSolNetworkInstanceInput, opts?: client.RequestOptions): Promise<void>;
async deleteSolNetworkPackage(params: DeleteSolNetworkPackageInput, opts?: client.RequestOptions): Promise<void>;
async getSolFunctionInstance(params: GetSolFunctionInstanceInput, opts?: client.RequestOptions): Promise<GetSolFunctionInstanceOutput>;
async getSolFunctionPackage(params: GetSolFunctionPackageInput, opts?: client.RequestOptions): Promise<GetSolFunctionPackageOutput>;
async getSolFunctionPackageContent(params: GetSolFunctionPackageContentInput, opts?: client.RequestOptions): Promise<GetSolFunctionPackageContentOutput>;
async getSolFunctionPackageDescriptor(params: GetSolFunctionPackageDescriptorInput, opts?: client.RequestOptions): Promise<GetSolFunctionPackageDescriptorOutput>;
async getSolNetworkInstance(params: GetSolNetworkInstanceInput, opts?: client.RequestOptions): Promise<GetSolNetworkInstanceOutput>;
async getSolNetworkOperation(params: GetSolNetworkOperationInput, opts?: client.RequestOptions): Promise<GetSolNetworkOperationOutput>;
async getSolNetworkPackage(params: GetSolNetworkPackageInput, opts?: client.RequestOptions): Promise<GetSolNetworkPackageOutput>;
async getSolNetworkPackageContent(params: GetSolNetworkPackageContentInput, opts?: client.RequestOptions): Promise<GetSolNetworkPackageContentOutput>;
async getSolNetworkPackageDescriptor(params: GetSolNetworkPackageDescriptorInput, opts?: client.RequestOptions): Promise<GetSolNetworkPackageDescriptorOutput>;
async instantiateSolNetworkInstance(params: InstantiateSolNetworkInstanceInput, opts?: client.RequestOptions): Promise<InstantiateSolNetworkInstanceOutput>;
async listSolFunctionInstances(params?: ListSolFunctionInstancesInput, opts?: client.RequestOptions): Promise<ListSolFunctionInstancesOutput>;
async listSolFunctionPackages(params?: ListSolFunctionPackagesInput, opts?: client.RequestOptions): Promise<ListSolFunctionPackagesOutput>;
async listSolNetworkInstances(params?: ListSolNetworkInstancesInput, opts?: client.RequestOptions): Promise<ListSolNetworkInstancesOutput>;
async listSolNetworkOperations(params?: ListSolNetworkOperationsInput, opts?: client.RequestOptions): Promise<ListSolNetworkOperationsOutput>;
async listSolNetworkPackages(params?: ListSolNetworkPackagesInput, opts?: client.RequestOptions): Promise<ListSolNetworkPackagesOutput>;
async listTagsForResource(params: ListTagsForResourceInput, opts?: client.RequestOptions): Promise<ListTagsForResourceOutput>;
async putSolFunctionPackageContent(params: PutSolFunctionPackageContentInput, opts?: client.RequestOptions): Promise<PutSolFunctionPackageContentOutput>;
async putSolNetworkPackageContent(params: PutSolNetworkPackageContentInput, opts?: client.RequestOptions): Promise<PutSolNetworkPackageContentOutput>;
async tagResource(params: TagResourceInput, opts?: client.RequestOptions): Promise<void>;
async terminateSolNetworkInstance(params: TerminateSolNetworkInstanceInput, opts?: client.RequestOptions): Promise<TerminateSolNetworkInstanceOutput>;
async untagResource(params: UntagResourceInput, opts?: client.RequestOptions): Promise<void>;
async updateSolFunctionPackage(params: UpdateSolFunctionPackageInput, opts?: client.RequestOptions): Promise<UpdateSolFunctionPackageOutput>;
async updateSolNetworkInstance(params: UpdateSolNetworkInstanceInput, opts?: client.RequestOptions): Promise<UpdateSolNetworkInstanceOutput>;
async updateSolNetworkPackage(params: UpdateSolNetworkPackageInput, opts?: client.RequestOptions): Promise<UpdateSolNetworkPackageOutput>;
async validateSolFunctionPackageContent(params: ValidateSolFunctionPackageContentInput, opts?: client.RequestOptions): Promise<ValidateSolFunctionPackageContentOutput>;
async validateSolNetworkPackageContent(params: ValidateSolNetworkPackageContentInput, opts?: client.RequestOptions): Promise<ValidateSolNetworkPackageContentOutput>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new Tnb(apiFactory: client.ApiFactory)
[src]

§Methods

§
cancelSolNetworkOperation(params: CancelSolNetworkOperationInput, opts?: client.RequestOptions): Promise<void>
[src]

Cancels a network operation.

A network operation is any operation that is done to your network, such as network instance instantiation or termination.

§

Creates a function package.

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 Function packages in the Amazon Web Services Telco Network Builder User Guide.

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 PutSolFunctionPackageContent.

§

Creates a network instance.

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, Network instances in the Amazon Web Services Telco Network Builder User Guide.

Once you create a network instance, you can instantiate it. To instantiate a network, see InstantiateSolNetworkInstance.

§

Creates a network package.

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 Network instances in the Amazon Web Services Telco Network Builder User Guide.

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.

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 PutSolNetworkPackageContent.

§
deleteSolFunctionPackage(params: DeleteSolFunctionPackageInput, opts?: client.RequestOptions): Promise<void>
[src]

Deletes a function package.

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.

To delete a function package, the package must be in a disabled state. To disable a function package, see UpdateSolFunctionPackage.

§
deleteSolNetworkInstance(params: DeleteSolNetworkInstanceInput, opts?: client.RequestOptions): Promise<void>
[src]

Deletes a network instance.

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.

To delete a network instance, the instance must be in a stopped or terminated state. To terminate a network instance, see TerminateSolNetworkInstance.

§
deleteSolNetworkPackage(params: DeleteSolNetworkPackageInput, opts?: client.RequestOptions): Promise<void>
[src]

Deletes network package.

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.

To delete a network package, the package must be in a disable state. To disable a network package, see UpdateSolNetworkPackage.

§

Gets the details of a network function instance, including the instantation state and metadata from the function package descriptor in the network function package.

A network function instance is a function in a function package .

§

Gets the details of an individual function package, such as the operational state and whether the package is in use.

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..

§

Gets the contents of a function package.

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.

§

Gets a function package descriptor in a function package.

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.

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.

§

Gets the details of the network instance.

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.

§

Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks.

A network operation is any operation that is done to your network, such as network instance instantiation or termination.

§

Gets the details of a network package.

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.

§

Gets the contents of a network package.

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.

§

Gets the content of the network service descriptor.

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.

§

Instantiates a network instance.

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.

Before you can instantiate a network instance, you have to create a network instance. For more information, see CreateSolNetworkInstance.

§

Lists network function instances.

A network function instance is a function in a function package .

§

Lists information about function packages.

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.

§

Lists your network instances.

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.

§

Lists details for a network operation, including when the operation started and the status of the operation.

A network operation is any operation that is done to your network, such as network instance instantiation or termination.

§

Lists network packages.

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.

§

Lists tags for AWS TNB resources.

§

Uploads the contents of a function package.

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.

§

Uploads the contents of a network package.

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.

§
tagResource(params: TagResourceInput, opts?: client.RequestOptions): Promise<void>
[src]

Tags an AWS TNB resource.

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.

§

Terminates a network instance.

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.

You must terminate a network instance before you can delete it.

§
untagResource(params: UntagResourceInput, opts?: client.RequestOptions): Promise<void>
[src]

Untags an AWS TNB resource.

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.

§

Updates the operational state of function package.

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.

§

Update a network instance.

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.

§

Updates the operational state of a network package.

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.

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.

§

Validates function package content. This can be used as a dry run before uploading function package content with PutSolFunctionPackageContent.

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.

§

Validates network package content. This can be used as a dry run before uploading network package content with PutSolNetworkPackageContent.

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.

§Static Properties