Skip to content

Commit 740f072

Browse files
Google APIscopybara-github
authored andcommitted
docs: minor wording update
PiperOrigin-RevId: 442267541
1 parent 4445d18 commit 740f072

8 files changed

Lines changed: 20 additions & 7 deletions

File tree

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ option java_outer_classname = "AudioConfigProto";
2828
option java_package = "com.google.cloud.dialogflow.cx.v3beta1";
2929
option objc_class_prefix = "DF";
3030
option 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

google/cloud/dialogflow/cx/v3beta1/dialogflow_v3beta1.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/v3beta1/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/v3beta1/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.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

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

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

google/cloud/dialogflow/cx/v3beta1/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/v3beta1/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.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].

google/cloud/dialogflow/cx/v3beta1/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.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

0 commit comments

Comments
 (0)