IntentArgs

data class IntentArgs(val agentId: Output<String>? = null, val description: Output<String>? = null, val displayName: Output<String>? = null, val isFallback: Output<Boolean>? = null, val labels: Output<Map<String, String>>? = null, val languageCode: Output<String>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val parameters: Output<List<GoogleCloudDialogflowCxV3IntentParameterArgs>>? = null, val priority: Output<Int>? = null, val project: Output<String>? = null, val trainingPhrases: Output<List<GoogleCloudDialogflowCxV3IntentTrainingPhraseArgs>>? = null) : ConvertibleToJava<IntentArgs>

Creates an intent in the specified agent. Note: You should always train a flow prior to sending it queries. See the training documentation.

Constructors

Link copied to clipboard
fun IntentArgs(agentId: Output<String>? = null, description: Output<String>? = null, displayName: Output<String>? = null, isFallback: Output<Boolean>? = null, labels: Output<Map<String, String>>? = null, languageCode: Output<String>? = null, location: Output<String>? = null, name: Output<String>? = null, parameters: Output<List<GoogleCloudDialogflowCxV3IntentParameterArgs>>? = null, priority: Output<Int>? = null, project: Output<String>? = null, trainingPhrases: Output<List<GoogleCloudDialogflowCxV3IntentTrainingPhraseArgs>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): IntentArgs

Properties

Link copied to clipboard
val agentId: Output<String>? = null
Link copied to clipboard
val description: Output<String>? = null

Human readable description for better understanding an intent like its scope, content, result etc. Maximum character limit: 140 characters.

Link copied to clipboard
val displayName: Output<String>? = null

The human-readable name of the intent, unique within the agent.

Link copied to clipboard
val isFallback: Output<Boolean>? = null

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.

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

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.

Link copied to clipboard
val languageCode: Output<String>? = null

The language of the following fields in intent: * Intent.training_phrases.parts.text If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.

Link copied to clipboard
val location: Output<String>? = null
Link copied to clipboard
val name: Output<String>? = null

The unique identifier of the intent. Required for the Intents.UpdateIntent method. Intents.CreateIntent populates the name automatically. Format: projects//locations//agents//intents/.

Link copied to clipboard

The collection of parameters associated with the intent.

Link copied to clipboard
val priority: Output<Int>? = null

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.

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard

The collection of training phrases the agent is trained on to identify the intent.