deleteSolFunctionPackage   
  inline suspend fun TnbClient.deleteSolFunctionPackage(crossinline block: DeleteSolFunctionPackageRequest.Builder.() -> Unit): DeleteSolFunctionPackageResponse
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.
Samples
fun main() { 
   //sampleStart 
   // Delete a function package
tnbClient.deleteSolFunctionPackage {
    vnfPkgId = "fp-07aa863e53460a2a6"
} 
   //sampleEnd
}