com.pulumi.googlenative.dialogflow.v3beta1.kotlin.outputs.GoogleCloudDialogflowCxV3beta1IntentResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.dialogflow.v3beta1.kotlin.outputs
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* An intent represents a user's intent to interact with a conversational agent. You can provide information for the Dialogflow API to use to match user input to an intent by adding training phrases (i.e., examples of user input) to your intent.
* @property description Human readable description for better understanding an intent like its scope, content, result etc. Maximum character limit: 140 characters.
* @property displayName The human-readable name of the intent, unique within the agent.
* @property isFallback Indicates whether this is a fallback intent. Currently only default fallback intent is allowed in the agent, which is added upon agent creation. Adding training phrases to fallback intent is useful in the case of requests that are mistakenly matched, since training phrases assigned to fallback intents act as negative examples that triggers no-match event.
* @property labels The key/value metadata to label an intent. Labels can contain lowercase letters, digits and the symbols '-' and '_'. International characters are allowed, including letters from unicase alphabets. Keys must start with a letter. Keys and values can be no longer than 63 characters and no more than 128 bytes. Prefix "sys-" is reserved for Dialogflow defined labels. Currently allowed Dialogflow defined labels include: * sys-head * sys-contextual The above labels do not require value. "sys-head" means the intent is a head intent. "sys-contextual" means the intent is a contextual intent.
* @property name The unique identifier of the intent. Required for the Intents.UpdateIntent method. Intents.CreateIntent populates the name automatically. Format: `projects//locations//agents//intents/`.
* @property parameters The collection of parameters associated with the intent.
* @property priority The priority of this intent. Higher numbers represent higher priorities. - If the supplied value is unspecified or 0, the service translates the value to 500,000, which corresponds to the `Normal` priority in the console. - If the supplied value is negative, the intent is ignored in runtime detect intent requests.
* @property trainingPhrases The collection of training phrases the agent is trained on to identify the intent.
*/
public data class GoogleCloudDialogflowCxV3beta1IntentResponse(
public val description: String,
public val displayName: String,
public val isFallback: Boolean,
public val labels: Map,
public val name: String,
public val parameters: List,
public val priority: Int,
public val trainingPhrases: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.dialogflow.v3beta1.outputs.GoogleCloudDialogflowCxV3beta1IntentResponse): GoogleCloudDialogflowCxV3beta1IntentResponse = GoogleCloudDialogflowCxV3beta1IntentResponse(
description = javaType.description(),
displayName = javaType.displayName(),
isFallback = javaType.isFallback(),
labels = javaType.labels().map({ args0 -> args0.key.to(args0.value) }).toMap(),
name = javaType.name(),
parameters = javaType.parameters().map({ args0 ->
args0.let({ args0 ->
com.pulumi.googlenative.dialogflow.v3beta1.kotlin.outputs.GoogleCloudDialogflowCxV3beta1IntentParameterResponse.Companion.toKotlin(args0)
})
}),
priority = javaType.priority(),
trainingPhrases = javaType.trainingPhrases().map({ args0 ->
args0.let({ args0 ->
com.pulumi.googlenative.dialogflow.v3beta1.kotlin.outputs.GoogleCloudDialogflowCxV3beta1IntentTrainingPhraseResponse.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy