![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.logz.kotlin.inputs.LogzOrganizationPropertiesArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.logz.kotlin.inputs
import com.pulumi.azurenative.logz.inputs.LogzOrganizationPropertiesArgs.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 companyName Name of the Logz organization.
* @property enterpriseAppId The Id of the Enterprise App used for Single sign on.
* @property singleSignOnUrl The login URL specific to this Logz Organization.
*/
public data class LogzOrganizationPropertiesArgs(
public val companyName: Output? = null,
public val enterpriseAppId: Output? = null,
public val singleSignOnUrl: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.logz.inputs.LogzOrganizationPropertiesArgs =
com.pulumi.azurenative.logz.inputs.LogzOrganizationPropertiesArgs.builder()
.companyName(companyName?.applyValue({ args0 -> args0 }))
.enterpriseAppId(enterpriseAppId?.applyValue({ args0 -> args0 }))
.singleSignOnUrl(singleSignOnUrl?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LogzOrganizationPropertiesArgs].
*/
@PulumiTagMarker
public class LogzOrganizationPropertiesArgsBuilder internal constructor() {
private var companyName: Output? = null
private var enterpriseAppId: Output? = null
private var singleSignOnUrl: Output? = null
/**
* @param value Name of the Logz organization.
*/
@JvmName("diefvaeherpqexsa")
public suspend fun companyName(`value`: Output) {
this.companyName = value
}
/**
* @param value The Id of the Enterprise App used for Single sign on.
*/
@JvmName("telbsgjvsluwewcq")
public suspend fun enterpriseAppId(`value`: Output) {
this.enterpriseAppId = value
}
/**
* @param value The login URL specific to this Logz Organization.
*/
@JvmName("wcafqvevmsowocct")
public suspend fun singleSignOnUrl(`value`: Output) {
this.singleSignOnUrl = value
}
/**
* @param value Name of the Logz organization.
*/
@JvmName("faxdairqonfqxcrk")
public suspend fun companyName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.companyName = mapped
}
/**
* @param value The Id of the Enterprise App used for Single sign on.
*/
@JvmName("xjcjwqgoatciwdym")
public suspend fun enterpriseAppId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.enterpriseAppId = mapped
}
/**
* @param value The login URL specific to this Logz Organization.
*/
@JvmName("xfqukljooqmrrreh")
public suspend fun singleSignOnUrl(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.singleSignOnUrl = mapped
}
internal fun build(): LogzOrganizationPropertiesArgs = LogzOrganizationPropertiesArgs(
companyName = companyName,
enterpriseAppId = enterpriseAppId,
singleSignOnUrl = singleSignOnUrl,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy