
com.pulumi.gcp.iap.kotlin.inputs.SettingsAccessSettingsGcipSettingsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.iap.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.iap.inputs.SettingsAccessSettingsGcipSettingsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property loginPageUri Login page URI associated with the GCIP tenants. Typically, all resources within
* the same project share the same login page, though it could be overridden at the
* sub resource level.
* @property tenantIds GCIP tenant ids that are linked to the IAP resource. tenantIds could be a string
* beginning with a number character to indicate authenticating with GCIP tenant flow,
* or in the format of _ to indicate authenticating with GCIP agent flow. If agent flow
* is used, tenantIds should only contain one single element, while for tenant flow,
* tenantIds can contain multiple elements.
*/
public data class SettingsAccessSettingsGcipSettingsArgs(
public val loginPageUri: Output? = null,
public val tenantIds: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.iap.inputs.SettingsAccessSettingsGcipSettingsArgs =
com.pulumi.gcp.iap.inputs.SettingsAccessSettingsGcipSettingsArgs.builder()
.loginPageUri(loginPageUri?.applyValue({ args0 -> args0 }))
.tenantIds(tenantIds?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [SettingsAccessSettingsGcipSettingsArgs].
*/
@PulumiTagMarker
public class SettingsAccessSettingsGcipSettingsArgsBuilder internal constructor() {
private var loginPageUri: Output? = null
private var tenantIds: Output>? = null
/**
* @param value Login page URI associated with the GCIP tenants. Typically, all resources within
* the same project share the same login page, though it could be overridden at the
* sub resource level.
*/
@JvmName("lfyxmawnwxxeohah")
public suspend fun loginPageUri(`value`: Output) {
this.loginPageUri = value
}
/**
* @param value GCIP tenant ids that are linked to the IAP resource. tenantIds could be a string
* beginning with a number character to indicate authenticating with GCIP tenant flow,
* or in the format of _ to indicate authenticating with GCIP agent flow. If agent flow
* is used, tenantIds should only contain one single element, while for tenant flow,
* tenantIds can contain multiple elements.
*/
@JvmName("gsvmxtyrvssjjivk")
public suspend fun tenantIds(`value`: Output>) {
this.tenantIds = value
}
@JvmName("oxxuebpxiueinetg")
public suspend fun tenantIds(vararg values: Output) {
this.tenantIds = Output.all(values.asList())
}
/**
* @param values GCIP tenant ids that are linked to the IAP resource. tenantIds could be a string
* beginning with a number character to indicate authenticating with GCIP tenant flow,
* or in the format of _ to indicate authenticating with GCIP agent flow. If agent flow
* is used, tenantIds should only contain one single element, while for tenant flow,
* tenantIds can contain multiple elements.
*/
@JvmName("eplxrpfgfdrwgdba")
public suspend fun tenantIds(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy