listSolNetworkOperations
inline suspend fun TnbClient.listSolNetworkOperations(crossinline block: ListSolNetworkOperationsRequest.Builder.() -> Unit): ListSolNetworkOperationsResponse
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.
Samples
// List Sol Network Instantiate operations
val resp = tnbClient.listSolNetworkOperations()Content copied to clipboard
// List Sol Network Instantiate operations with nextToken and maxResults
val resp = tnbClient.listSolNetworkOperations {
maxResults = 25
nextToken = ""
}Content copied to clipboard
// List Sol Network Update operations
val resp = tnbClient.listSolNetworkOperations {
nsInstanceId = "ni-0d5b823eb5c2a9241"
}Content copied to clipboard
// List Sol Network Update operations
val resp = tnbClient.listSolNetworkOperations {
nsInstanceId = "ni-0d5b823eb5c2a9241"
}Content copied to clipboard