getNetworkMigrationDefinition
abstract suspend fun getNetworkMigrationDefinition(input: GetNetworkMigrationDefinitionRequest): GetNetworkMigrationDefinitionResponse
Retrieves the details of a network migration definition including source and target configurations.
Samples
fun main() {
//sampleStart
// Sample GetNetworkMigrationDefinition call
val resp = mgnClient.getNetworkMigrationDefinition {
networkMigrationDefinitionId = "nmd-01234567891234567"
}
//sampleEnd
}