com.pulumi.azure.containerservice.kotlin.outputs.RegistryTaskPlatform.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.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property architecture The OS architecture. Possible values are `amd64`, `x86`, `386`, `arm` and `arm64`.
* @property os The operating system type required for the task. Possible values are `Windows` and `Linux`.
* @property variant The variant of the CPU. Possible values are `v6`, `v7`, `v8`.
*/
public data class RegistryTaskPlatform(
public val architecture: String? = null,
public val os: String,
public val variant: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.RegistryTaskPlatform):
RegistryTaskPlatform = RegistryTaskPlatform(
architecture = javaType.architecture().map({ args0 -> args0 }).orElse(null),
os = javaType.os(),
variant = javaType.variant().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy