listSolNetworkOperations

abstract suspend fun listSolNetworkOperations(input: ListSolNetworkOperationsRequest = ListSolNetworkOperationsRequest { }): 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()
// List Sol Network Instantiate operations with nextToken and maxResults
val resp = tnbClient.listSolNetworkOperations {
    maxResults = 25
    nextToken = ""
}
// List Sol Network Update operations
val resp = tnbClient.listSolNetworkOperations {
    nsInstanceId = "ni-0d5b823eb5c2a9241"
}
// List Sol Network Update operations
val resp = tnbClient.listSolNetworkOperations {
    nsInstanceId = "ni-0d5b823eb5c2a9241"
}