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

com.pulumi.gcp.container.kotlin.inputs.GetAzureVersionsPlainArgs.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.inputs

import com.pulumi.gcp.container.inputs.GetAzureVersionsPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getAzureVersions.
 * @property location The location to list versions for.
 * @property project ID of the project to list available cluster versions for. Should match the project the cluster will be deployed to.
 * Defaults to the project that the provider is authenticated with.
 */
public data class GetAzureVersionsPlainArgs(
    public val location: String? = null,
    public val project: String? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.container.inputs.GetAzureVersionsPlainArgs =
        com.pulumi.gcp.container.inputs.GetAzureVersionsPlainArgs.builder()
            .location(location?.let({ args0 -> args0 }))
            .project(project?.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetAzureVersionsPlainArgs].
 */
@PulumiTagMarker
public class GetAzureVersionsPlainArgsBuilder internal constructor() {
    private var location: String? = null

    private var project: String? = null

    /**
     * @param value The location to list versions for.
     */
    @JvmName("hswxxjqwrhqpmrlm")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.location = mapped
    }

    /**
     * @param value ID of the project to list available cluster versions for. Should match the project the cluster will be deployed to.
     * Defaults to the project that the provider is authenticated with.
     */
    @JvmName("rxtygajbaiutvxug")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.project = mapped
    }

    internal fun build(): GetAzureVersionsPlainArgs = GetAzureVersionsPlainArgs(
        location = location,
        project = project,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy