
com.pulumi.googlenative.gkehub.v1alpha2.kotlin.outputs.ResourceManifestResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.gkehub.v1alpha2.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* ResourceManifest represents a single Kubernetes resource to be applied to the cluster.
* @property clusterScoped Whether the resource provided in the manifest is `cluster_scoped`. If unset, the manifest is assumed to be namespace scoped. This field is used for REST mapping when applying the resource in a cluster.
* @property manifest YAML manifest of the resource.
*/
public data class ResourceManifestResponse(
public val clusterScoped: Boolean,
public val manifest: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.gkehub.v1alpha2.outputs.ResourceManifestResponse): ResourceManifestResponse = ResourceManifestResponse(
clusterScoped = javaType.clusterScoped(),
manifest = javaType.manifest(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy