com.pulumi.gcp.diagflow.kotlin.inputs.CxAgentAdvancedSettingsAudioExportGcsDestinationArgs.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.diagflow.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.diagflow.inputs.CxAgentAdvancedSettingsAudioExportGcsDestinationArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property uri The Google Cloud Storage URI for the exported objects. Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.
* Format: gs://bucket/object-name-or-prefix
*/
public data class CxAgentAdvancedSettingsAudioExportGcsDestinationArgs(
public val uri: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.diagflow.inputs.CxAgentAdvancedSettingsAudioExportGcsDestinationArgs =
com.pulumi.gcp.diagflow.inputs.CxAgentAdvancedSettingsAudioExportGcsDestinationArgs.builder()
.uri(uri?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CxAgentAdvancedSettingsAudioExportGcsDestinationArgs].
*/
@PulumiTagMarker
public class CxAgentAdvancedSettingsAudioExportGcsDestinationArgsBuilder internal constructor() {
private var uri: Output? = null
/**
* @param value The Google Cloud Storage URI for the exported objects. Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.
* Format: gs://bucket/object-name-or-prefix
*/
@JvmName("oapgaxlkflbqnepr")
public suspend fun uri(`value`: Output) {
this.uri = value
}
/**
* @param value The Google Cloud Storage URI for the exported objects. Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.
* Format: gs://bucket/object-name-or-prefix
*/
@JvmName("kgqhqwfwobtforda")
public suspend fun uri(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.uri = mapped
}
internal fun build(): CxAgentAdvancedSettingsAudioExportGcsDestinationArgs =
CxAgentAdvancedSettingsAudioExportGcsDestinationArgs(
uri = uri,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy