![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.compute.kotlin.outputs.GetSharedImageVersionsImageTargetRegion.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.compute.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property name The Azure Region in which this Image Version exists.
* @property regionalReplicaCount The number of replicas of the Image Version to be created per region.
* @property storageAccountType The storage account type for the image version.
*/
public data class GetSharedImageVersionsImageTargetRegion(
public val name: String,
public val regionalReplicaCount: Int,
public val storageAccountType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.GetSharedImageVersionsImageTargetRegion): GetSharedImageVersionsImageTargetRegion = GetSharedImageVersionsImageTargetRegion(
name = javaType.name(),
regionalReplicaCount = javaType.regionalReplicaCount(),
storageAccountType = javaType.storageAccountType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy