page.proto 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.dialogflow.cx.v3beta1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/cloud/dialogflow/cx/v3beta1/fulfillment.proto";
  21. import "google/protobuf/empty.proto";
  22. import "google/protobuf/field_mask.proto";
  23. import "google/protobuf/struct.proto";
  24. option cc_enable_arenas = true;
  25. option csharp_namespace = "Google.Cloud.Dialogflow.Cx.V3Beta1";
  26. option go_package = "google.golang.org/genproto/googleapis/cloud/dialogflow/cx/v3beta1;cx";
  27. option java_multiple_files = true;
  28. option java_outer_classname = "PageProto";
  29. option java_package = "com.google.cloud.dialogflow.cx.v3beta1";
  30. option objc_class_prefix = "DF";
  31. option ruby_package = "Google::Cloud::Dialogflow::CX::V3beta1";
  32. // Service for managing [Pages][google.cloud.dialogflow.cx.v3beta1.Page].
  33. service Pages {
  34. option (google.api.default_host) = "dialogflow.googleapis.com";
  35. option (google.api.oauth_scopes) =
  36. "https://www.googleapis.com/auth/cloud-platform,"
  37. "https://www.googleapis.com/auth/dialogflow";
  38. // Returns the list of all pages in the specified flow.
  39. rpc ListPages(ListPagesRequest) returns (ListPagesResponse) {
  40. option (google.api.http) = {
  41. get: "/v3beta1/{parent=projects/*/locations/*/agents/*/flows/*}/pages"
  42. };
  43. option (google.api.method_signature) = "parent";
  44. }
  45. // Retrieves the specified page.
  46. rpc GetPage(GetPageRequest) returns (Page) {
  47. option (google.api.http) = {
  48. get: "/v3beta1/{name=projects/*/locations/*/agents/*/flows/*/pages/*}"
  49. };
  50. option (google.api.method_signature) = "name";
  51. }
  52. // Creates a page in the specified flow.
  53. rpc CreatePage(CreatePageRequest) returns (Page) {
  54. option (google.api.http) = {
  55. post: "/v3beta1/{parent=projects/*/locations/*/agents/*/flows/*}/pages"
  56. body: "page"
  57. };
  58. option (google.api.method_signature) = "parent,page";
  59. }
  60. // Updates the specified page.
  61. rpc UpdatePage(UpdatePageRequest) returns (Page) {
  62. option (google.api.http) = {
  63. patch: "/v3beta1/{page.name=projects/*/locations/*/agents/*/flows/*/pages/*}"
  64. body: "page"
  65. };
  66. option (google.api.method_signature) = "page,update_mask";
  67. }
  68. // Deletes the specified page.
  69. rpc DeletePage(DeletePageRequest) returns (google.protobuf.Empty) {
  70. option (google.api.http) = {
  71. delete: "/v3beta1/{name=projects/*/locations/*/agents/*/flows/*/pages/*}"
  72. };
  73. option (google.api.method_signature) = "name";
  74. }
  75. }
  76. // A Dialogflow CX conversation (session) can be described and visualized as a
  77. // state machine. The states of a CX session are represented by pages.
  78. //
  79. // For each flow, you define many pages, where your combined pages can handle a
  80. // complete conversation on the topics the flow is designed for. At any given
  81. // moment, exactly one page is the current page, the current page is considered
  82. // active, and the flow associated with that page is considered active. Every
  83. // flow has a special start page. When a flow initially becomes active, the
  84. // start page page becomes the current page. For each conversational turn, the
  85. // current page will either stay the same or transition to another page.
  86. //
  87. // You configure each page to collect information from the end-user that is
  88. // relevant for the conversational state represented by the page.
  89. //
  90. // For more information, see the
  91. // [Page guide](https://cloud.google.com/dialogflow/cx/docs/concept/page).
  92. message Page {
  93. option (google.api.resource) = {
  94. type: "dialogflow.googleapis.com/Page"
  95. pattern: "projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}"
  96. };
  97. // The unique identifier of the page.
  98. // Required for the [Pages.UpdatePage][google.cloud.dialogflow.cx.v3beta1.Pages.UpdatePage] method. [Pages.CreatePage][google.cloud.dialogflow.cx.v3beta1.Pages.CreatePage]
  99. // populates the name automatically.
  100. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  101. // ID>/flows/<Flow ID>/pages/<Page ID>`.
  102. string name = 1;
  103. // Required. The human-readable name of the page, unique within the flow.
  104. string display_name = 2 [(google.api.field_behavior) = REQUIRED];
  105. // The fulfillment to call when the session is entering the page.
  106. Fulfillment entry_fulfillment = 7;
  107. // The form associated with the page, used for collecting parameters
  108. // relevant to the page.
  109. Form form = 4;
  110. // Ordered list of [`TransitionRouteGroups`][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup] associated
  111. // with the page. Transition route groups must be unique within a page.
  112. //
  113. // * If multiple transition routes within a page scope refer to the same
  114. // intent, then the precedence order is: page's transition route -> page's
  115. // transition route group -> flow's transition routes.
  116. //
  117. // * If multiple transition route groups within a page contain the same
  118. // intent, then the first group in the ordered list takes precedence.
  119. //
  120. // Format:`projects/<Project ID>/locations/<Location ID>/agents/<Agent
  121. // ID>/flows/<Flow ID>/transitionRouteGroups/<TransitionRouteGroup ID>`.
  122. repeated string transition_route_groups = 11 [(google.api.resource_reference) = {
  123. type: "dialogflow.googleapis.com/TransitionRouteGroup"
  124. }];
  125. // A list of transitions for the transition rules of this page.
  126. // They route the conversation to another page in the same flow, or another
  127. // flow.
  128. //
  129. // When we are in a certain page, the TransitionRoutes are evalauted in the
  130. // following order:
  131. //
  132. // * TransitionRoutes defined in the page with intent specified.
  133. // * TransitionRoutes defined in the
  134. // [transition route groups][google.cloud.dialogflow.cx.v3beta1.Page.transition_route_groups] with intent
  135. // specified.
  136. // * TransitionRoutes defined in flow with intent specified.
  137. // * TransitionRoutes defined in the
  138. // [transition route groups][google.cloud.dialogflow.cx.v3beta1.Flow.transition_route_groups] with intent
  139. // specified.
  140. // * TransitionRoutes defined in the page with only condition specified.
  141. // * TransitionRoutes defined in the
  142. // [transition route groups][google.cloud.dialogflow.cx.v3beta1.Page.transition_route_groups] with only
  143. // condition specified.
  144. repeated TransitionRoute transition_routes = 9;
  145. // Handlers associated with the page to handle events such as webhook errors,
  146. // no match or no input.
  147. repeated EventHandler event_handlers = 10;
  148. }
  149. // A form is a data model that groups related parameters that can be collected
  150. // from the user. The process in which the agent prompts the user and collects
  151. // parameter values from the user is called form filling. A form can be added to
  152. // a [page][google.cloud.dialogflow.cx.v3beta1.Page]. When form filling is done, the filled parameters will be
  153. // written to the [session][google.cloud.dialogflow.cx.v3beta1.SessionInfo.parameters].
  154. message Form {
  155. // Represents a form parameter.
  156. message Parameter {
  157. // Configuration for how the filling of a parameter should be handled.
  158. message FillBehavior {
  159. // Required. The fulfillment to provide the initial prompt that the agent
  160. // can present to the user in order to fill the parameter.
  161. Fulfillment initial_prompt_fulfillment = 3 [(google.api.field_behavior) = REQUIRED];
  162. // The handlers for parameter-level events, used to provide reprompt for
  163. // the parameter or transition to a different page/flow. The supported
  164. // events are:
  165. // * `sys.no-match-<N>`, where N can be from 1 to 6
  166. // * `sys.no-match-default`
  167. // * `sys.no-input-<N>`, where N can be from 1 to 6
  168. // * `sys.no-input-default`
  169. // * `sys.invalid-parameter`
  170. //
  171. // `initial_prompt_fulfillment` provides the first prompt for the
  172. // parameter.
  173. //
  174. // If the user's response does not fill the parameter, a
  175. // no-match/no-input event will be triggered, and the fulfillment
  176. // associated with the `sys.no-match-1`/`sys.no-input-1` handler (if
  177. // defined) will be called to provide a prompt. The
  178. // `sys.no-match-2`/`sys.no-input-2` handler (if defined) will respond to
  179. // the next no-match/no-input event, and so on.
  180. //
  181. // A `sys.no-match-default` or `sys.no-input-default` handler will be used
  182. // to handle all following no-match/no-input events after all numbered
  183. // no-match/no-input handlers for the parameter are consumed.
  184. //
  185. // A `sys.invalid-parameter` handler can be defined to handle the case
  186. // where the parameter values have been `invalidated` by webhook. For
  187. // example, if the user's response fill the parameter, however the
  188. // parameter was invalidated by webhook, the fulfillment associated with
  189. // the `sys.invalid-parameter` handler (if defined) will be called to
  190. // provide a prompt.
  191. //
  192. // If the event handler for the corresponding event can't be found on the
  193. // parameter, `initial_prompt_fulfillment` will be re-prompted.
  194. repeated EventHandler reprompt_event_handlers = 5;
  195. }
  196. // Required. The human-readable name of the parameter, unique within the
  197. // form.
  198. string display_name = 1 [(google.api.field_behavior) = REQUIRED];
  199. // Indicates whether the parameter is required. Optional parameters will not
  200. // trigger prompts; however, they are filled if the user specifies them.
  201. // Required parameters must be filled before form filling concludes.
  202. bool required = 2;
  203. // Required. The entity type of the parameter.
  204. // Format: `projects/-/locations/-/agents/-/entityTypes/<System Entity Type
  205. // ID>` for system entity types (for example,
  206. // `projects/-/locations/-/agents/-/entityTypes/sys.date`), or
  207. // `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  208. // ID>/entityTypes/<Entity Type ID>` for developer entity types.
  209. string entity_type = 3 [
  210. (google.api.field_behavior) = REQUIRED,
  211. (google.api.resource_reference) = {
  212. type: "dialogflow.googleapis.com/EntityType"
  213. }
  214. ];
  215. // Indicates whether the parameter represents a list of values.
  216. bool is_list = 4;
  217. // Required. Defines fill behavior for the parameter.
  218. FillBehavior fill_behavior = 7 [(google.api.field_behavior) = REQUIRED];
  219. // The default value of an optional parameter. If the parameter is required,
  220. // the default value will be ignored.
  221. google.protobuf.Value default_value = 9;
  222. // Indicates whether the parameter content should be redacted in log. If
  223. // redaction is enabled, the parameter content will be replaced by parameter
  224. // name during logging.
  225. // Note: the parameter content is subject to redaction if either parameter
  226. // level redaction or [entity type level redaction][google.cloud.dialogflow.cx.v3beta1.EntityType.redact] is
  227. // enabled.
  228. bool redact = 11;
  229. }
  230. // Parameters to collect from the user.
  231. repeated Parameter parameters = 1;
  232. }
  233. // An event handler specifies an [event][google.cloud.dialogflow.cx.v3beta1.EventHandler.event] that can be handled
  234. // during a session. When the specified event happens, the following actions are
  235. // taken in order:
  236. //
  237. // * If there is a
  238. // [`trigger_fulfillment`][google.cloud.dialogflow.cx.v3beta1.EventHandler.trigger_fulfillment] associated with
  239. // the event, it will be called.
  240. // * If there is a [`target_page`][google.cloud.dialogflow.cx.v3beta1.EventHandler.target_page] associated
  241. // with the event, the session will transition into the specified page.
  242. // * If there is a [`target_flow`][google.cloud.dialogflow.cx.v3beta1.EventHandler.target_flow] associated
  243. // with the event, the session will transition into the specified flow.
  244. message EventHandler {
  245. // Output only. The unique identifier of this event handler.
  246. string name = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  247. // Required. The name of the event to handle.
  248. string event = 4 [(google.api.field_behavior) = REQUIRED];
  249. // The fulfillment to call when the event occurs.
  250. // Handling webhook errors with a fulfillment enabled with webhook could
  251. // cause infinite loop. It is invalid to specify such fulfillment for a
  252. // handler handling webhooks.
  253. Fulfillment trigger_fulfillment = 5;
  254. // The target to transition to, either a page in the same host flow (the flow
  255. // that owns this [TransitionRoute][google.cloud.dialogflow.cx.v3beta1.TransitionRoute]), or another flow in the same agent.
  256. oneof target {
  257. // The target page to transition to.
  258. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  259. // ID>/flows/<Flow ID>/pages/<Page ID>`.
  260. string target_page = 2 [(google.api.resource_reference) = {
  261. type: "dialogflow.googleapis.com/Page"
  262. }];
  263. // The target flow to transition to.
  264. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  265. // ID>/flows/<Flow ID>`.
  266. string target_flow = 3 [(google.api.resource_reference) = {
  267. type: "dialogflow.googleapis.com/Flow"
  268. }];
  269. }
  270. }
  271. // A transition route specifies a [intent][google.cloud.dialogflow.cx.v3beta1.Intent] that can be matched and/or a
  272. // data condition that can be evaluated during a session. When a specified
  273. // transition is matched, the following actions are taken in order:
  274. //
  275. // * If there is a
  276. // [`trigger_fulfillment`][google.cloud.dialogflow.cx.v3beta1.TransitionRoute.trigger_fulfillment] associated with
  277. // the transition, it will be called.
  278. // * If there is a [`target_page`][google.cloud.dialogflow.cx.v3beta1.TransitionRoute.target_page] associated
  279. // with the transition, the session will transition into the specified page.
  280. // * If there is a [`target_flow`][google.cloud.dialogflow.cx.v3beta1.TransitionRoute.target_flow] associated
  281. // with the transition, the session will transition into the specified flow.
  282. message TransitionRoute {
  283. // Output only. The unique identifier of this transition route.
  284. string name = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  285. // The unique identifier of an [Intent][google.cloud.dialogflow.cx.v3beta1.Intent].
  286. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  287. // ID>/intents/<Intent ID>`.
  288. // Indicates that the transition can only happen when the given intent is
  289. // matched.
  290. // At least one of `intent` or `condition` must be specified. When both
  291. // `intent` and `condition` are specified, the transition can only happen
  292. // when both are fulfilled.
  293. string intent = 1 [(google.api.resource_reference) = {
  294. type: "dialogflow.googleapis.com/Intent"
  295. }];
  296. // The condition to evaluate against [form parameters][google.cloud.dialogflow.cx.v3beta1.Form.parameters] or
  297. // [session parameters][google.cloud.dialogflow.cx.v3beta1.SessionInfo.parameters].
  298. //
  299. // See the [conditions
  300. // reference](https://cloud.google.com/dialogflow/cx/docs/reference/condition).
  301. // At least one of `intent` or `condition` must be specified. When both
  302. // `intent` and `condition` are specified, the transition can only happen
  303. // when both are fulfilled.
  304. string condition = 2;
  305. // The fulfillment to call when the condition is satisfied. At least one of
  306. // `trigger_fulfillment` and `target` must be specified. When both are
  307. // defined, `trigger_fulfillment` is executed first.
  308. Fulfillment trigger_fulfillment = 3;
  309. // The target to transition to, either a page in the same host flow (the flow
  310. // that owns this [TransitionRoute][google.cloud.dialogflow.cx.v3beta1.TransitionRoute]), or another flow in the same agent.
  311. oneof target {
  312. // The target page to transition to.
  313. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  314. // ID>/flows/<Flow ID>/pages/<Page ID>`.
  315. string target_page = 4 [(google.api.resource_reference) = {
  316. type: "dialogflow.googleapis.com/Page"
  317. }];
  318. // The target flow to transition to.
  319. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  320. // ID>/flows/<Flow ID>`.
  321. string target_flow = 5 [(google.api.resource_reference) = {
  322. type: "dialogflow.googleapis.com/Flow"
  323. }];
  324. }
  325. }
  326. // The request message for [Pages.ListPages][google.cloud.dialogflow.cx.v3beta1.Pages.ListPages].
  327. message ListPagesRequest {
  328. // Required. The flow to list all pages for.
  329. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  330. // ID>/flows/<Flow ID>`.
  331. string parent = 1 [
  332. (google.api.field_behavior) = REQUIRED,
  333. (google.api.resource_reference) = {
  334. child_type: "dialogflow.googleapis.com/Page"
  335. }
  336. ];
  337. // The language to list pages for. The following fields are language
  338. // dependent:
  339. //
  340. // * `Page.entry_fulfillment.messages`
  341. // * `Page.entry_fulfillment.conditional_cases`
  342. // * `Page.event_handlers.trigger_fulfillment.messages`
  343. // * `Page.event_handlers.trigger_fulfillment.conditional_cases`
  344. // * `Page.form.parameters.fill_behavior.initial_prompt_fulfillment.messages`
  345. // *
  346. // `Page.form.parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases`
  347. // * `Page.form.parameters.fill_behavior.reprompt_event_handlers.messages`
  348. // *
  349. // `Page.form.parameters.fill_behavior.reprompt_event_handlers.conditional_cases`
  350. // * `Page.transition_routes.trigger_fulfillment.messages`
  351. // * `Page.transition_routes.trigger_fulfillment.conditional_cases`
  352. //
  353. // If not specified, the agent's default language is used.
  354. // [Many
  355. // languages](https://cloud.google.com/dialogflow/cx/docs/reference/language)
  356. // are supported.
  357. // Note: languages must be enabled in the agent before they can be used.
  358. string language_code = 2;
  359. // The maximum number of items to return in a single page. By default 100 and
  360. // at most 1000.
  361. int32 page_size = 3;
  362. // The next_page_token value returned from a previous list request.
  363. string page_token = 4;
  364. }
  365. // The response message for [Pages.ListPages][google.cloud.dialogflow.cx.v3beta1.Pages.ListPages].
  366. message ListPagesResponse {
  367. // The list of pages. There will be a maximum number of items returned based
  368. // on the page_size field in the request.
  369. repeated Page pages = 1;
  370. // Token to retrieve the next page of results, or empty if there are no more
  371. // results in the list.
  372. string next_page_token = 2;
  373. }
  374. // The request message for [Pages.GetPage][google.cloud.dialogflow.cx.v3beta1.Pages.GetPage].
  375. message GetPageRequest {
  376. // Required. The name of the page.
  377. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  378. // ID>/flows/<Flow ID>/pages/<Page ID>`.
  379. string name = 1 [
  380. (google.api.field_behavior) = REQUIRED,
  381. (google.api.resource_reference) = {
  382. type: "dialogflow.googleapis.com/Page"
  383. }
  384. ];
  385. // The language to retrieve the page for. The following fields are language
  386. // dependent:
  387. //
  388. // * `Page.entry_fulfillment.messages`
  389. // * `Page.entry_fulfillment.conditional_cases`
  390. // * `Page.event_handlers.trigger_fulfillment.messages`
  391. // * `Page.event_handlers.trigger_fulfillment.conditional_cases`
  392. // * `Page.form.parameters.fill_behavior.initial_prompt_fulfillment.messages`
  393. // *
  394. // `Page.form.parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases`
  395. // * `Page.form.parameters.fill_behavior.reprompt_event_handlers.messages`
  396. // *
  397. // `Page.form.parameters.fill_behavior.reprompt_event_handlers.conditional_cases`
  398. // * `Page.transition_routes.trigger_fulfillment.messages`
  399. // * `Page.transition_routes.trigger_fulfillment.conditional_cases`
  400. //
  401. // If not specified, the agent's default language is used.
  402. // [Many
  403. // languages](https://cloud.google.com/dialogflow/cx/docs/reference/language)
  404. // are supported.
  405. // Note: languages must be enabled in the agent before they can be used.
  406. string language_code = 2;
  407. }
  408. // The request message for [Pages.CreatePage][google.cloud.dialogflow.cx.v3beta1.Pages.CreatePage].
  409. message CreatePageRequest {
  410. // Required. The flow to create a page for.
  411. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  412. // ID>/flows/<Flow ID>`.
  413. string parent = 1 [
  414. (google.api.field_behavior) = REQUIRED,
  415. (google.api.resource_reference) = {
  416. child_type: "dialogflow.googleapis.com/Page"
  417. }
  418. ];
  419. // Required. The page to create.
  420. Page page = 2 [(google.api.field_behavior) = REQUIRED];
  421. // The language of the following fields in `page`:
  422. //
  423. // * `Page.entry_fulfillment.messages`
  424. // * `Page.entry_fulfillment.conditional_cases`
  425. // * `Page.event_handlers.trigger_fulfillment.messages`
  426. // * `Page.event_handlers.trigger_fulfillment.conditional_cases`
  427. // * `Page.form.parameters.fill_behavior.initial_prompt_fulfillment.messages`
  428. // *
  429. // `Page.form.parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases`
  430. // * `Page.form.parameters.fill_behavior.reprompt_event_handlers.messages`
  431. // *
  432. // `Page.form.parameters.fill_behavior.reprompt_event_handlers.conditional_cases`
  433. // * `Page.transition_routes.trigger_fulfillment.messages`
  434. // * `Page.transition_routes.trigger_fulfillment.conditional_cases`
  435. //
  436. // If not specified, the agent's default language is used.
  437. // [Many
  438. // languages](https://cloud.google.com/dialogflow/cx/docs/reference/language)
  439. // are supported.
  440. // Note: languages must be enabled in the agent before they can be used.
  441. string language_code = 3;
  442. }
  443. // The request message for [Pages.UpdatePage][google.cloud.dialogflow.cx.v3beta1.Pages.UpdatePage].
  444. message UpdatePageRequest {
  445. // Required. The page to update.
  446. Page page = 1 [(google.api.field_behavior) = REQUIRED];
  447. // The language of the following fields in `page`:
  448. //
  449. // * `Page.entry_fulfillment.messages`
  450. // * `Page.entry_fulfillment.conditional_cases`
  451. // * `Page.event_handlers.trigger_fulfillment.messages`
  452. // * `Page.event_handlers.trigger_fulfillment.conditional_cases`
  453. // * `Page.form.parameters.fill_behavior.initial_prompt_fulfillment.messages`
  454. // *
  455. // `Page.form.parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases`
  456. // * `Page.form.parameters.fill_behavior.reprompt_event_handlers.messages`
  457. // *
  458. // `Page.form.parameters.fill_behavior.reprompt_event_handlers.conditional_cases`
  459. // * `Page.transition_routes.trigger_fulfillment.messages`
  460. // * `Page.transition_routes.trigger_fulfillment.conditional_cases`
  461. //
  462. // If not specified, the agent's default language is used.
  463. // [Many
  464. // languages](https://cloud.google.com/dialogflow/cx/docs/reference/language)
  465. // are supported.
  466. // Note: languages must be enabled in the agent before they can be used.
  467. string language_code = 2;
  468. // The mask to control which fields get updated. If the mask is not present,
  469. // all fields will be updated.
  470. google.protobuf.FieldMask update_mask = 3;
  471. }
  472. // The request message for [Pages.DeletePage][google.cloud.dialogflow.cx.v3beta1.Pages.DeletePage].
  473. message DeletePageRequest {
  474. // Required. The name of the page to delete.
  475. // Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
  476. // ID>/Flows/<flow ID>/pages/<Page ID>`.
  477. string name = 1 [
  478. (google.api.field_behavior) = REQUIRED,
  479. (google.api.resource_reference) = {
  480. type: "dialogflow.googleapis.com/Page"
  481. }
  482. ];
  483. // This field has no effect for pages with no incoming transitions.
  484. // For pages with incoming transitions:
  485. //
  486. // * If `force` is set to false, an error will be returned with message
  487. // indicating the incoming transitions.
  488. // * If `force` is set to true, Dialogflow will remove the page, as well as
  489. // any transitions to the page (i.e. [Target
  490. // page][EventHandler.target_page] in event handlers or [Target
  491. // page][TransitionRoute.target_page] in transition routes that point to
  492. // this page will be cleared).
  493. bool force = 2;
  494. }