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

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