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 dc4f8e2

Browse files
docs: Add documentation for enums (#492)
* chore: fix proto formatting PiperOrigin-RevId: 503230949 Source-Link: googleapis/googleapis@55dd4d7 Source-Link: https://github.com/googleapis/googleapis-gen/commit/588ff38cf3a2dd2264da5b030d1f72e56c7ffc66 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNTg4ZmYzOGNmM2EyZGQyMjY0ZGE1YjAzMGQxZjcyZTU2YzdmZmM2NiJ9 * 🦉 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 ea24ddb commit dc4f8e2

File tree

64 files changed

+1106
-86
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1106
-86
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1566,7 +1566,7 @@ def sample_get_agent_validation_result():
15661566
# Done; return the response.
15671567
return response
15681568

1569-
def __enter__(self):
1569+
def __enter__(self) -> "AgentsClient":
15701570
return self
15711571

15721572
def __exit__(self, type, value, traceback):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ def sample_get_changelog():
662662
# Done; return the response.
663663
return response
664664

665-
def __enter__(self):
665+
def __enter__(self) -> "ChangelogsClient":
666666
return self
667667

668668
def __exit__(self, type, value, traceback):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ def sample_get_deployment():
753753
# Done; return the response.
754754
return response
755755

756-
def __enter__(self):
756+
def __enter__(self) -> "DeploymentsClient":
757757
return self
758758

759759
def __exit__(self, type, value, traceback):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ def sample_delete_entity_type():
10941094
metadata=metadata,
10951095
)
10961096

1097-
def __enter__(self):
1097+
def __enter__(self) -> "EntityTypesClient":
10981098
return self
10991099

11001100
def __exit__(self, type, value, traceback):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1695,7 +1695,7 @@ def sample_deploy_flow():
16951695
# Done; return the response.
16961696
return response
16971697

1698-
def __enter__(self):
1698+
def __enter__(self) -> "EnvironmentsClient":
16991699
return self
17001700

17011701
def __exit__(self, type, value, traceback):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ def sample_stop_experiment():
12391239
# Done; return the response.
12401240
return response
12411241

1242-
def __enter__(self):
1242+
def __enter__(self) -> "ExperimentsClient":
12431243
return self
12441244

12451245
def __exit__(self, type, value, traceback):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1730,7 +1730,7 @@ def sample_export_flow():
17301730
# Done; return the response.
17311731
return response
17321732

1733-
def __enter__(self):
1733+
def __enter__(self) -> "FlowsClient":
17341734
return self
17351735

17361736
def __exit__(self, type, value, traceback):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ def sample_delete_intent():
10351035
metadata=metadata,
10361036
)
10371037

1038-
def __enter__(self):
1038+
def __enter__(self) -> "IntentsClient":
10391039
return self
10401040

10411041
def __exit__(self, type, value, traceback):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@ def sample_delete_page():
11781178
metadata=metadata,
11791179
)
11801180

1181-
def __enter__(self):
1181+
def __enter__(self) -> "PagesClient":
11821182
return self
11831183

11841184
def __exit__(self, type, value, traceback):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ def sample_delete_security_settings():
10691069
metadata=metadata,
10701070
)
10711071

1072-
def __enter__(self):
1072+
def __enter__(self) -> "SecuritySettingsServiceClient":
10731073
return self
10741074

10751075
def __exit__(self, type, value, traceback):

0 commit comments

Comments
 (0)