Page

class Page : KotlinCustomResource

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

Properties

Link copied to clipboard
val agentId: Output<String>
Link copied to clipboard
val displayName: Output<String>

The human-readable name of the page, unique within the flow.

Link copied to clipboard

The fulfillment to call when the session is entering the page.

Link copied to clipboard

Handlers associated with the page to handle events such as webhook errors, no match or no input.

Link copied to clipboard
val flowId: Output<String>
Link copied to clipboard

The form associated with the page, used for collecting parameters relevant to the page.

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

The language of the following fields in page: * Page.entry_fulfillment.messages * Page.entry_fulfillment.conditional_cases * Page.event_handlers.trigger_fulfillment.messages * Page.event_handlers.trigger_fulfillment.conditional_cases * Page.form.parameters.fill_behavior.initial_prompt_fulfillment.messages * Page.form.parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases * Page.form.parameters.fill_behavior.reprompt_event_handlers.messages * Page.form.parameters.fill_behavior.reprompt_event_handlers.conditional_cases * Page.transition_routes.trigger_fulfillment.messages * Page.transition_routes.trigger_fulfillment.conditional_cases 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>
Link copied to clipboard
val name: Output<String>

The unique identifier of the page. Required for the Pages.UpdatePage method. Pages.CreatePage populates the name automatically. Format: projects//locations//agents//flows//pages/.

Link copied to clipboard
val project: Output<String>
Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Ordered list of TransitionRouteGroups associated with the page. Transition route groups must be unique within a page. * If multiple transition routes within a page scope refer to the same intent, then the precedence order is: page's transition route -> page's transition route group -> flow's transition routes. * If multiple transition route groups within a page contain the same intent, then the first group in the ordered list takes precedence. Format:projects//locations//agents//flows//transitionRouteGroups/.

Link copied to clipboard

A list of transitions for the transition rules of this page. They route the conversation to another page in the same flow, or another flow. When we are in a certain page, the TransitionRoutes are evalauted in the following order: * TransitionRoutes defined in the page with intent specified. * TransitionRoutes defined in the transition route groups with intent specified. * TransitionRoutes defined in flow with intent specified. * TransitionRoutes defined in the transition route groups with intent specified. * TransitionRoutes defined in the page with only condition specified. * TransitionRoutes defined in the transition route groups with only condition specified.

Link copied to clipboard
val urn: Output<String>