![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.compute.kotlin.outputs.WindowsVirtualMachineScaleSetGalleryApplication.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.Deprecated
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property configurationReferenceBlobUri
* @property order Specifies the order in which the packages have to be installed. Possible values are between `0` and `2147483647`. Defaults to `0`. Changing this forces a new resource to be created.
* @property packageReferenceId
* @property tag
*/
public data class WindowsVirtualMachineScaleSetGalleryApplication(
@Deprecated(
message = """
`configuration_reference_blob_uri` has been renamed to `configuration_blob_uri` and will be
deprecated in 4.0
""",
)
public val configurationReferenceBlobUri: String? = null,
public val order: Int? = null,
@Deprecated(
message = """
`package_reference_id` has been renamed to `version_id` and will be deprecated in 4.0
""",
)
public val packageReferenceId: String,
public val tag: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.WindowsVirtualMachineScaleSetGalleryApplication): WindowsVirtualMachineScaleSetGalleryApplication =
WindowsVirtualMachineScaleSetGalleryApplication(
configurationReferenceBlobUri = javaType.configurationReferenceBlobUri().map({ args0 ->
args0
}).orElse(null),
order = javaType.order().map({ args0 -> args0 }).orElse(null),
packageReferenceId = javaType.packageReferenceId(),
tag = javaType.tag().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy