com.pulumi.gcp.diagflow.kotlin.outputs.CxFlowAdvancedSettings.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.outputs
import kotlin.Suppress
/**
*
* @property audioExportGcsDestination If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels:
* * Agent level
* * Flow level
* Structure is documented below.
* @property dtmfSettings Define behaviors for DTMF (dual tone multi frequency). DTMF settings does not override each other. DTMF settings set at different levels define DTMF detections running in parallel. Exposed at the following levels:
* * Agent level
* * Flow level
* * Page level
* * Parameter level
* Structure is documented below.
* @property loggingSettings Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels:
* * Agent level
* Structure is documented below.
* @property speechSettings Settings for speech to text detection. Exposed at the following levels:
* * Agent level
* * Flow level
* * Page level
* * Parameter level
* Structure is documented below.
*/
public data class CxFlowAdvancedSettings(
public val audioExportGcsDestination: CxFlowAdvancedSettingsAudioExportGcsDestination? = null,
public val dtmfSettings: CxFlowAdvancedSettingsDtmfSettings? = null,
public val loggingSettings: CxFlowAdvancedSettingsLoggingSettings? = null,
public val speechSettings: CxFlowAdvancedSettingsSpeechSettings? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.diagflow.outputs.CxFlowAdvancedSettings): CxFlowAdvancedSettings = CxFlowAdvancedSettings(
audioExportGcsDestination = javaType.audioExportGcsDestination().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.diagflow.kotlin.outputs.CxFlowAdvancedSettingsAudioExportGcsDestination.Companion.toKotlin(args0)
})
}).orElse(null),
dtmfSettings = javaType.dtmfSettings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.diagflow.kotlin.outputs.CxFlowAdvancedSettingsDtmfSettings.Companion.toKotlin(args0)
})
}).orElse(null),
loggingSettings = javaType.loggingSettings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.diagflow.kotlin.outputs.CxFlowAdvancedSettingsLoggingSettings.Companion.toKotlin(args0)
})
}).orElse(null),
speechSettings = javaType.speechSettings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.diagflow.kotlin.outputs.CxFlowAdvancedSettingsSpeechSettings.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy