
com.pulumi.azurenative.migrate.kotlin.inputs.CollectorBodyAgentSpnPropertiesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.migrate.kotlin.inputs
import com.pulumi.azurenative.migrate.inputs.CollectorBodyAgentSpnPropertiesArgs.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 applicationId Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
* @property audience Intended audience for the service principal.
* @property authority AAD Authority URL which was used to request the token for the service principal.
* @property objectId Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
* @property tenantId Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*/
public data class CollectorBodyAgentSpnPropertiesArgs(
public val applicationId: Output? = null,
public val audience: Output? = null,
public val authority: Output? = null,
public val objectId: Output? = null,
public val tenantId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.migrate.inputs.CollectorBodyAgentSpnPropertiesArgs =
com.pulumi.azurenative.migrate.inputs.CollectorBodyAgentSpnPropertiesArgs.builder()
.applicationId(applicationId?.applyValue({ args0 -> args0 }))
.audience(audience?.applyValue({ args0 -> args0 }))
.authority(authority?.applyValue({ args0 -> args0 }))
.objectId(objectId?.applyValue({ args0 -> args0 }))
.tenantId(tenantId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CollectorBodyAgentSpnPropertiesArgs].
*/
@PulumiTagMarker
public class CollectorBodyAgentSpnPropertiesArgsBuilder internal constructor() {
private var applicationId: Output? = null
private var audience: Output? = null
private var authority: Output? = null
private var objectId: Output? = null
private var tenantId: Output? = null
/**
* @param value Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*/
@JvmName("vxrxbtrfblhgknts")
public suspend fun applicationId(`value`: Output) {
this.applicationId = value
}
/**
* @param value Intended audience for the service principal.
*/
@JvmName("hgqmxndaemgpbiwk")
public suspend fun audience(`value`: Output) {
this.audience = value
}
/**
* @param value AAD Authority URL which was used to request the token for the service principal.
*/
@JvmName("lfighevaubnkvxps")
public suspend fun authority(`value`: Output) {
this.authority = value
}
/**
* @param value Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*/
@JvmName("wqgenavxtiiwfwbb")
public suspend fun objectId(`value`: Output) {
this.objectId = value
}
/**
* @param value Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*/
@JvmName("unepcmjwkkrvsyhf")
public suspend fun tenantId(`value`: Output) {
this.tenantId = value
}
/**
* @param value Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*/
@JvmName("nfkvyouquvctvqvy")
public suspend fun applicationId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.applicationId = mapped
}
/**
* @param value Intended audience for the service principal.
*/
@JvmName("agghibdiebgoqyws")
public suspend fun audience(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.audience = mapped
}
/**
* @param value AAD Authority URL which was used to request the token for the service principal.
*/
@JvmName("wcknkatontetgfba")
public suspend fun authority(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.authority = mapped
}
/**
* @param value Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*/
@JvmName("lluolngcxmuftljr")
public suspend fun objectId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.objectId = mapped
}
/**
* @param value Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*/
@JvmName("vsklcpdmhhatvidp")
public suspend fun tenantId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tenantId = mapped
}
internal fun build(): CollectorBodyAgentSpnPropertiesArgs = CollectorBodyAgentSpnPropertiesArgs(
applicationId = applicationId,
audience = audience,
authority = authority,
objectId = objectId,
tenantId = tenantId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy