listNetworkMigrationExecutions
abstract suspend fun listNetworkMigrationExecutions(input: ListNetworkMigrationExecutionsRequest): ListNetworkMigrationExecutionsResponse
Lists network migration execution instances for a given definition, showing the status and progress of each execution.
Samples
fun main() {
//sampleStart
// Sample ListNetworkMigrationExecutions call
val resp = mgnClient.listNetworkMigrationExecutions {
networkMigrationDefinitionId = "nmd-01234567891234567"
}
//sampleEnd
}