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

com.pulumi.gcp.composer.kotlin.outputs.GetImageVersionsResult.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: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.composer.kotlin.outputs

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

/**
 * A collection of values returned by getImageVersions.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property imageVersions A list of composer image versions available in the given project and location. Each `image_version` contains:
 * @property project
 * @property region
 */
public data class GetImageVersionsResult(
    public val id: String,
    public val imageVersions: List,
    public val project: String,
    public val region: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.composer.outputs.GetImageVersionsResult): GetImageVersionsResult = GetImageVersionsResult(
            id = javaType.id(),
            imageVersions = javaType.imageVersions().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.composer.kotlin.outputs.GetImageVersionsImageVersion.Companion.toKotlin(args0)
                })
            }),
            project = javaType.project(),
            region = javaType.region(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy