Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit f660888

Browse files
docs: minor wording update (#294)
* docs: minor wording update PiperOrigin-RevId: 442267451 Source-Link: googleapis/googleapis@4445d18 Source-Link: https://github.com/googleapis/googleapis-gen/commit/4e175b79ec4158f2e7fab9f4dea0ebf763a5caa6 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGUxNzViNzllYzQxNThmMmU3ZmFiOWY0ZGVhMGViZjc2M2E1Y2FhNiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * docs: minor wording update PiperOrigin-RevId: 442267541 Source-Link: googleapis/googleapis@740f072 Source-Link: https://github.com/googleapis/googleapis-gen/commit/29eb892cca5b1b0134b4ec185dd3d2ef5d2af1a4 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjllYjg5MmNjYTViMWIwMTM0YjRlYzE4NWRkM2QyZWY1ZDJhZjFhNCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent d5e2cbc commit f660888

File tree

18 files changed

+46
-30
lines changed

18 files changed

+46
-30
lines changed

google/cloud/dialogflowcx_v3/services/test_cases/async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ async def import_test_cases(
10101010
metadata: Sequence[Tuple[str, str]] = (),
10111011
) -> operation_async.AsyncOperation:
10121012
r"""Imports the test cases from a Cloud Storage bucket or a local
1013-
file. It always creates new test cases and won't overwite any
1013+
file. It always creates new test cases and won't overwrite any
10141014
existing ones. The provided ID in the imported test case is
10151015
neglected.
10161016

google/cloud/dialogflowcx_v3/services/test_cases/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1439,7 +1439,7 @@ def import_test_cases(
14391439
metadata: Sequence[Tuple[str, str]] = (),
14401440
) -> operation.Operation:
14411441
r"""Imports the test cases from a Cloud Storage bucket or a local
1442-
file. It always creates new test cases and won't overwite any
1442+
file. It always creates new test cases and won't overwrite any
14431443
existing ones. The provided ID in the imported test case is
14441444
neglected.
14451445

google/cloud/dialogflowcx_v3/services/test_cases/transports/grpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def import_test_cases(
485485
r"""Return a callable for the import test cases method over gRPC.
486486
487487
Imports the test cases from a Cloud Storage bucket or a local
488-
file. It always creates new test cases and won't overwite any
488+
file. It always creates new test cases and won't overwrite any
489489
existing ones. The provided ID in the imported test case is
490490
neglected.
491491

google/cloud/dialogflowcx_v3/services/test_cases/transports/grpc_asyncio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def import_test_cases(
501501
r"""Return a callable for the import test cases method over gRPC.
502502
503503
Imports the test cases from a Cloud Storage bucket or a local
504-
file. It always creates new test cases and won't overwite any
504+
file. It always creates new test cases and won't overwrite any
505505
existing ones. The provided ID in the imported test case is
506506
neglected.
507507

google/cloud/dialogflowcx_v3/types/flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Flow(proto.Message):
135135
136136
TransitionRoutes are evalauted in the following order:
137137
138-
- TransitionRoutes with intent specified..
138+
- TransitionRoutes with intent specified.
139139
- TransitionRoutes with only condition specified.
140140
141141
TransitionRoutes with intent specified are inherited by

google/cloud/dialogflowcx_v3/types/fulfillment.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,13 @@ class Fulfillment(proto.Message):
6969
returned. You may only want to apply it to
7070
fulfillments that have slow webhooks.
7171
tag (str):
72-
The tag used by the webhook to identify which fulfillment is
73-
being called. This field is required if ``webhook`` is
74-
specified.
72+
The value of this field will be populated in the
73+
[WebhookRequest][google.cloud.dialogflow.cx.v3.WebhookRequest]
74+
``fulfillmentInfo.tag`` field by Dialogflow when the
75+
associated webhook is called. The tag is typically used by
76+
the webhook service to identify which fulfillment is being
77+
called, but it could be used for other purposes. This field
78+
is required if ``webhook`` is specified.
7579
set_parameter_actions (Sequence[google.cloud.dialogflowcx_v3.types.Fulfillment.SetParameterAction]):
7680
Set parameter values before executing the
7781
webhook.

google/cloud/dialogflowcx_v3/types/page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class Page(proto.Message):
6868
``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>``.
6969
display_name (str):
7070
Required. The human-readable name of the
71-
page, unique within the agent.
71+
page, unique within the flow.
7272
entry_fulfillment (google.cloud.dialogflowcx_v3.types.Fulfillment):
7373
The fulfillment to call when the session is
7474
entering the page.

google/cloud/dialogflowcx_v3/types/transition_route_group.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ class TransitionRouteGroup(proto.Message):
4545
populates the name automatically. Format:
4646
``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/transitionRouteGroups/<Transition Route Group ID>``.
4747
display_name (str):
48-
Required. The human-readable name of the transition route
49-
group, unique within the
50-
[Agent][google.cloud.dialogflow.cx.v3.Agent]. The display
51-
name can be no longer than 30 characters.
48+
Required. The human-readable name of the
49+
transition route group, unique within the flow.
50+
The display name can be no longer than 30
51+
characters.
5252
transition_routes (Sequence[google.cloud.dialogflowcx_v3.types.TransitionRoute]):
5353
Transition routes associated with the
5454
[TransitionRouteGroup][google.cloud.dialogflow.cx.v3.TransitionRouteGroup].

google/cloud/dialogflowcx_v3/types/webhook.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,8 +426,12 @@ class FulfillmentInfo(proto.Message):
426426
427427
Attributes:
428428
tag (str):
429-
Always present. The tag used to identify
430-
which fulfillment is being called.
429+
Always present. The value of the
430+
[Fulfillment.tag][google.cloud.dialogflow.cx.v3.Fulfillment.tag]
431+
field will be populated in this field by Dialogflow when the
432+
associated webhook is called. The tag is typically used by
433+
the webhook service to identify which fulfillment is being
434+
called, but it could be used for other purposes.
431435
"""
432436

433437
tag = proto.Field(

google/cloud/dialogflowcx_v3beta1/services/test_cases/async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ async def import_test_cases(
10101010
metadata: Sequence[Tuple[str, str]] = (),
10111011
) -> operation_async.AsyncOperation:
10121012
r"""Imports the test cases from a Cloud Storage bucket or a local
1013-
file. It always creates new test cases and won't overwite any
1013+
file. It always creates new test cases and won't overwrite any
10141014
existing ones. The provided ID in the imported test case is
10151015
neglected.
10161016

0 commit comments

Comments
 (0)