![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.syntex.kotlin.inputs.DocumentProcessorPropertiesArgs.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.syntex.kotlin.inputs
import com.pulumi.azurenative.syntex.inputs.DocumentProcessorPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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
/**
* Document processor properties
* @property spoTenantId The ID (GUID) of an SharePoint Online (SPO) tenant associated with this document processor resource
* @property spoTenantUrl The URL of an SharePoint Online (SPO) tenant associated with this document processor resource
*/
public data class DocumentProcessorPropertiesArgs(
public val spoTenantId: Output,
public val spoTenantUrl: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.syntex.inputs.DocumentProcessorPropertiesArgs =
com.pulumi.azurenative.syntex.inputs.DocumentProcessorPropertiesArgs.builder()
.spoTenantId(spoTenantId.applyValue({ args0 -> args0 }))
.spoTenantUrl(spoTenantUrl.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DocumentProcessorPropertiesArgs].
*/
@PulumiTagMarker
public class DocumentProcessorPropertiesArgsBuilder internal constructor() {
private var spoTenantId: Output? = null
private var spoTenantUrl: Output? = null
/**
* @param value The ID (GUID) of an SharePoint Online (SPO) tenant associated with this document processor resource
*/
@JvmName("veqgttnrgxcgroyj")
public suspend fun spoTenantId(`value`: Output) {
this.spoTenantId = value
}
/**
* @param value The URL of an SharePoint Online (SPO) tenant associated with this document processor resource
*/
@JvmName("jfwiamekouurwdvn")
public suspend fun spoTenantUrl(`value`: Output) {
this.spoTenantUrl = value
}
/**
* @param value The ID (GUID) of an SharePoint Online (SPO) tenant associated with this document processor resource
*/
@JvmName("wojegpwvqjxeepus")
public suspend fun spoTenantId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.spoTenantId = mapped
}
/**
* @param value The URL of an SharePoint Online (SPO) tenant associated with this document processor resource
*/
@JvmName("byeryjvjcuyhrtkp")
public suspend fun spoTenantUrl(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.spoTenantUrl = mapped
}
internal fun build(): DocumentProcessorPropertiesArgs = DocumentProcessorPropertiesArgs(
spoTenantId = spoTenantId ?: throw PulumiNullFieldException("spoTenantId"),
spoTenantUrl = spoTenantUrl ?: throw PulumiNullFieldException("spoTenantUrl"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy