使用 Google Cloud DLP 存储的信息类型并获取 400 无效的内置信息类型名称
Using Google Cloud DLP Stored infotype and getting 400 Invalid built-in info type name
我的 DLP 仪表板上有一个处于就绪状态的存储信息类型。它的名字是 Federal_Income_Tax
.
使用 https://cloud.google.com/dlp/docs/concepts-infotypes 中的 python 示例,我看到以下内容:
info_types = [{"name": info_type} for info_type in info_types]
我已更改它以查找我存储的信息类型
info_types_to_locate = [{"name": "Federal_Income_Tax"}]
我还提供了我的 google_application_credentials 和一个活动项目 ID。
调用时 returns 400 Invalid built-in info type
名称 Federal_Income_Tax
.
表明我希望使用存储信息类型而不是内置信息类型的语法是什么?
确保将要使用的存储信息类型添加到 customInfoTypes
数组。请参阅文档:https://cloud.google.com/dlp/docs/creating-stored-infotypes#scan_content_using_stored_custom_dictionary_detectors
inspectConfig.infoTypes
仅适用于内置信息类型。
我的 DLP 仪表板上有一个处于就绪状态的存储信息类型。它的名字是 Federal_Income_Tax
.
使用 https://cloud.google.com/dlp/docs/concepts-infotypes 中的 python 示例,我看到以下内容:
info_types = [{"name": info_type} for info_type in info_types]
我已更改它以查找我存储的信息类型
info_types_to_locate = [{"name": "Federal_Income_Tax"}]
我还提供了我的 google_application_credentials 和一个活动项目 ID。
调用时 returns 400 Invalid built-in info type
名称 Federal_Income_Tax
.
表明我希望使用存储信息类型而不是内置信息类型的语法是什么?
确保将要使用的存储信息类型添加到 customInfoTypes
数组。请参阅文档:https://cloud.google.com/dlp/docs/creating-stored-infotypes#scan_content_using_stored_custom_dictionary_detectors
inspectConfig.infoTypes
仅适用于内置信息类型。