Skip to content

Commit 4445d18

Browse files
Google APIscopybara-github
authored andcommitted
docs: minor wording update
PiperOrigin-RevId: 442267451
1 parent 4e5ef95 commit 4445d18

9 files changed

Lines changed: 23 additions & 7 deletions

File tree

google/cloud/dialogflow/cx/v3/advanced_settings.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ syntax = "proto3";
1616

1717
package google.cloud.dialogflow.cx.v3;
1818

19+
import "google/api/field_behavior.proto";
20+
1921
option cc_enable_arenas = true;
2022
option csharp_namespace = "Google.Cloud.Dialogflow.Cx.V3";
2123
option go_package = "google.golang.org/genproto/googleapis/cloud/dialogflow/cx/v3;cx";

google/cloud/dialogflow/cx/v3/audio_config.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ syntax = "proto3";
1717
package google.cloud.dialogflow.cx.v3;
1818

1919
import "google/api/field_behavior.proto";
20+
import "google/api/resource.proto";
2021
import "google/protobuf/duration.proto";
2122

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

3136
// Audio encoding of the audio content sent in the conversational query request.
3237
// Refer to the

google/cloud/dialogflow/cx/v3/dialogflow_v3.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

122124
http:
123125
rules:

google/cloud/dialogflow/cx/v3/flow.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

google/cloud/dialogflow/cx/v3/fulfillment.proto

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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.v3.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

google/cloud/dialogflow/cx/v3/page.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ message Page {
125125
// ID>/flows/<Flow ID>/pages/<Page ID>`.
126126
string name = 1;
127127

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

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

google/cloud/dialogflow/cx/v3/test_case.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

google/cloud/dialogflow/cx/v3/transition_route_group.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.v3.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.v3.TransitionRouteGroup].

google/cloud/dialogflow/cx/v3/webhook.proto

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,11 @@ message DeleteWebhookRequest {
276276
message 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.v3.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

0 commit comments

Comments
 (0)