File tree Expand file tree Collapse file tree
google/cloud/dialogflow/cx/v3beta1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,6 +28,10 @@ option java_outer_classname = "AudioConfigProto";
2828option java_package = "com.google.cloud.dialogflow.cx.v3beta1" ;
2929option objc_class_prefix = "DF" ;
3030option ruby_package = "Google::Cloud::Dialogflow::CX::V3beta1" ;
31+ option (google.api.resource_definition ) = {
32+ type : "automl.googleapis.com/Model"
33+ pattern : "projects/{project}/locations/{location}/models/{model}"
34+ };
3135
3236// Audio encoding of the audio content sent in the conversational query request.
3337// Refer to the
Original file line number Diff line number Diff line change @@ -118,6 +118,8 @@ backend:
118118 deadline : 60.0
119119 - selector : ' google.longrunning.Operations.*'
120120 deadline : 60.0
121+ - selector : google.longrunning.Operations.ListOperations
122+ deadline : 180.0
121123
122124http :
123125 rules :
Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ message Flow {
274274 //
275275 // TransitionRoutes are evalauted in the following order:
276276 //
277- // * TransitionRoutes with intent specified..
277+ // * TransitionRoutes with intent specified.
278278 // * TransitionRoutes with only condition specified.
279279 //
280280 // TransitionRoutes with intent specified are inherited by pages in the flow.
Original file line number Diff line number Diff line change @@ -106,7 +106,11 @@ message Fulfillment {
106106 // that have slow webhooks.
107107 bool return_partial_responses = 8 ;
108108
109- // The tag used by the webhook to identify which fulfillment is being called.
109+ // The value of this field will be populated in the [WebhookRequest][google.cloud.dialogflow.cx.v3beta1.WebhookRequest]
110+ // `fulfillmentInfo.tag` field by Dialogflow when the associated webhook is
111+ // called.
112+ // The tag is typically used by the webhook service to identify which
113+ // fulfillment is being called, but it could be used for other purposes.
110114 // This field is required if `webhook` is specified.
111115 string tag = 3 ;
112116
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ message Page {
113113 // ID>/flows/<Flow ID>/pages/<Page ID>`.
114114 string name = 1 ;
115115
116- // Required. The human-readable name of the page, unique within the agent .
116+ // Required. The human-readable name of the page, unique within the flow .
117117 string display_name = 2 [(google.api.field_behavior ) = REQUIRED ];
118118
119119 // The fulfillment to call when the session is entering the page.
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ service TestCases {
139139 }
140140
141141 // Imports the test cases from a Cloud Storage bucket or a local file. It
142- // always creates new test cases and won't overwite any existing ones. The
142+ // always creates new test cases and won't overwrite any existing ones. The
143143 // provided ID in the imported test case is neglected.
144144 //
145145 // This method is a [long-running
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ message TransitionRouteGroup {
111111 string name = 1 ;
112112
113113 // Required. The human-readable name of the transition route group, unique within
114- // the [Agent][google.cloud.dialogflow.cx.v3beta1.Agent] . The display name can be no longer than 30 characters.
114+ // the flow . The display name can be no longer than 30 characters.
115115 string display_name = 2 [(google.api.field_behavior ) = REQUIRED ];
116116
117117 // Transition routes associated with the [TransitionRouteGroup][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup].
Original file line number Diff line number Diff line change @@ -276,8 +276,11 @@ message DeleteWebhookRequest {
276276message WebhookRequest {
277277 // Represents fulfillment information communicated to the webhook.
278278 message FulfillmentInfo {
279- // Always present. The tag used to identify which fulfillment is being
280- // called.
279+ // Always present.
280+ // The value of the [Fulfillment.tag][google.cloud.dialogflow.cx.v3beta1.Fulfillment.tag] field will be populated in this
281+ // field by Dialogflow when the associated webhook is called.
282+ // The tag is typically used by the webhook service to identify which
283+ // fulfillment is being called, but it could be used for other purposes.
281284 string tag = 1 ;
282285 }
283286
You can’t perform that action at this time.
0 commit comments