googleapis / googleapis/google-cloud-python

Python renamed fields (e.g. "type_") break text_format.Parse

未关闭
#16,207 3 条评论 0 个 reaction 已指派 1 人 已被 @ohmayr 认领 在 GitHub 查看
priority: p3 type: feature request
主要语言
Python
星标
5.4k
派生
1.8k
平均合并
2 天 23 小时
30 天内合并 PR
123

描述

#### Environment details

- OS type and version: Linux 6.16.12-1rodete2-amd64
- Python version: `python --version`: Python 3.13.7
- pip version: `pip --version`: pip 25.3
- `gapic-generator` version: `pip show gapic-generator`: Version: 1.30.0

#### Steps to reproduce

1. Import a cloud sdk that has fields in the list of [reserved names](https://github.com/googleapis/gapic-generator-python/blob/b64e7a3351804613aaf56d7a699390d8dbc70712/gapic/utils/reserved_names.py)
2. Try to load textproto using `text_format.Parse`

Since the same textproto output loads fine in other languages (verified with go, for example), this seems like a bug in the python version of the generator, specifically that the proto descriptor returned by `.pb()` does not have the same field names as the actual proto.

There should be some way for users to parse textproto files that correspond to the released protos using the python sdk.

#### Code example

```python
from google.protobuf import text_format
from google.cloud import dlp_v2

# inlined for easy repro, actual contents would come from the Google-provided GCS object
text_proto_content = """
findings {
quote: "Test"
location {
container {
type: "Google Cloud Storage"
}
}
}
"""

output_message = dlp_v2.SaveToGcsFindingsOutput.pb()()
text_format.Parse(text_proto_content, output_message)
```

#### Stack trace
```
google.protobuf.text_format.ParseError: 6:7 : Message type "google.privacy.dlp.v2.Container" has no field named "type".
```

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。