Skip to content

Commit

Permalink
docs: minor wording update
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 442267451
  • Loading branch information
Google APIs authored and Copybara-Service committed Apr 16, 2022
1 parent 4e5ef95 commit 4445d18
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 7 deletions.
2 changes: 2 additions & 0 deletions google/cloud/dialogflow/cx/v3/advanced_settings.proto
Expand Up @@ -16,6 +16,8 @@ syntax = "proto3";

package google.cloud.dialogflow.cx.v3;

import "google/api/field_behavior.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";
Expand Down
5 changes: 5 additions & 0 deletions google/cloud/dialogflow/cx/v3/audio_config.proto
Expand Up @@ -17,6 +17,7 @@ syntax = "proto3";
package google.cloud.dialogflow.cx.v3;

import "google/api/field_behavior.proto";
import "google/api/resource.proto";
import "google/protobuf/duration.proto";

option cc_enable_arenas = true;
Expand All @@ -27,6 +28,10 @@ option java_outer_classname = "AudioConfigProto";
option java_package = "com.google.cloud.dialogflow.cx.v3";
option objc_class_prefix = "DF";
option ruby_package = "Google::Cloud::Dialogflow::CX::V3";
option (google.api.resource_definition) = {
type: "automl.googleapis.com/Model"
pattern: "projects/{project}/locations/{location}/models/{model}"
};

// Audio encoding of the audio content sent in the conversational query request.
// Refer to the
Expand Down
2 changes: 2 additions & 0 deletions google/cloud/dialogflow/cx/v3/dialogflow_v3.yaml
Expand Up @@ -118,6 +118,8 @@ backend:
deadline: 60.0
- selector: 'google.longrunning.Operations.*'
deadline: 60.0
- selector: google.longrunning.Operations.ListOperations
deadline: 180.0

http:
rules:
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflow/cx/v3/flow.proto
Expand Up @@ -274,7 +274,7 @@ message Flow {
//
// TransitionRoutes are evalauted in the following order:
//
// * TransitionRoutes with intent specified..
// * TransitionRoutes with intent specified.
// * TransitionRoutes with only condition specified.
//
// TransitionRoutes with intent specified are inherited by pages in the flow.
Expand Down
6 changes: 5 additions & 1 deletion google/cloud/dialogflow/cx/v3/fulfillment.proto
Expand Up @@ -106,7 +106,11 @@ message Fulfillment {
// that have slow webhooks.
bool return_partial_responses = 8;

// The tag used by the webhook to identify which fulfillment is being called.
// The value of this field will be populated in the [WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest]
// `fulfillmentInfo.tag` field by Dialogflow when the associated webhook is
// called.
// The tag is typically used by the webhook service to identify which
// fulfillment is being called, but it could be used for other purposes.
// This field is required if `webhook` is specified.
string tag = 3;

Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflow/cx/v3/page.proto
Expand Up @@ -125,7 +125,7 @@ message Page {
// ID>/flows/<Flow ID>/pages/<Page ID>`.
string name = 1;

// Required. The human-readable name of the page, unique within the agent.
// Required. The human-readable name of the page, unique within the flow.
string display_name = 2 [(google.api.field_behavior) = REQUIRED];

// The fulfillment to call when the session is entering the page.
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflow/cx/v3/test_case.proto
Expand Up @@ -139,7 +139,7 @@ service TestCases {
}

// Imports the test cases from a Cloud Storage bucket or a local file. It
// always creates new test cases and won't overwite any existing ones. The
// always creates new test cases and won't overwrite any existing ones. The
// provided ID in the imported test case is neglected.
//
// This method is a [long-running
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflow/cx/v3/transition_route_group.proto
Expand Up @@ -111,7 +111,7 @@ message TransitionRouteGroup {
string name = 1;

// Required. The human-readable name of the transition route group, unique within
// the [Agent][google.cloud.dialogflow.cx.v3.Agent]. The display name can be no longer than 30 characters.
// the flow. The display name can be no longer than 30 characters.
string display_name = 2 [(google.api.field_behavior) = REQUIRED];

// Transition routes associated with the [TransitionRouteGroup][google.cloud.dialogflow.cx.v3.TransitionRouteGroup].
Expand Down
7 changes: 5 additions & 2 deletions google/cloud/dialogflow/cx/v3/webhook.proto
Expand Up @@ -276,8 +276,11 @@ message DeleteWebhookRequest {
message WebhookRequest {
// Represents fulfillment information communicated to the webhook.
message FulfillmentInfo {
// Always present. The tag used to identify which fulfillment is being
// called.
// Always present.
// The value of the [Fulfillment.tag][google.cloud.dialogflow.cx.v3.Fulfillment.tag] field will be populated in this
// field by Dialogflow when the associated webhook is called.
// The tag is typically used by the webhook service to identify which
// fulfillment is being called, but it could be used for other purposes.
string tag = 1;
}

Expand Down

0 comments on commit 4445d18

Please sign in to comment.