getSolNetworkOperation   
  inline suspend fun TnbClient.getSolNetworkOperation(crossinline block: GetSolNetworkOperationRequest.Builder.() -> Unit): GetSolNetworkOperationResponse
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.
Samples
fun main() { 
   //sampleStart 
   // Get Sol Network Instantiate operation
val resp = tnbClient.getSolNetworkOperation {
    nsLcmOpOccId = "no-0d5b823eb5c2a9241"
} 
   //sampleEnd
}
fun main() { 
   //sampleStart 
   // Get Sol Network Update operation
val resp = tnbClient.getSolNetworkOperation {
    nsLcmOpOccId = "no-0d5b823eb5c2a9241"
} 
   //sampleEnd
}
fun main() { 
   //sampleStart 
   // Get Sol Network Update operation
val resp = tnbClient.getSolNetworkOperation {
    nsLcmOpOccId = "no-0d5b823eb5c2a9241"
} 
   //sampleEnd
}
fun main() { 
   //sampleStart 
   // Get Sol Network Instantiate operation which has a failure
val resp = tnbClient.getSolNetworkOperation {
    nsLcmOpOccId = "no-0d5b823eb5c2a9241"
} 
   //sampleEnd
}