getSolFunctionInstance
inline suspend fun TnbClient.getSolFunctionInstance(crossinline block: GetSolFunctionInstanceRequest.Builder.() -> Unit): GetSolFunctionInstanceResponse
Gets the details of a network function instance, including the instantiation state and metadata from the function package descriptor in the network function package.
A network function instance is a function in a function package .
Samples
fun main() {
//sampleStart
// Get a Sol Network Function Instance details
val resp = tnbClient.getSolFunctionInstance {
vnfInstanceId = "fi-b9439c34c1ef86c54"
}
//sampleEnd
}