getSolNetworkPackageDescriptor
inline suspend fun TnbClient.getSolNetworkPackageDescriptor(crossinline block: GetSolNetworkPackageDescriptorRequest.Builder.() -> Unit): GetSolNetworkPackageDescriptorResponse
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.
Samples
fun main() {
//sampleStart
// Get the descriptor of a Network Pacakge
val resp = tnbClient.getSolNetworkPackageDescriptor {
nsdInfoId = "np-0d5b823eb5c2a9241"
}
//sampleEnd
}