
com.pulumi.gcp.compute.kotlin.inputs.SecurityScanConfigAuthenticationCustomAccountArgs.kt Maven / Gradle / Ivy
@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.SecurityScanConfigAuthenticationCustomAccountArgs.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 loginUrl The login form URL of the website.
* @property password The password of the custom 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 custom account.
*/
public data class SecurityScanConfigAuthenticationCustomAccountArgs(
public val loginUrl: Output,
public val password: Output,
public val username: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.compute.inputs.SecurityScanConfigAuthenticationCustomAccountArgs =
com.pulumi.gcp.compute.inputs.SecurityScanConfigAuthenticationCustomAccountArgs.builder()
.loginUrl(loginUrl.applyValue({ args0 -> args0 }))
.password(password.applyValue({ args0 -> args0 }))
.username(username.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SecurityScanConfigAuthenticationCustomAccountArgs].
*/
@PulumiTagMarker
public class SecurityScanConfigAuthenticationCustomAccountArgsBuilder internal constructor() {
private var loginUrl: Output? = null
private var password: Output? = null
private var username: Output? = null
/**
* @param value The login form URL of the website.
*/
@JvmName("eudyppbxlaywnyio")
public suspend fun loginUrl(`value`: Output) {
this.loginUrl = value
}
/**
* @param value The password of the custom account. The credential is stored encrypted
* in GCP.
* **Note**: This property is sensitive and will not be displayed in the plan.
*/
@JvmName("inqexweooogwbask")
public suspend fun password(`value`: Output) {
this.password = value
}
/**
* @param value The user name of the custom account.
*/
@JvmName("jfgldemjyngvdqis")
public suspend fun username(`value`: Output) {
this.username = value
}
/**
* @param value The login form URL of the website.
*/
@JvmName("dbxdkjmmweefweju")
public suspend fun loginUrl(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.loginUrl = mapped
}
/**
* @param value The password of the custom account. The credential is stored encrypted
* in GCP.
* **Note**: This property is sensitive and will not be displayed in the plan.
*/
@JvmName("nwxiqyclayivwjeo")
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 custom account.
*/
@JvmName("vcjdmqpoefxjalcr")
public suspend fun username(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.username = mapped
}
internal fun build(): SecurityScanConfigAuthenticationCustomAccountArgs =
SecurityScanConfigAuthenticationCustomAccountArgs(
loginUrl = loginUrl ?: throw PulumiNullFieldException("loginUrl"),
password = password ?: throw PulumiNullFieldException("password"),
username = username ?: throw PulumiNullFieldException("username"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy