
com.pulumi.googlenative.dialogflow.v3.kotlin.outputs.GoogleCloudDialogflowCxV3TextToSpeechSettingsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.dialogflow.v3.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* Settings related to speech synthesizing.
* @property synthesizeSpeechConfigs Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/cx/docs/reference/language) to SynthesizeSpeechConfig. These settings affect: - The synthesize configuration used in [phone gateway](https://cloud.google.com/dialogflow/cx/docs/concept/integration/phone-gateway). - You no longer need to specify OutputAudioConfig.synthesize_speech_config when invoking API calls. Your agent will use the pre-configured options for speech synthesizing.
*/
public data class GoogleCloudDialogflowCxV3TextToSpeechSettingsResponse(
public val synthesizeSpeechConfigs: Map,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.dialogflow.v3.outputs.GoogleCloudDialogflowCxV3TextToSpeechSettingsResponse): GoogleCloudDialogflowCxV3TextToSpeechSettingsResponse =
GoogleCloudDialogflowCxV3TextToSpeechSettingsResponse(
synthesizeSpeechConfigs = javaType.synthesizeSpeechConfigs().map({ args0 ->
args0.key.to(args0.value)
}).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy