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

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

package com.pulumi.gcp.container.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getRegistryImage.
 * @property digest
 * @property id The provider-assigned unique ID for this managed resource.
 * @property imageUrl The URL at which the image can be accessed.
 * @property name
 * @property project
 * @property region
 * @property tag
 */
public data class GetRegistryImageResult(
    public val digest: String? = null,
    public val id: String,
    public val imageUrl: String,
    public val name: String,
    public val project: String,
    public val region: String? = null,
    public val tag: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetRegistryImageResult): GetRegistryImageResult = GetRegistryImageResult(
            digest = javaType.digest().map({ args0 -> args0 }).orElse(null),
            id = javaType.id(),
            imageUrl = javaType.imageUrl(),
            name = javaType.name(),
            project = javaType.project(),
            region = javaType.region().map({ args0 -> args0 }).orElse(null),
            tag = javaType.tag().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy