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

com.pulumi.azure.apimanagement.kotlin.inputs.BackendCredentialsAuthorizationArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.apimanagement.kotlin.inputs

import com.pulumi.azure.apimanagement.inputs.BackendCredentialsAuthorizationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property parameter The authentication Parameter value.
 * @property scheme The authentication Scheme name.
 */
public data class BackendCredentialsAuthorizationArgs(
    public val parameter: Output? = null,
    public val scheme: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.apimanagement.inputs.BackendCredentialsAuthorizationArgs =
        com.pulumi.azure.apimanagement.inputs.BackendCredentialsAuthorizationArgs.builder()
            .parameter(parameter?.applyValue({ args0 -> args0 }))
            .scheme(scheme?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [BackendCredentialsAuthorizationArgs].
 */
@PulumiTagMarker
public class BackendCredentialsAuthorizationArgsBuilder internal constructor() {
    private var parameter: Output? = null

    private var scheme: Output? = null

    /**
     * @param value The authentication Parameter value.
     */
    @JvmName("gvdkmhctarkgkamb")
    public suspend fun parameter(`value`: Output) {
        this.parameter = value
    }

    /**
     * @param value The authentication Scheme name.
     */
    @JvmName("padxqpvutobblole")
    public suspend fun scheme(`value`: Output) {
        this.scheme = value
    }

    /**
     * @param value The authentication Parameter value.
     */
    @JvmName("jyffjrgnaewwftph")
    public suspend fun parameter(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.parameter = mapped
    }

    /**
     * @param value The authentication Scheme name.
     */
    @JvmName("gqwlikactfghjswo")
    public suspend fun scheme(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scheme = mapped
    }

    internal fun build(): BackendCredentialsAuthorizationArgs = BackendCredentialsAuthorizationArgs(
        parameter = parameter,
        scheme = scheme,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy