pub struct GooglePrivacyDlpV2DatabaseResourceRegex {
pub database_regex: Option<String>,
pub database_resource_name_regex: Option<String>,
pub instance_regex: Option<String>,
pub project_id_regex: Option<String>,
}Expand description
A pattern to match against one or more database resources. At least one pattern must be specified. Regular expressions use RE2 syntax; a guide can be found under the google/re2 repository on GitHub.
This type is not used in any activity, and only used as part of another schema.
Fields§
§database_regex: Option<String>Regex to test the database name against. If empty, all databases match.
database_resource_name_regex: Option<String>Regex to test the database resource’s name against. An example of a database resource name is a table’s name. Other database resource names like view names could be included in the future. If empty, all database resources match.
instance_regex: Option<String>Regex to test the instance name against. If empty, all instances match.
project_id_regex: Option<String>For organizations, if unset, will match all projects. Has no effect for configurations created within a project.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2DatabaseResourceRegex
impl Clone for GooglePrivacyDlpV2DatabaseResourceRegex
Source§fn clone(&self) -> GooglePrivacyDlpV2DatabaseResourceRegex
fn clone(&self) -> GooglePrivacyDlpV2DatabaseResourceRegex
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more