Google Cloud DLP 常规自定义字典错误 "Dictionary has no "cloudStoragePath“字段”

Google Cloud DLP regular custom dictionary error "Dictionary has no "cloudStoragePath" field"

在 DLP 中,我创建了一个常规的自定义字典检测器,它指向存储在 Cloud Storage 中的字典文本文件。下面是我为定义自定义信息类型所做的工作。我相信它遵循 https://cloud.google.com/dlp/docs/creating-custom-infotypes-dictionary#examples 中的说明。 然而,它出现“协议消息字典没有“cloudStoragePath”字段”的错误。该文本文件肯定存在于我的云存储桶中,并且我有适当的凭据。 你能告诉我语法是否错误吗?谢谢。

custom_info_types = [
    {
        "info_type": {"name": "TAXES"},
        "likelihood": google.cloud.dlp_v2.Likelihood.POSSIBLE,
        "dictionary": {
                            "cloudStoragePath": {
                                "path": "gs://mybucket/myfile.txt"
                            },
                       },
    }
]

Python不使用骆驼大小写,而是使用蛇形大小写。

https://cloud.google.com/dlp/docs/samples/dlp-deidentify-masking#dlp_deidentify_masking-python

所以应该是 cloud_storage_path