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

com.pulumi.gcp.container.kotlin.outputs.GetAttachedInstallManifestResult.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.container.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getAttachedInstallManifest.
 * @property clusterId
 * @property id The provider-assigned unique ID for this managed resource.
 * @property location
 * @property manifest A string with the YAML manifest that needs to be applied to the cluster.
 * @property platformVersion
 * @property project
 */
public data class GetAttachedInstallManifestResult(
    public val clusterId: String,
    public val id: String,
    public val location: String,
    public val manifest: String,
    public val platformVersion: String,
    public val project: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetAttachedInstallManifestResult): GetAttachedInstallManifestResult = GetAttachedInstallManifestResult(
            clusterId = javaType.clusterId(),
            id = javaType.id(),
            location = javaType.location(),
            manifest = javaType.manifest(),
            platformVersion = javaType.platformVersion(),
            project = javaType.project(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy