// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. syntax = "proto3"; package google.cloud.dialogflow.cx.v3; import "google/api/annotations.proto"; import "google/api/client.proto"; import "google/api/field_behavior.proto"; import "google/api/resource.proto"; import "google/cloud/dialogflow/cx/v3/response_message.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/empty.proto"; import "google/protobuf/field_mask.proto"; import "google/protobuf/struct.proto"; option cc_enable_arenas = true; option csharp_namespace = "Google.Cloud.Dialogflow.Cx.V3"; option go_package = "google.golang.org/genproto/googleapis/cloud/dialogflow/cx/v3;cx"; option java_multiple_files = true; option java_outer_classname = "WebhookProto"; option java_package = "com.google.cloud.dialogflow.cx.v3"; option objc_class_prefix = "DF"; // Service for managing [Webhooks][google.cloud.dialogflow.cx.v3.Webhook]. service Webhooks { option (google.api.default_host) = "dialogflow.googleapis.com"; option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform," "https://www.googleapis.com/auth/dialogflow"; // Returns the list of all webhooks in the specified agent. rpc ListWebhooks(ListWebhooksRequest) returns (ListWebhooksResponse) { option (google.api.http) = { get: "/v3/{parent=projects/*/locations/*/agents/*}/webhooks" }; option (google.api.method_signature) = "parent"; } // Retrieves the specified webhook. rpc GetWebhook(GetWebhookRequest) returns (Webhook) { option (google.api.http) = { get: "/v3/{name=projects/*/locations/*/agents/*/webhooks/*}" }; option (google.api.method_signature) = "name"; } // Creates a webhook in the specified agent. rpc CreateWebhook(CreateWebhookRequest) returns (Webhook) { option (google.api.http) = { post: "/v3/{parent=projects/*/locations/*/agents/*}/webhooks" body: "webhook" }; option (google.api.method_signature) = "parent,webhook"; } // Updates the specified webhook. rpc UpdateWebhook(UpdateWebhookRequest) returns (Webhook) { option (google.api.http) = { patch: "/v3/{webhook.name=projects/*/locations/*/agents/*/webhooks/*}" body: "webhook" }; option (google.api.method_signature) = "webhook,update_mask"; } // Deletes the specified webhook. rpc DeleteWebhook(DeleteWebhookRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v3/{name=projects/*/locations/*/agents/*/webhooks/*}" }; option (google.api.method_signature) = "name"; } } // Webhooks host the developer's business logic. During a session, webhooks // allow the developer to use the data extracted by Dialogflow's natural // language processing to generate dynamic responses, validate collected data, // or trigger actions on the backend. message Webhook { option (google.api.resource) = { type: "dialogflow.googleapis.com/Webhook" pattern: "projects/{project}/locations/{location}/agents/{agent}/webhooks/{webhook}" }; // Represents configuration for a generic web service. message GenericWebService { // Required. The webhook URI for receiving POST requests. It must use https protocol. string uri = 1 [(google.api.field_behavior) = REQUIRED]; // The user name for HTTP Basic authentication. string username = 2 [deprecated = true]; // The password for HTTP Basic authentication. string password = 3 [deprecated = true]; // The HTTP request headers to send together with webhook // requests. map request_headers = 4; } // The unique identifier of the webhook. // Required for the [Webhooks.UpdateWebhook][google.cloud.dialogflow.cx.v3.Webhooks.UpdateWebhook] method. // [Webhooks.CreateWebhook][google.cloud.dialogflow.cx.v3.Webhooks.CreateWebhook] populates the name automatically. // Format: `projects//locations//agents//webhooks/`. string name = 1; // Required. The human-readable name of the webhook, unique within the agent. string display_name = 2 [(google.api.field_behavior) = REQUIRED]; // Required. The webhook configuration. oneof webhook { // Configuration for a generic web service. GenericWebService generic_web_service = 4; } // Webhook execution timeout. Execution is considered failed if Dialogflow // doesn't receive a response from webhook at the end of the timeout period. // Defaults to 5 seconds, maximum allowed timeout is 30 seconds. google.protobuf.Duration timeout = 6; // Indicates whether the webhook is disabled. bool disabled = 5; } // The request message for [Webhooks.ListWebhooks][google.cloud.dialogflow.cx.v3.Webhooks.ListWebhooks]. message ListWebhooksRequest { // Required. The agent to list all webhooks for. // Format: `projects//locations//agents/`. string parent = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { child_type: "dialogflow.googleapis.com/Webhook" } ]; // The maximum number of items to return in a single page. By default 100 and // at most 1000. int32 page_size = 2; // The next_page_token value returned from a previous list request. string page_token = 3; } // The response message for [Webhooks.ListWebhooks][google.cloud.dialogflow.cx.v3.Webhooks.ListWebhooks]. message ListWebhooksResponse { // The list of webhooks. There will be a maximum number of items returned // based on the page_size field in the request. repeated Webhook webhooks = 1; // Token to retrieve the next page of results, or empty if there are no more // results in the list. string next_page_token = 2; } // The request message for [Webhooks.GetWebhook][google.cloud.dialogflow.cx.v3.Webhooks.GetWebhook]. message GetWebhookRequest { // Required. The name of the webhook. // Format: `projects//locations//agents//webhooks/`. string name = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { type: "dialogflow.googleapis.com/Webhook" } ]; } // The request message for [Webhooks.CreateWebhook][google.cloud.dialogflow.cx.v3.Webhooks.CreateWebhook]. message CreateWebhookRequest { // Required. The agent to create a webhook for. // Format: `projects//locations//agents/`. string parent = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { child_type: "dialogflow.googleapis.com/Webhook" } ]; // Required. The webhook to create. Webhook webhook = 2 [(google.api.field_behavior) = REQUIRED]; } // The request message for [Webhooks.UpdateWebhook][google.cloud.dialogflow.cx.v3.Webhooks.UpdateWebhook]. message UpdateWebhookRequest { // Required. The webhook to update. Webhook webhook = 1 [(google.api.field_behavior) = REQUIRED]; // The mask to control which fields get updated. If the mask is not present, // all fields will be updated. google.protobuf.FieldMask update_mask = 2; } // The request message for [Webhooks.DeleteWebhook][google.cloud.dialogflow.cx.v3.Webhooks.DeleteWebhook]. message DeleteWebhookRequest { // Required. The name of the webhook to delete. // Format: `projects//locations//agents//webhooks/`. string name = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { type: "dialogflow.googleapis.com/Webhook" } ]; // This field has no effect for webhook not being used. // For webhooks that are used by pages/flows/transition route groups: // // * If `force` is set to false, an error will be returned with message // indicating the referenced resources. // * If `force` is set to true, Dialogflow will remove the webhook, as well // as any references to the webhook (i.e. [Webhook][google.cloud.dialogflow.cx.v3.Fulfillment.webhook] // and [tag][google.cloud.dialogflow.cx.v3.Fulfillment.tag]in fulfillments that point to this webhook // will be removed). bool force = 2; } // The request message for a webhook call. message WebhookRequest { // Represents fulfillment information communicated to the webhook. message FulfillmentInfo { // Always present. The tag used to identify which fulfillment is being // called. string tag = 1; } // Represents intent information communicated to the webhook. message IntentInfo { // Represents a value for an intent parameter. message IntentParameterValue { // Always present. Original text value extracted from user utterance. string original_value = 1; // Always present. Structured value for the parameter extracted from user // utterance. google.protobuf.Value resolved_value = 2; } // Always present. The unique identifier of the last matched // [intent][google.cloud.dialogflow.cx.v3.Intent]. Format: `projects//locations//agents//intents/`. string last_matched_intent = 1 [(google.api.resource_reference) = { type: "dialogflow.googleapis.com/Intent" }]; // Parameters identified as a result of intent matching. This is a map of // the name of the identified parameter to the value of the parameter // identified from the user's utterance. All parameters defined in the // matched intent that are identified will be surfaced here. map parameters = 2; } // Always present. The unique identifier of the [DetectIntentResponse][google.cloud.dialogflow.cx.v3.DetectIntentResponse] that // will be returned to the API caller. string detect_intent_response_id = 1; // Always present. Information about the fulfillment that triggered this // webhook call. FulfillmentInfo fulfillment_info = 6; // Information about the last matched intent. IntentInfo intent_info = 3; // Information about page status. PageInfo page_info = 4; // Information about session status. SessionInfo session_info = 5; // The list of rich message responses to present to the user. Webhook can // choose to append or replace this list in // [WebhookResponse.fulfillment_response][google.cloud.dialogflow.cx.v3.WebhookResponse.fulfillment_response]; repeated ResponseMessage messages = 7; // Custom data set in [QueryParameters.payload][google.cloud.dialogflow.cx.v3.QueryParameters.payload]. google.protobuf.Struct payload = 8; } // The response message for a webhook call. message WebhookResponse { // Represents a fulfillment response to the user. message FulfillmentResponse { // Defines merge behavior for `messages`. enum MergeBehavior { // Not specified. `APPEND` will be used. MERGE_BEHAVIOR_UNSPECIFIED = 0; // `messages` will be appended to the list of messages waiting to be sent // to the user. APPEND = 1; // `messages` will replace the list of messages waiting to be sent to the // user. REPLACE = 2; } // The list of rich message responses to present to the user. repeated ResponseMessage messages = 1; // Merge behavior for `messages`. MergeBehavior merge_behavior = 2; } // The fulfillment response to send to the user. This field can be omitted by // the webhook if it does not intend to send any response to the user. FulfillmentResponse fulfillment_response = 1; // Information about page status. This field can be omitted by the webhook if // it does not intend to modify page status. PageInfo page_info = 2; // Information about session status. This field can be omitted by the webhook // if it does not intend to modify session status. SessionInfo session_info = 3; // Value to append directly to [QueryResult.webhook_payloads][google.cloud.dialogflow.cx.v3.QueryResult.webhook_payloads]. google.protobuf.Struct payload = 4; // The target to transition to. This can be set optionally to indicate an // immediate transition to a different page in the same host flow, or a // different flow in the same agent. oneof transition { // The target page to transition to. // Format: `projects//locations//agents//flows//pages/`. string target_page = 5 [(google.api.resource_reference) = { type: "dialogflow.googleapis.com/Page" }]; // The target flow to transition to. // Format: `projects//locations//agents//flows/`. string target_flow = 6 [(google.api.resource_reference) = { type: "dialogflow.googleapis.com/Flow" }]; } } // Represents page information communicated to and from the webhook. message PageInfo { // Represents form information. message FormInfo { // Represents parameter information. message ParameterInfo { // Represents the state of a parameter. enum ParameterState { // Not specified. This value should be never used. PARAMETER_STATE_UNSPECIFIED = 0; // Indicates that the parameter does not have a value. EMPTY = 1; // Indicates that the parameter value is invalid. This field can be used // by the webhook to invalidate the parameter and ask the server to // collect it from the user again. INVALID = 2; // Indicates that the parameter has a value. FILLED = 3; } // Always present for [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest]. Required for // [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. // The human-readable name of the parameter, unique within the form. This // field cannot be modified by the webhook. string display_name = 1; // Optional for both [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest] and [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. // Indicates whether the parameter is required. Optional parameters will // not trigger prompts; however, they are filled if the user specifies // them. Required parameters must be filled before form filling concludes. bool required = 2; // Always present for [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest]. Required for // [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. The state of the parameter. This field can be set // to [INVALID][google.cloud.dialogflow.cx.v3.PageInfo.FormInfo.ParameterInfo.ParameterState.INVALID] by // the webhook to invalidate the parameter; other values set by the // webhook will be ignored. ParameterState state = 3; // Optional for both [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest] and [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. // The value of the parameter. This field can be set by the webhook to // change the parameter value. google.protobuf.Value value = 4; // Optional for [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest]. Ignored for [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. // Indicates if the parameter value was just collected on the last // conversation turn. bool just_collected = 5; } // Optional for both [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest] and [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. // The parameters contained in the form. Note that the webhook cannot add // or remove any form parameter. repeated ParameterInfo parameter_info = 2; } // Always present for [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest]. Ignored for [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. // The unique identifier of the current page. // Format: `projects//locations//agents//flows//pages/`. string current_page = 1 [(google.api.resource_reference) = { type: "dialogflow.googleapis.com/Page" }]; // Optional for both [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest] and [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. // Information about the form. FormInfo form_info = 3; } // Represents session information communicated to and from the webhook. message SessionInfo { // Always present for [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest]. Ignored for [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. // The unique identifier of the [session][google.cloud.dialogflow.cx.v3.DetectIntentRequest.session]. This // field can be used by the webhook to identify a user. // Format: `projects//locations//agents//sessions/`. string session = 1 [(google.api.resource_reference) = { type: "dialogflow.googleapis.com/Session" }]; // Optional for [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest]. Optional for [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. // All parameters collected from forms and intents during the session. // Parameters can be created, updated, or removed by the webhook. To remove a // parameter from the session, the webhook should explicitly set the parameter // value to null in [WebhookResponse][google.cloud.dialogflow.cx.v3.WebhookResponse]. The map is keyed by parameters' // display names. map parameters = 2; }