![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.aad.kotlin.outputs.MigrationPropertiesResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.aad.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Migration Properties
* @property migrationProgress Migration Progress
* @property oldSubnetId Old Subnet Id
* @property oldVnetSiteId Old Vnet Site Id
*/
public data class MigrationPropertiesResponse(
public val migrationProgress: MigrationProgressResponse,
public val oldSubnetId: String,
public val oldVnetSiteId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.aad.outputs.MigrationPropertiesResponse): MigrationPropertiesResponse = MigrationPropertiesResponse(
migrationProgress = javaType.migrationProgress().let({ args0 ->
com.pulumi.azurenative.aad.kotlin.outputs.MigrationProgressResponse.Companion.toKotlin(args0)
}),
oldSubnetId = javaType.oldSubnetId(),
oldVnetSiteId = javaType.oldVnetSiteId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy