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


fun main() { 
   //sampleStart 
   // List Sol Network Instantiate operations
val resp = tnbClient.listSolNetworkOperations() 
   //sampleEnd
}

fun main() { 
   //sampleStart 
   // List Sol Network Instantiate operations with nextToken and maxResults
val resp = tnbClient.listSolNetworkOperations {
    maxResults = 25
    nextToken = ""
} 
   //sampleEnd
}

fun main() { 
   //sampleStart 
   // List Sol Network Update operations
val resp = tnbClient.listSolNetworkOperations {
    nsInstanceId = "ni-0d5b823eb5c2a9241"
} 
   //sampleEnd
}

fun main() { 
   //sampleStart 
   // List Sol Network Update operations
val resp = tnbClient.listSolNetworkOperations {
    nsInstanceId = "ni-0d5b823eb5c2a9241"
} 
   //sampleEnd
}