com.pulumi.gcp.container.kotlin.outputs.GetAttachedInstallManifestResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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