![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.compute.kotlin.outputs.GalleryApplicationVersionTargetRegion.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.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property excludeFromLatest Specifies whether this Gallery Application Version should be excluded from the `latest` filter. If set to `true`, this Gallery Application Version won't be returned for the `latest` version. Defaults to `false`.
* @property name The Azure Region in which the Gallery Application Version exists.
* @property regionalReplicaCount The number of replicas of the Gallery Application Version to be created per region. Possible values are between `1` and `10`.
* @property storageAccountType The storage account type for the Gallery Application Version. Possible values are `Standard_LRS`, `Premium_LRS` and `Standard_ZRS`. Defaults to `Standard_LRS`.
*/
public data class GalleryApplicationVersionTargetRegion(
public val excludeFromLatest: Boolean? = null,
public val name: String,
public val regionalReplicaCount: Int,
public val storageAccountType: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.GalleryApplicationVersionTargetRegion): GalleryApplicationVersionTargetRegion = GalleryApplicationVersionTargetRegion(
excludeFromLatest = javaType.excludeFromLatest().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
regionalReplicaCount = javaType.regionalReplicaCount(),
storageAccountType = javaType.storageAccountType().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy