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

com.pulumi.gcp.compute.kotlin.inputs.SecurityScanConfigAuthenticationGoogleAccountArgs.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.compute.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.inputs.SecurityScanConfigAuthenticationGoogleAccountArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property password The password of the Google account. The credential is stored encrypted
 * in GCP.
 * **Note**: This property is sensitive and will not be displayed in the plan.
 * @property username The user name of the Google account.
 */
public data class SecurityScanConfigAuthenticationGoogleAccountArgs(
    public val password: Output,
    public val username: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.inputs.SecurityScanConfigAuthenticationGoogleAccountArgs =
        com.pulumi.gcp.compute.inputs.SecurityScanConfigAuthenticationGoogleAccountArgs.builder()
            .password(password.applyValue({ args0 -> args0 }))
            .username(username.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [SecurityScanConfigAuthenticationGoogleAccountArgs].
 */
@PulumiTagMarker
public class SecurityScanConfigAuthenticationGoogleAccountArgsBuilder internal constructor() {
    private var password: Output? = null

    private var username: Output? = null

    /**
     * @param value The password of the Google account. The credential is stored encrypted
     * in GCP.
     * **Note**: This property is sensitive and will not be displayed in the plan.
     */
    @JvmName("cqfajnsrgeuryfhe")
    public suspend fun password(`value`: Output) {
        this.password = value
    }

    /**
     * @param value The user name of the Google account.
     */
    @JvmName("pnguhkrmlsothkas")
    public suspend fun username(`value`: Output) {
        this.username = value
    }

    /**
     * @param value The password of the Google account. The credential is stored encrypted
     * in GCP.
     * **Note**: This property is sensitive and will not be displayed in the plan.
     */
    @JvmName("pgadfhoypcekigvv")
    public suspend fun password(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.password = mapped
    }

    /**
     * @param value The user name of the Google account.
     */
    @JvmName("ktpmwmatoksgfpdl")
    public suspend fun username(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.username = mapped
    }

    internal fun build(): SecurityScanConfigAuthenticationGoogleAccountArgs =
        SecurityScanConfigAuthenticationGoogleAccountArgs(
            password = password ?: throw PulumiNullFieldException("password"),
            username = username ?: throw PulumiNullFieldException("username"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy