Anthonios Partheniou
Anthonios Partheniou
See the build log below where the docs build for `google-maps-routing` failed with ``` sphinx.errors.SphinxWarning: /usr/local/google/home/partheniou/git/google-cloud-python/packages/google-maps-routing/google/maps/routing_v2/types/toll_passes.py:docstring of google.maps.routing_v2.types.toll_passes.TollPass:59:Unexpected indentation. ``` https://github.com/googleapis/google-cloud-python/actions/runs/7934450775/job/21665468219?pr=12314 The issue is that this docstring is missing an...
See the reproduction code below, and the stack trace that appears when setting the `transport` argument of `DocumentServiceAsyncClient` to `"rest"` ``` import asyncio import json from google.cloud import discoveryengine_v1 doc_json...
Fixes https://github.com/googleapis/gapic-generator-python/issues/1955 I created https://github.com/googleapis/gapic-generator-python/issues/1956 as a follow up question to determine if we want `mock_value` to populate multiple nested fields.
The [mock_value](https://github.com/googleapis/gapic-generator-python/blob/af3396665b40c748423599c4658ada8685f7bd36/gapic/schema/wrappers.py#L176) method which is show below is used for test purposes. There is a limitation where `mock_value` only populates a single nested field in a message. When a [method...
[From AIP-4232](https://google.aip.dev/client-libraries/4232#method-signatures_1), ``` An RPC with the google.api.method_signature annotation indicates that an overload with a flattened method signature is desired where supported. The string contains comma-separated arguments, in order. If...
The the build log below where the docs build for `google-cloud-dialogflow-cx` failed with ``` sphinx.errors.SphinxWarning: /home/runner/work/google-cloud-python/google-cloud-python/packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx_v3beta1/types/tool.py:docstring of google.cloud.dialogflowcx_v3beta1.types.tool.Tool.TLSConfig.CACert:24:Unexpected indentation. ``` https://github.com/googleapis/google-cloud-python/actions/runs/7934450775/job/21665468219?pr=12314 The issue is that this docstring is poorly formatted...
https://github.com/googleapis/gapic-generator-python/issues/1922 captures the issue where `google-auth` is an undeclared dependency. We should audit to code to ensure that all dependencies are declared.
See https://github.com/googleapis/googleapis-gen/blob/e7b50944e6637b70bcedd0bab5d666b2f22ef757/google/analytics/admin/v1alpha/google-analytics-admin-v1alpha-py/google/analytics/admin_v1alpha/services/analytics_admin_service/client.py#L10143 where there is an underscore which is not escaped. If a trailing underscore is not escaped then it is [interpreted as a hyperlink](https://rest-sphinx-memo.readthedocs.io/en/latest/ReST.html#implicit-hyperlink-targets). This caused the docs build...
We're unable to generate client libraries in the `google.api` namespace because the namespace is already owned by `googleapis-common-protos` : https://github.com/googleapis/python-api-common-protos/tree/main/google/api There is a workaround, which is to generate the client...