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

com.pulumi.azure.batch.kotlin.outputs.GetPoolContainerConfiguration.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.batch.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property containerImageNames A list of container image names to use, as would be specified by `docker pull`.
 * @property containerRegistries Additional container registries from which container images can be pulled by the pool's VMs.
 * @property type The type of container configuration.
 */
public data class GetPoolContainerConfiguration(
    public val containerImageNames: List,
    public val containerRegistries: List,
    public val type: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolContainerConfiguration):
            GetPoolContainerConfiguration = GetPoolContainerConfiguration(
            containerImageNames = javaType.containerImageNames().map({ args0 -> args0 }),
            containerRegistries = javaType.containerRegistries().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.batch.kotlin.outputs.GetPoolContainerConfigurationContainerRegistry.Companion.toKotlin(args0)
                })
            }),
            type = javaType.type(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy