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

Commit

Permalink
docs: minor wording update (#294)
Browse files Browse the repository at this point in the history
* docs: minor wording update

PiperOrigin-RevId: 442267451

Source-Link: googleapis/googleapis@4445d18

Source-Link: googleapis/googleapis-gen@4e175b7
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: googleapis/googleapis-gen@29eb892
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>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Apr 18, 2022
1 parent d5e2cbc commit f660888
Show file tree
Hide file tree
Showing 18 changed files with 46 additions and 30 deletions.
Expand Up @@ -1010,7 +1010,7 @@ async def import_test_cases(
metadata: Sequence[Tuple[str, str]] = (),
) -> operation_async.AsyncOperation:
r"""Imports the test cases from a Cloud Storage bucket or a local
file. It always creates new test cases and won't overwite any
file. It always creates new test cases and won't overwrite any
existing ones. The provided ID in the imported test case is
neglected.
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflowcx_v3/services/test_cases/client.py
Expand Up @@ -1439,7 +1439,7 @@ def import_test_cases(
metadata: Sequence[Tuple[str, str]] = (),
) -> operation.Operation:
r"""Imports the test cases from a Cloud Storage bucket or a local
file. It always creates new test cases and won't overwite any
file. It always creates new test cases and won't overwrite any
existing ones. The provided ID in the imported test case is
neglected.
Expand Down
Expand Up @@ -485,7 +485,7 @@ def import_test_cases(
r"""Return a callable for the import test cases method over gRPC.
Imports the test cases from a Cloud Storage bucket or a local
file. It always creates new test cases and won't overwite any
file. It always creates new test cases and won't overwrite any
existing ones. The provided ID in the imported test case is
neglected.
Expand Down
Expand Up @@ -501,7 +501,7 @@ def import_test_cases(
r"""Return a callable for the import test cases method over gRPC.
Imports the test cases from a Cloud Storage bucket or a local
file. It always creates new test cases and won't overwite any
file. It always creates new test cases and won't overwrite any
existing ones. The provided ID in the imported test case is
neglected.
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflowcx_v3/types/flow.py
Expand Up @@ -135,7 +135,7 @@ class Flow(proto.Message):
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
Expand Down
10 changes: 7 additions & 3 deletions google/cloud/dialogflowcx_v3/types/fulfillment.py
Expand Up @@ -69,9 +69,13 @@ class Fulfillment(proto.Message):
returned. You may only want to apply it to
fulfillments that have slow webhooks.
tag (str):
The tag used by the webhook to identify which fulfillment is
being called. This field is required if ``webhook`` is
specified.
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.
set_parameter_actions (Sequence[google.cloud.dialogflowcx_v3.types.Fulfillment.SetParameterAction]):
Set parameter values before executing the
webhook.
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflowcx_v3/types/page.py
Expand Up @@ -68,7 +68,7 @@ class Page(proto.Message):
``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>``.
display_name (str):
Required. The human-readable name of the
page, unique within the agent.
page, unique within the flow.
entry_fulfillment (google.cloud.dialogflowcx_v3.types.Fulfillment):
The fulfillment to call when the session is
entering the page.
Expand Down
8 changes: 4 additions & 4 deletions google/cloud/dialogflowcx_v3/types/transition_route_group.py
Expand Up @@ -45,10 +45,10 @@ class TransitionRouteGroup(proto.Message):
populates the name automatically. Format:
``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/transitionRouteGroups/<Transition Route Group ID>``.
display_name (str):
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.
Required. The human-readable name of the
transition route group, unique within the flow.
The display name can be no longer than 30
characters.
transition_routes (Sequence[google.cloud.dialogflowcx_v3.types.TransitionRoute]):
Transition routes associated with the
[TransitionRouteGroup][google.cloud.dialogflow.cx.v3.TransitionRouteGroup].
Expand Down
8 changes: 6 additions & 2 deletions google/cloud/dialogflowcx_v3/types/webhook.py
Expand Up @@ -426,8 +426,12 @@ class FulfillmentInfo(proto.Message):
Attributes:
tag (str):
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.
"""

tag = proto.Field(
Expand Down
Expand Up @@ -1010,7 +1010,7 @@ async def import_test_cases(
metadata: Sequence[Tuple[str, str]] = (),
) -> operation_async.AsyncOperation:
r"""Imports the test cases from a Cloud Storage bucket or a local
file. It always creates new test cases and won't overwite any
file. It always creates new test cases and won't overwrite any
existing ones. The provided ID in the imported test case is
neglected.
Expand Down
Expand Up @@ -1439,7 +1439,7 @@ def import_test_cases(
metadata: Sequence[Tuple[str, str]] = (),
) -> operation.Operation:
r"""Imports the test cases from a Cloud Storage bucket or a local
file. It always creates new test cases and won't overwite any
file. It always creates new test cases and won't overwrite any
existing ones. The provided ID in the imported test case is
neglected.
Expand Down
Expand Up @@ -485,7 +485,7 @@ def import_test_cases(
r"""Return a callable for the import test cases method over gRPC.
Imports the test cases from a Cloud Storage bucket or a local
file. It always creates new test cases and won't overwite any
file. It always creates new test cases and won't overwrite any
existing ones. The provided ID in the imported test case is
neglected.
Expand Down
Expand Up @@ -501,7 +501,7 @@ def import_test_cases(
r"""Return a callable for the import test cases method over gRPC.
Imports the test cases from a Cloud Storage bucket or a local
file. It always creates new test cases and won't overwite any
file. It always creates new test cases and won't overwrite any
existing ones. The provided ID in the imported test case is
neglected.
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflowcx_v3beta1/types/flow.py
Expand Up @@ -135,7 +135,7 @@ class Flow(proto.Message):
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
Expand Down
10 changes: 7 additions & 3 deletions google/cloud/dialogflowcx_v3beta1/types/fulfillment.py
Expand Up @@ -69,9 +69,13 @@ class Fulfillment(proto.Message):
returned. You may only want to apply it to
fulfillments that have slow webhooks.
tag (str):
The tag used by the webhook to identify which fulfillment is
being called. This field is required if ``webhook`` is
specified.
The value of this field will be populated in the
[WebhookRequest][google.cloud.dialogflow.cx.v3beta1.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.
set_parameter_actions (Sequence[google.cloud.dialogflowcx_v3beta1.types.Fulfillment.SetParameterAction]):
Set parameter values before executing the
webhook.
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dialogflowcx_v3beta1/types/page.py
Expand Up @@ -68,7 +68,7 @@ class Page(proto.Message):
``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>``.
display_name (str):
Required. The human-readable name of the
page, unique within the agent.
page, unique within the flow.
entry_fulfillment (google.cloud.dialogflowcx_v3beta1.types.Fulfillment):
The fulfillment to call when the session is
entering the page.
Expand Down
Expand Up @@ -45,10 +45,10 @@ class TransitionRouteGroup(proto.Message):
populates the name automatically. Format:
``projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/transitionRouteGroups/<Transition Route Group ID>``.
display_name (str):
Required. The human-readable name of the transition route
group, unique within the
[Agent][google.cloud.dialogflow.cx.v3beta1.Agent]. The
display name can be no longer than 30 characters.
Required. The human-readable name of the
transition route group, unique within the flow.
The display name can be no longer than 30
characters.
transition_routes (Sequence[google.cloud.dialogflowcx_v3beta1.types.TransitionRoute]):
Transition routes associated with the
[TransitionRouteGroup][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup].
Expand Down
8 changes: 6 additions & 2 deletions google/cloud/dialogflowcx_v3beta1/types/webhook.py
Expand Up @@ -428,8 +428,12 @@ class FulfillmentInfo(proto.Message):
Attributes:
tag (str):
Always present. The tag used to identify
which fulfillment is being called.
Always present. The value of the
[Fulfillment.tag][google.cloud.dialogflow.cx.v3beta1.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.
"""

tag = proto.Field(
Expand Down

0 comments on commit f660888

Please sign in to comment.