You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: Enable requesting numeric enums in "transport=rest" responses for services supporting this (#41)
* chore: Enable requesting numeric enums in "transport=rest" responses for services supporting this (Java, Go, Python, PHP, TypeScript, C#, and Ruby), even if they do not yet turn on REST transport
chore: disallow "transport=rest" for services where numeric enums are not confirmed to be supported (except in PHP and Java)
PiperOrigin-RevId: 493113566
Source-Link: googleapis/googleapis@758f0d1
Source-Link: googleapis/googleapis-gen@78bd8f0
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNzhiZDhmMDVlMTI3NjM2M2ViMTRlYWU3MGU5MWZlNGJjMjA3MDNhYiJ9
* 🦉 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>
Copy file name to clipboardExpand all lines: packages/google-cloud-beyondcorp-clientconnectorservices/google/cloud/beyondcorp_clientconnectorservices_v1/services/client_connector_services_service/client.py
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -393,9 +393,6 @@ def __init__(
393
393
transport (Union[str, ClientConnectorServicesServiceTransport]): The
394
394
transport to use. If set to None, a transport is chosen
395
395
automatically.
396
-
NOTE: "rest" transport functionality is currently in a
397
-
beta state (preview). We welcome your feedback via an
398
-
issue in this library's source repository.
399
396
client_options (Optional[Union[google.api_core.client_options.ClientOptions, dict]]): Custom options for the
400
397
client. It won't take effect if a ``transport`` instance is provided.
401
398
(1) The ``api_endpoint`` property can be used to override the
Copy file name to clipboardExpand all lines: packages/google-cloud-beyondcorp-clientconnectorservices/google/cloud/beyondcorp_clientconnectorservices_v1/services/client_connector_services_service/transports/rest.py
+50-43Lines changed: 50 additions & 43 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,10 @@
61
61
rest_version=requests_version,
62
62
)
63
63
64
+
# TODO (numeric enums): This file was generated with the option to
65
+
# request that the server respond with enums JSON-encoded as
66
+
# numbers. The code below does not implement that functionality yet.
Copy file name to clipboardExpand all lines: packages/google-cloud-beyondcorp-clientconnectorservices/tests/unit/gapic/beyondcorp_clientconnectorservices_v1/test_client_connector_services_service.py
0 commit comments