com.pulumi.gcp.container.kotlin.outputs.GetClusterFleet.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.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property membership Full resource name of the registered fleet membership of the cluster.
* @property membershipId Short name of the fleet membership, for example "member-1".
* @property membershipLocation Location of the fleet membership, for example "us-central1".
* @property preRegistered Whether the cluster has been registered via the fleet API.
* @property project The project in which the resource belongs. If it
* is not provided, the provider project is used.
*/
public data class GetClusterFleet(
public val membership: String,
public val membershipId: String,
public val membershipLocation: String,
public val preRegistered: Boolean,
public val project: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetClusterFleet): GetClusterFleet = GetClusterFleet(
membership = javaType.membership(),
membershipId = javaType.membershipId(),
membershipLocation = javaType.membershipLocation(),
preRegistered = javaType.preRegistered(),
project = javaType.project(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy