All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.containerservice.kotlin.outputs.RegistryTaskPlatform.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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