docs: update generated docs (#981)

diff --git a/docs/dyn/dlp_v2.projects.deidentifyTemplates.html b/docs/dyn/dlp_v2.projects.deidentifyTemplates.html
index ef68831..27da8e2 100644
--- a/docs/dyn/dlp_v2.projects.deidentifyTemplates.html
+++ b/docs/dyn/dlp_v2.projects.deidentifyTemplates.html
@@ -84,7 +84,7 @@
   <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
 <p class="firstline">Gets a DeidentifyTemplate.</p>
 <p class="toc_element">
-  <code><a href="#list">list(parent, orderBy=None, pageToken=None, locationId=None, pageSize=None, x__xgafv=None)</a></code></p>
+  <code><a href="#list">list(parent, locationId=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
 <p class="firstline">Lists DeidentifyTemplates.</p>
 <p class="toc_element">
   <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -101,8 +101,11 @@
 more.
 
 Args:
-  parent: string, Required. The parent resource name, for example projects/my-project-id or
-organizations/my-org-id. (required)
+  parent: string, Required. Parent resource name.
+- Format:projects/[PROJECT-ID]
+- Format:organizations/[ORGANIZATION-ID]
+- Format:projects/[PROJECT-ID]/locations/[LOCATION-ID]
+- Format:organizations/[ORGANIZATION-ID]/locations/[LOCATION-ID] (required)
   body: object, The request body.
     The object takes the form of:
 
@@ -118,10 +121,6 @@
           # The template will have one of the following formats:
           # `projects/PROJECT_ID/deidentifyTemplates/TEMPLATE_ID` OR
           # `organizations/ORGANIZATION_ID/deidentifyTemplates/TEMPLATE_ID`
-      &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
-      &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
-      &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
-      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
       &quot;deidentifyConfig&quot;: { # The configuration that controls how the data will change. # ///////////// // The core content of the template  // ///////////////
         &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the dataset as free-form text and apply the same free text
             # transformation everywhere.
@@ -132,11 +131,18 @@
               # for a given infoType.
             { # A transformation to apply to text that is identified as a specific
                 # info_type.
-              &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-                &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                    # portion of the value.
-                  &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+              &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                  # this transformation to apply to all findings that correspond to
+                  # infoTypes that were requested in `InspectConfig`.
+                { # Type of information detected by the API.
+                  &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                      # creating a CustomInfoType, or one of the names listed
+                      # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
+              ],
+              &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
                 &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                     # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                     # to learn more.
@@ -150,7 +156,6 @@
                       # be more than 365250 days (1000 years) each direction.
                       #
                       # For example, 3 means shift date to at most 3 days into the future.
-                  &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                       # results in the same shift for the same context and crypto_key. If
                       # set, must also set context. Can only be applied to table items.
@@ -158,10 +163,6 @@
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -179,10 +180,62 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
+                  &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                },
+                &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                    # portion of the value.
+                  &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                 },
                 &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                 },
+                &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                  &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                },
                 &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                     # Uses SHA-256.
                     # The key size must be either 32 or 64 bytes.
@@ -195,10 +248,6 @@
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -216,8 +265,152 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
                 },
+                &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                    # fixed character. Masking can start from the beginning or end of the string.
+                    # This can be used on data of any type (numbers, longs, and so on) and when
+                    # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                    # type. (This allows you to take a long like 123 and modify it to a string like
+                    # **3.
+                  &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                      # characters. For example, if the input string is `555-555-5555` and you
+                      # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                      # returns `***-**5-5555`.
+                    { # Characters to skip when doing deidentification of a value. These will be left
+                        # alone and skipped.
+                      &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                      &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                          # punctuation.
+                    },
+                  ],
+                  &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                      # masked. Skipped characters do not count towards this tally.
+                  &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                      # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                      # code or credit card number. This string must have a length of 1. If not
+                      # supplied, this value defaults to `*` for strings, and `0` for digits.
+                  &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                      # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                      # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                      # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                      # is `true`, then the string `12345` is masked as `12***`.
+                },
+                &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                    # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                    # output would be &#x27;My phone number is &#x27;.
+                },
+                &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                    # Bucketing transformation can provide all of this functionality,
+                    # but requires more configuration. This message is provided as a convenience to
+                    # the user for simple bucketing strategies.
+                    #
+                    # The transformed value will be a hyphenated string of
+                    # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                    # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                    #
+                    # This can be used on data of type: double, long.
+                    #
+                    # If the bound Value type differs from the type of data
+                    # being transformed, we will first attempt converting the type of the data to
+                    # be transformed to match the type of the bound before comparing.
+                    #
+                    # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                  &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                      # grouped together into a single bucket; for example if `upper_bound` = 89,
+                      # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                  &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                      # grouped together into a single bucket; for example if `lower_bound` = 10,
+                      # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                  &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                      # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                      # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                      # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                },
                 &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                     # (FPE) with the FFX mode of operation; however when used in the
                     # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -243,7 +436,7 @@
                       #
                       # This annotation identifies the surrogate when inspecting content using the
                       # custom infoType
-                      # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                      # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                       # This facilitates reversal of the surrogate when it occurs in free text.
                       #
                       # In order for inspection to work properly, the name of this infoType must
@@ -259,9 +452,10 @@
                     &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                         # creating a CustomInfoType, or one of the names listed
                         # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                        # a built-in type. InfoType names should conform to the pattern
-                        # `[a-zA-Z0-9_]{1,64}`.
+                        # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                        # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                   },
+                  &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                   &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                       # identifier in two different contexts won&#x27;t be given the same surrogate. If
                       # the context is not set, a default tweak will be used.
@@ -284,16 +478,21 @@
                       # - a string is encoded in UTF-8 format followed by a single byte of value 2
                     &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                   },
-                  &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                  &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                      # that the FFX mode natively supports. This happens before/after
+                      # encryption/decryption.
+                      # Each character listed must appear only once.
+                      # Number of characters must be in the range [2, 95].
+                      # This must be encoded as ASCII.
+                      # The order of characters does not matter.
+                      # The full list of allowed characters is:
+                      # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                      # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                       # a key encryption key (KEK) stored by KMS).
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -311,19 +510,36 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
-                  &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                      # that the FFX mode natively supports. This happens before/after
-                      # encryption/decryption.
-                      # Each character listed must appear only once.
-                      # Number of characters must be in the range [2, 95].
-                      # This must be encoded as ASCII.
-                      # The order of characters does not matter.
                   &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                 },
                 &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                     # input. Outputs a base64 encoded representation of the encrypted output.
                     # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                  &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                      # referential integrity such that the same identifier in two different
+                      # contexts will be given a distinct surrogate. The context is appended to
+                      # plaintext value being encrypted. On decryption the provided context is
+                      # validated against the value used during encryption. If a context was
+                      # provided during encryption, same context must be provided during decryption
+                      # as well.
+                      #
+                      # If the context is not set, plaintext would be used as is for encryption.
+                      # If the context is set but:
+                      #
+                      # 1. there is no record present when transforming a given value or
+                      # 2. the field is not present when transforming a given value,
+                      #
+                      # plaintext would be used as is for encryption.
+                      #
+                      # Note that case (1) is expected when an `InfoTypeTransformation` is
+                      # applied to both structured and non-structured `ContentItem`s.
+                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                  },
                   &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                       # This annotation will be applied to the surrogate by prefixing it with
                       # the name of the custom info type followed by the number of
@@ -359,38 +575,14 @@
                     &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                         # creating a CustomInfoType, or one of the names listed
                         # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                        # a built-in type. InfoType names should conform to the pattern
-                        # `[a-zA-Z0-9_]{1,64}`.
-                  },
-                  &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                      # referential integrity such that the same identifier in two different
-                      # contexts will be given a distinct surrogate. The context is appended to
-                      # plaintext value being encrypted. On decryption the provided context is
-                      # validated against the value used during encryption. If a context was
-                      # provided during encryption, same context must be provided during decryption
-                      # as well.
-                      #
-                      # If the context is not set, plaintext would be used as is for encryption.
-                      # If the context is set but:
-                      #
-                      # 1. there is no record present when transforming a given value or
-                      # 2. the field is not present when transforming a given value,
-                      #
-                      # plaintext would be used as is for encryption.
-                      #
-                      # Note that case (1) is expected when an `InfoTypeTransformation` is
-                      # applied to both structured and non-structured `ContentItem`s.
-                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                        # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                   },
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                       # a key encryption key (KEK) stored by KMS).
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -408,6 +600,10 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
                 },
                 &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -421,13 +617,26 @@
                     # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                   &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                     { # Bucket is represented as a range, along with replacement values.
-                      &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                          # the default behavior will be to hyphenate the min-max range.
+                      &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                           # Note that for the purposes of inspection or transformation, the number
                           # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -439,29 +648,56 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
                         &quot;integerValue&quot;: &quot;A String&quot;, # integer
                         &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                             # or are specified elsewhere. An API may choose to allow leap seconds. Related
                             # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                           &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                               # allow the value 60 if it allows leap-seconds.
                           &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
                         },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       },
                       &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                           # used.
@@ -470,6 +706,20 @@
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -481,269 +731,20 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       },
                     },
                   ],
                 },
-                &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                    # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                    # output would be &#x27;My phone number is &#x27;.
-                },
-                &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                  &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                },
-                &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                    # Bucketing transformation can provide all of this functionality,
-                    # but requires more configuration. This message is provided as a convenience to
-                    # the user for simple bucketing strategies.
-                    #
-                    # The transformed value will be a hyphenated string of
-                    # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                    # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                    #
-                    # This can be used on data of type: double, long.
-                    #
-                    # If the bound Value type differs from the type of data
-                    # being transformed, we will first attempt converting the type of the data to
-                    # be transformed to match the type of the bound before comparing.
-                    #
-                    # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                  &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                      # grouped together into a single bucket; for example if `upper_bound` = 89,
-                      # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                  &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                      # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                      # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                      # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                  &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                      # grouped together into a single bucket; for example if `lower_bound` = 10,
-                      # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                },
-                &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                    # fixed character. Masking can start from the beginning or end of the string.
-                    # This can be used on data of any type (numbers, longs, and so on) and when
-                    # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                    # type. (This allows you to take a long like 123 and modify it to a string like
-                    # **3.
-                  &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                      # characters. For example, if the input string is `555-555-5555` and you
-                      # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                      # returns `***-**5-5555`.
-                    { # Characters to skip when doing deidentification of a value. These will be left
-                        # alone and skipped.
-                      &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                      &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                          # punctuation.
-                    },
-                  ],
-                  &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                      # masked. Skipped characters do not count towards this tally.
-                  &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                      # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                      # code or credit card number. This string must have a length of 1. If not
-                      # supplied, this value defaults to `*` for strings, and `0` for digits.
-                  &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                      # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                      # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                      # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                      # is `true`, then the string `12345` is masked as `12***`.
-                },
               },
-              &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                  # this transformation to apply to all findings that correspond to
-                  # infoTypes that were requested in `InspectConfig`.
-                { # Type of information detected by the API.
-                  &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                      # creating a CustomInfoType, or one of the names listed
-                      # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
-                },
-              ],
             },
           ],
         },
@@ -756,25 +757,103 @@
             # Information about any incompatible transformations, and how they were
             # handled, is returned in the response as part of the
             # `TransformationOverviews`.
-          &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
-          },
           &quot;leaveUntransformed&quot;: { # Skips the data without modifying it if the requested transformation would # Ignore errors
               # cause an error. For example, if a `DateShift` transformation were applied
               # an an IP address, this mode would leave the IP address unchanged in the
               # response.
           },
+          &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
+          },
         },
         &quot;recordTransformations&quot;: { # A type of transformation that is applied over structured data such as a # Treat the dataset as structured. Transformations can be applied to
             # specific locations within structured datasets, such as transforming
             # a column within a table.
             # table.
+          &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
+              # match any suppression rule are omitted from the output.
+            { # Configuration to suppress records whose suppression conditions evaluate to
+                # true.
+              &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
+                  # evaluated to be suppressed from the transformed content.
+                  # a field.
+                &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
+                  &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
+                    &quot;conditions&quot;: [ # A collection of conditions.
+                      { # The field type of `value` and `field` do not need to match to be
+                          # considered equal, but not all comparisons are possible.
+                          # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
+                          # but all other comparisons are invalid with incompatible types.
+                          # A `value` of type:
+                          #
+                          # - `string` can be compared against all other types
+                          # - `boolean` can only be compared against other booleans
+                          # - `integer` can be compared against doubles or a string if the string value
+                          # can be parsed as an integer.
+                          # - `double` can be compared against integers or a string if the string can
+                          # be parsed as a double.
+                          # - `Timestamp` can be compared against strings in RFC 3339 date string
+                          # format.
+                          # - `TimeOfDay` can be compared against timestamps and strings in the format
+                          # of &#x27;HH:mm:ss&#x27;.
+                          #
+                          # If we fail to compare do to type mismatch, a warning will be given and
+                          # the condition will evaluate to false.
+                        &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        },
+                        &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
+                          },
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                        &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
+                      },
+                    ],
+                  },
+                  &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
+                      # only supported value is `AND`.
+                },
+              },
+            },
+          ],
           &quot;fieldTransformations&quot;: [ # Transform the record by applying various field transformations.
             { # The transformation to apply to the field.
-              &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
-                { # General identifier of a data field in a storage service.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                },
-              ],
               &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the contents of the field as free text, and selectively
                   # transform content that matches an `InfoType`.
                   # apply various `PrimitiveTransformation`s to each finding, where the
@@ -784,11 +863,18 @@
                     # for a given infoType.
                   { # A transformation to apply to text that is identified as a specific
                       # info_type.
-                    &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-                      &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                          # portion of the value.
-                        &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+                    &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                        # this transformation to apply to all findings that correspond to
+                        # infoTypes that were requested in `InspectConfig`.
+                      { # Type of information detected by the API.
+                        &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                            # creating a CustomInfoType, or one of the names listed
+                            # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                            # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                            # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                       },
+                    ],
+                    &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
                       &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                           # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                           # to learn more.
@@ -802,7 +888,6 @@
                             # be more than 365250 days (1000 years) each direction.
                             #
                             # For example, 3 means shift date to at most 3 days into the future.
-                        &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                         &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                             # results in the same shift for the same context and crypto_key. If
                             # set, must also set context. Can only be applied to table items.
@@ -810,10 +895,6 @@
                             # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                             # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                             # unwrap the data crypto key.
-                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                              # leaking the key. Choose another type of key if possible.
-                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                          },
                           &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                               # It will be discarded after the request finishes.
                             &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -831,10 +912,62 @@
                             &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                             &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                           },
+                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                              # leaking the key. Choose another type of key if possible.
+                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                          },
                         },
+                        &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                      },
+                      &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                          # portion of the value.
+                        &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                       },
                       &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                       },
+                      &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                        &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
+                          },
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                      },
                       &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                           # Uses SHA-256.
                           # The key size must be either 32 or 64 bytes.
@@ -847,10 +980,6 @@
                             # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                             # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                             # unwrap the data crypto key.
-                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                              # leaking the key. Choose another type of key if possible.
-                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                          },
                           &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                               # It will be discarded after the request finishes.
                             &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -868,8 +997,152 @@
                             &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                             &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                           },
+                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                              # leaking the key. Choose another type of key if possible.
+                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                          },
                         },
                       },
+                      &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                          # fixed character. Masking can start from the beginning or end of the string.
+                          # This can be used on data of any type (numbers, longs, and so on) and when
+                          # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                          # type. (This allows you to take a long like 123 and modify it to a string like
+                          # **3.
+                        &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                            # characters. For example, if the input string is `555-555-5555` and you
+                            # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                            # returns `***-**5-5555`.
+                          { # Characters to skip when doing deidentification of a value. These will be left
+                              # alone and skipped.
+                            &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                            &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                                # punctuation.
+                          },
+                        ],
+                        &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                            # masked. Skipped characters do not count towards this tally.
+                        &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                            # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                            # code or credit card number. This string must have a length of 1. If not
+                            # supplied, this value defaults to `*` for strings, and `0` for digits.
+                        &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                            # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                            # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                            # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                            # is `true`, then the string `12345` is masked as `12***`.
+                      },
+                      &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                          # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                          # output would be &#x27;My phone number is &#x27;.
+                      },
+                      &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                          # Bucketing transformation can provide all of this functionality,
+                          # but requires more configuration. This message is provided as a convenience to
+                          # the user for simple bucketing strategies.
+                          #
+                          # The transformed value will be a hyphenated string of
+                          # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                          # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                          #
+                          # This can be used on data of type: double, long.
+                          #
+                          # If the bound Value type differs from the type of data
+                          # being transformed, we will first attempt converting the type of the data to
+                          # be transformed to match the type of the bound before comparing.
+                          #
+                          # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                        &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                            # grouped together into a single bucket; for example if `upper_bound` = 89,
+                            # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
+                          },
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                        &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                            # grouped together into a single bucket; for example if `lower_bound` = 10,
+                            # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
+                          },
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                        &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                            # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                            # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                            # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                      },
                       &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                           # (FPE) with the FFX mode of operation; however when used in the
                           # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -895,7 +1168,7 @@
                             #
                             # This annotation identifies the surrogate when inspecting content using the
                             # custom infoType
-                            # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                            # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                             # This facilitates reversal of the surrogate when it occurs in free text.
                             #
                             # In order for inspection to work properly, the name of this infoType must
@@ -911,9 +1184,10 @@
                           &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                               # creating a CustomInfoType, or one of the names listed
                               # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                              # a built-in type. InfoType names should conform to the pattern
-                              # `[a-zA-Z0-9_]{1,64}`.
+                              # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                              # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                         },
+                        &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                         &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                             # identifier in two different contexts won&#x27;t be given the same surrogate. If
                             # the context is not set, a default tweak will be used.
@@ -936,16 +1210,21 @@
                             # - a string is encoded in UTF-8 format followed by a single byte of value 2
                           &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                         },
-                        &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                        &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                            # that the FFX mode natively supports. This happens before/after
+                            # encryption/decryption.
+                            # Each character listed must appear only once.
+                            # Number of characters must be in the range [2, 95].
+                            # This must be encoded as ASCII.
+                            # The order of characters does not matter.
+                            # The full list of allowed characters is:
+                            # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                            # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                         &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                             # a key encryption key (KEK) stored by KMS).
                             # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                             # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                             # unwrap the data crypto key.
-                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                              # leaking the key. Choose another type of key if possible.
-                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                          },
                           &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                               # It will be discarded after the request finishes.
                             &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -963,19 +1242,36 @@
                             &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                             &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                           },
+                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                              # leaking the key. Choose another type of key if possible.
+                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                          },
                         },
-                        &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                            # that the FFX mode natively supports. This happens before/after
-                            # encryption/decryption.
-                            # Each character listed must appear only once.
-                            # Number of characters must be in the range [2, 95].
-                            # This must be encoded as ASCII.
-                            # The order of characters does not matter.
                         &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                       },
                       &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                           # input. Outputs a base64 encoded representation of the encrypted output.
                           # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                        &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                            # referential integrity such that the same identifier in two different
+                            # contexts will be given a distinct surrogate. The context is appended to
+                            # plaintext value being encrypted. On decryption the provided context is
+                            # validated against the value used during encryption. If a context was
+                            # provided during encryption, same context must be provided during decryption
+                            # as well.
+                            #
+                            # If the context is not set, plaintext would be used as is for encryption.
+                            # If the context is set but:
+                            #
+                            # 1. there is no record present when transforming a given value or
+                            # 2. the field is not present when transforming a given value,
+                            #
+                            # plaintext would be used as is for encryption.
+                            #
+                            # Note that case (1) is expected when an `InfoTypeTransformation` is
+                            # applied to both structured and non-structured `ContentItem`s.
+                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        },
                         &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                             # This annotation will be applied to the surrogate by prefixing it with
                             # the name of the custom info type followed by the number of
@@ -1011,38 +1307,14 @@
                           &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                               # creating a CustomInfoType, or one of the names listed
                               # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                              # a built-in type. InfoType names should conform to the pattern
-                              # `[a-zA-Z0-9_]{1,64}`.
-                        },
-                        &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                            # referential integrity such that the same identifier in two different
-                            # contexts will be given a distinct surrogate. The context is appended to
-                            # plaintext value being encrypted. On decryption the provided context is
-                            # validated against the value used during encryption. If a context was
-                            # provided during encryption, same context must be provided during decryption
-                            # as well.
-                            #
-                            # If the context is not set, plaintext would be used as is for encryption.
-                            # If the context is set but:
-                            #
-                            # 1. there is no record present when transforming a given value or
-                            # 2. the field is not present when transforming a given value,
-                            #
-                            # plaintext would be used as is for encryption.
-                            #
-                            # Note that case (1) is expected when an `InfoTypeTransformation` is
-                            # applied to both structured and non-structured `ContentItem`s.
-                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                              # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                              # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                         },
                         &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                             # a key encryption key (KEK) stored by KMS).
                             # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                             # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                             # unwrap the data crypto key.
-                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                              # leaking the key. Choose another type of key if possible.
-                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                          },
                           &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                               # It will be discarded after the request finishes.
                             &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -1060,6 +1332,10 @@
                             &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                             &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                           },
+                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                              # leaking the key. Choose another type of key if possible.
+                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                          },
                         },
                       },
                       &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -1073,13 +1349,26 @@
                           # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                         &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                           { # Bucket is represented as a range, along with replacement values.
-                            &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                                # the default behavior will be to hyphenate the min-max range.
+                            &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                                 # Note that for the purposes of inspection or transformation, the number
                                 # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                                 # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                                 # 123456789, the number of bytes would be counted as 9, even though an
                                 # int64 only holds up to 8 bytes of data.
+                              &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                              &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                  # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                  # types are google.type.Date and `google.protobuf.Timestamp`.
+                                &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                    # allow the value 60 if it allows leap-seconds.
+                                &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                              },
+                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                              &quot;floatValue&quot;: 3.14, # float
+                              &quot;stringValue&quot;: &quot;A String&quot;, # string
                               &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                               &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                   # and time zone are either specified elsewhere or are not significant. The date
@@ -1091,29 +1380,56 @@
                                   # * A year and month value, with a zero day, e.g. a credit card expiration date
                                   #
                                   # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                    # a year.
                                 &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                     # month and day.
+                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                    # a year.
                                 &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                     # if specifying a year by itself or a year and month where the day is not
                                     # significant.
                               },
-                              &quot;stringValue&quot;: &quot;A String&quot;, # string
+                              &quot;booleanValue&quot;: True or False, # boolean
+                            },
+                            &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                                # Note that for the purposes of inspection or transformation, the number
+                                # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                                # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                                # 123456789, the number of bytes would be counted as 9, even though an
+                                # int64 only holds up to 8 bytes of data.
                               &quot;integerValue&quot;: &quot;A String&quot;, # integer
                               &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                                   # or are specified elsewhere. An API may choose to allow leap seconds. Related
                                   # types are google.type.Date and `google.protobuf.Timestamp`.
-                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                                 &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                                     # allow the value 60 if it allows leap-seconds.
                                 &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                              },
+                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                              &quot;floatValue&quot;: 3.14, # float
+                              &quot;stringValue&quot;: &quot;A String&quot;, # string
+                              &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                              &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                  # and time zone are either specified elsewhere or are not significant. The date
+                                  # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                  #
+                                  # * A full date, with non-zero year, month and day values
+                                  # * A month and day value, with a zero year, e.g. an anniversary
+                                  # * A year on its own, with zero month and day values
+                                  # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                  #
+                                  # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                                &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                    # month and day.
+                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                    # a year.
+                                &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                    # if specifying a year by itself or a year and month where the day is not
+                                    # significant.
                               },
                               &quot;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             },
                             &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                                 # used.
@@ -1122,6 +1438,20 @@
                                 # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                                 # 123456789, the number of bytes would be counted as 9, even though an
                                 # int64 only holds up to 8 bytes of data.
+                              &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                              &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                  # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                  # types are google.type.Date and `google.protobuf.Timestamp`.
+                                &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                    # allow the value 60 if it allows leap-seconds.
+                                &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                              },
+                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                              &quot;floatValue&quot;: 3.14, # float
+                              &quot;stringValue&quot;: &quot;A String&quot;, # string
                               &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                               &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                   # and time zone are either specified elsewhere or are not significant. The date
@@ -1133,277 +1463,24 @@
                                   # * A year and month value, with a zero day, e.g. a credit card expiration date
                                   #
                                   # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                    # a year.
                                 &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                     # month and day.
+                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                    # a year.
                                 &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                     # if specifying a year by itself or a year and month where the day is not
                                     # significant.
                               },
-                              &quot;stringValue&quot;: &quot;A String&quot;, # string
-                              &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                              &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                  # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                  # types are google.type.Date and `google.protobuf.Timestamp`.
-                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                                &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                    # allow the value 60 if it allows leap-seconds.
-                                &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                              },
                               &quot;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            },
-                            &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                                # Note that for the purposes of inspection or transformation, the number
-                                # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                                # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                                # 123456789, the number of bytes would be counted as 9, even though an
-                                # int64 only holds up to 8 bytes of data.
-                              &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                              &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                  # and time zone are either specified elsewhere or are not significant. The date
-                                  # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                  #
-                                  # * A full date, with non-zero year, month and day values
-                                  # * A month and day value, with a zero year, e.g. an anniversary
-                                  # * A year on its own, with zero month and day values
-                                  # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                  #
-                                  # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                    # a year.
-                                &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                    # month and day.
-                                &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                    # if specifying a year by itself or a year and month where the day is not
-                                    # significant.
-                              },
-                              &quot;stringValue&quot;: &quot;A String&quot;, # string
-                              &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                              &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                  # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                  # types are google.type.Date and `google.protobuf.Timestamp`.
-                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                                &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                    # allow the value 60 if it allows leap-seconds.
-                                &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                              },
-                              &quot;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             },
                           },
                         ],
                       },
-                      &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                          # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                          # output would be &#x27;My phone number is &#x27;.
-                      },
-                      &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                        &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                      },
-                      &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                          # Bucketing transformation can provide all of this functionality,
-                          # but requires more configuration. This message is provided as a convenience to
-                          # the user for simple bucketing strategies.
-                          #
-                          # The transformed value will be a hyphenated string of
-                          # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                          # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                          #
-                          # This can be used on data of type: double, long.
-                          #
-                          # If the bound Value type differs from the type of data
-                          # being transformed, we will first attempt converting the type of the data to
-                          # be transformed to match the type of the bound before comparing.
-                          #
-                          # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                        &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                            # grouped together into a single bucket; for example if `upper_bound` = 89,
-                            # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                        &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                            # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                            # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                            # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                        &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                            # grouped together into a single bucket; for example if `lower_bound` = 10,
-                            # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                      },
-                      &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                          # fixed character. Masking can start from the beginning or end of the string.
-                          # This can be used on data of any type (numbers, longs, and so on) and when
-                          # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                          # type. (This allows you to take a long like 123 and modify it to a string like
-                          # **3.
-                        &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                            # characters. For example, if the input string is `555-555-5555` and you
-                            # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                            # returns `***-**5-5555`.
-                          { # Characters to skip when doing deidentification of a value. These will be left
-                              # alone and skipped.
-                            &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                            &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                                # punctuation.
-                          },
-                        ],
-                        &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                            # masked. Skipped characters do not count towards this tally.
-                        &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                            # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                            # code or credit card number. This string must have a length of 1. If not
-                            # supplied, this value defaults to `*` for strings, and `0` for digits.
-                        &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                            # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                            # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                            # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                            # is `true`, then the string `12345` is masked as `12***`.
-                      },
                     },
-                    &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                        # this transformation to apply to all findings that correspond to
-                        # infoTypes that were requested in `InspectConfig`.
-                      { # Type of information detected by the API.
-                        &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                            # creating a CustomInfoType, or one of the names listed
-                            # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                            # a built-in type. InfoType names should conform to the pattern
-                            # `[a-zA-Z0-9_]{1,64}`.
-                      },
-                    ],
                   },
                 ],
               },
               &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Apply the transformation to the entire field.
-                &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                    # portion of the value.
-                  &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
-                },
                 &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                     # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                     # to learn more.
@@ -1417,7 +1494,6 @@
                       # be more than 365250 days (1000 years) each direction.
                       #
                       # For example, 3 means shift date to at most 3 days into the future.
-                  &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                       # results in the same shift for the same context and crypto_key. If
                       # set, must also set context. Can only be applied to table items.
@@ -1425,10 +1501,6 @@
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -1446,10 +1518,62 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
+                  &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                },
+                &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                    # portion of the value.
+                  &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                 },
                 &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                 },
+                &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                  &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                },
                 &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                     # Uses SHA-256.
                     # The key size must be either 32 or 64 bytes.
@@ -1462,10 +1586,6 @@
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -1483,8 +1603,152 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
                 },
+                &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                    # fixed character. Masking can start from the beginning or end of the string.
+                    # This can be used on data of any type (numbers, longs, and so on) and when
+                    # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                    # type. (This allows you to take a long like 123 and modify it to a string like
+                    # **3.
+                  &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                      # characters. For example, if the input string is `555-555-5555` and you
+                      # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                      # returns `***-**5-5555`.
+                    { # Characters to skip when doing deidentification of a value. These will be left
+                        # alone and skipped.
+                      &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                      &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                          # punctuation.
+                    },
+                  ],
+                  &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                      # masked. Skipped characters do not count towards this tally.
+                  &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                      # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                      # code or credit card number. This string must have a length of 1. If not
+                      # supplied, this value defaults to `*` for strings, and `0` for digits.
+                  &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                      # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                      # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                      # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                      # is `true`, then the string `12345` is masked as `12***`.
+                },
+                &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                    # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                    # output would be &#x27;My phone number is &#x27;.
+                },
+                &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                    # Bucketing transformation can provide all of this functionality,
+                    # but requires more configuration. This message is provided as a convenience to
+                    # the user for simple bucketing strategies.
+                    #
+                    # The transformed value will be a hyphenated string of
+                    # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                    # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                    #
+                    # This can be used on data of type: double, long.
+                    #
+                    # If the bound Value type differs from the type of data
+                    # being transformed, we will first attempt converting the type of the data to
+                    # be transformed to match the type of the bound before comparing.
+                    #
+                    # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                  &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                      # grouped together into a single bucket; for example if `upper_bound` = 89,
+                      # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                  &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                      # grouped together into a single bucket; for example if `lower_bound` = 10,
+                      # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                  &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                      # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                      # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                      # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                },
                 &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                     # (FPE) with the FFX mode of operation; however when used in the
                     # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -1510,7 +1774,7 @@
                       #
                       # This annotation identifies the surrogate when inspecting content using the
                       # custom infoType
-                      # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                      # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                       # This facilitates reversal of the surrogate when it occurs in free text.
                       #
                       # In order for inspection to work properly, the name of this infoType must
@@ -1526,9 +1790,10 @@
                     &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                         # creating a CustomInfoType, or one of the names listed
                         # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                        # a built-in type. InfoType names should conform to the pattern
-                        # `[a-zA-Z0-9_]{1,64}`.
+                        # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                        # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                   },
+                  &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                   &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                       # identifier in two different contexts won&#x27;t be given the same surrogate. If
                       # the context is not set, a default tweak will be used.
@@ -1551,16 +1816,21 @@
                       # - a string is encoded in UTF-8 format followed by a single byte of value 2
                     &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                   },
-                  &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                  &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                      # that the FFX mode natively supports. This happens before/after
+                      # encryption/decryption.
+                      # Each character listed must appear only once.
+                      # Number of characters must be in the range [2, 95].
+                      # This must be encoded as ASCII.
+                      # The order of characters does not matter.
+                      # The full list of allowed characters is:
+                      # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                      # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                       # a key encryption key (KEK) stored by KMS).
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -1578,19 +1848,36 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
-                  &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                      # that the FFX mode natively supports. This happens before/after
-                      # encryption/decryption.
-                      # Each character listed must appear only once.
-                      # Number of characters must be in the range [2, 95].
-                      # This must be encoded as ASCII.
-                      # The order of characters does not matter.
                   &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                 },
                 &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                     # input. Outputs a base64 encoded representation of the encrypted output.
                     # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                  &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                      # referential integrity such that the same identifier in two different
+                      # contexts will be given a distinct surrogate. The context is appended to
+                      # plaintext value being encrypted. On decryption the provided context is
+                      # validated against the value used during encryption. If a context was
+                      # provided during encryption, same context must be provided during decryption
+                      # as well.
+                      #
+                      # If the context is not set, plaintext would be used as is for encryption.
+                      # If the context is set but:
+                      #
+                      # 1. there is no record present when transforming a given value or
+                      # 2. the field is not present when transforming a given value,
+                      #
+                      # plaintext would be used as is for encryption.
+                      #
+                      # Note that case (1) is expected when an `InfoTypeTransformation` is
+                      # applied to both structured and non-structured `ContentItem`s.
+                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                  },
                   &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                       # This annotation will be applied to the surrogate by prefixing it with
                       # the name of the custom info type followed by the number of
@@ -1626,38 +1913,14 @@
                     &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                         # creating a CustomInfoType, or one of the names listed
                         # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                        # a built-in type. InfoType names should conform to the pattern
-                        # `[a-zA-Z0-9_]{1,64}`.
-                  },
-                  &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                      # referential integrity such that the same identifier in two different
-                      # contexts will be given a distinct surrogate. The context is appended to
-                      # plaintext value being encrypted. On decryption the provided context is
-                      # validated against the value used during encryption. If a context was
-                      # provided during encryption, same context must be provided during decryption
-                      # as well.
-                      #
-                      # If the context is not set, plaintext would be used as is for encryption.
-                      # If the context is set but:
-                      #
-                      # 1. there is no record present when transforming a given value or
-                      # 2. the field is not present when transforming a given value,
-                      #
-                      # plaintext would be used as is for encryption.
-                      #
-                      # Note that case (1) is expected when an `InfoTypeTransformation` is
-                      # applied to both structured and non-structured `ContentItem`s.
-                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                        # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                   },
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                       # a key encryption key (KEK) stored by KMS).
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -1675,6 +1938,10 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
                 },
                 &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -1688,13 +1955,26 @@
                     # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                   &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                     { # Bucket is represented as a range, along with replacement values.
-                      &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                          # the default behavior will be to hyphenate the min-max range.
+                      &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                           # Note that for the purposes of inspection or transformation, the number
                           # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -1706,29 +1986,56 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
                         &quot;integerValue&quot;: &quot;A String&quot;, # integer
                         &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                             # or are specified elsewhere. An API may choose to allow leap seconds. Related
                             # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                           &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                               # allow the value 60 if it allows leap-seconds.
                           &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
                         },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       },
                       &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                           # used.
@@ -1737,6 +2044,20 @@
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -1748,257 +2069,19 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       },
                     },
                   ],
                 },
-                &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                    # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                    # output would be &#x27;My phone number is &#x27;.
-                },
-                &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                  &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                },
-                &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                    # Bucketing transformation can provide all of this functionality,
-                    # but requires more configuration. This message is provided as a convenience to
-                    # the user for simple bucketing strategies.
-                    #
-                    # The transformed value will be a hyphenated string of
-                    # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                    # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                    #
-                    # This can be used on data of type: double, long.
-                    #
-                    # If the bound Value type differs from the type of data
-                    # being transformed, we will first attempt converting the type of the data to
-                    # be transformed to match the type of the bound before comparing.
-                    #
-                    # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                  &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                      # grouped together into a single bucket; for example if `upper_bound` = 89,
-                      # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                  &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                      # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                      # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                      # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                  &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                      # grouped together into a single bucket; for example if `lower_bound` = 10,
-                      # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                },
-                &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                    # fixed character. Masking can start from the beginning or end of the string.
-                    # This can be used on data of any type (numbers, longs, and so on) and when
-                    # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                    # type. (This allows you to take a long like 123 and modify it to a string like
-                    # **3.
-                  &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                      # characters. For example, if the input string is `555-555-5555` and you
-                      # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                      # returns `***-**5-5555`.
-                    { # Characters to skip when doing deidentification of a value. These will be left
-                        # alone and skipped.
-                      &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                      &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                          # punctuation.
-                    },
-                  ],
-                  &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                      # masked. Skipped characters do not count towards this tally.
-                  &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                      # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                      # code or credit card number. This string must have a length of 1. If not
-                      # supplied, this value defaults to `*` for strings, and `0` for digits.
-                  &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                      # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                      # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                      # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                      # is `true`, then the string `12345` is masked as `12***`.
-                },
               },
               &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # Only apply the transformation if the condition evaluates to true for the
                   # given `RecordCondition`. The conditions are allowed to reference fields
@@ -2011,8 +2094,6 @@
                   # - Redact a field if the date of birth field is greater than 85.
                   # a field.
                 &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
-                  &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
-                      # only supported value is `AND`.
                   &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
                     &quot;conditions&quot;: [ # A collection of conditions.
                       { # The field type of `value` and `field` do not need to match to be
@@ -2034,12 +2115,29 @@
                           #
                           # If we fail to compare do to type mismatch, a warning will be given and
                           # the condition will evaluate to false.
+                        &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        },
                         &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
                             # Note that for the purposes of inspection or transformation, the number
                             # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                             # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                             # 123456789, the number of bytes would be counted as 9, even though an
                             # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
                           &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                           &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                               # and time zone are either specified elsewhere or are not significant. The date
@@ -2051,129 +2149,39 @@
                               # * A year and month value, with a zero day, e.g. a credit card expiration date
                               #
                               # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
                             &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                 # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
                             &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                 # if specifying a year by itself or a year and month where the day is not
                                 # significant.
                           },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
                           &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                        &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                         },
                         &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                       },
                     ],
                   },
-                },
-              },
-            },
-          ],
-          &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
-              # match any suppression rule are omitted from the output.
-            { # Configuration to suppress records whose suppression conditions evaluate to
-                # true.
-              &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
-                  # evaluated to be suppressed from the transformed content.
-                  # a field.
-                &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
                   &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
                       # only supported value is `AND`.
-                  &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
-                    &quot;conditions&quot;: [ # A collection of conditions.
-                      { # The field type of `value` and `field` do not need to match to be
-                          # considered equal, but not all comparisons are possible.
-                          # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
-                          # but all other comparisons are invalid with incompatible types.
-                          # A `value` of type:
-                          #
-                          # - `string` can be compared against all other types
-                          # - `boolean` can only be compared against other booleans
-                          # - `integer` can be compared against doubles or a string if the string value
-                          # can be parsed as an integer.
-                          # - `double` can be compared against integers or a string if the string can
-                          # be parsed as a double.
-                          # - `Timestamp` can be compared against strings in RFC 3339 date string
-                          # format.
-                          # - `TimeOfDay` can be compared against timestamps and strings in the format
-                          # of &#x27;HH:mm:ss&#x27;.
-                          #
-                          # If we fail to compare do to type mismatch, a warning will be given and
-                          # the condition will evaluate to false.
-                        &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                        &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                        },
-                        &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
-                      },
-                    ],
-                  },
                 },
               },
+              &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
+                { # General identifier of a data field in a storage service.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
+              ],
             },
           ],
         },
       },
+      &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
+      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
+      &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
+      &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
     },
-    &quot;locationId&quot;: &quot;A String&quot;, # The geographic location to store the deidentification template. Reserved
-        # for future extensions.
+    &quot;locationId&quot;: &quot;A String&quot;, # Deprecated. This field has no effect.
   }
 
   x__xgafv: string, V1 error format.
@@ -2191,10 +2199,6 @@
         # The template will have one of the following formats:
         # `projects/PROJECT_ID/deidentifyTemplates/TEMPLATE_ID` OR
         # `organizations/ORGANIZATION_ID/deidentifyTemplates/TEMPLATE_ID`
-    &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
-    &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
-    &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
-    &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
     &quot;deidentifyConfig&quot;: { # The configuration that controls how the data will change. # ///////////// // The core content of the template  // ///////////////
       &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the dataset as free-form text and apply the same free text
           # transformation everywhere.
@@ -2205,11 +2209,18 @@
             # for a given infoType.
           { # A transformation to apply to text that is identified as a specific
               # info_type.
-            &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                  # portion of the value.
-                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+            &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                # this transformation to apply to all findings that correspond to
+                # infoTypes that were requested in `InspectConfig`.
+              { # Type of information detected by the API.
+                &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                    # creating a CustomInfoType, or one of the names listed
+                    # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                    # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                    # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
               },
+            ],
+            &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
               &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                   # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                   # to learn more.
@@ -2223,7 +2234,6 @@
                     # be more than 365250 days (1000 years) each direction.
                     #
                     # For example, 3 means shift date to at most 3 days into the future.
-                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                     # results in the same shift for the same context and crypto_key. If
                     # set, must also set context. Can only be applied to table items.
@@ -2231,10 +2241,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -2252,10 +2258,62 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
+                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+              },
+              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                  # portion of the value.
+                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
               },
               &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
               },
+              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+              },
               &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                   # Uses SHA-256.
                   # The key size must be either 32 or 64 bytes.
@@ -2268,10 +2326,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -2289,8 +2343,152 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
+              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                  # fixed character. Masking can start from the beginning or end of the string.
+                  # This can be used on data of any type (numbers, longs, and so on) and when
+                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                  # type. (This allows you to take a long like 123 and modify it to a string like
+                  # **3.
+                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                    # characters. For example, if the input string is `555-555-5555` and you
+                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                    # returns `***-**5-5555`.
+                  { # Characters to skip when doing deidentification of a value. These will be left
+                      # alone and skipped.
+                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                        # punctuation.
+                  },
+                ],
+                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                    # masked. Skipped characters do not count towards this tally.
+                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                    # code or credit card number. This string must have a length of 1. If not
+                    # supplied, this value defaults to `*` for strings, and `0` for digits.
+                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                    # is `true`, then the string `12345` is masked as `12***`.
+              },
+              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                  # output would be &#x27;My phone number is &#x27;.
+              },
+              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                  # Bucketing transformation can provide all of this functionality,
+                  # but requires more configuration. This message is provided as a convenience to
+                  # the user for simple bucketing strategies.
+                  #
+                  # The transformed value will be a hyphenated string of
+                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                  #
+                  # This can be used on data of type: double, long.
+                  #
+                  # If the bound Value type differs from the type of data
+                  # being transformed, we will first attempt converting the type of the data to
+                  # be transformed to match the type of the bound before comparing.
+                  #
+                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                    # grouped together into a single bucket; for example if `upper_bound` = 89,
+                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                    # grouped together into a single bucket; for example if `lower_bound` = 10,
+                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+              },
               &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                   # (FPE) with the FFX mode of operation; however when used in the
                   # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -2316,7 +2514,7 @@
                     #
                     # This annotation identifies the surrogate when inspecting content using the
                     # custom infoType
-                    # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                    # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                     # This facilitates reversal of the surrogate when it occurs in free text.
                     #
                     # In order for inspection to work properly, the name of this infoType must
@@ -2332,9 +2530,10 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
+                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                 &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                     # identifier in two different contexts won&#x27;t be given the same surrogate. If
                     # the context is not set, a default tweak will be used.
@@ -2357,16 +2556,21 @@
                     # - a string is encoded in UTF-8 format followed by a single byte of value 2
                   &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                 },
-                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                    # that the FFX mode natively supports. This happens before/after
+                    # encryption/decryption.
+                    # Each character listed must appear only once.
+                    # Number of characters must be in the range [2, 95].
+                    # This must be encoded as ASCII.
+                    # The order of characters does not matter.
+                    # The full list of allowed characters is:
+                    # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                    # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -2384,19 +2588,36 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
-                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                    # that the FFX mode natively supports. This happens before/after
-                    # encryption/decryption.
-                    # Each character listed must appear only once.
-                    # Number of characters must be in the range [2, 95].
-                    # This must be encoded as ASCII.
-                    # The order of characters does not matter.
                 &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
               },
               &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                   # input. Outputs a base64 encoded representation of the encrypted output.
                   # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                    # referential integrity such that the same identifier in two different
+                    # contexts will be given a distinct surrogate. The context is appended to
+                    # plaintext value being encrypted. On decryption the provided context is
+                    # validated against the value used during encryption. If a context was
+                    # provided during encryption, same context must be provided during decryption
+                    # as well.
+                    #
+                    # If the context is not set, plaintext would be used as is for encryption.
+                    # If the context is set but:
+                    #
+                    # 1. there is no record present when transforming a given value or
+                    # 2. the field is not present when transforming a given value,
+                    #
+                    # plaintext would be used as is for encryption.
+                    #
+                    # Note that case (1) is expected when an `InfoTypeTransformation` is
+                    # applied to both structured and non-structured `ContentItem`s.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
                 &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                     # This annotation will be applied to the surrogate by prefixing it with
                     # the name of the custom info type followed by the number of
@@ -2432,38 +2653,14 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
-                },
-                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                    # referential integrity such that the same identifier in two different
-                    # contexts will be given a distinct surrogate. The context is appended to
-                    # plaintext value being encrypted. On decryption the provided context is
-                    # validated against the value used during encryption. If a context was
-                    # provided during encryption, same context must be provided during decryption
-                    # as well.
-                    #
-                    # If the context is not set, plaintext would be used as is for encryption.
-                    # If the context is set but:
-                    #
-                    # 1. there is no record present when transforming a given value or
-                    # 2. the field is not present when transforming a given value,
-                    #
-                    # plaintext would be used as is for encryption.
-                    #
-                    # Note that case (1) is expected when an `InfoTypeTransformation` is
-                    # applied to both structured and non-structured `ContentItem`s.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -2481,6 +2678,10 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
               &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -2494,13 +2695,26 @@
                   # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                 &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                   { # Bucket is represented as a range, along with replacement values.
-                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                        # the default behavior will be to hyphenate the min-max range.
+                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                         # Note that for the purposes of inspection or transformation, the number
                         # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -2512,29 +2726,56 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
                       &quot;integerValue&quot;: &quot;A String&quot;, # integer
                       &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                           # or are specified elsewhere. An API may choose to allow leap seconds. Related
                           # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                         &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                             # allow the value 60 if it allows leap-seconds.
                         &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
                       },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                     &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                         # used.
@@ -2543,6 +2784,20 @@
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -2554,269 +2809,20 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                   },
                 ],
               },
-              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                  # output would be &#x27;My phone number is &#x27;.
-              },
-              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                  # Bucketing transformation can provide all of this functionality,
-                  # but requires more configuration. This message is provided as a convenience to
-                  # the user for simple bucketing strategies.
-                  #
-                  # The transformed value will be a hyphenated string of
-                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                  #
-                  # This can be used on data of type: double, long.
-                  #
-                  # If the bound Value type differs from the type of data
-                  # being transformed, we will first attempt converting the type of the data to
-                  # be transformed to match the type of the bound before comparing.
-                  #
-                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                    # grouped together into a single bucket; for example if `upper_bound` = 89,
-                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                    # grouped together into a single bucket; for example if `lower_bound` = 10,
-                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                  # fixed character. Masking can start from the beginning or end of the string.
-                  # This can be used on data of any type (numbers, longs, and so on) and when
-                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                  # type. (This allows you to take a long like 123 and modify it to a string like
-                  # **3.
-                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                    # characters. For example, if the input string is `555-555-5555` and you
-                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                    # returns `***-**5-5555`.
-                  { # Characters to skip when doing deidentification of a value. These will be left
-                      # alone and skipped.
-                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                        # punctuation.
-                  },
-                ],
-                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                    # masked. Skipped characters do not count towards this tally.
-                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                    # code or credit card number. This string must have a length of 1. If not
-                    # supplied, this value defaults to `*` for strings, and `0` for digits.
-                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                    # is `true`, then the string `12345` is masked as `12***`.
-              },
             },
-            &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                # this transformation to apply to all findings that correspond to
-                # infoTypes that were requested in `InspectConfig`.
-              { # Type of information detected by the API.
-                &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                    # creating a CustomInfoType, or one of the names listed
-                    # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                    # a built-in type. InfoType names should conform to the pattern
-                    # `[a-zA-Z0-9_]{1,64}`.
-              },
-            ],
           },
         ],
       },
@@ -2829,25 +2835,103 @@
           # Information about any incompatible transformations, and how they were
           # handled, is returned in the response as part of the
           # `TransformationOverviews`.
-        &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
-        },
         &quot;leaveUntransformed&quot;: { # Skips the data without modifying it if the requested transformation would # Ignore errors
             # cause an error. For example, if a `DateShift` transformation were applied
             # an an IP address, this mode would leave the IP address unchanged in the
             # response.
         },
+        &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
+        },
       },
       &quot;recordTransformations&quot;: { # A type of transformation that is applied over structured data such as a # Treat the dataset as structured. Transformations can be applied to
           # specific locations within structured datasets, such as transforming
           # a column within a table.
           # table.
+        &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
+            # match any suppression rule are omitted from the output.
+          { # Configuration to suppress records whose suppression conditions evaluate to
+              # true.
+            &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
+                # evaluated to be suppressed from the transformed content.
+                # a field.
+              &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
+                &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
+                  &quot;conditions&quot;: [ # A collection of conditions.
+                    { # The field type of `value` and `field` do not need to match to be
+                        # considered equal, but not all comparisons are possible.
+                        # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
+                        # but all other comparisons are invalid with incompatible types.
+                        # A `value` of type:
+                        #
+                        # - `string` can be compared against all other types
+                        # - `boolean` can only be compared against other booleans
+                        # - `integer` can be compared against doubles or a string if the string value
+                        # can be parsed as an integer.
+                        # - `double` can be compared against integers or a string if the string can
+                        # be parsed as a double.
+                        # - `Timestamp` can be compared against strings in RFC 3339 date string
+                        # format.
+                        # - `TimeOfDay` can be compared against timestamps and strings in the format
+                        # of &#x27;HH:mm:ss&#x27;.
+                        #
+                        # If we fail to compare do to type mismatch, a warning will be given and
+                        # the condition will evaluate to false.
+                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      },
+                      &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
+                    },
+                  ],
+                },
+                &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
+                    # only supported value is `AND`.
+              },
+            },
+          },
+        ],
         &quot;fieldTransformations&quot;: [ # Transform the record by applying various field transformations.
           { # The transformation to apply to the field.
-            &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
-              { # General identifier of a data field in a storage service.
-                &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-              },
-            ],
             &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the contents of the field as free text, and selectively
                 # transform content that matches an `InfoType`.
                 # apply various `PrimitiveTransformation`s to each finding, where the
@@ -2857,11 +2941,18 @@
                   # for a given infoType.
                 { # A transformation to apply to text that is identified as a specific
                     # info_type.
-                  &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-                    &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                        # portion of the value.
-                      &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+                  &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                      # this transformation to apply to all findings that correspond to
+                      # infoTypes that were requested in `InspectConfig`.
+                    { # Type of information detected by the API.
+                      &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                          # creating a CustomInfoType, or one of the names listed
+                          # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                          # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                          # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                     },
+                  ],
+                  &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
                     &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                         # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                         # to learn more.
@@ -2875,7 +2966,6 @@
                           # be more than 365250 days (1000 years) each direction.
                           #
                           # For example, 3 means shift date to at most 3 days into the future.
-                      &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                       &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                           # results in the same shift for the same context and crypto_key. If
                           # set, must also set context. Can only be applied to table items.
@@ -2883,10 +2973,6 @@
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -2904,10 +2990,62 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
+                      &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                    },
+                    &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                        # portion of the value.
+                      &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                     },
                     &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                     },
+                    &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                      &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                    },
                     &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                         # Uses SHA-256.
                         # The key size must be either 32 or 64 bytes.
@@ -2920,10 +3058,6 @@
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -2941,8 +3075,152 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
                     },
+                    &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                        # fixed character. Masking can start from the beginning or end of the string.
+                        # This can be used on data of any type (numbers, longs, and so on) and when
+                        # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                        # type. (This allows you to take a long like 123 and modify it to a string like
+                        # **3.
+                      &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                          # characters. For example, if the input string is `555-555-5555` and you
+                          # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                          # returns `***-**5-5555`.
+                        { # Characters to skip when doing deidentification of a value. These will be left
+                            # alone and skipped.
+                          &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                          &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                              # punctuation.
+                        },
+                      ],
+                      &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                          # masked. Skipped characters do not count towards this tally.
+                      &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                          # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                          # code or credit card number. This string must have a length of 1. If not
+                          # supplied, this value defaults to `*` for strings, and `0` for digits.
+                      &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                          # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                          # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                          # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                          # is `true`, then the string `12345` is masked as `12***`.
+                    },
+                    &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                        # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                        # output would be &#x27;My phone number is &#x27;.
+                    },
+                    &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                        # Bucketing transformation can provide all of this functionality,
+                        # but requires more configuration. This message is provided as a convenience to
+                        # the user for simple bucketing strategies.
+                        #
+                        # The transformed value will be a hyphenated string of
+                        # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                        # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                        #
+                        # This can be used on data of type: double, long.
+                        #
+                        # If the bound Value type differs from the type of data
+                        # being transformed, we will first attempt converting the type of the data to
+                        # be transformed to match the type of the bound before comparing.
+                        #
+                        # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                      &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                          # grouped together into a single bucket; for example if `upper_bound` = 89,
+                          # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                          # grouped together into a single bucket; for example if `lower_bound` = 10,
+                          # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                          # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                          # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                          # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                    },
                     &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                         # (FPE) with the FFX mode of operation; however when used in the
                         # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -2968,7 +3246,7 @@
                           #
                           # This annotation identifies the surrogate when inspecting content using the
                           # custom infoType
-                          # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                          # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                           # This facilitates reversal of the surrogate when it occurs in free text.
                           #
                           # In order for inspection to work properly, the name of this infoType must
@@ -2984,9 +3262,10 @@
                         &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                             # creating a CustomInfoType, or one of the names listed
                             # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                            # a built-in type. InfoType names should conform to the pattern
-                            # `[a-zA-Z0-9_]{1,64}`.
+                            # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                            # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                       },
+                      &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                       &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                           # identifier in two different contexts won&#x27;t be given the same surrogate. If
                           # the context is not set, a default tweak will be used.
@@ -3009,16 +3288,21 @@
                           # - a string is encoded in UTF-8 format followed by a single byte of value 2
                         &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                       },
-                      &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                      &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                          # that the FFX mode natively supports. This happens before/after
+                          # encryption/decryption.
+                          # Each character listed must appear only once.
+                          # Number of characters must be in the range [2, 95].
+                          # This must be encoded as ASCII.
+                          # The order of characters does not matter.
+                          # The full list of allowed characters is:
+                          # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                          # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                       &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                           # a key encryption key (KEK) stored by KMS).
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -3036,19 +3320,36 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
-                      &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                          # that the FFX mode natively supports. This happens before/after
-                          # encryption/decryption.
-                          # Each character listed must appear only once.
-                          # Number of characters must be in the range [2, 95].
-                          # This must be encoded as ASCII.
-                          # The order of characters does not matter.
                       &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                     },
                     &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                         # input. Outputs a base64 encoded representation of the encrypted output.
                         # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                      &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                          # referential integrity such that the same identifier in two different
+                          # contexts will be given a distinct surrogate. The context is appended to
+                          # plaintext value being encrypted. On decryption the provided context is
+                          # validated against the value used during encryption. If a context was
+                          # provided during encryption, same context must be provided during decryption
+                          # as well.
+                          #
+                          # If the context is not set, plaintext would be used as is for encryption.
+                          # If the context is set but:
+                          #
+                          # 1. there is no record present when transforming a given value or
+                          # 2. the field is not present when transforming a given value,
+                          #
+                          # plaintext would be used as is for encryption.
+                          #
+                          # Note that case (1) is expected when an `InfoTypeTransformation` is
+                          # applied to both structured and non-structured `ContentItem`s.
+                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      },
                       &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                           # This annotation will be applied to the surrogate by prefixing it with
                           # the name of the custom info type followed by the number of
@@ -3084,38 +3385,14 @@
                         &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                             # creating a CustomInfoType, or one of the names listed
                             # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                            # a built-in type. InfoType names should conform to the pattern
-                            # `[a-zA-Z0-9_]{1,64}`.
-                      },
-                      &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                          # referential integrity such that the same identifier in two different
-                          # contexts will be given a distinct surrogate. The context is appended to
-                          # plaintext value being encrypted. On decryption the provided context is
-                          # validated against the value used during encryption. If a context was
-                          # provided during encryption, same context must be provided during decryption
-                          # as well.
-                          #
-                          # If the context is not set, plaintext would be used as is for encryption.
-                          # If the context is set but:
-                          #
-                          # 1. there is no record present when transforming a given value or
-                          # 2. the field is not present when transforming a given value,
-                          #
-                          # plaintext would be used as is for encryption.
-                          #
-                          # Note that case (1) is expected when an `InfoTypeTransformation` is
-                          # applied to both structured and non-structured `ContentItem`s.
-                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                            # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                            # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                       },
                       &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                           # a key encryption key (KEK) stored by KMS).
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -3133,6 +3410,10 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
                     },
                     &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -3146,13 +3427,26 @@
                         # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                       &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                         { # Bucket is represented as a range, along with replacement values.
-                          &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                              # the default behavior will be to hyphenate the min-max range.
+                          &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                               # Note that for the purposes of inspection or transformation, the number
                               # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                               # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                               # 123456789, the number of bytes would be counted as 9, even though an
                               # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
                             &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                             &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                 # and time zone are either specified elsewhere or are not significant. The date
@@ -3164,29 +3458,56 @@
                                 # * A year and month value, with a zero day, e.g. a credit card expiration date
                                 #
                                 # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
                               &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                   # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
                               &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                   # if specifying a year by itself or a year and month where the day is not
                                   # significant.
                             },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;booleanValue&quot;: True or False, # boolean
+                          },
+                          &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                              # Note that for the purposes of inspection or transformation, the number
+                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                              # 123456789, the number of bytes would be counted as 9, even though an
+                              # int64 only holds up to 8 bytes of data.
                             &quot;integerValue&quot;: &quot;A String&quot;, # integer
                             &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                                 # or are specified elsewhere. An API may choose to allow leap seconds. Related
                                 # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                               &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                                   # allow the value 60 if it allows leap-seconds.
                               &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                # and time zone are either specified elsewhere or are not significant. The date
+                                # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                #
+                                # * A full date, with non-zero year, month and day values
+                                # * A month and day value, with a zero year, e.g. an anniversary
+                                # * A year on its own, with zero month and day values
+                                # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                #
+                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                  # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
+                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                  # if specifying a year by itself or a year and month where the day is not
+                                  # significant.
                             },
                             &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           },
                           &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                               # used.
@@ -3195,6 +3516,20 @@
                               # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                               # 123456789, the number of bytes would be counted as 9, even though an
                               # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
                             &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                             &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                 # and time zone are either specified elsewhere or are not significant. The date
@@ -3206,277 +3541,24 @@
                                 # * A year and month value, with a zero day, e.g. a credit card expiration date
                                 #
                                 # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
                               &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                   # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
                               &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                   # if specifying a year by itself or a year and month where the day is not
                                   # significant.
                             },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
                             &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          },
-                          &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                              # Note that for the purposes of inspection or transformation, the number
-                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                              # 123456789, the number of bytes would be counted as 9, even though an
-                              # int64 only holds up to 8 bytes of data.
-                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                # and time zone are either specified elsewhere or are not significant. The date
-                                # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                #
-                                # * A full date, with non-zero year, month and day values
-                                # * A month and day value, with a zero year, e.g. an anniversary
-                                # * A year on its own, with zero month and day values
-                                # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                #
-                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
-                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                  # month and day.
-                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                  # if specifying a year by itself or a year and month where the day is not
-                                  # significant.
-                            },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
-                            &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           },
                         },
                       ],
                     },
-                    &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                        # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                        # output would be &#x27;My phone number is &#x27;.
-                    },
-                    &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                      &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                    },
-                    &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                        # Bucketing transformation can provide all of this functionality,
-                        # but requires more configuration. This message is provided as a convenience to
-                        # the user for simple bucketing strategies.
-                        #
-                        # The transformed value will be a hyphenated string of
-                        # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                        # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                        #
-                        # This can be used on data of type: double, long.
-                        #
-                        # If the bound Value type differs from the type of data
-                        # being transformed, we will first attempt converting the type of the data to
-                        # be transformed to match the type of the bound before comparing.
-                        #
-                        # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                      &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                          # grouped together into a single bucket; for example if `upper_bound` = 89,
-                          # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                          # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                          # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                          # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                      &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                          # grouped together into a single bucket; for example if `lower_bound` = 10,
-                          # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                    },
-                    &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                        # fixed character. Masking can start from the beginning or end of the string.
-                        # This can be used on data of any type (numbers, longs, and so on) and when
-                        # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                        # type. (This allows you to take a long like 123 and modify it to a string like
-                        # **3.
-                      &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                          # characters. For example, if the input string is `555-555-5555` and you
-                          # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                          # returns `***-**5-5555`.
-                        { # Characters to skip when doing deidentification of a value. These will be left
-                            # alone and skipped.
-                          &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                          &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                              # punctuation.
-                        },
-                      ],
-                      &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                          # masked. Skipped characters do not count towards this tally.
-                      &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                          # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                          # code or credit card number. This string must have a length of 1. If not
-                          # supplied, this value defaults to `*` for strings, and `0` for digits.
-                      &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                          # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                          # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                          # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                          # is `true`, then the string `12345` is masked as `12***`.
-                    },
                   },
-                  &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                      # this transformation to apply to all findings that correspond to
-                      # infoTypes that were requested in `InspectConfig`.
-                    { # Type of information detected by the API.
-                      &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                          # creating a CustomInfoType, or one of the names listed
-                          # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                          # a built-in type. InfoType names should conform to the pattern
-                          # `[a-zA-Z0-9_]{1,64}`.
-                    },
-                  ],
                 },
               ],
             },
             &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Apply the transformation to the entire field.
-              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                  # portion of the value.
-                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
-              },
               &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                   # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                   # to learn more.
@@ -3490,7 +3572,6 @@
                     # be more than 365250 days (1000 years) each direction.
                     #
                     # For example, 3 means shift date to at most 3 days into the future.
-                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                     # results in the same shift for the same context and crypto_key. If
                     # set, must also set context. Can only be applied to table items.
@@ -3498,10 +3579,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -3519,10 +3596,62 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
+                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+              },
+              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                  # portion of the value.
+                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
               },
               &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
               },
+              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+              },
               &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                   # Uses SHA-256.
                   # The key size must be either 32 or 64 bytes.
@@ -3535,10 +3664,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -3556,8 +3681,152 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
+              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                  # fixed character. Masking can start from the beginning or end of the string.
+                  # This can be used on data of any type (numbers, longs, and so on) and when
+                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                  # type. (This allows you to take a long like 123 and modify it to a string like
+                  # **3.
+                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                    # characters. For example, if the input string is `555-555-5555` and you
+                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                    # returns `***-**5-5555`.
+                  { # Characters to skip when doing deidentification of a value. These will be left
+                      # alone and skipped.
+                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                        # punctuation.
+                  },
+                ],
+                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                    # masked. Skipped characters do not count towards this tally.
+                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                    # code or credit card number. This string must have a length of 1. If not
+                    # supplied, this value defaults to `*` for strings, and `0` for digits.
+                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                    # is `true`, then the string `12345` is masked as `12***`.
+              },
+              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                  # output would be &#x27;My phone number is &#x27;.
+              },
+              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                  # Bucketing transformation can provide all of this functionality,
+                  # but requires more configuration. This message is provided as a convenience to
+                  # the user for simple bucketing strategies.
+                  #
+                  # The transformed value will be a hyphenated string of
+                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                  #
+                  # This can be used on data of type: double, long.
+                  #
+                  # If the bound Value type differs from the type of data
+                  # being transformed, we will first attempt converting the type of the data to
+                  # be transformed to match the type of the bound before comparing.
+                  #
+                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                    # grouped together into a single bucket; for example if `upper_bound` = 89,
+                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                    # grouped together into a single bucket; for example if `lower_bound` = 10,
+                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+              },
               &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                   # (FPE) with the FFX mode of operation; however when used in the
                   # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -3583,7 +3852,7 @@
                     #
                     # This annotation identifies the surrogate when inspecting content using the
                     # custom infoType
-                    # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                    # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                     # This facilitates reversal of the surrogate when it occurs in free text.
                     #
                     # In order for inspection to work properly, the name of this infoType must
@@ -3599,9 +3868,10 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
+                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                 &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                     # identifier in two different contexts won&#x27;t be given the same surrogate. If
                     # the context is not set, a default tweak will be used.
@@ -3624,16 +3894,21 @@
                     # - a string is encoded in UTF-8 format followed by a single byte of value 2
                   &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                 },
-                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                    # that the FFX mode natively supports. This happens before/after
+                    # encryption/decryption.
+                    # Each character listed must appear only once.
+                    # Number of characters must be in the range [2, 95].
+                    # This must be encoded as ASCII.
+                    # The order of characters does not matter.
+                    # The full list of allowed characters is:
+                    # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                    # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -3651,19 +3926,36 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
-                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                    # that the FFX mode natively supports. This happens before/after
-                    # encryption/decryption.
-                    # Each character listed must appear only once.
-                    # Number of characters must be in the range [2, 95].
-                    # This must be encoded as ASCII.
-                    # The order of characters does not matter.
                 &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
               },
               &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                   # input. Outputs a base64 encoded representation of the encrypted output.
                   # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                    # referential integrity such that the same identifier in two different
+                    # contexts will be given a distinct surrogate. The context is appended to
+                    # plaintext value being encrypted. On decryption the provided context is
+                    # validated against the value used during encryption. If a context was
+                    # provided during encryption, same context must be provided during decryption
+                    # as well.
+                    #
+                    # If the context is not set, plaintext would be used as is for encryption.
+                    # If the context is set but:
+                    #
+                    # 1. there is no record present when transforming a given value or
+                    # 2. the field is not present when transforming a given value,
+                    #
+                    # plaintext would be used as is for encryption.
+                    #
+                    # Note that case (1) is expected when an `InfoTypeTransformation` is
+                    # applied to both structured and non-structured `ContentItem`s.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
                 &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                     # This annotation will be applied to the surrogate by prefixing it with
                     # the name of the custom info type followed by the number of
@@ -3699,38 +3991,14 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
-                },
-                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                    # referential integrity such that the same identifier in two different
-                    # contexts will be given a distinct surrogate. The context is appended to
-                    # plaintext value being encrypted. On decryption the provided context is
-                    # validated against the value used during encryption. If a context was
-                    # provided during encryption, same context must be provided during decryption
-                    # as well.
-                    #
-                    # If the context is not set, plaintext would be used as is for encryption.
-                    # If the context is set but:
-                    #
-                    # 1. there is no record present when transforming a given value or
-                    # 2. the field is not present when transforming a given value,
-                    #
-                    # plaintext would be used as is for encryption.
-                    #
-                    # Note that case (1) is expected when an `InfoTypeTransformation` is
-                    # applied to both structured and non-structured `ContentItem`s.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -3748,6 +4016,10 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
               &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -3761,13 +4033,26 @@
                   # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                 &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                   { # Bucket is represented as a range, along with replacement values.
-                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                        # the default behavior will be to hyphenate the min-max range.
+                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                         # Note that for the purposes of inspection or transformation, the number
                         # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -3779,29 +4064,56 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
                       &quot;integerValue&quot;: &quot;A String&quot;, # integer
                       &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                           # or are specified elsewhere. An API may choose to allow leap seconds. Related
                           # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                         &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                             # allow the value 60 if it allows leap-seconds.
                         &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
                       },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                     &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                         # used.
@@ -3810,6 +4122,20 @@
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -3821,257 +4147,19 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                   },
                 ],
               },
-              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                  # output would be &#x27;My phone number is &#x27;.
-              },
-              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                  # Bucketing transformation can provide all of this functionality,
-                  # but requires more configuration. This message is provided as a convenience to
-                  # the user for simple bucketing strategies.
-                  #
-                  # The transformed value will be a hyphenated string of
-                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                  #
-                  # This can be used on data of type: double, long.
-                  #
-                  # If the bound Value type differs from the type of data
-                  # being transformed, we will first attempt converting the type of the data to
-                  # be transformed to match the type of the bound before comparing.
-                  #
-                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                    # grouped together into a single bucket; for example if `upper_bound` = 89,
-                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                    # grouped together into a single bucket; for example if `lower_bound` = 10,
-                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                  # fixed character. Masking can start from the beginning or end of the string.
-                  # This can be used on data of any type (numbers, longs, and so on) and when
-                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                  # type. (This allows you to take a long like 123 and modify it to a string like
-                  # **3.
-                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                    # characters. For example, if the input string is `555-555-5555` and you
-                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                    # returns `***-**5-5555`.
-                  { # Characters to skip when doing deidentification of a value. These will be left
-                      # alone and skipped.
-                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                        # punctuation.
-                  },
-                ],
-                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                    # masked. Skipped characters do not count towards this tally.
-                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                    # code or credit card number. This string must have a length of 1. If not
-                    # supplied, this value defaults to `*` for strings, and `0` for digits.
-                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                    # is `true`, then the string `12345` is masked as `12***`.
-              },
             },
             &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # Only apply the transformation if the condition evaluates to true for the
                 # given `RecordCondition`. The conditions are allowed to reference fields
@@ -4084,8 +4172,6 @@
                 # - Redact a field if the date of birth field is greater than 85.
                 # a field.
               &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
-                &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
-                    # only supported value is `AND`.
                 &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
                   &quot;conditions&quot;: [ # A collection of conditions.
                     { # The field type of `value` and `field` do not need to match to be
@@ -4107,12 +4193,29 @@
                         #
                         # If we fail to compare do to type mismatch, a warning will be given and
                         # the condition will evaluate to false.
+                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      },
                       &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
                           # Note that for the purposes of inspection or transformation, the number
                           # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -4124,126 +4227,37 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                       },
                       &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                     },
                   ],
                 },
-              },
-            },
-          },
-        ],
-        &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
-            # match any suppression rule are omitted from the output.
-          { # Configuration to suppress records whose suppression conditions evaluate to
-              # true.
-            &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
-                # evaluated to be suppressed from the transformed content.
-                # a field.
-              &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
                 &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
                     # only supported value is `AND`.
-                &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
-                  &quot;conditions&quot;: [ # A collection of conditions.
-                    { # The field type of `value` and `field` do not need to match to be
-                        # considered equal, but not all comparisons are possible.
-                        # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
-                        # but all other comparisons are invalid with incompatible types.
-                        # A `value` of type:
-                        #
-                        # - `string` can be compared against all other types
-                        # - `boolean` can only be compared against other booleans
-                        # - `integer` can be compared against doubles or a string if the string value
-                        # can be parsed as an integer.
-                        # - `double` can be compared against integers or a string if the string can
-                        # be parsed as a double.
-                        # - `Timestamp` can be compared against strings in RFC 3339 date string
-                        # format.
-                        # - `TimeOfDay` can be compared against timestamps and strings in the format
-                        # of &#x27;HH:mm:ss&#x27;.
-                        #
-                        # If we fail to compare do to type mismatch, a warning will be given and
-                        # the condition will evaluate to false.
-                      &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                      },
-                      &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
-                    },
-                  ],
-                },
               },
             },
+            &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
+              { # General identifier of a data field in a storage service.
+                &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+              },
+            ],
           },
         ],
       },
     },
+    &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
+    &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
+    &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
+    &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
   }</pre>
 </div>
 
@@ -4302,10 +4316,6 @@
         # The template will have one of the following formats:
         # `projects/PROJECT_ID/deidentifyTemplates/TEMPLATE_ID` OR
         # `organizations/ORGANIZATION_ID/deidentifyTemplates/TEMPLATE_ID`
-    &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
-    &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
-    &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
-    &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
     &quot;deidentifyConfig&quot;: { # The configuration that controls how the data will change. # ///////////// // The core content of the template  // ///////////////
       &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the dataset as free-form text and apply the same free text
           # transformation everywhere.
@@ -4316,11 +4326,18 @@
             # for a given infoType.
           { # A transformation to apply to text that is identified as a specific
               # info_type.
-            &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                  # portion of the value.
-                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+            &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                # this transformation to apply to all findings that correspond to
+                # infoTypes that were requested in `InspectConfig`.
+              { # Type of information detected by the API.
+                &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                    # creating a CustomInfoType, or one of the names listed
+                    # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                    # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                    # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
               },
+            ],
+            &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
               &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                   # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                   # to learn more.
@@ -4334,7 +4351,6 @@
                     # be more than 365250 days (1000 years) each direction.
                     #
                     # For example, 3 means shift date to at most 3 days into the future.
-                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                     # results in the same shift for the same context and crypto_key. If
                     # set, must also set context. Can only be applied to table items.
@@ -4342,10 +4358,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -4363,10 +4375,62 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
+                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+              },
+              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                  # portion of the value.
+                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
               },
               &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
               },
+              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+              },
               &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                   # Uses SHA-256.
                   # The key size must be either 32 or 64 bytes.
@@ -4379,10 +4443,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -4400,8 +4460,152 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
+              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                  # fixed character. Masking can start from the beginning or end of the string.
+                  # This can be used on data of any type (numbers, longs, and so on) and when
+                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                  # type. (This allows you to take a long like 123 and modify it to a string like
+                  # **3.
+                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                    # characters. For example, if the input string is `555-555-5555` and you
+                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                    # returns `***-**5-5555`.
+                  { # Characters to skip when doing deidentification of a value. These will be left
+                      # alone and skipped.
+                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                        # punctuation.
+                  },
+                ],
+                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                    # masked. Skipped characters do not count towards this tally.
+                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                    # code or credit card number. This string must have a length of 1. If not
+                    # supplied, this value defaults to `*` for strings, and `0` for digits.
+                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                    # is `true`, then the string `12345` is masked as `12***`.
+              },
+              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                  # output would be &#x27;My phone number is &#x27;.
+              },
+              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                  # Bucketing transformation can provide all of this functionality,
+                  # but requires more configuration. This message is provided as a convenience to
+                  # the user for simple bucketing strategies.
+                  #
+                  # The transformed value will be a hyphenated string of
+                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                  #
+                  # This can be used on data of type: double, long.
+                  #
+                  # If the bound Value type differs from the type of data
+                  # being transformed, we will first attempt converting the type of the data to
+                  # be transformed to match the type of the bound before comparing.
+                  #
+                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                    # grouped together into a single bucket; for example if `upper_bound` = 89,
+                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                    # grouped together into a single bucket; for example if `lower_bound` = 10,
+                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+              },
               &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                   # (FPE) with the FFX mode of operation; however when used in the
                   # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -4427,7 +4631,7 @@
                     #
                     # This annotation identifies the surrogate when inspecting content using the
                     # custom infoType
-                    # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                    # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                     # This facilitates reversal of the surrogate when it occurs in free text.
                     #
                     # In order for inspection to work properly, the name of this infoType must
@@ -4443,9 +4647,10 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
+                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                 &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                     # identifier in two different contexts won&#x27;t be given the same surrogate. If
                     # the context is not set, a default tweak will be used.
@@ -4468,16 +4673,21 @@
                     # - a string is encoded in UTF-8 format followed by a single byte of value 2
                   &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                 },
-                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                    # that the FFX mode natively supports. This happens before/after
+                    # encryption/decryption.
+                    # Each character listed must appear only once.
+                    # Number of characters must be in the range [2, 95].
+                    # This must be encoded as ASCII.
+                    # The order of characters does not matter.
+                    # The full list of allowed characters is:
+                    # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                    # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -4495,19 +4705,36 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
-                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                    # that the FFX mode natively supports. This happens before/after
-                    # encryption/decryption.
-                    # Each character listed must appear only once.
-                    # Number of characters must be in the range [2, 95].
-                    # This must be encoded as ASCII.
-                    # The order of characters does not matter.
                 &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
               },
               &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                   # input. Outputs a base64 encoded representation of the encrypted output.
                   # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                    # referential integrity such that the same identifier in two different
+                    # contexts will be given a distinct surrogate. The context is appended to
+                    # plaintext value being encrypted. On decryption the provided context is
+                    # validated against the value used during encryption. If a context was
+                    # provided during encryption, same context must be provided during decryption
+                    # as well.
+                    #
+                    # If the context is not set, plaintext would be used as is for encryption.
+                    # If the context is set but:
+                    #
+                    # 1. there is no record present when transforming a given value or
+                    # 2. the field is not present when transforming a given value,
+                    #
+                    # plaintext would be used as is for encryption.
+                    #
+                    # Note that case (1) is expected when an `InfoTypeTransformation` is
+                    # applied to both structured and non-structured `ContentItem`s.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
                 &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                     # This annotation will be applied to the surrogate by prefixing it with
                     # the name of the custom info type followed by the number of
@@ -4543,38 +4770,14 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
-                },
-                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                    # referential integrity such that the same identifier in two different
-                    # contexts will be given a distinct surrogate. The context is appended to
-                    # plaintext value being encrypted. On decryption the provided context is
-                    # validated against the value used during encryption. If a context was
-                    # provided during encryption, same context must be provided during decryption
-                    # as well.
-                    #
-                    # If the context is not set, plaintext would be used as is for encryption.
-                    # If the context is set but:
-                    #
-                    # 1. there is no record present when transforming a given value or
-                    # 2. the field is not present when transforming a given value,
-                    #
-                    # plaintext would be used as is for encryption.
-                    #
-                    # Note that case (1) is expected when an `InfoTypeTransformation` is
-                    # applied to both structured and non-structured `ContentItem`s.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -4592,6 +4795,10 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
               &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -4605,13 +4812,26 @@
                   # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                 &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                   { # Bucket is represented as a range, along with replacement values.
-                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                        # the default behavior will be to hyphenate the min-max range.
+                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                         # Note that for the purposes of inspection or transformation, the number
                         # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -4623,29 +4843,56 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
                       &quot;integerValue&quot;: &quot;A String&quot;, # integer
                       &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                           # or are specified elsewhere. An API may choose to allow leap seconds. Related
                           # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                         &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                             # allow the value 60 if it allows leap-seconds.
                         &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
                       },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                     &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                         # used.
@@ -4654,6 +4901,20 @@
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -4665,269 +4926,20 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                   },
                 ],
               },
-              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                  # output would be &#x27;My phone number is &#x27;.
-              },
-              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                  # Bucketing transformation can provide all of this functionality,
-                  # but requires more configuration. This message is provided as a convenience to
-                  # the user for simple bucketing strategies.
-                  #
-                  # The transformed value will be a hyphenated string of
-                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                  #
-                  # This can be used on data of type: double, long.
-                  #
-                  # If the bound Value type differs from the type of data
-                  # being transformed, we will first attempt converting the type of the data to
-                  # be transformed to match the type of the bound before comparing.
-                  #
-                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                    # grouped together into a single bucket; for example if `upper_bound` = 89,
-                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                    # grouped together into a single bucket; for example if `lower_bound` = 10,
-                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                  # fixed character. Masking can start from the beginning or end of the string.
-                  # This can be used on data of any type (numbers, longs, and so on) and when
-                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                  # type. (This allows you to take a long like 123 and modify it to a string like
-                  # **3.
-                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                    # characters. For example, if the input string is `555-555-5555` and you
-                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                    # returns `***-**5-5555`.
-                  { # Characters to skip when doing deidentification of a value. These will be left
-                      # alone and skipped.
-                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                        # punctuation.
-                  },
-                ],
-                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                    # masked. Skipped characters do not count towards this tally.
-                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                    # code or credit card number. This string must have a length of 1. If not
-                    # supplied, this value defaults to `*` for strings, and `0` for digits.
-                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                    # is `true`, then the string `12345` is masked as `12***`.
-              },
             },
-            &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                # this transformation to apply to all findings that correspond to
-                # infoTypes that were requested in `InspectConfig`.
-              { # Type of information detected by the API.
-                &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                    # creating a CustomInfoType, or one of the names listed
-                    # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                    # a built-in type. InfoType names should conform to the pattern
-                    # `[a-zA-Z0-9_]{1,64}`.
-              },
-            ],
           },
         ],
       },
@@ -4940,25 +4952,103 @@
           # Information about any incompatible transformations, and how they were
           # handled, is returned in the response as part of the
           # `TransformationOverviews`.
-        &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
-        },
         &quot;leaveUntransformed&quot;: { # Skips the data without modifying it if the requested transformation would # Ignore errors
             # cause an error. For example, if a `DateShift` transformation were applied
             # an an IP address, this mode would leave the IP address unchanged in the
             # response.
         },
+        &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
+        },
       },
       &quot;recordTransformations&quot;: { # A type of transformation that is applied over structured data such as a # Treat the dataset as structured. Transformations can be applied to
           # specific locations within structured datasets, such as transforming
           # a column within a table.
           # table.
+        &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
+            # match any suppression rule are omitted from the output.
+          { # Configuration to suppress records whose suppression conditions evaluate to
+              # true.
+            &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
+                # evaluated to be suppressed from the transformed content.
+                # a field.
+              &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
+                &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
+                  &quot;conditions&quot;: [ # A collection of conditions.
+                    { # The field type of `value` and `field` do not need to match to be
+                        # considered equal, but not all comparisons are possible.
+                        # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
+                        # but all other comparisons are invalid with incompatible types.
+                        # A `value` of type:
+                        #
+                        # - `string` can be compared against all other types
+                        # - `boolean` can only be compared against other booleans
+                        # - `integer` can be compared against doubles or a string if the string value
+                        # can be parsed as an integer.
+                        # - `double` can be compared against integers or a string if the string can
+                        # be parsed as a double.
+                        # - `Timestamp` can be compared against strings in RFC 3339 date string
+                        # format.
+                        # - `TimeOfDay` can be compared against timestamps and strings in the format
+                        # of &#x27;HH:mm:ss&#x27;.
+                        #
+                        # If we fail to compare do to type mismatch, a warning will be given and
+                        # the condition will evaluate to false.
+                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      },
+                      &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
+                    },
+                  ],
+                },
+                &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
+                    # only supported value is `AND`.
+              },
+            },
+          },
+        ],
         &quot;fieldTransformations&quot;: [ # Transform the record by applying various field transformations.
           { # The transformation to apply to the field.
-            &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
-              { # General identifier of a data field in a storage service.
-                &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-              },
-            ],
             &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the contents of the field as free text, and selectively
                 # transform content that matches an `InfoType`.
                 # apply various `PrimitiveTransformation`s to each finding, where the
@@ -4968,11 +5058,18 @@
                   # for a given infoType.
                 { # A transformation to apply to text that is identified as a specific
                     # info_type.
-                  &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-                    &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                        # portion of the value.
-                      &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+                  &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                      # this transformation to apply to all findings that correspond to
+                      # infoTypes that were requested in `InspectConfig`.
+                    { # Type of information detected by the API.
+                      &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                          # creating a CustomInfoType, or one of the names listed
+                          # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                          # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                          # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                     },
+                  ],
+                  &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
                     &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                         # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                         # to learn more.
@@ -4986,7 +5083,6 @@
                           # be more than 365250 days (1000 years) each direction.
                           #
                           # For example, 3 means shift date to at most 3 days into the future.
-                      &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                       &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                           # results in the same shift for the same context and crypto_key. If
                           # set, must also set context. Can only be applied to table items.
@@ -4994,10 +5090,6 @@
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -5015,10 +5107,62 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
+                      &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                    },
+                    &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                        # portion of the value.
+                      &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                     },
                     &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                     },
+                    &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                      &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                    },
                     &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                         # Uses SHA-256.
                         # The key size must be either 32 or 64 bytes.
@@ -5031,10 +5175,6 @@
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -5052,8 +5192,152 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
                     },
+                    &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                        # fixed character. Masking can start from the beginning or end of the string.
+                        # This can be used on data of any type (numbers, longs, and so on) and when
+                        # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                        # type. (This allows you to take a long like 123 and modify it to a string like
+                        # **3.
+                      &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                          # characters. For example, if the input string is `555-555-5555` and you
+                          # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                          # returns `***-**5-5555`.
+                        { # Characters to skip when doing deidentification of a value. These will be left
+                            # alone and skipped.
+                          &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                          &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                              # punctuation.
+                        },
+                      ],
+                      &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                          # masked. Skipped characters do not count towards this tally.
+                      &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                          # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                          # code or credit card number. This string must have a length of 1. If not
+                          # supplied, this value defaults to `*` for strings, and `0` for digits.
+                      &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                          # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                          # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                          # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                          # is `true`, then the string `12345` is masked as `12***`.
+                    },
+                    &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                        # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                        # output would be &#x27;My phone number is &#x27;.
+                    },
+                    &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                        # Bucketing transformation can provide all of this functionality,
+                        # but requires more configuration. This message is provided as a convenience to
+                        # the user for simple bucketing strategies.
+                        #
+                        # The transformed value will be a hyphenated string of
+                        # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                        # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                        #
+                        # This can be used on data of type: double, long.
+                        #
+                        # If the bound Value type differs from the type of data
+                        # being transformed, we will first attempt converting the type of the data to
+                        # be transformed to match the type of the bound before comparing.
+                        #
+                        # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                      &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                          # grouped together into a single bucket; for example if `upper_bound` = 89,
+                          # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                          # grouped together into a single bucket; for example if `lower_bound` = 10,
+                          # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                          # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                          # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                          # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                    },
                     &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                         # (FPE) with the FFX mode of operation; however when used in the
                         # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -5079,7 +5363,7 @@
                           #
                           # This annotation identifies the surrogate when inspecting content using the
                           # custom infoType
-                          # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                          # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                           # This facilitates reversal of the surrogate when it occurs in free text.
                           #
                           # In order for inspection to work properly, the name of this infoType must
@@ -5095,9 +5379,10 @@
                         &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                             # creating a CustomInfoType, or one of the names listed
                             # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                            # a built-in type. InfoType names should conform to the pattern
-                            # `[a-zA-Z0-9_]{1,64}`.
+                            # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                            # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                       },
+                      &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                       &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                           # identifier in two different contexts won&#x27;t be given the same surrogate. If
                           # the context is not set, a default tweak will be used.
@@ -5120,16 +5405,21 @@
                           # - a string is encoded in UTF-8 format followed by a single byte of value 2
                         &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                       },
-                      &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                      &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                          # that the FFX mode natively supports. This happens before/after
+                          # encryption/decryption.
+                          # Each character listed must appear only once.
+                          # Number of characters must be in the range [2, 95].
+                          # This must be encoded as ASCII.
+                          # The order of characters does not matter.
+                          # The full list of allowed characters is:
+                          # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                          # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                       &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                           # a key encryption key (KEK) stored by KMS).
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -5147,19 +5437,36 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
-                      &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                          # that the FFX mode natively supports. This happens before/after
-                          # encryption/decryption.
-                          # Each character listed must appear only once.
-                          # Number of characters must be in the range [2, 95].
-                          # This must be encoded as ASCII.
-                          # The order of characters does not matter.
                       &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                     },
                     &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                         # input. Outputs a base64 encoded representation of the encrypted output.
                         # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                      &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                          # referential integrity such that the same identifier in two different
+                          # contexts will be given a distinct surrogate. The context is appended to
+                          # plaintext value being encrypted. On decryption the provided context is
+                          # validated against the value used during encryption. If a context was
+                          # provided during encryption, same context must be provided during decryption
+                          # as well.
+                          #
+                          # If the context is not set, plaintext would be used as is for encryption.
+                          # If the context is set but:
+                          #
+                          # 1. there is no record present when transforming a given value or
+                          # 2. the field is not present when transforming a given value,
+                          #
+                          # plaintext would be used as is for encryption.
+                          #
+                          # Note that case (1) is expected when an `InfoTypeTransformation` is
+                          # applied to both structured and non-structured `ContentItem`s.
+                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      },
                       &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                           # This annotation will be applied to the surrogate by prefixing it with
                           # the name of the custom info type followed by the number of
@@ -5195,38 +5502,14 @@
                         &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                             # creating a CustomInfoType, or one of the names listed
                             # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                            # a built-in type. InfoType names should conform to the pattern
-                            # `[a-zA-Z0-9_]{1,64}`.
-                      },
-                      &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                          # referential integrity such that the same identifier in two different
-                          # contexts will be given a distinct surrogate. The context is appended to
-                          # plaintext value being encrypted. On decryption the provided context is
-                          # validated against the value used during encryption. If a context was
-                          # provided during encryption, same context must be provided during decryption
-                          # as well.
-                          #
-                          # If the context is not set, plaintext would be used as is for encryption.
-                          # If the context is set but:
-                          #
-                          # 1. there is no record present when transforming a given value or
-                          # 2. the field is not present when transforming a given value,
-                          #
-                          # plaintext would be used as is for encryption.
-                          #
-                          # Note that case (1) is expected when an `InfoTypeTransformation` is
-                          # applied to both structured and non-structured `ContentItem`s.
-                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                            # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                            # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                       },
                       &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                           # a key encryption key (KEK) stored by KMS).
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -5244,6 +5527,10 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
                     },
                     &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -5257,13 +5544,26 @@
                         # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                       &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                         { # Bucket is represented as a range, along with replacement values.
-                          &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                              # the default behavior will be to hyphenate the min-max range.
+                          &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                               # Note that for the purposes of inspection or transformation, the number
                               # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                               # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                               # 123456789, the number of bytes would be counted as 9, even though an
                               # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
                             &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                             &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                 # and time zone are either specified elsewhere or are not significant. The date
@@ -5275,29 +5575,56 @@
                                 # * A year and month value, with a zero day, e.g. a credit card expiration date
                                 #
                                 # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
                               &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                   # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
                               &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                   # if specifying a year by itself or a year and month where the day is not
                                   # significant.
                             },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;booleanValue&quot;: True or False, # boolean
+                          },
+                          &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                              # Note that for the purposes of inspection or transformation, the number
+                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                              # 123456789, the number of bytes would be counted as 9, even though an
+                              # int64 only holds up to 8 bytes of data.
                             &quot;integerValue&quot;: &quot;A String&quot;, # integer
                             &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                                 # or are specified elsewhere. An API may choose to allow leap seconds. Related
                                 # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                               &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                                   # allow the value 60 if it allows leap-seconds.
                               &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                # and time zone are either specified elsewhere or are not significant. The date
+                                # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                #
+                                # * A full date, with non-zero year, month and day values
+                                # * A month and day value, with a zero year, e.g. an anniversary
+                                # * A year on its own, with zero month and day values
+                                # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                #
+                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                  # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
+                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                  # if specifying a year by itself or a year and month where the day is not
+                                  # significant.
                             },
                             &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           },
                           &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                               # used.
@@ -5306,6 +5633,20 @@
                               # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                               # 123456789, the number of bytes would be counted as 9, even though an
                               # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
                             &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                             &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                 # and time zone are either specified elsewhere or are not significant. The date
@@ -5317,277 +5658,24 @@
                                 # * A year and month value, with a zero day, e.g. a credit card expiration date
                                 #
                                 # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
                               &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                   # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
                               &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                   # if specifying a year by itself or a year and month where the day is not
                                   # significant.
                             },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
                             &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          },
-                          &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                              # Note that for the purposes of inspection or transformation, the number
-                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                              # 123456789, the number of bytes would be counted as 9, even though an
-                              # int64 only holds up to 8 bytes of data.
-                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                # and time zone are either specified elsewhere or are not significant. The date
-                                # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                #
-                                # * A full date, with non-zero year, month and day values
-                                # * A month and day value, with a zero year, e.g. an anniversary
-                                # * A year on its own, with zero month and day values
-                                # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                #
-                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
-                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                  # month and day.
-                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                  # if specifying a year by itself or a year and month where the day is not
-                                  # significant.
-                            },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
-                            &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           },
                         },
                       ],
                     },
-                    &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                        # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                        # output would be &#x27;My phone number is &#x27;.
-                    },
-                    &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                      &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                    },
-                    &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                        # Bucketing transformation can provide all of this functionality,
-                        # but requires more configuration. This message is provided as a convenience to
-                        # the user for simple bucketing strategies.
-                        #
-                        # The transformed value will be a hyphenated string of
-                        # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                        # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                        #
-                        # This can be used on data of type: double, long.
-                        #
-                        # If the bound Value type differs from the type of data
-                        # being transformed, we will first attempt converting the type of the data to
-                        # be transformed to match the type of the bound before comparing.
-                        #
-                        # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                      &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                          # grouped together into a single bucket; for example if `upper_bound` = 89,
-                          # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                          # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                          # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                          # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                      &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                          # grouped together into a single bucket; for example if `lower_bound` = 10,
-                          # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                    },
-                    &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                        # fixed character. Masking can start from the beginning or end of the string.
-                        # This can be used on data of any type (numbers, longs, and so on) and when
-                        # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                        # type. (This allows you to take a long like 123 and modify it to a string like
-                        # **3.
-                      &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                          # characters. For example, if the input string is `555-555-5555` and you
-                          # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                          # returns `***-**5-5555`.
-                        { # Characters to skip when doing deidentification of a value. These will be left
-                            # alone and skipped.
-                          &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                          &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                              # punctuation.
-                        },
-                      ],
-                      &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                          # masked. Skipped characters do not count towards this tally.
-                      &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                          # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                          # code or credit card number. This string must have a length of 1. If not
-                          # supplied, this value defaults to `*` for strings, and `0` for digits.
-                      &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                          # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                          # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                          # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                          # is `true`, then the string `12345` is masked as `12***`.
-                    },
                   },
-                  &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                      # this transformation to apply to all findings that correspond to
-                      # infoTypes that were requested in `InspectConfig`.
-                    { # Type of information detected by the API.
-                      &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                          # creating a CustomInfoType, or one of the names listed
-                          # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                          # a built-in type. InfoType names should conform to the pattern
-                          # `[a-zA-Z0-9_]{1,64}`.
-                    },
-                  ],
                 },
               ],
             },
             &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Apply the transformation to the entire field.
-              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                  # portion of the value.
-                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
-              },
               &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                   # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                   # to learn more.
@@ -5601,7 +5689,6 @@
                     # be more than 365250 days (1000 years) each direction.
                     #
                     # For example, 3 means shift date to at most 3 days into the future.
-                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                     # results in the same shift for the same context and crypto_key. If
                     # set, must also set context. Can only be applied to table items.
@@ -5609,10 +5696,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -5630,10 +5713,62 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
+                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+              },
+              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                  # portion of the value.
+                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
               },
               &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
               },
+              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+              },
               &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                   # Uses SHA-256.
                   # The key size must be either 32 or 64 bytes.
@@ -5646,10 +5781,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -5667,8 +5798,152 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
+              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                  # fixed character. Masking can start from the beginning or end of the string.
+                  # This can be used on data of any type (numbers, longs, and so on) and when
+                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                  # type. (This allows you to take a long like 123 and modify it to a string like
+                  # **3.
+                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                    # characters. For example, if the input string is `555-555-5555` and you
+                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                    # returns `***-**5-5555`.
+                  { # Characters to skip when doing deidentification of a value. These will be left
+                      # alone and skipped.
+                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                        # punctuation.
+                  },
+                ],
+                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                    # masked. Skipped characters do not count towards this tally.
+                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                    # code or credit card number. This string must have a length of 1. If not
+                    # supplied, this value defaults to `*` for strings, and `0` for digits.
+                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                    # is `true`, then the string `12345` is masked as `12***`.
+              },
+              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                  # output would be &#x27;My phone number is &#x27;.
+              },
+              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                  # Bucketing transformation can provide all of this functionality,
+                  # but requires more configuration. This message is provided as a convenience to
+                  # the user for simple bucketing strategies.
+                  #
+                  # The transformed value will be a hyphenated string of
+                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                  #
+                  # This can be used on data of type: double, long.
+                  #
+                  # If the bound Value type differs from the type of data
+                  # being transformed, we will first attempt converting the type of the data to
+                  # be transformed to match the type of the bound before comparing.
+                  #
+                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                    # grouped together into a single bucket; for example if `upper_bound` = 89,
+                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                    # grouped together into a single bucket; for example if `lower_bound` = 10,
+                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+              },
               &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                   # (FPE) with the FFX mode of operation; however when used in the
                   # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -5694,7 +5969,7 @@
                     #
                     # This annotation identifies the surrogate when inspecting content using the
                     # custom infoType
-                    # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                    # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                     # This facilitates reversal of the surrogate when it occurs in free text.
                     #
                     # In order for inspection to work properly, the name of this infoType must
@@ -5710,9 +5985,10 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
+                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                 &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                     # identifier in two different contexts won&#x27;t be given the same surrogate. If
                     # the context is not set, a default tweak will be used.
@@ -5735,16 +6011,21 @@
                     # - a string is encoded in UTF-8 format followed by a single byte of value 2
                   &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                 },
-                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                    # that the FFX mode natively supports. This happens before/after
+                    # encryption/decryption.
+                    # Each character listed must appear only once.
+                    # Number of characters must be in the range [2, 95].
+                    # This must be encoded as ASCII.
+                    # The order of characters does not matter.
+                    # The full list of allowed characters is:
+                    # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                    # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -5762,19 +6043,36 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
-                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                    # that the FFX mode natively supports. This happens before/after
-                    # encryption/decryption.
-                    # Each character listed must appear only once.
-                    # Number of characters must be in the range [2, 95].
-                    # This must be encoded as ASCII.
-                    # The order of characters does not matter.
                 &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
               },
               &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                   # input. Outputs a base64 encoded representation of the encrypted output.
                   # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                    # referential integrity such that the same identifier in two different
+                    # contexts will be given a distinct surrogate. The context is appended to
+                    # plaintext value being encrypted. On decryption the provided context is
+                    # validated against the value used during encryption. If a context was
+                    # provided during encryption, same context must be provided during decryption
+                    # as well.
+                    #
+                    # If the context is not set, plaintext would be used as is for encryption.
+                    # If the context is set but:
+                    #
+                    # 1. there is no record present when transforming a given value or
+                    # 2. the field is not present when transforming a given value,
+                    #
+                    # plaintext would be used as is for encryption.
+                    #
+                    # Note that case (1) is expected when an `InfoTypeTransformation` is
+                    # applied to both structured and non-structured `ContentItem`s.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
                 &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                     # This annotation will be applied to the surrogate by prefixing it with
                     # the name of the custom info type followed by the number of
@@ -5810,38 +6108,14 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
-                },
-                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                    # referential integrity such that the same identifier in two different
-                    # contexts will be given a distinct surrogate. The context is appended to
-                    # plaintext value being encrypted. On decryption the provided context is
-                    # validated against the value used during encryption. If a context was
-                    # provided during encryption, same context must be provided during decryption
-                    # as well.
-                    #
-                    # If the context is not set, plaintext would be used as is for encryption.
-                    # If the context is set but:
-                    #
-                    # 1. there is no record present when transforming a given value or
-                    # 2. the field is not present when transforming a given value,
-                    #
-                    # plaintext would be used as is for encryption.
-                    #
-                    # Note that case (1) is expected when an `InfoTypeTransformation` is
-                    # applied to both structured and non-structured `ContentItem`s.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -5859,6 +6133,10 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
               &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -5872,13 +6150,26 @@
                   # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                 &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                   { # Bucket is represented as a range, along with replacement values.
-                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                        # the default behavior will be to hyphenate the min-max range.
+                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                         # Note that for the purposes of inspection or transformation, the number
                         # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -5890,29 +6181,56 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
                       &quot;integerValue&quot;: &quot;A String&quot;, # integer
                       &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                           # or are specified elsewhere. An API may choose to allow leap seconds. Related
                           # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                         &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                             # allow the value 60 if it allows leap-seconds.
                         &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
                       },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                     &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                         # used.
@@ -5921,6 +6239,20 @@
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -5932,257 +6264,19 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                   },
                 ],
               },
-              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                  # output would be &#x27;My phone number is &#x27;.
-              },
-              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                  # Bucketing transformation can provide all of this functionality,
-                  # but requires more configuration. This message is provided as a convenience to
-                  # the user for simple bucketing strategies.
-                  #
-                  # The transformed value will be a hyphenated string of
-                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                  #
-                  # This can be used on data of type: double, long.
-                  #
-                  # If the bound Value type differs from the type of data
-                  # being transformed, we will first attempt converting the type of the data to
-                  # be transformed to match the type of the bound before comparing.
-                  #
-                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                    # grouped together into a single bucket; for example if `upper_bound` = 89,
-                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                    # grouped together into a single bucket; for example if `lower_bound` = 10,
-                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                  # fixed character. Masking can start from the beginning or end of the string.
-                  # This can be used on data of any type (numbers, longs, and so on) and when
-                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                  # type. (This allows you to take a long like 123 and modify it to a string like
-                  # **3.
-                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                    # characters. For example, if the input string is `555-555-5555` and you
-                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                    # returns `***-**5-5555`.
-                  { # Characters to skip when doing deidentification of a value. These will be left
-                      # alone and skipped.
-                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                        # punctuation.
-                  },
-                ],
-                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                    # masked. Skipped characters do not count towards this tally.
-                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                    # code or credit card number. This string must have a length of 1. If not
-                    # supplied, this value defaults to `*` for strings, and `0` for digits.
-                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                    # is `true`, then the string `12345` is masked as `12***`.
-              },
             },
             &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # Only apply the transformation if the condition evaluates to true for the
                 # given `RecordCondition`. The conditions are allowed to reference fields
@@ -6195,8 +6289,6 @@
                 # - Redact a field if the date of birth field is greater than 85.
                 # a field.
               &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
-                &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
-                    # only supported value is `AND`.
                 &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
                   &quot;conditions&quot;: [ # A collection of conditions.
                     { # The field type of `value` and `field` do not need to match to be
@@ -6218,12 +6310,29 @@
                         #
                         # If we fail to compare do to type mismatch, a warning will be given and
                         # the condition will evaluate to false.
+                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      },
                       &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
                           # Note that for the purposes of inspection or transformation, the number
                           # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -6235,138 +6344,53 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                       },
                       &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                     },
                   ],
                 },
-              },
-            },
-          },
-        ],
-        &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
-            # match any suppression rule are omitted from the output.
-          { # Configuration to suppress records whose suppression conditions evaluate to
-              # true.
-            &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
-                # evaluated to be suppressed from the transformed content.
-                # a field.
-              &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
                 &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
                     # only supported value is `AND`.
-                &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
-                  &quot;conditions&quot;: [ # A collection of conditions.
-                    { # The field type of `value` and `field` do not need to match to be
-                        # considered equal, but not all comparisons are possible.
-                        # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
-                        # but all other comparisons are invalid with incompatible types.
-                        # A `value` of type:
-                        #
-                        # - `string` can be compared against all other types
-                        # - `boolean` can only be compared against other booleans
-                        # - `integer` can be compared against doubles or a string if the string value
-                        # can be parsed as an integer.
-                        # - `double` can be compared against integers or a string if the string can
-                        # be parsed as a double.
-                        # - `Timestamp` can be compared against strings in RFC 3339 date string
-                        # format.
-                        # - `TimeOfDay` can be compared against timestamps and strings in the format
-                        # of &#x27;HH:mm:ss&#x27;.
-                        #
-                        # If we fail to compare do to type mismatch, a warning will be given and
-                        # the condition will evaluate to false.
-                      &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                      },
-                      &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
-                    },
-                  ],
-                },
               },
             },
+            &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
+              { # General identifier of a data field in a storage service.
+                &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+              },
+            ],
           },
         ],
       },
     },
+    &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
+    &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
+    &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
+    &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
   }</pre>
 </div>
 
 <div class="method">
-    <code class="details" id="list">list(parent, orderBy=None, pageToken=None, locationId=None, pageSize=None, x__xgafv=None)</code>
+    <code class="details" id="list">list(parent, locationId=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
   <pre>Lists DeidentifyTemplates.
 See https://cloud.google.com/dlp/docs/creating-templates-deid to learn
 more.
 
 Args:
-  parent: string, Required. The parent resource name, for example projects/my-project-id or
-organizations/my-org-id. (required)
+  parent: string, Required. Parent resource name.
+- Format:projects/[PROJECT-ID]
+- Format:organizations/[ORGANIZATION-ID]
+- Format:projects/[PROJECT-ID]/locations/[LOCATION-ID]
+- Format:organizations/[ORGANIZATION-ID]/locations/[LOCATION-ID] (required)
+  locationId: string, Deprecated. This field has no effect.
   orderBy: string, Comma separated list of fields to order by,
 followed by `asc` or `desc` postfix. This list is case-insensitive,
 default sorting order is ascending, redundant space characters are
@@ -6380,12 +6404,10 @@
 - `update_time`: corresponds to time the template was last updated.
 - `name`: corresponds to template&#x27;s name.
 - `display_name`: corresponds to template&#x27;s display name.
-  pageToken: string, Page token to continue retrieval. Comes from previous call
-to `ListDeidentifyTemplates`.
-  locationId: string, The geographic location where deidentifications templates will be retrieved
-from. Use `-` for all locations. Reserved for future extensions.
   pageSize: integer, Size of the page, can be limited by server. If zero server returns
 a page of max size 100.
+  pageToken: string, Page token to continue retrieval. Comes from previous call
+to `ListDeidentifyTemplates`.
   x__xgafv: string, V1 error format.
     Allowed values
       1 - v1 error format
@@ -6406,10 +6428,6 @@
             # The template will have one of the following formats:
             # `projects/PROJECT_ID/deidentifyTemplates/TEMPLATE_ID` OR
             # `organizations/ORGANIZATION_ID/deidentifyTemplates/TEMPLATE_ID`
-        &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
-        &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
-        &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
-        &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
         &quot;deidentifyConfig&quot;: { # The configuration that controls how the data will change. # ///////////// // The core content of the template  // ///////////////
           &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the dataset as free-form text and apply the same free text
               # transformation everywhere.
@@ -6420,11 +6438,18 @@
                 # for a given infoType.
               { # A transformation to apply to text that is identified as a specific
                   # info_type.
-                &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-                  &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                      # portion of the value.
-                    &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+                &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                    # this transformation to apply to all findings that correspond to
+                    # infoTypes that were requested in `InspectConfig`.
+                  { # Type of information detected by the API.
+                    &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                        # creating a CustomInfoType, or one of the names listed
+                        # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                        # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                        # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                   },
+                ],
+                &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
                   &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                       # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                       # to learn more.
@@ -6438,7 +6463,6 @@
                         # be more than 365250 days (1000 years) each direction.
                         #
                         # For example, 3 means shift date to at most 3 days into the future.
-                    &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                     &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                         # results in the same shift for the same context and crypto_key. If
                         # set, must also set context. Can only be applied to table items.
@@ -6446,10 +6470,6 @@
                         # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                         # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                         # unwrap the data crypto key.
-                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                          # leaking the key. Choose another type of key if possible.
-                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                      },
                       &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                           # It will be discarded after the request finishes.
                         &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -6467,10 +6487,62 @@
                         &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                         &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                       },
+                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                          # leaking the key. Choose another type of key if possible.
+                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                      },
                     },
+                    &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                  },
+                  &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                      # portion of the value.
+                    &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                   },
                   &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                   },
+                  &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                    &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
+                      },
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                  },
                   &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                       # Uses SHA-256.
                       # The key size must be either 32 or 64 bytes.
@@ -6483,10 +6555,6 @@
                         # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                         # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                         # unwrap the data crypto key.
-                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                          # leaking the key. Choose another type of key if possible.
-                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                      },
                       &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                           # It will be discarded after the request finishes.
                         &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -6504,8 +6572,152 @@
                         &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                         &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                       },
+                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                          # leaking the key. Choose another type of key if possible.
+                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                      },
                     },
                   },
+                  &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                      # fixed character. Masking can start from the beginning or end of the string.
+                      # This can be used on data of any type (numbers, longs, and so on) and when
+                      # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                      # type. (This allows you to take a long like 123 and modify it to a string like
+                      # **3.
+                    &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                        # characters. For example, if the input string is `555-555-5555` and you
+                        # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                        # returns `***-**5-5555`.
+                      { # Characters to skip when doing deidentification of a value. These will be left
+                          # alone and skipped.
+                        &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                        &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                            # punctuation.
+                      },
+                    ],
+                    &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                        # masked. Skipped characters do not count towards this tally.
+                    &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                        # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                        # code or credit card number. This string must have a length of 1. If not
+                        # supplied, this value defaults to `*` for strings, and `0` for digits.
+                    &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                        # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                        # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                        # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                        # is `true`, then the string `12345` is masked as `12***`.
+                  },
+                  &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                      # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                      # output would be &#x27;My phone number is &#x27;.
+                  },
+                  &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                      # Bucketing transformation can provide all of this functionality,
+                      # but requires more configuration. This message is provided as a convenience to
+                      # the user for simple bucketing strategies.
+                      #
+                      # The transformed value will be a hyphenated string of
+                      # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                      # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                      #
+                      # This can be used on data of type: double, long.
+                      #
+                      # If the bound Value type differs from the type of data
+                      # being transformed, we will first attempt converting the type of the data to
+                      # be transformed to match the type of the bound before comparing.
+                      #
+                      # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                    &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                        # grouped together into a single bucket; for example if `upper_bound` = 89,
+                        # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
+                      },
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                        # grouped together into a single bucket; for example if `lower_bound` = 10,
+                        # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
+                      },
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                        # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                        # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                        # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                  },
                   &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                       # (FPE) with the FFX mode of operation; however when used in the
                       # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -6531,7 +6743,7 @@
                         #
                         # This annotation identifies the surrogate when inspecting content using the
                         # custom infoType
-                        # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                        # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                         # This facilitates reversal of the surrogate when it occurs in free text.
                         #
                         # In order for inspection to work properly, the name of this infoType must
@@ -6547,9 +6759,10 @@
                       &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                           # creating a CustomInfoType, or one of the names listed
                           # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                          # a built-in type. InfoType names should conform to the pattern
-                          # `[a-zA-Z0-9_]{1,64}`.
+                          # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                          # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                     },
+                    &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                     &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                         # identifier in two different contexts won&#x27;t be given the same surrogate. If
                         # the context is not set, a default tweak will be used.
@@ -6572,16 +6785,21 @@
                         # - a string is encoded in UTF-8 format followed by a single byte of value 2
                       &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                     },
-                    &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                    &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                        # that the FFX mode natively supports. This happens before/after
+                        # encryption/decryption.
+                        # Each character listed must appear only once.
+                        # Number of characters must be in the range [2, 95].
+                        # This must be encoded as ASCII.
+                        # The order of characters does not matter.
+                        # The full list of allowed characters is:
+                        # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                        # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                     &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                         # a key encryption key (KEK) stored by KMS).
                         # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                         # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                         # unwrap the data crypto key.
-                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                          # leaking the key. Choose another type of key if possible.
-                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                      },
                       &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                           # It will be discarded after the request finishes.
                         &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -6599,19 +6817,36 @@
                         &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                         &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                       },
+                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                          # leaking the key. Choose another type of key if possible.
+                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                      },
                     },
-                    &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                        # that the FFX mode natively supports. This happens before/after
-                        # encryption/decryption.
-                        # Each character listed must appear only once.
-                        # Number of characters must be in the range [2, 95].
-                        # This must be encoded as ASCII.
-                        # The order of characters does not matter.
                     &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                   },
                   &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                       # input. Outputs a base64 encoded representation of the encrypted output.
                       # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                    &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                        # referential integrity such that the same identifier in two different
+                        # contexts will be given a distinct surrogate. The context is appended to
+                        # plaintext value being encrypted. On decryption the provided context is
+                        # validated against the value used during encryption. If a context was
+                        # provided during encryption, same context must be provided during decryption
+                        # as well.
+                        #
+                        # If the context is not set, plaintext would be used as is for encryption.
+                        # If the context is set but:
+                        #
+                        # 1. there is no record present when transforming a given value or
+                        # 2. the field is not present when transforming a given value,
+                        #
+                        # plaintext would be used as is for encryption.
+                        #
+                        # Note that case (1) is expected when an `InfoTypeTransformation` is
+                        # applied to both structured and non-structured `ContentItem`s.
+                      &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                    },
                     &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                         # This annotation will be applied to the surrogate by prefixing it with
                         # the name of the custom info type followed by the number of
@@ -6647,38 +6882,14 @@
                       &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                           # creating a CustomInfoType, or one of the names listed
                           # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                          # a built-in type. InfoType names should conform to the pattern
-                          # `[a-zA-Z0-9_]{1,64}`.
-                    },
-                    &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                        # referential integrity such that the same identifier in two different
-                        # contexts will be given a distinct surrogate. The context is appended to
-                        # plaintext value being encrypted. On decryption the provided context is
-                        # validated against the value used during encryption. If a context was
-                        # provided during encryption, same context must be provided during decryption
-                        # as well.
-                        #
-                        # If the context is not set, plaintext would be used as is for encryption.
-                        # If the context is set but:
-                        #
-                        # 1. there is no record present when transforming a given value or
-                        # 2. the field is not present when transforming a given value,
-                        #
-                        # plaintext would be used as is for encryption.
-                        #
-                        # Note that case (1) is expected when an `InfoTypeTransformation` is
-                        # applied to both structured and non-structured `ContentItem`s.
-                      &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                          # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                          # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                     },
                     &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                         # a key encryption key (KEK) stored by KMS).
                         # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                         # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                         # unwrap the data crypto key.
-                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                          # leaking the key. Choose another type of key if possible.
-                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                      },
                       &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                           # It will be discarded after the request finishes.
                         &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -6696,6 +6907,10 @@
                         &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                         &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                       },
+                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                          # leaking the key. Choose another type of key if possible.
+                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                      },
                     },
                   },
                   &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -6709,13 +6924,26 @@
                       # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                     &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                       { # Bucket is represented as a range, along with replacement values.
-                        &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                            # the default behavior will be to hyphenate the min-max range.
+                        &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                             # Note that for the purposes of inspection or transformation, the number
                             # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                             # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                             # 123456789, the number of bytes would be counted as 9, even though an
                             # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
                           &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                           &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                               # and time zone are either specified elsewhere or are not significant. The date
@@ -6727,29 +6955,56 @@
                               # * A year and month value, with a zero day, e.g. a credit card expiration date
                               #
                               # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
                             &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                 # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
                             &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                 # if specifying a year by itself or a year and month where the day is not
                                 # significant.
                           },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                        &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
                           &quot;integerValue&quot;: &quot;A String&quot;, # integer
                           &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                               # or are specified elsewhere. An API may choose to allow leap seconds. Related
                               # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                             &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                                 # allow the value 60 if it allows leap-seconds.
                             &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
                           },
                           &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         },
                         &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                             # used.
@@ -6758,6 +7013,20 @@
                             # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                             # 123456789, the number of bytes would be counted as 9, even though an
                             # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
                           &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                           &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                               # and time zone are either specified elsewhere or are not significant. The date
@@ -6769,269 +7038,20 @@
                               # * A year and month value, with a zero day, e.g. a credit card expiration date
                               #
                               # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
                             &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                 # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
                             &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                 # if specifying a year by itself or a year and month where the day is not
                                 # significant.
                           },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
                           &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                        &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         },
                       },
                     ],
                   },
-                  &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                      # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                      # output would be &#x27;My phone number is &#x27;.
-                  },
-                  &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                    &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                  },
-                  &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                      # Bucketing transformation can provide all of this functionality,
-                      # but requires more configuration. This message is provided as a convenience to
-                      # the user for simple bucketing strategies.
-                      #
-                      # The transformed value will be a hyphenated string of
-                      # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                      # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                      #
-                      # This can be used on data of type: double, long.
-                      #
-                      # If the bound Value type differs from the type of data
-                      # being transformed, we will first attempt converting the type of the data to
-                      # be transformed to match the type of the bound before comparing.
-                      #
-                      # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                    &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                        # grouped together into a single bucket; for example if `upper_bound` = 89,
-                        # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                    &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                        # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                        # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                        # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                    &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                        # grouped together into a single bucket; for example if `lower_bound` = 10,
-                        # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                  },
-                  &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                      # fixed character. Masking can start from the beginning or end of the string.
-                      # This can be used on data of any type (numbers, longs, and so on) and when
-                      # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                      # type. (This allows you to take a long like 123 and modify it to a string like
-                      # **3.
-                    &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                        # characters. For example, if the input string is `555-555-5555` and you
-                        # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                        # returns `***-**5-5555`.
-                      { # Characters to skip when doing deidentification of a value. These will be left
-                          # alone and skipped.
-                        &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                        &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                            # punctuation.
-                      },
-                    ],
-                    &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                        # masked. Skipped characters do not count towards this tally.
-                    &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                        # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                        # code or credit card number. This string must have a length of 1. If not
-                        # supplied, this value defaults to `*` for strings, and `0` for digits.
-                    &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                        # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                        # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                        # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                        # is `true`, then the string `12345` is masked as `12***`.
-                  },
                 },
-                &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                    # this transformation to apply to all findings that correspond to
-                    # infoTypes that were requested in `InspectConfig`.
-                  { # Type of information detected by the API.
-                    &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                        # creating a CustomInfoType, or one of the names listed
-                        # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                        # a built-in type. InfoType names should conform to the pattern
-                        # `[a-zA-Z0-9_]{1,64}`.
-                  },
-                ],
               },
             ],
           },
@@ -7044,25 +7064,103 @@
               # Information about any incompatible transformations, and how they were
               # handled, is returned in the response as part of the
               # `TransformationOverviews`.
-            &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
-            },
             &quot;leaveUntransformed&quot;: { # Skips the data without modifying it if the requested transformation would # Ignore errors
                 # cause an error. For example, if a `DateShift` transformation were applied
                 # an an IP address, this mode would leave the IP address unchanged in the
                 # response.
             },
+            &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
+            },
           },
           &quot;recordTransformations&quot;: { # A type of transformation that is applied over structured data such as a # Treat the dataset as structured. Transformations can be applied to
               # specific locations within structured datasets, such as transforming
               # a column within a table.
               # table.
+            &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
+                # match any suppression rule are omitted from the output.
+              { # Configuration to suppress records whose suppression conditions evaluate to
+                  # true.
+                &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
+                    # evaluated to be suppressed from the transformed content.
+                    # a field.
+                  &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
+                    &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
+                      &quot;conditions&quot;: [ # A collection of conditions.
+                        { # The field type of `value` and `field` do not need to match to be
+                            # considered equal, but not all comparisons are possible.
+                            # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
+                            # but all other comparisons are invalid with incompatible types.
+                            # A `value` of type:
+                            #
+                            # - `string` can be compared against all other types
+                            # - `boolean` can only be compared against other booleans
+                            # - `integer` can be compared against doubles or a string if the string value
+                            # can be parsed as an integer.
+                            # - `double` can be compared against integers or a string if the string can
+                            # be parsed as a double.
+                            # - `Timestamp` can be compared against strings in RFC 3339 date string
+                            # format.
+                            # - `TimeOfDay` can be compared against timestamps and strings in the format
+                            # of &#x27;HH:mm:ss&#x27;.
+                            #
+                            # If we fail to compare do to type mismatch, a warning will be given and
+                            # the condition will evaluate to false.
+                          &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                            &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                          },
+                          &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
+                              # Note that for the purposes of inspection or transformation, the number
+                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                              # 123456789, the number of bytes would be counted as 9, even though an
+                              # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                # and time zone are either specified elsewhere or are not significant. The date
+                                # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                #
+                                # * A full date, with non-zero year, month and day values
+                                # * A month and day value, with a zero year, e.g. an anniversary
+                                # * A year on its own, with zero month and day values
+                                # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                #
+                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                  # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
+                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                  # if specifying a year by itself or a year and month where the day is not
+                                  # significant.
+                            },
+                            &quot;booleanValue&quot;: True or False, # boolean
+                          },
+                          &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
+                        },
+                      ],
+                    },
+                    &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
+                        # only supported value is `AND`.
+                  },
+                },
+              },
+            ],
             &quot;fieldTransformations&quot;: [ # Transform the record by applying various field transformations.
               { # The transformation to apply to the field.
-                &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
-                  { # General identifier of a data field in a storage service.
-                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                  },
-                ],
                 &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the contents of the field as free text, and selectively
                     # transform content that matches an `InfoType`.
                     # apply various `PrimitiveTransformation`s to each finding, where the
@@ -7072,11 +7170,18 @@
                       # for a given infoType.
                     { # A transformation to apply to text that is identified as a specific
                         # info_type.
-                      &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-                        &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                            # portion of the value.
-                          &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+                      &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                          # this transformation to apply to all findings that correspond to
+                          # infoTypes that were requested in `InspectConfig`.
+                        { # Type of information detected by the API.
+                          &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                              # creating a CustomInfoType, or one of the names listed
+                              # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                              # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                              # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                         },
+                      ],
+                      &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
                         &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                             # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                             # to learn more.
@@ -7090,7 +7195,6 @@
                               # be more than 365250 days (1000 years) each direction.
                               #
                               # For example, 3 means shift date to at most 3 days into the future.
-                          &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                           &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                               # results in the same shift for the same context and crypto_key. If
                               # set, must also set context. Can only be applied to table items.
@@ -7098,10 +7202,6 @@
                               # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                               # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                               # unwrap the data crypto key.
-                            &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                                # leaking the key. Choose another type of key if possible.
-                              &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                            },
                             &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                                 # It will be discarded after the request finishes.
                               &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -7119,10 +7219,62 @@
                               &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                               &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                             },
+                            &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                                # leaking the key. Choose another type of key if possible.
+                              &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                            },
                           },
+                          &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                        },
+                        &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                            # portion of the value.
+                          &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                         },
                         &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                         },
+                        &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                          &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                              # Note that for the purposes of inspection or transformation, the number
+                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                              # 123456789, the number of bytes would be counted as 9, even though an
+                              # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                # and time zone are either specified elsewhere or are not significant. The date
+                                # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                #
+                                # * A full date, with non-zero year, month and day values
+                                # * A month and day value, with a zero year, e.g. an anniversary
+                                # * A year on its own, with zero month and day values
+                                # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                #
+                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                  # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
+                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                  # if specifying a year by itself or a year and month where the day is not
+                                  # significant.
+                            },
+                            &quot;booleanValue&quot;: True or False, # boolean
+                          },
+                        },
                         &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                             # Uses SHA-256.
                             # The key size must be either 32 or 64 bytes.
@@ -7135,10 +7287,6 @@
                               # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                               # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                               # unwrap the data crypto key.
-                            &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                                # leaking the key. Choose another type of key if possible.
-                              &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                            },
                             &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                                 # It will be discarded after the request finishes.
                               &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -7156,8 +7304,152 @@
                               &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                               &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                             },
+                            &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                                # leaking the key. Choose another type of key if possible.
+                              &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                            },
                           },
                         },
+                        &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                            # fixed character. Masking can start from the beginning or end of the string.
+                            # This can be used on data of any type (numbers, longs, and so on) and when
+                            # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                            # type. (This allows you to take a long like 123 and modify it to a string like
+                            # **3.
+                          &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                              # characters. For example, if the input string is `555-555-5555` and you
+                              # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                              # returns `***-**5-5555`.
+                            { # Characters to skip when doing deidentification of a value. These will be left
+                                # alone and skipped.
+                              &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                              &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                                  # punctuation.
+                            },
+                          ],
+                          &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                              # masked. Skipped characters do not count towards this tally.
+                          &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                              # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                              # code or credit card number. This string must have a length of 1. If not
+                              # supplied, this value defaults to `*` for strings, and `0` for digits.
+                          &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                              # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                              # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                              # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                              # is `true`, then the string `12345` is masked as `12***`.
+                        },
+                        &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                            # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                            # output would be &#x27;My phone number is &#x27;.
+                        },
+                        &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                            # Bucketing transformation can provide all of this functionality,
+                            # but requires more configuration. This message is provided as a convenience to
+                            # the user for simple bucketing strategies.
+                            #
+                            # The transformed value will be a hyphenated string of
+                            # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                            # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                            #
+                            # This can be used on data of type: double, long.
+                            #
+                            # If the bound Value type differs from the type of data
+                            # being transformed, we will first attempt converting the type of the data to
+                            # be transformed to match the type of the bound before comparing.
+                            #
+                            # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                          &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                              # grouped together into a single bucket; for example if `upper_bound` = 89,
+                              # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                              # Note that for the purposes of inspection or transformation, the number
+                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                              # 123456789, the number of bytes would be counted as 9, even though an
+                              # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                # and time zone are either specified elsewhere or are not significant. The date
+                                # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                #
+                                # * A full date, with non-zero year, month and day values
+                                # * A month and day value, with a zero year, e.g. an anniversary
+                                # * A year on its own, with zero month and day values
+                                # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                #
+                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                  # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
+                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                  # if specifying a year by itself or a year and month where the day is not
+                                  # significant.
+                            },
+                            &quot;booleanValue&quot;: True or False, # boolean
+                          },
+                          &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                              # grouped together into a single bucket; for example if `lower_bound` = 10,
+                              # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                              # Note that for the purposes of inspection or transformation, the number
+                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                              # 123456789, the number of bytes would be counted as 9, even though an
+                              # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                # and time zone are either specified elsewhere or are not significant. The date
+                                # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                #
+                                # * A full date, with non-zero year, month and day values
+                                # * A month and day value, with a zero year, e.g. an anniversary
+                                # * A year on its own, with zero month and day values
+                                # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                #
+                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                  # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
+                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                  # if specifying a year by itself or a year and month where the day is not
+                                  # significant.
+                            },
+                            &quot;booleanValue&quot;: True or False, # boolean
+                          },
+                          &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                              # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                              # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                              # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                        },
                         &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                             # (FPE) with the FFX mode of operation; however when used in the
                             # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -7183,7 +7475,7 @@
                               #
                               # This annotation identifies the surrogate when inspecting content using the
                               # custom infoType
-                              # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                              # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                               # This facilitates reversal of the surrogate when it occurs in free text.
                               #
                               # In order for inspection to work properly, the name of this infoType must
@@ -7199,9 +7491,10 @@
                             &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                                 # creating a CustomInfoType, or one of the names listed
                                 # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                                # a built-in type. InfoType names should conform to the pattern
-                                # `[a-zA-Z0-9_]{1,64}`.
+                                # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                                # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                           },
+                          &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                           &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                               # identifier in two different contexts won&#x27;t be given the same surrogate. If
                               # the context is not set, a default tweak will be used.
@@ -7224,16 +7517,21 @@
                               # - a string is encoded in UTF-8 format followed by a single byte of value 2
                             &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                           },
-                          &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                          &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                              # that the FFX mode natively supports. This happens before/after
+                              # encryption/decryption.
+                              # Each character listed must appear only once.
+                              # Number of characters must be in the range [2, 95].
+                              # This must be encoded as ASCII.
+                              # The order of characters does not matter.
+                              # The full list of allowed characters is:
+                              # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                              # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                           &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                               # a key encryption key (KEK) stored by KMS).
                               # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                               # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                               # unwrap the data crypto key.
-                            &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                                # leaking the key. Choose another type of key if possible.
-                              &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                            },
                             &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                                 # It will be discarded after the request finishes.
                               &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -7251,19 +7549,36 @@
                               &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                               &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                             },
+                            &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                                # leaking the key. Choose another type of key if possible.
+                              &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                            },
                           },
-                          &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                              # that the FFX mode natively supports. This happens before/after
-                              # encryption/decryption.
-                              # Each character listed must appear only once.
-                              # Number of characters must be in the range [2, 95].
-                              # This must be encoded as ASCII.
-                              # The order of characters does not matter.
                           &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                         },
                         &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                             # input. Outputs a base64 encoded representation of the encrypted output.
                             # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                          &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                              # referential integrity such that the same identifier in two different
+                              # contexts will be given a distinct surrogate. The context is appended to
+                              # plaintext value being encrypted. On decryption the provided context is
+                              # validated against the value used during encryption. If a context was
+                              # provided during encryption, same context must be provided during decryption
+                              # as well.
+                              #
+                              # If the context is not set, plaintext would be used as is for encryption.
+                              # If the context is set but:
+                              #
+                              # 1. there is no record present when transforming a given value or
+                              # 2. the field is not present when transforming a given value,
+                              #
+                              # plaintext would be used as is for encryption.
+                              #
+                              # Note that case (1) is expected when an `InfoTypeTransformation` is
+                              # applied to both structured and non-structured `ContentItem`s.
+                            &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                          },
                           &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                               # This annotation will be applied to the surrogate by prefixing it with
                               # the name of the custom info type followed by the number of
@@ -7299,38 +7614,14 @@
                             &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                                 # creating a CustomInfoType, or one of the names listed
                                 # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                                # a built-in type. InfoType names should conform to the pattern
-                                # `[a-zA-Z0-9_]{1,64}`.
-                          },
-                          &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                              # referential integrity such that the same identifier in two different
-                              # contexts will be given a distinct surrogate. The context is appended to
-                              # plaintext value being encrypted. On decryption the provided context is
-                              # validated against the value used during encryption. If a context was
-                              # provided during encryption, same context must be provided during decryption
-                              # as well.
-                              #
-                              # If the context is not set, plaintext would be used as is for encryption.
-                              # If the context is set but:
-                              #
-                              # 1. there is no record present when transforming a given value or
-                              # 2. the field is not present when transforming a given value,
-                              #
-                              # plaintext would be used as is for encryption.
-                              #
-                              # Note that case (1) is expected when an `InfoTypeTransformation` is
-                              # applied to both structured and non-structured `ContentItem`s.
-                            &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                                # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                                # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                           },
                           &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                               # a key encryption key (KEK) stored by KMS).
                               # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                               # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                               # unwrap the data crypto key.
-                            &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                                # leaking the key. Choose another type of key if possible.
-                              &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                            },
                             &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                                 # It will be discarded after the request finishes.
                               &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -7348,6 +7639,10 @@
                               &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                               &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                             },
+                            &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                                # leaking the key. Choose another type of key if possible.
+                              &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                            },
                           },
                         },
                         &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -7361,13 +7656,26 @@
                             # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                           &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                             { # Bucket is represented as a range, along with replacement values.
-                              &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                                  # the default behavior will be to hyphenate the min-max range.
+                              &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                                   # Note that for the purposes of inspection or transformation, the number
                                   # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                                   # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                                   # 123456789, the number of bytes would be counted as 9, even though an
                                   # int64 only holds up to 8 bytes of data.
+                                &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                                &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                    # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                    # types are google.type.Date and `google.protobuf.Timestamp`.
+                                  &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                      # allow the value 60 if it allows leap-seconds.
+                                  &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                                  &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                                  &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                      # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                                },
+                                &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                                &quot;floatValue&quot;: 3.14, # float
+                                &quot;stringValue&quot;: &quot;A String&quot;, # string
                                 &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                                 &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                     # and time zone are either specified elsewhere or are not significant. The date
@@ -7379,29 +7687,56 @@
                                     # * A year and month value, with a zero day, e.g. a credit card expiration date
                                     #
                                     # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                      # a year.
                                   &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                       # month and day.
+                                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                      # a year.
                                   &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                       # if specifying a year by itself or a year and month where the day is not
                                       # significant.
                                 },
-                                &quot;stringValue&quot;: &quot;A String&quot;, # string
+                                &quot;booleanValue&quot;: True or False, # boolean
+                              },
+                              &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                                  # Note that for the purposes of inspection or transformation, the number
+                                  # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                                  # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                                  # 123456789, the number of bytes would be counted as 9, even though an
+                                  # int64 only holds up to 8 bytes of data.
                                 &quot;integerValue&quot;: &quot;A String&quot;, # integer
                                 &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                                     # or are specified elsewhere. An API may choose to allow leap seconds. Related
                                     # types are google.type.Date and `google.protobuf.Timestamp`.
-                                  &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                      # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                                  &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                                   &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                                       # allow the value 60 if it allows leap-seconds.
                                   &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                                  &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                                  &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                      # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                                },
+                                &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                                &quot;floatValue&quot;: 3.14, # float
+                                &quot;stringValue&quot;: &quot;A String&quot;, # string
+                                &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                                &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                    # and time zone are either specified elsewhere or are not significant. The date
+                                    # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                    #
+                                    # * A full date, with non-zero year, month and day values
+                                    # * A month and day value, with a zero year, e.g. an anniversary
+                                    # * A year on its own, with zero month and day values
+                                    # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                    #
+                                    # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                                  &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                      # month and day.
+                                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                      # a year.
+                                  &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                      # if specifying a year by itself or a year and month where the day is not
+                                      # significant.
                                 },
                                 &quot;booleanValue&quot;: True or False, # boolean
-                                &quot;floatValue&quot;: 3.14, # float
-                                &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                               },
                               &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                                   # used.
@@ -7410,6 +7745,20 @@
                                   # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                                   # 123456789, the number of bytes would be counted as 9, even though an
                                   # int64 only holds up to 8 bytes of data.
+                                &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                                &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                    # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                    # types are google.type.Date and `google.protobuf.Timestamp`.
+                                  &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                      # allow the value 60 if it allows leap-seconds.
+                                  &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                                  &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                                  &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                      # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                                },
+                                &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                                &quot;floatValue&quot;: 3.14, # float
+                                &quot;stringValue&quot;: &quot;A String&quot;, # string
                                 &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                                 &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                     # and time zone are either specified elsewhere or are not significant. The date
@@ -7421,277 +7770,24 @@
                                     # * A year and month value, with a zero day, e.g. a credit card expiration date
                                     #
                                     # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                      # a year.
                                   &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                       # month and day.
+                                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                      # a year.
                                   &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                       # if specifying a year by itself or a year and month where the day is not
                                       # significant.
                                 },
-                                &quot;stringValue&quot;: &quot;A String&quot;, # string
-                                &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                                &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                    # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                    # types are google.type.Date and `google.protobuf.Timestamp`.
-                                  &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                      # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                                  &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                                  &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                      # allow the value 60 if it allows leap-seconds.
-                                  &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                                },
                                 &quot;booleanValue&quot;: True or False, # boolean
-                                &quot;floatValue&quot;: 3.14, # float
-                                &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                              },
-                              &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                                  # Note that for the purposes of inspection or transformation, the number
-                                  # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                                  # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                                  # 123456789, the number of bytes would be counted as 9, even though an
-                                  # int64 only holds up to 8 bytes of data.
-                                &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                                &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                    # and time zone are either specified elsewhere or are not significant. The date
-                                    # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                    #
-                                    # * A full date, with non-zero year, month and day values
-                                    # * A month and day value, with a zero year, e.g. an anniversary
-                                    # * A year on its own, with zero month and day values
-                                    # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                    #
-                                    # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                      # a year.
-                                  &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                      # month and day.
-                                  &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                      # if specifying a year by itself or a year and month where the day is not
-                                      # significant.
-                                },
-                                &quot;stringValue&quot;: &quot;A String&quot;, # string
-                                &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                                &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                    # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                    # types are google.type.Date and `google.protobuf.Timestamp`.
-                                  &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                      # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                                  &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                                  &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                      # allow the value 60 if it allows leap-seconds.
-                                  &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                                },
-                                &quot;booleanValue&quot;: True or False, # boolean
-                                &quot;floatValue&quot;: 3.14, # float
-                                &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                               },
                             },
                           ],
                         },
-                        &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                            # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                            # output would be &#x27;My phone number is &#x27;.
-                        },
-                        &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                          &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                              # Note that for the purposes of inspection or transformation, the number
-                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                              # 123456789, the number of bytes would be counted as 9, even though an
-                              # int64 only holds up to 8 bytes of data.
-                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                # and time zone are either specified elsewhere or are not significant. The date
-                                # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                #
-                                # * A full date, with non-zero year, month and day values
-                                # * A month and day value, with a zero year, e.g. an anniversary
-                                # * A year on its own, with zero month and day values
-                                # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                #
-                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
-                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                  # month and day.
-                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                  # if specifying a year by itself or a year and month where the day is not
-                                  # significant.
-                            },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
-                            &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          },
-                        },
-                        &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                            # Bucketing transformation can provide all of this functionality,
-                            # but requires more configuration. This message is provided as a convenience to
-                            # the user for simple bucketing strategies.
-                            #
-                            # The transformed value will be a hyphenated string of
-                            # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                            # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                            #
-                            # This can be used on data of type: double, long.
-                            #
-                            # If the bound Value type differs from the type of data
-                            # being transformed, we will first attempt converting the type of the data to
-                            # be transformed to match the type of the bound before comparing.
-                            #
-                            # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                          &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                              # grouped together into a single bucket; for example if `upper_bound` = 89,
-                              # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                              # Note that for the purposes of inspection or transformation, the number
-                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                              # 123456789, the number of bytes would be counted as 9, even though an
-                              # int64 only holds up to 8 bytes of data.
-                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                # and time zone are either specified elsewhere or are not significant. The date
-                                # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                #
-                                # * A full date, with non-zero year, month and day values
-                                # * A month and day value, with a zero year, e.g. an anniversary
-                                # * A year on its own, with zero month and day values
-                                # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                #
-                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
-                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                  # month and day.
-                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                  # if specifying a year by itself or a year and month where the day is not
-                                  # significant.
-                            },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
-                            &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          },
-                          &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                              # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                              # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                              # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                          &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                              # grouped together into a single bucket; for example if `lower_bound` = 10,
-                              # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                              # Note that for the purposes of inspection or transformation, the number
-                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                              # 123456789, the number of bytes would be counted as 9, even though an
-                              # int64 only holds up to 8 bytes of data.
-                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                # and time zone are either specified elsewhere or are not significant. The date
-                                # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                #
-                                # * A full date, with non-zero year, month and day values
-                                # * A month and day value, with a zero year, e.g. an anniversary
-                                # * A year on its own, with zero month and day values
-                                # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                #
-                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
-                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                  # month and day.
-                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                  # if specifying a year by itself or a year and month where the day is not
-                                  # significant.
-                            },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
-                            &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          },
-                        },
-                        &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                            # fixed character. Masking can start from the beginning or end of the string.
-                            # This can be used on data of any type (numbers, longs, and so on) and when
-                            # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                            # type. (This allows you to take a long like 123 and modify it to a string like
-                            # **3.
-                          &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                              # characters. For example, if the input string is `555-555-5555` and you
-                              # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                              # returns `***-**5-5555`.
-                            { # Characters to skip when doing deidentification of a value. These will be left
-                                # alone and skipped.
-                              &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                              &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                                  # punctuation.
-                            },
-                          ],
-                          &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                              # masked. Skipped characters do not count towards this tally.
-                          &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                              # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                              # code or credit card number. This string must have a length of 1. If not
-                              # supplied, this value defaults to `*` for strings, and `0` for digits.
-                          &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                              # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                              # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                              # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                              # is `true`, then the string `12345` is masked as `12***`.
-                        },
                       },
-                      &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                          # this transformation to apply to all findings that correspond to
-                          # infoTypes that were requested in `InspectConfig`.
-                        { # Type of information detected by the API.
-                          &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                              # creating a CustomInfoType, or one of the names listed
-                              # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                              # a built-in type. InfoType names should conform to the pattern
-                              # `[a-zA-Z0-9_]{1,64}`.
-                        },
-                      ],
                     },
                   ],
                 },
                 &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Apply the transformation to the entire field.
-                  &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                      # portion of the value.
-                    &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
-                  },
                   &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                       # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                       # to learn more.
@@ -7705,7 +7801,6 @@
                         # be more than 365250 days (1000 years) each direction.
                         #
                         # For example, 3 means shift date to at most 3 days into the future.
-                    &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                     &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                         # results in the same shift for the same context and crypto_key. If
                         # set, must also set context. Can only be applied to table items.
@@ -7713,10 +7808,6 @@
                         # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                         # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                         # unwrap the data crypto key.
-                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                          # leaking the key. Choose another type of key if possible.
-                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                      },
                       &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                           # It will be discarded after the request finishes.
                         &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -7734,10 +7825,62 @@
                         &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                         &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                       },
+                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                          # leaking the key. Choose another type of key if possible.
+                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                      },
                     },
+                    &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                  },
+                  &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                      # portion of the value.
+                    &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                   },
                   &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                   },
+                  &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                    &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
+                      },
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                  },
                   &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                       # Uses SHA-256.
                       # The key size must be either 32 or 64 bytes.
@@ -7750,10 +7893,6 @@
                         # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                         # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                         # unwrap the data crypto key.
-                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                          # leaking the key. Choose another type of key if possible.
-                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                      },
                       &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                           # It will be discarded after the request finishes.
                         &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -7771,8 +7910,152 @@
                         &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                         &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                       },
+                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                          # leaking the key. Choose another type of key if possible.
+                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                      },
                     },
                   },
+                  &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                      # fixed character. Masking can start from the beginning or end of the string.
+                      # This can be used on data of any type (numbers, longs, and so on) and when
+                      # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                      # type. (This allows you to take a long like 123 and modify it to a string like
+                      # **3.
+                    &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                        # characters. For example, if the input string is `555-555-5555` and you
+                        # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                        # returns `***-**5-5555`.
+                      { # Characters to skip when doing deidentification of a value. These will be left
+                          # alone and skipped.
+                        &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                        &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                            # punctuation.
+                      },
+                    ],
+                    &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                        # masked. Skipped characters do not count towards this tally.
+                    &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                        # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                        # code or credit card number. This string must have a length of 1. If not
+                        # supplied, this value defaults to `*` for strings, and `0` for digits.
+                    &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                        # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                        # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                        # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                        # is `true`, then the string `12345` is masked as `12***`.
+                  },
+                  &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                      # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                      # output would be &#x27;My phone number is &#x27;.
+                  },
+                  &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                      # Bucketing transformation can provide all of this functionality,
+                      # but requires more configuration. This message is provided as a convenience to
+                      # the user for simple bucketing strategies.
+                      #
+                      # The transformed value will be a hyphenated string of
+                      # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                      # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                      #
+                      # This can be used on data of type: double, long.
+                      #
+                      # If the bound Value type differs from the type of data
+                      # being transformed, we will first attempt converting the type of the data to
+                      # be transformed to match the type of the bound before comparing.
+                      #
+                      # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                    &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                        # grouped together into a single bucket; for example if `upper_bound` = 89,
+                        # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
+                      },
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                        # grouped together into a single bucket; for example if `lower_bound` = 10,
+                        # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
+                      },
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                        # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                        # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                        # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                  },
                   &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                       # (FPE) with the FFX mode of operation; however when used in the
                       # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -7798,7 +8081,7 @@
                         #
                         # This annotation identifies the surrogate when inspecting content using the
                         # custom infoType
-                        # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                        # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                         # This facilitates reversal of the surrogate when it occurs in free text.
                         #
                         # In order for inspection to work properly, the name of this infoType must
@@ -7814,9 +8097,10 @@
                       &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                           # creating a CustomInfoType, or one of the names listed
                           # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                          # a built-in type. InfoType names should conform to the pattern
-                          # `[a-zA-Z0-9_]{1,64}`.
+                          # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                          # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                     },
+                    &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                     &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                         # identifier in two different contexts won&#x27;t be given the same surrogate. If
                         # the context is not set, a default tweak will be used.
@@ -7839,16 +8123,21 @@
                         # - a string is encoded in UTF-8 format followed by a single byte of value 2
                       &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                     },
-                    &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                    &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                        # that the FFX mode natively supports. This happens before/after
+                        # encryption/decryption.
+                        # Each character listed must appear only once.
+                        # Number of characters must be in the range [2, 95].
+                        # This must be encoded as ASCII.
+                        # The order of characters does not matter.
+                        # The full list of allowed characters is:
+                        # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                        # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                     &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                         # a key encryption key (KEK) stored by KMS).
                         # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                         # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                         # unwrap the data crypto key.
-                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                          # leaking the key. Choose another type of key if possible.
-                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                      },
                       &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                           # It will be discarded after the request finishes.
                         &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -7866,19 +8155,36 @@
                         &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                         &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                       },
+                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                          # leaking the key. Choose another type of key if possible.
+                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                      },
                     },
-                    &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                        # that the FFX mode natively supports. This happens before/after
-                        # encryption/decryption.
-                        # Each character listed must appear only once.
-                        # Number of characters must be in the range [2, 95].
-                        # This must be encoded as ASCII.
-                        # The order of characters does not matter.
                     &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                   },
                   &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                       # input. Outputs a base64 encoded representation of the encrypted output.
                       # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                    &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                        # referential integrity such that the same identifier in two different
+                        # contexts will be given a distinct surrogate. The context is appended to
+                        # plaintext value being encrypted. On decryption the provided context is
+                        # validated against the value used during encryption. If a context was
+                        # provided during encryption, same context must be provided during decryption
+                        # as well.
+                        #
+                        # If the context is not set, plaintext would be used as is for encryption.
+                        # If the context is set but:
+                        #
+                        # 1. there is no record present when transforming a given value or
+                        # 2. the field is not present when transforming a given value,
+                        #
+                        # plaintext would be used as is for encryption.
+                        #
+                        # Note that case (1) is expected when an `InfoTypeTransformation` is
+                        # applied to both structured and non-structured `ContentItem`s.
+                      &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                    },
                     &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                         # This annotation will be applied to the surrogate by prefixing it with
                         # the name of the custom info type followed by the number of
@@ -7914,38 +8220,14 @@
                       &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                           # creating a CustomInfoType, or one of the names listed
                           # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                          # a built-in type. InfoType names should conform to the pattern
-                          # `[a-zA-Z0-9_]{1,64}`.
-                    },
-                    &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                        # referential integrity such that the same identifier in two different
-                        # contexts will be given a distinct surrogate. The context is appended to
-                        # plaintext value being encrypted. On decryption the provided context is
-                        # validated against the value used during encryption. If a context was
-                        # provided during encryption, same context must be provided during decryption
-                        # as well.
-                        #
-                        # If the context is not set, plaintext would be used as is for encryption.
-                        # If the context is set but:
-                        #
-                        # 1. there is no record present when transforming a given value or
-                        # 2. the field is not present when transforming a given value,
-                        #
-                        # plaintext would be used as is for encryption.
-                        #
-                        # Note that case (1) is expected when an `InfoTypeTransformation` is
-                        # applied to both structured and non-structured `ContentItem`s.
-                      &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                          # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                          # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                     },
                     &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                         # a key encryption key (KEK) stored by KMS).
                         # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                         # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                         # unwrap the data crypto key.
-                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                          # leaking the key. Choose another type of key if possible.
-                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                      },
                       &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                           # It will be discarded after the request finishes.
                         &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -7963,6 +8245,10 @@
                         &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                         &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                       },
+                      &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                          # leaking the key. Choose another type of key if possible.
+                        &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                      },
                     },
                   },
                   &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -7976,13 +8262,26 @@
                       # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                     &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                       { # Bucket is represented as a range, along with replacement values.
-                        &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                            # the default behavior will be to hyphenate the min-max range.
+                        &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                             # Note that for the purposes of inspection or transformation, the number
                             # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                             # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                             # 123456789, the number of bytes would be counted as 9, even though an
                             # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
                           &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                           &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                               # and time zone are either specified elsewhere or are not significant. The date
@@ -7994,29 +8293,56 @@
                               # * A year and month value, with a zero day, e.g. a credit card expiration date
                               #
                               # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
                             &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                 # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
                             &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                 # if specifying a year by itself or a year and month where the day is not
                                 # significant.
                           },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                        &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
                           &quot;integerValue&quot;: &quot;A String&quot;, # integer
                           &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                               # or are specified elsewhere. An API may choose to allow leap seconds. Related
                               # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                             &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                                 # allow the value 60 if it allows leap-seconds.
                             &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
                           },
                           &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         },
                         &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                             # used.
@@ -8025,6 +8351,20 @@
                             # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                             # 123456789, the number of bytes would be counted as 9, even though an
                             # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
                           &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                           &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                               # and time zone are either specified elsewhere or are not significant. The date
@@ -8036,257 +8376,19 @@
                               # * A year and month value, with a zero day, e.g. a credit card expiration date
                               #
                               # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
                             &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                 # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
                             &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                 # if specifying a year by itself or a year and month where the day is not
                                 # significant.
                           },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
                           &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                        &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         },
                       },
                     ],
                   },
-                  &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                      # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                      # output would be &#x27;My phone number is &#x27;.
-                  },
-                  &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                    &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                  },
-                  &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                      # Bucketing transformation can provide all of this functionality,
-                      # but requires more configuration. This message is provided as a convenience to
-                      # the user for simple bucketing strategies.
-                      #
-                      # The transformed value will be a hyphenated string of
-                      # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                      # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                      #
-                      # This can be used on data of type: double, long.
-                      #
-                      # If the bound Value type differs from the type of data
-                      # being transformed, we will first attempt converting the type of the data to
-                      # be transformed to match the type of the bound before comparing.
-                      #
-                      # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                    &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                        # grouped together into a single bucket; for example if `upper_bound` = 89,
-                        # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                    &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                        # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                        # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                        # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                    &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                        # grouped together into a single bucket; for example if `lower_bound` = 10,
-                        # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                  },
-                  &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                      # fixed character. Masking can start from the beginning or end of the string.
-                      # This can be used on data of any type (numbers, longs, and so on) and when
-                      # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                      # type. (This allows you to take a long like 123 and modify it to a string like
-                      # **3.
-                    &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                        # characters. For example, if the input string is `555-555-5555` and you
-                        # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                        # returns `***-**5-5555`.
-                      { # Characters to skip when doing deidentification of a value. These will be left
-                          # alone and skipped.
-                        &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                        &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                            # punctuation.
-                      },
-                    ],
-                    &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                        # masked. Skipped characters do not count towards this tally.
-                    &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                        # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                        # code or credit card number. This string must have a length of 1. If not
-                        # supplied, this value defaults to `*` for strings, and `0` for digits.
-                    &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                        # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                        # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                        # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                        # is `true`, then the string `12345` is masked as `12***`.
-                  },
                 },
                 &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # Only apply the transformation if the condition evaluates to true for the
                     # given `RecordCondition`. The conditions are allowed to reference fields
@@ -8299,8 +8401,6 @@
                     # - Redact a field if the date of birth field is greater than 85.
                     # a field.
                   &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
-                    &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
-                        # only supported value is `AND`.
                     &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
                       &quot;conditions&quot;: [ # A collection of conditions.
                         { # The field type of `value` and `field` do not need to match to be
@@ -8322,12 +8422,29 @@
                             #
                             # If we fail to compare do to type mismatch, a warning will be given and
                             # the condition will evaluate to false.
+                          &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                            &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                          },
                           &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
                               # Note that for the purposes of inspection or transformation, the number
                               # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                               # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                               # 123456789, the number of bytes would be counted as 9, even though an
                               # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
                             &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                             &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                 # and time zone are either specified elsewhere or are not significant. The date
@@ -8339,126 +8456,37 @@
                                 # * A year and month value, with a zero day, e.g. a credit card expiration date
                                 #
                                 # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
                               &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                   # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
                               &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                   # if specifying a year by itself or a year and month where the day is not
                                   # significant.
                             },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
                             &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          },
-                          &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                            &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                           },
                           &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                         },
                       ],
                     },
-                  },
-                },
-              },
-            ],
-            &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
-                # match any suppression rule are omitted from the output.
-              { # Configuration to suppress records whose suppression conditions evaluate to
-                  # true.
-                &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
-                    # evaluated to be suppressed from the transformed content.
-                    # a field.
-                  &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
                     &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
                         # only supported value is `AND`.
-                    &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
-                      &quot;conditions&quot;: [ # A collection of conditions.
-                        { # The field type of `value` and `field` do not need to match to be
-                            # considered equal, but not all comparisons are possible.
-                            # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
-                            # but all other comparisons are invalid with incompatible types.
-                            # A `value` of type:
-                            #
-                            # - `string` can be compared against all other types
-                            # - `boolean` can only be compared against other booleans
-                            # - `integer` can be compared against doubles or a string if the string value
-                            # can be parsed as an integer.
-                            # - `double` can be compared against integers or a string if the string can
-                            # be parsed as a double.
-                            # - `Timestamp` can be compared against strings in RFC 3339 date string
-                            # format.
-                            # - `TimeOfDay` can be compared against timestamps and strings in the format
-                            # of &#x27;HH:mm:ss&#x27;.
-                            #
-                            # If we fail to compare do to type mismatch, a warning will be given and
-                            # the condition will evaluate to false.
-                          &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
-                              # Note that for the purposes of inspection or transformation, the number
-                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                              # 123456789, the number of bytes would be counted as 9, even though an
-                              # int64 only holds up to 8 bytes of data.
-                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                # and time zone are either specified elsewhere or are not significant. The date
-                                # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                #
-                                # * A full date, with non-zero year, month and day values
-                                # * A month and day value, with a zero year, e.g. an anniversary
-                                # * A year on its own, with zero month and day values
-                                # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                #
-                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
-                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                  # month and day.
-                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                  # if specifying a year by itself or a year and month where the day is not
-                                  # significant.
-                            },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
-                            &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          },
-                          &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                            &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                          },
-                          &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
-                        },
-                      ],
-                    },
                   },
                 },
+                &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
+                  { # General identifier of a data field in a storage service.
+                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                  },
+                ],
               },
             ],
           },
         },
+        &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
+        &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
+        &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
+        &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
       },
     ],
   }</pre>
@@ -8499,10 +8527,6 @@
           # The template will have one of the following formats:
           # `projects/PROJECT_ID/deidentifyTemplates/TEMPLATE_ID` OR
           # `organizations/ORGANIZATION_ID/deidentifyTemplates/TEMPLATE_ID`
-      &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
-      &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
-      &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
-      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
       &quot;deidentifyConfig&quot;: { # The configuration that controls how the data will change. # ///////////// // The core content of the template  // ///////////////
         &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the dataset as free-form text and apply the same free text
             # transformation everywhere.
@@ -8513,11 +8537,18 @@
               # for a given infoType.
             { # A transformation to apply to text that is identified as a specific
                 # info_type.
-              &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-                &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                    # portion of the value.
-                  &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+              &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                  # this transformation to apply to all findings that correspond to
+                  # infoTypes that were requested in `InspectConfig`.
+                { # Type of information detected by the API.
+                  &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                      # creating a CustomInfoType, or one of the names listed
+                      # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
+              ],
+              &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
                 &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                     # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                     # to learn more.
@@ -8531,7 +8562,6 @@
                       # be more than 365250 days (1000 years) each direction.
                       #
                       # For example, 3 means shift date to at most 3 days into the future.
-                  &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                       # results in the same shift for the same context and crypto_key. If
                       # set, must also set context. Can only be applied to table items.
@@ -8539,10 +8569,6 @@
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -8560,10 +8586,62 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
+                  &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                },
+                &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                    # portion of the value.
+                  &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                 },
                 &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                 },
+                &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                  &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                },
                 &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                     # Uses SHA-256.
                     # The key size must be either 32 or 64 bytes.
@@ -8576,10 +8654,6 @@
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -8597,8 +8671,152 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
                 },
+                &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                    # fixed character. Masking can start from the beginning or end of the string.
+                    # This can be used on data of any type (numbers, longs, and so on) and when
+                    # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                    # type. (This allows you to take a long like 123 and modify it to a string like
+                    # **3.
+                  &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                      # characters. For example, if the input string is `555-555-5555` and you
+                      # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                      # returns `***-**5-5555`.
+                    { # Characters to skip when doing deidentification of a value. These will be left
+                        # alone and skipped.
+                      &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                      &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                          # punctuation.
+                    },
+                  ],
+                  &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                      # masked. Skipped characters do not count towards this tally.
+                  &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                      # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                      # code or credit card number. This string must have a length of 1. If not
+                      # supplied, this value defaults to `*` for strings, and `0` for digits.
+                  &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                      # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                      # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                      # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                      # is `true`, then the string `12345` is masked as `12***`.
+                },
+                &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                    # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                    # output would be &#x27;My phone number is &#x27;.
+                },
+                &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                    # Bucketing transformation can provide all of this functionality,
+                    # but requires more configuration. This message is provided as a convenience to
+                    # the user for simple bucketing strategies.
+                    #
+                    # The transformed value will be a hyphenated string of
+                    # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                    # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                    #
+                    # This can be used on data of type: double, long.
+                    #
+                    # If the bound Value type differs from the type of data
+                    # being transformed, we will first attempt converting the type of the data to
+                    # be transformed to match the type of the bound before comparing.
+                    #
+                    # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                  &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                      # grouped together into a single bucket; for example if `upper_bound` = 89,
+                      # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                  &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                      # grouped together into a single bucket; for example if `lower_bound` = 10,
+                      # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                  &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                      # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                      # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                      # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                },
                 &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                     # (FPE) with the FFX mode of operation; however when used in the
                     # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -8624,7 +8842,7 @@
                       #
                       # This annotation identifies the surrogate when inspecting content using the
                       # custom infoType
-                      # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                      # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                       # This facilitates reversal of the surrogate when it occurs in free text.
                       #
                       # In order for inspection to work properly, the name of this infoType must
@@ -8640,9 +8858,10 @@
                     &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                         # creating a CustomInfoType, or one of the names listed
                         # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                        # a built-in type. InfoType names should conform to the pattern
-                        # `[a-zA-Z0-9_]{1,64}`.
+                        # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                        # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                   },
+                  &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                   &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                       # identifier in two different contexts won&#x27;t be given the same surrogate. If
                       # the context is not set, a default tweak will be used.
@@ -8665,16 +8884,21 @@
                       # - a string is encoded in UTF-8 format followed by a single byte of value 2
                     &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                   },
-                  &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                  &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                      # that the FFX mode natively supports. This happens before/after
+                      # encryption/decryption.
+                      # Each character listed must appear only once.
+                      # Number of characters must be in the range [2, 95].
+                      # This must be encoded as ASCII.
+                      # The order of characters does not matter.
+                      # The full list of allowed characters is:
+                      # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                      # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                       # a key encryption key (KEK) stored by KMS).
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -8692,19 +8916,36 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
-                  &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                      # that the FFX mode natively supports. This happens before/after
-                      # encryption/decryption.
-                      # Each character listed must appear only once.
-                      # Number of characters must be in the range [2, 95].
-                      # This must be encoded as ASCII.
-                      # The order of characters does not matter.
                   &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                 },
                 &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                     # input. Outputs a base64 encoded representation of the encrypted output.
                     # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                  &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                      # referential integrity such that the same identifier in two different
+                      # contexts will be given a distinct surrogate. The context is appended to
+                      # plaintext value being encrypted. On decryption the provided context is
+                      # validated against the value used during encryption. If a context was
+                      # provided during encryption, same context must be provided during decryption
+                      # as well.
+                      #
+                      # If the context is not set, plaintext would be used as is for encryption.
+                      # If the context is set but:
+                      #
+                      # 1. there is no record present when transforming a given value or
+                      # 2. the field is not present when transforming a given value,
+                      #
+                      # plaintext would be used as is for encryption.
+                      #
+                      # Note that case (1) is expected when an `InfoTypeTransformation` is
+                      # applied to both structured and non-structured `ContentItem`s.
+                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                  },
                   &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                       # This annotation will be applied to the surrogate by prefixing it with
                       # the name of the custom info type followed by the number of
@@ -8740,38 +8981,14 @@
                     &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                         # creating a CustomInfoType, or one of the names listed
                         # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                        # a built-in type. InfoType names should conform to the pattern
-                        # `[a-zA-Z0-9_]{1,64}`.
-                  },
-                  &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                      # referential integrity such that the same identifier in two different
-                      # contexts will be given a distinct surrogate. The context is appended to
-                      # plaintext value being encrypted. On decryption the provided context is
-                      # validated against the value used during encryption. If a context was
-                      # provided during encryption, same context must be provided during decryption
-                      # as well.
-                      #
-                      # If the context is not set, plaintext would be used as is for encryption.
-                      # If the context is set but:
-                      #
-                      # 1. there is no record present when transforming a given value or
-                      # 2. the field is not present when transforming a given value,
-                      #
-                      # plaintext would be used as is for encryption.
-                      #
-                      # Note that case (1) is expected when an `InfoTypeTransformation` is
-                      # applied to both structured and non-structured `ContentItem`s.
-                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                        # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                   },
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                       # a key encryption key (KEK) stored by KMS).
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -8789,6 +9006,10 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
                 },
                 &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -8802,13 +9023,26 @@
                     # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                   &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                     { # Bucket is represented as a range, along with replacement values.
-                      &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                          # the default behavior will be to hyphenate the min-max range.
+                      &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                           # Note that for the purposes of inspection or transformation, the number
                           # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -8820,29 +9054,56 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
                         &quot;integerValue&quot;: &quot;A String&quot;, # integer
                         &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                             # or are specified elsewhere. An API may choose to allow leap seconds. Related
                             # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                           &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                               # allow the value 60 if it allows leap-seconds.
                           &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
                         },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       },
                       &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                           # used.
@@ -8851,6 +9112,20 @@
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -8862,269 +9137,20 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       },
                     },
                   ],
                 },
-                &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                    # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                    # output would be &#x27;My phone number is &#x27;.
-                },
-                &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                  &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                },
-                &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                    # Bucketing transformation can provide all of this functionality,
-                    # but requires more configuration. This message is provided as a convenience to
-                    # the user for simple bucketing strategies.
-                    #
-                    # The transformed value will be a hyphenated string of
-                    # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                    # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                    #
-                    # This can be used on data of type: double, long.
-                    #
-                    # If the bound Value type differs from the type of data
-                    # being transformed, we will first attempt converting the type of the data to
-                    # be transformed to match the type of the bound before comparing.
-                    #
-                    # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                  &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                      # grouped together into a single bucket; for example if `upper_bound` = 89,
-                      # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                  &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                      # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                      # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                      # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                  &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                      # grouped together into a single bucket; for example if `lower_bound` = 10,
-                      # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                },
-                &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                    # fixed character. Masking can start from the beginning or end of the string.
-                    # This can be used on data of any type (numbers, longs, and so on) and when
-                    # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                    # type. (This allows you to take a long like 123 and modify it to a string like
-                    # **3.
-                  &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                      # characters. For example, if the input string is `555-555-5555` and you
-                      # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                      # returns `***-**5-5555`.
-                    { # Characters to skip when doing deidentification of a value. These will be left
-                        # alone and skipped.
-                      &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                      &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                          # punctuation.
-                    },
-                  ],
-                  &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                      # masked. Skipped characters do not count towards this tally.
-                  &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                      # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                      # code or credit card number. This string must have a length of 1. If not
-                      # supplied, this value defaults to `*` for strings, and `0` for digits.
-                  &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                      # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                      # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                      # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                      # is `true`, then the string `12345` is masked as `12***`.
-                },
               },
-              &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                  # this transformation to apply to all findings that correspond to
-                  # infoTypes that were requested in `InspectConfig`.
-                { # Type of information detected by the API.
-                  &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                      # creating a CustomInfoType, or one of the names listed
-                      # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
-                },
-              ],
             },
           ],
         },
@@ -9137,25 +9163,103 @@
             # Information about any incompatible transformations, and how they were
             # handled, is returned in the response as part of the
             # `TransformationOverviews`.
-          &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
-          },
           &quot;leaveUntransformed&quot;: { # Skips the data without modifying it if the requested transformation would # Ignore errors
               # cause an error. For example, if a `DateShift` transformation were applied
               # an an IP address, this mode would leave the IP address unchanged in the
               # response.
           },
+          &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
+          },
         },
         &quot;recordTransformations&quot;: { # A type of transformation that is applied over structured data such as a # Treat the dataset as structured. Transformations can be applied to
             # specific locations within structured datasets, such as transforming
             # a column within a table.
             # table.
+          &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
+              # match any suppression rule are omitted from the output.
+            { # Configuration to suppress records whose suppression conditions evaluate to
+                # true.
+              &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
+                  # evaluated to be suppressed from the transformed content.
+                  # a field.
+                &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
+                  &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
+                    &quot;conditions&quot;: [ # A collection of conditions.
+                      { # The field type of `value` and `field` do not need to match to be
+                          # considered equal, but not all comparisons are possible.
+                          # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
+                          # but all other comparisons are invalid with incompatible types.
+                          # A `value` of type:
+                          #
+                          # - `string` can be compared against all other types
+                          # - `boolean` can only be compared against other booleans
+                          # - `integer` can be compared against doubles or a string if the string value
+                          # can be parsed as an integer.
+                          # - `double` can be compared against integers or a string if the string can
+                          # be parsed as a double.
+                          # - `Timestamp` can be compared against strings in RFC 3339 date string
+                          # format.
+                          # - `TimeOfDay` can be compared against timestamps and strings in the format
+                          # of &#x27;HH:mm:ss&#x27;.
+                          #
+                          # If we fail to compare do to type mismatch, a warning will be given and
+                          # the condition will evaluate to false.
+                        &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        },
+                        &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
+                          },
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                        &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
+                      },
+                    ],
+                  },
+                  &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
+                      # only supported value is `AND`.
+                },
+              },
+            },
+          ],
           &quot;fieldTransformations&quot;: [ # Transform the record by applying various field transformations.
             { # The transformation to apply to the field.
-              &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
-                { # General identifier of a data field in a storage service.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                },
-              ],
               &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the contents of the field as free text, and selectively
                   # transform content that matches an `InfoType`.
                   # apply various `PrimitiveTransformation`s to each finding, where the
@@ -9165,11 +9269,18 @@
                     # for a given infoType.
                   { # A transformation to apply to text that is identified as a specific
                       # info_type.
-                    &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-                      &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                          # portion of the value.
-                        &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+                    &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                        # this transformation to apply to all findings that correspond to
+                        # infoTypes that were requested in `InspectConfig`.
+                      { # Type of information detected by the API.
+                        &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                            # creating a CustomInfoType, or one of the names listed
+                            # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                            # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                            # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                       },
+                    ],
+                    &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
                       &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                           # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                           # to learn more.
@@ -9183,7 +9294,6 @@
                             # be more than 365250 days (1000 years) each direction.
                             #
                             # For example, 3 means shift date to at most 3 days into the future.
-                        &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                         &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                             # results in the same shift for the same context and crypto_key. If
                             # set, must also set context. Can only be applied to table items.
@@ -9191,10 +9301,6 @@
                             # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                             # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                             # unwrap the data crypto key.
-                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                              # leaking the key. Choose another type of key if possible.
-                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                          },
                           &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                               # It will be discarded after the request finishes.
                             &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -9212,10 +9318,62 @@
                             &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                             &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                           },
+                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                              # leaking the key. Choose another type of key if possible.
+                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                          },
                         },
+                        &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                      },
+                      &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                          # portion of the value.
+                        &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                       },
                       &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                       },
+                      &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                        &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
+                          },
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                      },
                       &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                           # Uses SHA-256.
                           # The key size must be either 32 or 64 bytes.
@@ -9228,10 +9386,6 @@
                             # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                             # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                             # unwrap the data crypto key.
-                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                              # leaking the key. Choose another type of key if possible.
-                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                          },
                           &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                               # It will be discarded after the request finishes.
                             &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -9249,8 +9403,152 @@
                             &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                             &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                           },
+                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                              # leaking the key. Choose another type of key if possible.
+                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                          },
                         },
                       },
+                      &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                          # fixed character. Masking can start from the beginning or end of the string.
+                          # This can be used on data of any type (numbers, longs, and so on) and when
+                          # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                          # type. (This allows you to take a long like 123 and modify it to a string like
+                          # **3.
+                        &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                            # characters. For example, if the input string is `555-555-5555` and you
+                            # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                            # returns `***-**5-5555`.
+                          { # Characters to skip when doing deidentification of a value. These will be left
+                              # alone and skipped.
+                            &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                            &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                                # punctuation.
+                          },
+                        ],
+                        &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                            # masked. Skipped characters do not count towards this tally.
+                        &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                            # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                            # code or credit card number. This string must have a length of 1. If not
+                            # supplied, this value defaults to `*` for strings, and `0` for digits.
+                        &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                            # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                            # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                            # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                            # is `true`, then the string `12345` is masked as `12***`.
+                      },
+                      &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                          # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                          # output would be &#x27;My phone number is &#x27;.
+                      },
+                      &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                          # Bucketing transformation can provide all of this functionality,
+                          # but requires more configuration. This message is provided as a convenience to
+                          # the user for simple bucketing strategies.
+                          #
+                          # The transformed value will be a hyphenated string of
+                          # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                          # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                          #
+                          # This can be used on data of type: double, long.
+                          #
+                          # If the bound Value type differs from the type of data
+                          # being transformed, we will first attempt converting the type of the data to
+                          # be transformed to match the type of the bound before comparing.
+                          #
+                          # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                        &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                            # grouped together into a single bucket; for example if `upper_bound` = 89,
+                            # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
+                          },
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                        &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                            # grouped together into a single bucket; for example if `lower_bound` = 10,
+                            # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                            # Note that for the purposes of inspection or transformation, the number
+                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                            # 123456789, the number of bytes would be counted as 9, even though an
+                            # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
+                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                              # and time zone are either specified elsewhere or are not significant. The date
+                              # is relative to the Proleptic Gregorian Calendar. This can represent:
+                              #
+                              # * A full date, with non-zero year, month and day values
+                              # * A month and day value, with a zero year, e.g. an anniversary
+                              # * A year on its own, with zero month and day values
+                              # * A year and month value, with a zero day, e.g. a credit card expiration date
+                              #
+                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
+                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                # if specifying a year by itself or a year and month where the day is not
+                                # significant.
+                          },
+                          &quot;booleanValue&quot;: True or False, # boolean
+                        },
+                        &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                            # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                            # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                            # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                      },
                       &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                           # (FPE) with the FFX mode of operation; however when used in the
                           # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -9276,7 +9574,7 @@
                             #
                             # This annotation identifies the surrogate when inspecting content using the
                             # custom infoType
-                            # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                            # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                             # This facilitates reversal of the surrogate when it occurs in free text.
                             #
                             # In order for inspection to work properly, the name of this infoType must
@@ -9292,9 +9590,10 @@
                           &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                               # creating a CustomInfoType, or one of the names listed
                               # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                              # a built-in type. InfoType names should conform to the pattern
-                              # `[a-zA-Z0-9_]{1,64}`.
+                              # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                              # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                         },
+                        &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                         &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                             # identifier in two different contexts won&#x27;t be given the same surrogate. If
                             # the context is not set, a default tweak will be used.
@@ -9317,16 +9616,21 @@
                             # - a string is encoded in UTF-8 format followed by a single byte of value 2
                           &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                         },
-                        &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                        &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                            # that the FFX mode natively supports. This happens before/after
+                            # encryption/decryption.
+                            # Each character listed must appear only once.
+                            # Number of characters must be in the range [2, 95].
+                            # This must be encoded as ASCII.
+                            # The order of characters does not matter.
+                            # The full list of allowed characters is:
+                            # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                            # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                         &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                             # a key encryption key (KEK) stored by KMS).
                             # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                             # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                             # unwrap the data crypto key.
-                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                              # leaking the key. Choose another type of key if possible.
-                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                          },
                           &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                               # It will be discarded after the request finishes.
                             &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -9344,19 +9648,36 @@
                             &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                             &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                           },
+                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                              # leaking the key. Choose another type of key if possible.
+                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                          },
                         },
-                        &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                            # that the FFX mode natively supports. This happens before/after
-                            # encryption/decryption.
-                            # Each character listed must appear only once.
-                            # Number of characters must be in the range [2, 95].
-                            # This must be encoded as ASCII.
-                            # The order of characters does not matter.
                         &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                       },
                       &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                           # input. Outputs a base64 encoded representation of the encrypted output.
                           # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                        &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                            # referential integrity such that the same identifier in two different
+                            # contexts will be given a distinct surrogate. The context is appended to
+                            # plaintext value being encrypted. On decryption the provided context is
+                            # validated against the value used during encryption. If a context was
+                            # provided during encryption, same context must be provided during decryption
+                            # as well.
+                            #
+                            # If the context is not set, plaintext would be used as is for encryption.
+                            # If the context is set but:
+                            #
+                            # 1. there is no record present when transforming a given value or
+                            # 2. the field is not present when transforming a given value,
+                            #
+                            # plaintext would be used as is for encryption.
+                            #
+                            # Note that case (1) is expected when an `InfoTypeTransformation` is
+                            # applied to both structured and non-structured `ContentItem`s.
+                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        },
                         &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                             # This annotation will be applied to the surrogate by prefixing it with
                             # the name of the custom info type followed by the number of
@@ -9392,38 +9713,14 @@
                           &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                               # creating a CustomInfoType, or one of the names listed
                               # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                              # a built-in type. InfoType names should conform to the pattern
-                              # `[a-zA-Z0-9_]{1,64}`.
-                        },
-                        &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                            # referential integrity such that the same identifier in two different
-                            # contexts will be given a distinct surrogate. The context is appended to
-                            # plaintext value being encrypted. On decryption the provided context is
-                            # validated against the value used during encryption. If a context was
-                            # provided during encryption, same context must be provided during decryption
-                            # as well.
-                            #
-                            # If the context is not set, plaintext would be used as is for encryption.
-                            # If the context is set but:
-                            #
-                            # 1. there is no record present when transforming a given value or
-                            # 2. the field is not present when transforming a given value,
-                            #
-                            # plaintext would be used as is for encryption.
-                            #
-                            # Note that case (1) is expected when an `InfoTypeTransformation` is
-                            # applied to both structured and non-structured `ContentItem`s.
-                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                              # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                              # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                         },
                         &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                             # a key encryption key (KEK) stored by KMS).
                             # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                             # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                             # unwrap the data crypto key.
-                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                              # leaking the key. Choose another type of key if possible.
-                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                          },
                           &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                               # It will be discarded after the request finishes.
                             &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -9441,6 +9738,10 @@
                             &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                             &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                           },
+                          &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                              # leaking the key. Choose another type of key if possible.
+                            &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                          },
                         },
                       },
                       &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -9454,13 +9755,26 @@
                           # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                         &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                           { # Bucket is represented as a range, along with replacement values.
-                            &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                                # the default behavior will be to hyphenate the min-max range.
+                            &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                                 # Note that for the purposes of inspection or transformation, the number
                                 # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                                 # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                                 # 123456789, the number of bytes would be counted as 9, even though an
                                 # int64 only holds up to 8 bytes of data.
+                              &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                              &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                  # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                  # types are google.type.Date and `google.protobuf.Timestamp`.
+                                &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                    # allow the value 60 if it allows leap-seconds.
+                                &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                              },
+                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                              &quot;floatValue&quot;: 3.14, # float
+                              &quot;stringValue&quot;: &quot;A String&quot;, # string
                               &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                               &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                   # and time zone are either specified elsewhere or are not significant. The date
@@ -9472,29 +9786,56 @@
                                   # * A year and month value, with a zero day, e.g. a credit card expiration date
                                   #
                                   # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                    # a year.
                                 &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                     # month and day.
+                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                    # a year.
                                 &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                     # if specifying a year by itself or a year and month where the day is not
                                     # significant.
                               },
-                              &quot;stringValue&quot;: &quot;A String&quot;, # string
+                              &quot;booleanValue&quot;: True or False, # boolean
+                            },
+                            &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                                # Note that for the purposes of inspection or transformation, the number
+                                # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                                # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                                # 123456789, the number of bytes would be counted as 9, even though an
+                                # int64 only holds up to 8 bytes of data.
                               &quot;integerValue&quot;: &quot;A String&quot;, # integer
                               &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                                   # or are specified elsewhere. An API may choose to allow leap seconds. Related
                                   # types are google.type.Date and `google.protobuf.Timestamp`.
-                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                                 &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                                     # allow the value 60 if it allows leap-seconds.
                                 &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                              },
+                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                              &quot;floatValue&quot;: 3.14, # float
+                              &quot;stringValue&quot;: &quot;A String&quot;, # string
+                              &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                              &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                  # and time zone are either specified elsewhere or are not significant. The date
+                                  # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                  #
+                                  # * A full date, with non-zero year, month and day values
+                                  # * A month and day value, with a zero year, e.g. an anniversary
+                                  # * A year on its own, with zero month and day values
+                                  # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                  #
+                                  # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                                &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                    # month and day.
+                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                    # a year.
+                                &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                    # if specifying a year by itself or a year and month where the day is not
+                                    # significant.
                               },
                               &quot;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             },
                             &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                                 # used.
@@ -9503,6 +9844,20 @@
                                 # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                                 # 123456789, the number of bytes would be counted as 9, even though an
                                 # int64 only holds up to 8 bytes of data.
+                              &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                              &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                  # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                  # types are google.type.Date and `google.protobuf.Timestamp`.
+                                &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                    # allow the value 60 if it allows leap-seconds.
+                                &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                              },
+                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                              &quot;floatValue&quot;: 3.14, # float
+                              &quot;stringValue&quot;: &quot;A String&quot;, # string
                               &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                               &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                   # and time zone are either specified elsewhere or are not significant. The date
@@ -9514,277 +9869,24 @@
                                   # * A year and month value, with a zero day, e.g. a credit card expiration date
                                   #
                                   # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                    # a year.
                                 &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                     # month and day.
+                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                    # a year.
                                 &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                     # if specifying a year by itself or a year and month where the day is not
                                     # significant.
                               },
-                              &quot;stringValue&quot;: &quot;A String&quot;, # string
-                              &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                              &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                  # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                  # types are google.type.Date and `google.protobuf.Timestamp`.
-                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                                &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                    # allow the value 60 if it allows leap-seconds.
-                                &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                              },
                               &quot;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            },
-                            &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                                # Note that for the purposes of inspection or transformation, the number
-                                # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                                # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                                # 123456789, the number of bytes would be counted as 9, even though an
-                                # int64 only holds up to 8 bytes of data.
-                              &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                              &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                  # and time zone are either specified elsewhere or are not significant. The date
-                                  # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                  #
-                                  # * A full date, with non-zero year, month and day values
-                                  # * A month and day value, with a zero year, e.g. an anniversary
-                                  # * A year on its own, with zero month and day values
-                                  # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                  #
-                                  # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                    # a year.
-                                &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                    # month and day.
-                                &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                    # if specifying a year by itself or a year and month where the day is not
-                                    # significant.
-                              },
-                              &quot;stringValue&quot;: &quot;A String&quot;, # string
-                              &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                              &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                  # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                  # types are google.type.Date and `google.protobuf.Timestamp`.
-                                &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                    # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                                &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                                &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                    # allow the value 60 if it allows leap-seconds.
-                                &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                              },
-                              &quot;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             },
                           },
                         ],
                       },
-                      &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                          # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                          # output would be &#x27;My phone number is &#x27;.
-                      },
-                      &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                        &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                      },
-                      &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                          # Bucketing transformation can provide all of this functionality,
-                          # but requires more configuration. This message is provided as a convenience to
-                          # the user for simple bucketing strategies.
-                          #
-                          # The transformed value will be a hyphenated string of
-                          # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                          # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                          #
-                          # This can be used on data of type: double, long.
-                          #
-                          # If the bound Value type differs from the type of data
-                          # being transformed, we will first attempt converting the type of the data to
-                          # be transformed to match the type of the bound before comparing.
-                          #
-                          # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                        &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                            # grouped together into a single bucket; for example if `upper_bound` = 89,
-                            # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                        &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                            # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                            # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                            # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                        &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                            # grouped together into a single bucket; for example if `lower_bound` = 10,
-                            # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                      },
-                      &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                          # fixed character. Masking can start from the beginning or end of the string.
-                          # This can be used on data of any type (numbers, longs, and so on) and when
-                          # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                          # type. (This allows you to take a long like 123 and modify it to a string like
-                          # **3.
-                        &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                            # characters. For example, if the input string is `555-555-5555` and you
-                            # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                            # returns `***-**5-5555`.
-                          { # Characters to skip when doing deidentification of a value. These will be left
-                              # alone and skipped.
-                            &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                            &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                                # punctuation.
-                          },
-                        ],
-                        &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                            # masked. Skipped characters do not count towards this tally.
-                        &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                            # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                            # code or credit card number. This string must have a length of 1. If not
-                            # supplied, this value defaults to `*` for strings, and `0` for digits.
-                        &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                            # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                            # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                            # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                            # is `true`, then the string `12345` is masked as `12***`.
-                      },
                     },
-                    &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                        # this transformation to apply to all findings that correspond to
-                        # infoTypes that were requested in `InspectConfig`.
-                      { # Type of information detected by the API.
-                        &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                            # creating a CustomInfoType, or one of the names listed
-                            # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                            # a built-in type. InfoType names should conform to the pattern
-                            # `[a-zA-Z0-9_]{1,64}`.
-                      },
-                    ],
                   },
                 ],
               },
               &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Apply the transformation to the entire field.
-                &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                    # portion of the value.
-                  &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
-                },
                 &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                     # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                     # to learn more.
@@ -9798,7 +9900,6 @@
                       # be more than 365250 days (1000 years) each direction.
                       #
                       # For example, 3 means shift date to at most 3 days into the future.
-                  &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                       # results in the same shift for the same context and crypto_key. If
                       # set, must also set context. Can only be applied to table items.
@@ -9806,10 +9907,6 @@
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -9827,10 +9924,62 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
+                  &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                },
+                &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                    # portion of the value.
+                  &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                 },
                 &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                 },
+                &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                  &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                },
                 &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                     # Uses SHA-256.
                     # The key size must be either 32 or 64 bytes.
@@ -9843,10 +9992,6 @@
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -9864,8 +10009,152 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
                 },
+                &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                    # fixed character. Masking can start from the beginning or end of the string.
+                    # This can be used on data of any type (numbers, longs, and so on) and when
+                    # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                    # type. (This allows you to take a long like 123 and modify it to a string like
+                    # **3.
+                  &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                      # characters. For example, if the input string is `555-555-5555` and you
+                      # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                      # returns `***-**5-5555`.
+                    { # Characters to skip when doing deidentification of a value. These will be left
+                        # alone and skipped.
+                      &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                      &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                          # punctuation.
+                    },
+                  ],
+                  &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                      # masked. Skipped characters do not count towards this tally.
+                  &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                      # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                      # code or credit card number. This string must have a length of 1. If not
+                      # supplied, this value defaults to `*` for strings, and `0` for digits.
+                  &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                      # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                      # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                      # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                      # is `true`, then the string `12345` is masked as `12***`.
+                },
+                &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                    # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                    # output would be &#x27;My phone number is &#x27;.
+                },
+                &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                    # Bucketing transformation can provide all of this functionality,
+                    # but requires more configuration. This message is provided as a convenience to
+                    # the user for simple bucketing strategies.
+                    #
+                    # The transformed value will be a hyphenated string of
+                    # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                    # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                    #
+                    # This can be used on data of type: double, long.
+                    #
+                    # If the bound Value type differs from the type of data
+                    # being transformed, we will first attempt converting the type of the data to
+                    # be transformed to match the type of the bound before comparing.
+                    #
+                    # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                  &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                      # grouped together into a single bucket; for example if `upper_bound` = 89,
+                      # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                  &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                      # grouped together into a single bucket; for example if `lower_bound` = 10,
+                      # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                      # Note that for the purposes of inspection or transformation, the number
+                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                      # 123456789, the number of bytes would be counted as 9, even though an
+                      # int64 only holds up to 8 bytes of data.
+                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                        # types are google.type.Date and `google.protobuf.Timestamp`.
+                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                          # allow the value 60 if it allows leap-seconds.
+                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                    },
+                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                    &quot;floatValue&quot;: 3.14, # float
+                    &quot;stringValue&quot;: &quot;A String&quot;, # string
+                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                        # and time zone are either specified elsewhere or are not significant. The date
+                        # is relative to the Proleptic Gregorian Calendar. This can represent:
+                        #
+                        # * A full date, with non-zero year, month and day values
+                        # * A month and day value, with a zero year, e.g. an anniversary
+                        # * A year on its own, with zero month and day values
+                        # * A year and month value, with a zero day, e.g. a credit card expiration date
+                        #
+                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                          # month and day.
+                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                          # a year.
+                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                          # if specifying a year by itself or a year and month where the day is not
+                          # significant.
+                    },
+                    &quot;booleanValue&quot;: True or False, # boolean
+                  },
+                  &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                      # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                      # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                      # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                },
                 &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                     # (FPE) with the FFX mode of operation; however when used in the
                     # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -9891,7 +10180,7 @@
                       #
                       # This annotation identifies the surrogate when inspecting content using the
                       # custom infoType
-                      # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                      # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                       # This facilitates reversal of the surrogate when it occurs in free text.
                       #
                       # In order for inspection to work properly, the name of this infoType must
@@ -9907,9 +10196,10 @@
                     &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                         # creating a CustomInfoType, or one of the names listed
                         # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                        # a built-in type. InfoType names should conform to the pattern
-                        # `[a-zA-Z0-9_]{1,64}`.
+                        # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                        # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                   },
+                  &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                   &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                       # identifier in two different contexts won&#x27;t be given the same surrogate. If
                       # the context is not set, a default tweak will be used.
@@ -9932,16 +10222,21 @@
                       # - a string is encoded in UTF-8 format followed by a single byte of value 2
                     &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                   },
-                  &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                  &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                      # that the FFX mode natively supports. This happens before/after
+                      # encryption/decryption.
+                      # Each character listed must appear only once.
+                      # Number of characters must be in the range [2, 95].
+                      # This must be encoded as ASCII.
+                      # The order of characters does not matter.
+                      # The full list of allowed characters is:
+                      # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                      # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                       # a key encryption key (KEK) stored by KMS).
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -9959,19 +10254,36 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
-                  &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                      # that the FFX mode natively supports. This happens before/after
-                      # encryption/decryption.
-                      # Each character listed must appear only once.
-                      # Number of characters must be in the range [2, 95].
-                      # This must be encoded as ASCII.
-                      # The order of characters does not matter.
                   &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                 },
                 &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                     # input. Outputs a base64 encoded representation of the encrypted output.
                     # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                  &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                      # referential integrity such that the same identifier in two different
+                      # contexts will be given a distinct surrogate. The context is appended to
+                      # plaintext value being encrypted. On decryption the provided context is
+                      # validated against the value used during encryption. If a context was
+                      # provided during encryption, same context must be provided during decryption
+                      # as well.
+                      #
+                      # If the context is not set, plaintext would be used as is for encryption.
+                      # If the context is set but:
+                      #
+                      # 1. there is no record present when transforming a given value or
+                      # 2. the field is not present when transforming a given value,
+                      #
+                      # plaintext would be used as is for encryption.
+                      #
+                      # Note that case (1) is expected when an `InfoTypeTransformation` is
+                      # applied to both structured and non-structured `ContentItem`s.
+                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                  },
                   &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                       # This annotation will be applied to the surrogate by prefixing it with
                       # the name of the custom info type followed by the number of
@@ -10007,38 +10319,14 @@
                     &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                         # creating a CustomInfoType, or one of the names listed
                         # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                        # a built-in type. InfoType names should conform to the pattern
-                        # `[a-zA-Z0-9_]{1,64}`.
-                  },
-                  &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                      # referential integrity such that the same identifier in two different
-                      # contexts will be given a distinct surrogate. The context is appended to
-                      # plaintext value being encrypted. On decryption the provided context is
-                      # validated against the value used during encryption. If a context was
-                      # provided during encryption, same context must be provided during decryption
-                      # as well.
-                      #
-                      # If the context is not set, plaintext would be used as is for encryption.
-                      # If the context is set but:
-                      #
-                      # 1. there is no record present when transforming a given value or
-                      # 2. the field is not present when transforming a given value,
-                      #
-                      # plaintext would be used as is for encryption.
-                      #
-                      # Note that case (1) is expected when an `InfoTypeTransformation` is
-                      # applied to both structured and non-structured `ContentItem`s.
-                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                        # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                   },
                   &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                       # a key encryption key (KEK) stored by KMS).
                       # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                       # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                       # unwrap the data crypto key.
-                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                        # leaking the key. Choose another type of key if possible.
-                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                    },
                     &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                         # It will be discarded after the request finishes.
                       &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -10056,6 +10344,10 @@
                       &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                       &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                     },
+                    &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                        # leaking the key. Choose another type of key if possible.
+                      &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                    },
                   },
                 },
                 &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -10069,13 +10361,26 @@
                     # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                   &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                     { # Bucket is represented as a range, along with replacement values.
-                      &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                          # the default behavior will be to hyphenate the min-max range.
+                      &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                           # Note that for the purposes of inspection or transformation, the number
                           # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -10087,29 +10392,56 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
                         &quot;integerValue&quot;: &quot;A String&quot;, # integer
                         &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                             # or are specified elsewhere. An API may choose to allow leap seconds. Related
                             # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                           &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                               # allow the value 60 if it allows leap-seconds.
                           &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
                         },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       },
                       &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                           # used.
@@ -10118,6 +10450,20 @@
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -10129,257 +10475,19 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       },
                     },
                   ],
                 },
-                &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                    # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                    # output would be &#x27;My phone number is &#x27;.
-                },
-                &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                  &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                },
-                &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                    # Bucketing transformation can provide all of this functionality,
-                    # but requires more configuration. This message is provided as a convenience to
-                    # the user for simple bucketing strategies.
-                    #
-                    # The transformed value will be a hyphenated string of
-                    # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                    # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                    #
-                    # This can be used on data of type: double, long.
-                    #
-                    # If the bound Value type differs from the type of data
-                    # being transformed, we will first attempt converting the type of the data to
-                    # be transformed to match the type of the bound before comparing.
-                    #
-                    # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                  &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                      # grouped together into a single bucket; for example if `upper_bound` = 89,
-                      # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                  &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                      # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                      # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                      # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                  &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                      # grouped together into a single bucket; for example if `lower_bound` = 10,
-                      # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                      # Note that for the purposes of inspection or transformation, the number
-                      # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                      # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                      # 123456789, the number of bytes would be counted as 9, even though an
-                      # int64 only holds up to 8 bytes of data.
-                    &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                    &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                        # and time zone are either specified elsewhere or are not significant. The date
-                        # is relative to the Proleptic Gregorian Calendar. This can represent:
-                        #
-                        # * A full date, with non-zero year, month and day values
-                        # * A month and day value, with a zero year, e.g. an anniversary
-                        # * A year on its own, with zero month and day values
-                        # * A year and month value, with a zero day, e.g. a credit card expiration date
-                        #
-                        # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                      &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                          # a year.
-                      &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                          # month and day.
-                      &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                          # if specifying a year by itself or a year and month where the day is not
-                          # significant.
-                    },
-                    &quot;stringValue&quot;: &quot;A String&quot;, # string
-                    &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                    &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                        # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                        # types are google.type.Date and `google.protobuf.Timestamp`.
-                      &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                          # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                      &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                      &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                          # allow the value 60 if it allows leap-seconds.
-                      &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                    },
-                    &quot;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  },
-                },
-                &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                    # fixed character. Masking can start from the beginning or end of the string.
-                    # This can be used on data of any type (numbers, longs, and so on) and when
-                    # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                    # type. (This allows you to take a long like 123 and modify it to a string like
-                    # **3.
-                  &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                      # characters. For example, if the input string is `555-555-5555` and you
-                      # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                      # returns `***-**5-5555`.
-                    { # Characters to skip when doing deidentification of a value. These will be left
-                        # alone and skipped.
-                      &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                      &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                          # punctuation.
-                    },
-                  ],
-                  &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                      # masked. Skipped characters do not count towards this tally.
-                  &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                      # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                      # code or credit card number. This string must have a length of 1. If not
-                      # supplied, this value defaults to `*` for strings, and `0` for digits.
-                  &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                      # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                      # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                      # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                      # is `true`, then the string `12345` is masked as `12***`.
-                },
               },
               &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # Only apply the transformation if the condition evaluates to true for the
                   # given `RecordCondition`. The conditions are allowed to reference fields
@@ -10392,8 +10500,6 @@
                   # - Redact a field if the date of birth field is greater than 85.
                   # a field.
                 &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
-                  &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
-                      # only supported value is `AND`.
                   &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
                     &quot;conditions&quot;: [ # A collection of conditions.
                       { # The field type of `value` and `field` do not need to match to be
@@ -10415,12 +10521,29 @@
                           #
                           # If we fail to compare do to type mismatch, a warning will be given and
                           # the condition will evaluate to false.
+                        &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                        },
                         &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
                             # Note that for the purposes of inspection or transformation, the number
                             # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                             # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                             # 123456789, the number of bytes would be counted as 9, even though an
                             # int64 only holds up to 8 bytes of data.
+                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                              # types are google.type.Date and `google.protobuf.Timestamp`.
+                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                # allow the value 60 if it allows leap-seconds.
+                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                          },
+                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                          &quot;floatValue&quot;: 3.14, # float
+                          &quot;stringValue&quot;: &quot;A String&quot;, # string
                           &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                           &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                               # and time zone are either specified elsewhere or are not significant. The date
@@ -10432,126 +10555,37 @@
                               # * A year and month value, with a zero day, e.g. a credit card expiration date
                               #
                               # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
                             &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                 # month and day.
+                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                # a year.
                             &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                 # if specifying a year by itself or a year and month where the day is not
                                 # significant.
                           },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
                           &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                        &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                         },
                         &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                       },
                     ],
                   },
-                },
-              },
-            },
-          ],
-          &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
-              # match any suppression rule are omitted from the output.
-            { # Configuration to suppress records whose suppression conditions evaluate to
-                # true.
-              &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
-                  # evaluated to be suppressed from the transformed content.
-                  # a field.
-                &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
                   &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
                       # only supported value is `AND`.
-                  &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
-                    &quot;conditions&quot;: [ # A collection of conditions.
-                      { # The field type of `value` and `field` do not need to match to be
-                          # considered equal, but not all comparisons are possible.
-                          # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
-                          # but all other comparisons are invalid with incompatible types.
-                          # A `value` of type:
-                          #
-                          # - `string` can be compared against all other types
-                          # - `boolean` can only be compared against other booleans
-                          # - `integer` can be compared against doubles or a string if the string value
-                          # can be parsed as an integer.
-                          # - `double` can be compared against integers or a string if the string can
-                          # be parsed as a double.
-                          # - `Timestamp` can be compared against strings in RFC 3339 date string
-                          # format.
-                          # - `TimeOfDay` can be compared against timestamps and strings in the format
-                          # of &#x27;HH:mm:ss&#x27;.
-                          #
-                          # If we fail to compare do to type mismatch, a warning will be given and
-                          # the condition will evaluate to false.
-                        &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
-                            # Note that for the purposes of inspection or transformation, the number
-                            # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                            # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                            # 123456789, the number of bytes would be counted as 9, even though an
-                            # int64 only holds up to 8 bytes of data.
-                          &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                          &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                              # and time zone are either specified elsewhere or are not significant. The date
-                              # is relative to the Proleptic Gregorian Calendar. This can represent:
-                              #
-                              # * A full date, with non-zero year, month and day values
-                              # * A month and day value, with a zero year, e.g. an anniversary
-                              # * A year on its own, with zero month and day values
-                              # * A year and month value, with a zero day, e.g. a credit card expiration date
-                              #
-                              # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                # a year.
-                            &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                # month and day.
-                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                # if specifying a year by itself or a year and month where the day is not
-                                # significant.
-                          },
-                          &quot;stringValue&quot;: &quot;A String&quot;, # string
-                          &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                          &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                              # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                              # types are google.type.Date and `google.protobuf.Timestamp`.
-                            &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                            &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                            &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                # allow the value 60 if it allows leap-seconds.
-                            &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                          },
-                          &quot;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        },
-                        &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                          &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                        },
-                        &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
-                      },
-                    ],
-                  },
                 },
               },
+              &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
+                { # General identifier of a data field in a storage service.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
+              ],
             },
           ],
         },
       },
+      &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
+      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
+      &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
+      &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
     },
     &quot;updateMask&quot;: &quot;A String&quot;, # Mask to control which fields get updated.
   }
@@ -10571,10 +10605,6 @@
         # The template will have one of the following formats:
         # `projects/PROJECT_ID/deidentifyTemplates/TEMPLATE_ID` OR
         # `organizations/ORGANIZATION_ID/deidentifyTemplates/TEMPLATE_ID`
-    &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
-    &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
-    &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
-    &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
     &quot;deidentifyConfig&quot;: { # The configuration that controls how the data will change. # ///////////// // The core content of the template  // ///////////////
       &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the dataset as free-form text and apply the same free text
           # transformation everywhere.
@@ -10585,11 +10615,18 @@
             # for a given infoType.
           { # A transformation to apply to text that is identified as a specific
               # info_type.
-            &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                  # portion of the value.
-                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+            &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                # this transformation to apply to all findings that correspond to
+                # infoTypes that were requested in `InspectConfig`.
+              { # Type of information detected by the API.
+                &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                    # creating a CustomInfoType, or one of the names listed
+                    # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                    # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                    # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
               },
+            ],
+            &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
               &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                   # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                   # to learn more.
@@ -10603,7 +10640,6 @@
                     # be more than 365250 days (1000 years) each direction.
                     #
                     # For example, 3 means shift date to at most 3 days into the future.
-                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                     # results in the same shift for the same context and crypto_key. If
                     # set, must also set context. Can only be applied to table items.
@@ -10611,10 +10647,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -10632,10 +10664,62 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
+                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+              },
+              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                  # portion of the value.
+                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
               },
               &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
               },
+              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+              },
               &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                   # Uses SHA-256.
                   # The key size must be either 32 or 64 bytes.
@@ -10648,10 +10732,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -10669,8 +10749,152 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
+              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                  # fixed character. Masking can start from the beginning or end of the string.
+                  # This can be used on data of any type (numbers, longs, and so on) and when
+                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                  # type. (This allows you to take a long like 123 and modify it to a string like
+                  # **3.
+                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                    # characters. For example, if the input string is `555-555-5555` and you
+                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                    # returns `***-**5-5555`.
+                  { # Characters to skip when doing deidentification of a value. These will be left
+                      # alone and skipped.
+                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                        # punctuation.
+                  },
+                ],
+                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                    # masked. Skipped characters do not count towards this tally.
+                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                    # code or credit card number. This string must have a length of 1. If not
+                    # supplied, this value defaults to `*` for strings, and `0` for digits.
+                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                    # is `true`, then the string `12345` is masked as `12***`.
+              },
+              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                  # output would be &#x27;My phone number is &#x27;.
+              },
+              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                  # Bucketing transformation can provide all of this functionality,
+                  # but requires more configuration. This message is provided as a convenience to
+                  # the user for simple bucketing strategies.
+                  #
+                  # The transformed value will be a hyphenated string of
+                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                  #
+                  # This can be used on data of type: double, long.
+                  #
+                  # If the bound Value type differs from the type of data
+                  # being transformed, we will first attempt converting the type of the data to
+                  # be transformed to match the type of the bound before comparing.
+                  #
+                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                    # grouped together into a single bucket; for example if `upper_bound` = 89,
+                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                    # grouped together into a single bucket; for example if `lower_bound` = 10,
+                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+              },
               &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                   # (FPE) with the FFX mode of operation; however when used in the
                   # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -10696,7 +10920,7 @@
                     #
                     # This annotation identifies the surrogate when inspecting content using the
                     # custom infoType
-                    # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                    # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                     # This facilitates reversal of the surrogate when it occurs in free text.
                     #
                     # In order for inspection to work properly, the name of this infoType must
@@ -10712,9 +10936,10 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
+                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                 &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                     # identifier in two different contexts won&#x27;t be given the same surrogate. If
                     # the context is not set, a default tweak will be used.
@@ -10737,16 +10962,21 @@
                     # - a string is encoded in UTF-8 format followed by a single byte of value 2
                   &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                 },
-                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                    # that the FFX mode natively supports. This happens before/after
+                    # encryption/decryption.
+                    # Each character listed must appear only once.
+                    # Number of characters must be in the range [2, 95].
+                    # This must be encoded as ASCII.
+                    # The order of characters does not matter.
+                    # The full list of allowed characters is:
+                    # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                    # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -10764,19 +10994,36 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
-                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                    # that the FFX mode natively supports. This happens before/after
-                    # encryption/decryption.
-                    # Each character listed must appear only once.
-                    # Number of characters must be in the range [2, 95].
-                    # This must be encoded as ASCII.
-                    # The order of characters does not matter.
                 &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
               },
               &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                   # input. Outputs a base64 encoded representation of the encrypted output.
                   # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                    # referential integrity such that the same identifier in two different
+                    # contexts will be given a distinct surrogate. The context is appended to
+                    # plaintext value being encrypted. On decryption the provided context is
+                    # validated against the value used during encryption. If a context was
+                    # provided during encryption, same context must be provided during decryption
+                    # as well.
+                    #
+                    # If the context is not set, plaintext would be used as is for encryption.
+                    # If the context is set but:
+                    #
+                    # 1. there is no record present when transforming a given value or
+                    # 2. the field is not present when transforming a given value,
+                    #
+                    # plaintext would be used as is for encryption.
+                    #
+                    # Note that case (1) is expected when an `InfoTypeTransformation` is
+                    # applied to both structured and non-structured `ContentItem`s.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
                 &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                     # This annotation will be applied to the surrogate by prefixing it with
                     # the name of the custom info type followed by the number of
@@ -10812,38 +11059,14 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
-                },
-                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                    # referential integrity such that the same identifier in two different
-                    # contexts will be given a distinct surrogate. The context is appended to
-                    # plaintext value being encrypted. On decryption the provided context is
-                    # validated against the value used during encryption. If a context was
-                    # provided during encryption, same context must be provided during decryption
-                    # as well.
-                    #
-                    # If the context is not set, plaintext would be used as is for encryption.
-                    # If the context is set but:
-                    #
-                    # 1. there is no record present when transforming a given value or
-                    # 2. the field is not present when transforming a given value,
-                    #
-                    # plaintext would be used as is for encryption.
-                    #
-                    # Note that case (1) is expected when an `InfoTypeTransformation` is
-                    # applied to both structured and non-structured `ContentItem`s.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -10861,6 +11084,10 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
               &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -10874,13 +11101,26 @@
                   # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                 &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                   { # Bucket is represented as a range, along with replacement values.
-                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                        # the default behavior will be to hyphenate the min-max range.
+                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                         # Note that for the purposes of inspection or transformation, the number
                         # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -10892,29 +11132,56 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
                       &quot;integerValue&quot;: &quot;A String&quot;, # integer
                       &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                           # or are specified elsewhere. An API may choose to allow leap seconds. Related
                           # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                         &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                             # allow the value 60 if it allows leap-seconds.
                         &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
                       },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                     &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                         # used.
@@ -10923,6 +11190,20 @@
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -10934,269 +11215,20 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                   },
                 ],
               },
-              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                  # output would be &#x27;My phone number is &#x27;.
-              },
-              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                  # Bucketing transformation can provide all of this functionality,
-                  # but requires more configuration. This message is provided as a convenience to
-                  # the user for simple bucketing strategies.
-                  #
-                  # The transformed value will be a hyphenated string of
-                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                  #
-                  # This can be used on data of type: double, long.
-                  #
-                  # If the bound Value type differs from the type of data
-                  # being transformed, we will first attempt converting the type of the data to
-                  # be transformed to match the type of the bound before comparing.
-                  #
-                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                    # grouped together into a single bucket; for example if `upper_bound` = 89,
-                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                    # grouped together into a single bucket; for example if `lower_bound` = 10,
-                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                  # fixed character. Masking can start from the beginning or end of the string.
-                  # This can be used on data of any type (numbers, longs, and so on) and when
-                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                  # type. (This allows you to take a long like 123 and modify it to a string like
-                  # **3.
-                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                    # characters. For example, if the input string is `555-555-5555` and you
-                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                    # returns `***-**5-5555`.
-                  { # Characters to skip when doing deidentification of a value. These will be left
-                      # alone and skipped.
-                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                        # punctuation.
-                  },
-                ],
-                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                    # masked. Skipped characters do not count towards this tally.
-                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                    # code or credit card number. This string must have a length of 1. If not
-                    # supplied, this value defaults to `*` for strings, and `0` for digits.
-                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                    # is `true`, then the string `12345` is masked as `12***`.
-              },
             },
-            &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                # this transformation to apply to all findings that correspond to
-                # infoTypes that were requested in `InspectConfig`.
-              { # Type of information detected by the API.
-                &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                    # creating a CustomInfoType, or one of the names listed
-                    # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                    # a built-in type. InfoType names should conform to the pattern
-                    # `[a-zA-Z0-9_]{1,64}`.
-              },
-            ],
           },
         ],
       },
@@ -11209,25 +11241,103 @@
           # Information about any incompatible transformations, and how they were
           # handled, is returned in the response as part of the
           # `TransformationOverviews`.
-        &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
-        },
         &quot;leaveUntransformed&quot;: { # Skips the data without modifying it if the requested transformation would # Ignore errors
             # cause an error. For example, if a `DateShift` transformation were applied
             # an an IP address, this mode would leave the IP address unchanged in the
             # response.
         },
+        &quot;throwError&quot;: { # Throw an error and fail the request when a transformation error occurs. # Throw an error
+        },
       },
       &quot;recordTransformations&quot;: { # A type of transformation that is applied over structured data such as a # Treat the dataset as structured. Transformations can be applied to
           # specific locations within structured datasets, such as transforming
           # a column within a table.
           # table.
+        &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
+            # match any suppression rule are omitted from the output.
+          { # Configuration to suppress records whose suppression conditions evaluate to
+              # true.
+            &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
+                # evaluated to be suppressed from the transformed content.
+                # a field.
+              &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
+                &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
+                  &quot;conditions&quot;: [ # A collection of conditions.
+                    { # The field type of `value` and `field` do not need to match to be
+                        # considered equal, but not all comparisons are possible.
+                        # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
+                        # but all other comparisons are invalid with incompatible types.
+                        # A `value` of type:
+                        #
+                        # - `string` can be compared against all other types
+                        # - `boolean` can only be compared against other booleans
+                        # - `integer` can be compared against doubles or a string if the string value
+                        # can be parsed as an integer.
+                        # - `double` can be compared against integers or a string if the string can
+                        # be parsed as a double.
+                        # - `Timestamp` can be compared against strings in RFC 3339 date string
+                        # format.
+                        # - `TimeOfDay` can be compared against timestamps and strings in the format
+                        # of &#x27;HH:mm:ss&#x27;.
+                        #
+                        # If we fail to compare do to type mismatch, a warning will be given and
+                        # the condition will evaluate to false.
+                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      },
+                      &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
+                    },
+                  ],
+                },
+                &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
+                    # only supported value is `AND`.
+              },
+            },
+          },
+        ],
         &quot;fieldTransformations&quot;: [ # Transform the record by applying various field transformations.
           { # The transformation to apply to the field.
-            &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
-              { # General identifier of a data field in a storage service.
-                &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-              },
-            ],
             &quot;infoTypeTransformations&quot;: { # A type of transformation that will scan unstructured text and # Treat the contents of the field as free text, and selectively
                 # transform content that matches an `InfoType`.
                 # apply various `PrimitiveTransformation`s to each finding, where the
@@ -11237,11 +11347,18 @@
                   # for a given infoType.
                 { # A transformation to apply to text that is identified as a specific
                     # info_type.
-                  &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
-                    &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                        # portion of the value.
-                      &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
+                  &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
+                      # this transformation to apply to all findings that correspond to
+                      # infoTypes that were requested in `InspectConfig`.
+                    { # Type of information detected by the API.
+                      &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
+                          # creating a CustomInfoType, or one of the names listed
+                          # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
+                          # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                          # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                     },
+                  ],
+                  &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Required. Primitive transformation to apply to the infoType.
                     &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                         # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                         # to learn more.
@@ -11255,7 +11372,6 @@
                           # be more than 365250 days (1000 years) each direction.
                           #
                           # For example, 3 means shift date to at most 3 days into the future.
-                      &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                       &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                           # results in the same shift for the same context and crypto_key. If
                           # set, must also set context. Can only be applied to table items.
@@ -11263,10 +11379,6 @@
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -11284,10 +11396,62 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
+                      &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+                    },
+                    &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                        # portion of the value.
+                      &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
                     },
                     &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
                     },
+                    &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                      &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                    },
                     &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                         # Uses SHA-256.
                         # The key size must be either 32 or 64 bytes.
@@ -11300,10 +11464,6 @@
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -11321,8 +11481,152 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
                     },
+                    &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                        # fixed character. Masking can start from the beginning or end of the string.
+                        # This can be used on data of any type (numbers, longs, and so on) and when
+                        # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                        # type. (This allows you to take a long like 123 and modify it to a string like
+                        # **3.
+                      &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                          # characters. For example, if the input string is `555-555-5555` and you
+                          # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                          # returns `***-**5-5555`.
+                        { # Characters to skip when doing deidentification of a value. These will be left
+                            # alone and skipped.
+                          &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                          &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                              # punctuation.
+                        },
+                      ],
+                      &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                          # masked. Skipped characters do not count towards this tally.
+                      &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                          # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                          # code or credit card number. This string must have a length of 1. If not
+                          # supplied, this value defaults to `*` for strings, and `0` for digits.
+                      &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                          # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                          # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                          # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                          # is `true`, then the string `12345` is masked as `12***`.
+                    },
+                    &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                        # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                        # output would be &#x27;My phone number is &#x27;.
+                    },
+                    &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                        # Bucketing transformation can provide all of this functionality,
+                        # but requires more configuration. This message is provided as a convenience to
+                        # the user for simple bucketing strategies.
+                        #
+                        # The transformed value will be a hyphenated string of
+                        # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                        # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                        #
+                        # This can be used on data of type: double, long.
+                        #
+                        # If the bound Value type differs from the type of data
+                        # being transformed, we will first attempt converting the type of the data to
+                        # be transformed to match the type of the bound before comparing.
+                        #
+                        # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                      &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                          # grouped together into a single bucket; for example if `upper_bound` = 89,
+                          # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                          # grouped together into a single bucket; for example if `lower_bound` = 10,
+                          # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                          # Note that for the purposes of inspection or transformation, the number
+                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                          # 123456789, the number of bytes would be counted as 9, even though an
+                          # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
+                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                            # and time zone are either specified elsewhere or are not significant. The date
+                            # is relative to the Proleptic Gregorian Calendar. This can represent:
+                            #
+                            # * A full date, with non-zero year, month and day values
+                            # * A month and day value, with a zero year, e.g. an anniversary
+                            # * A year on its own, with zero month and day values
+                            # * A year and month value, with a zero day, e.g. a credit card expiration date
+                            #
+                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                              # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
+                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                              # if specifying a year by itself or a year and month where the day is not
+                              # significant.
+                        },
+                        &quot;booleanValue&quot;: True or False, # boolean
+                      },
+                      &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                          # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                          # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                          # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+                    },
                     &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                         # (FPE) with the FFX mode of operation; however when used in the
                         # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -11348,7 +11652,7 @@
                           #
                           # This annotation identifies the surrogate when inspecting content using the
                           # custom infoType
-                          # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                          # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                           # This facilitates reversal of the surrogate when it occurs in free text.
                           #
                           # In order for inspection to work properly, the name of this infoType must
@@ -11364,9 +11668,10 @@
                         &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                             # creating a CustomInfoType, or one of the names listed
                             # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                            # a built-in type. InfoType names should conform to the pattern
-                            # `[a-zA-Z0-9_]{1,64}`.
+                            # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                            # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                       },
+                      &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                       &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                           # identifier in two different contexts won&#x27;t be given the same surrogate. If
                           # the context is not set, a default tweak will be used.
@@ -11389,16 +11694,21 @@
                           # - a string is encoded in UTF-8 format followed by a single byte of value 2
                         &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                       },
-                      &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                      &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                          # that the FFX mode natively supports. This happens before/after
+                          # encryption/decryption.
+                          # Each character listed must appear only once.
+                          # Number of characters must be in the range [2, 95].
+                          # This must be encoded as ASCII.
+                          # The order of characters does not matter.
+                          # The full list of allowed characters is:
+                          # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                          # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                       &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                           # a key encryption key (KEK) stored by KMS).
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -11416,19 +11726,36 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
-                      &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                          # that the FFX mode natively supports. This happens before/after
-                          # encryption/decryption.
-                          # Each character listed must appear only once.
-                          # Number of characters must be in the range [2, 95].
-                          # This must be encoded as ASCII.
-                          # The order of characters does not matter.
                       &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
                     },
                     &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                         # input. Outputs a base64 encoded representation of the encrypted output.
                         # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                      &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                          # referential integrity such that the same identifier in two different
+                          # contexts will be given a distinct surrogate. The context is appended to
+                          # plaintext value being encrypted. On decryption the provided context is
+                          # validated against the value used during encryption. If a context was
+                          # provided during encryption, same context must be provided during decryption
+                          # as well.
+                          #
+                          # If the context is not set, plaintext would be used as is for encryption.
+                          # If the context is set but:
+                          #
+                          # 1. there is no record present when transforming a given value or
+                          # 2. the field is not present when transforming a given value,
+                          #
+                          # plaintext would be used as is for encryption.
+                          #
+                          # Note that case (1) is expected when an `InfoTypeTransformation` is
+                          # applied to both structured and non-structured `ContentItem`s.
+                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      },
                       &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                           # This annotation will be applied to the surrogate by prefixing it with
                           # the name of the custom info type followed by the number of
@@ -11464,38 +11791,14 @@
                         &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                             # creating a CustomInfoType, or one of the names listed
                             # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                            # a built-in type. InfoType names should conform to the pattern
-                            # `[a-zA-Z0-9_]{1,64}`.
-                      },
-                      &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                          # referential integrity such that the same identifier in two different
-                          # contexts will be given a distinct surrogate. The context is appended to
-                          # plaintext value being encrypted. On decryption the provided context is
-                          # validated against the value used during encryption. If a context was
-                          # provided during encryption, same context must be provided during decryption
-                          # as well.
-                          #
-                          # If the context is not set, plaintext would be used as is for encryption.
-                          # If the context is set but:
-                          #
-                          # 1. there is no record present when transforming a given value or
-                          # 2. the field is not present when transforming a given value,
-                          #
-                          # plaintext would be used as is for encryption.
-                          #
-                          # Note that case (1) is expected when an `InfoTypeTransformation` is
-                          # applied to both structured and non-structured `ContentItem`s.
-                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                            # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                            # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                       },
                       &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                           # a key encryption key (KEK) stored by KMS).
                           # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                           # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                           # unwrap the data crypto key.
-                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                            # leaking the key. Choose another type of key if possible.
-                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                        },
                         &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                             # It will be discarded after the request finishes.
                           &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -11513,6 +11816,10 @@
                           &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                           &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                         },
+                        &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                            # leaking the key. Choose another type of key if possible.
+                          &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                        },
                       },
                     },
                     &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -11526,13 +11833,26 @@
                         # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                       &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                         { # Bucket is represented as a range, along with replacement values.
-                          &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                              # the default behavior will be to hyphenate the min-max range.
+                          &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                               # Note that for the purposes of inspection or transformation, the number
                               # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                               # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                               # 123456789, the number of bytes would be counted as 9, even though an
                               # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
                             &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                             &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                 # and time zone are either specified elsewhere or are not significant. The date
@@ -11544,29 +11864,56 @@
                                 # * A year and month value, with a zero day, e.g. a credit card expiration date
                                 #
                                 # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
                               &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                   # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
                               &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                   # if specifying a year by itself or a year and month where the day is not
                                   # significant.
                             },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;booleanValue&quot;: True or False, # boolean
+                          },
+                          &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                              # Note that for the purposes of inspection or transformation, the number
+                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                              # 123456789, the number of bytes would be counted as 9, even though an
+                              # int64 only holds up to 8 bytes of data.
                             &quot;integerValue&quot;: &quot;A String&quot;, # integer
                             &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                                 # or are specified elsewhere. An API may choose to allow leap seconds. Related
                                 # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                               &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                                   # allow the value 60 if it allows leap-seconds.
                               &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
+                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                                # and time zone are either specified elsewhere or are not significant. The date
+                                # is relative to the Proleptic Gregorian Calendar. This can represent:
+                                #
+                                # * A full date, with non-zero year, month and day values
+                                # * A month and day value, with a zero year, e.g. an anniversary
+                                # * A year on its own, with zero month and day values
+                                # * A year and month value, with a zero day, e.g. a credit card expiration date
+                                #
+                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                                  # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
+                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                                  # if specifying a year by itself or a year and month where the day is not
+                                  # significant.
                             },
                             &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           },
                           &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                               # used.
@@ -11575,6 +11922,20 @@
                               # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                               # 123456789, the number of bytes would be counted as 9, even though an
                               # int64 only holds up to 8 bytes of data.
+                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                                # types are google.type.Date and `google.protobuf.Timestamp`.
+                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                                  # allow the value 60 if it allows leap-seconds.
+                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                            },
+                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                            &quot;floatValue&quot;: 3.14, # float
+                            &quot;stringValue&quot;: &quot;A String&quot;, # string
                             &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                             &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                                 # and time zone are either specified elsewhere or are not significant. The date
@@ -11586,277 +11947,24 @@
                                 # * A year and month value, with a zero day, e.g. a credit card expiration date
                                 #
                                 # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
                               &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                                   # month and day.
+                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                                  # a year.
                               &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                                   # if specifying a year by itself or a year and month where the day is not
                                   # significant.
                             },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
                             &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          },
-                          &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                              # Note that for the purposes of inspection or transformation, the number
-                              # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                              # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                              # 123456789, the number of bytes would be counted as 9, even though an
-                              # int64 only holds up to 8 bytes of data.
-                            &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                            &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                                # and time zone are either specified elsewhere or are not significant. The date
-                                # is relative to the Proleptic Gregorian Calendar. This can represent:
-                                #
-                                # * A full date, with non-zero year, month and day values
-                                # * A month and day value, with a zero year, e.g. an anniversary
-                                # * A year on its own, with zero month and day values
-                                # * A year and month value, with a zero day, e.g. a credit card expiration date
-                                #
-                                # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                                  # a year.
-                              &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                                  # month and day.
-                              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                                  # if specifying a year by itself or a year and month where the day is not
-                                  # significant.
-                            },
-                            &quot;stringValue&quot;: &quot;A String&quot;, # string
-                            &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                            &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                                # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                                # types are google.type.Date and `google.protobuf.Timestamp`.
-                              &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                                  # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                              &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                              &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                                  # allow the value 60 if it allows leap-seconds.
-                              &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                            },
-                            &quot;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           },
                         },
                       ],
                     },
-                    &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                        # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                        # output would be &#x27;My phone number is &#x27;.
-                    },
-                    &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                      &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                    },
-                    &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                        # Bucketing transformation can provide all of this functionality,
-                        # but requires more configuration. This message is provided as a convenience to
-                        # the user for simple bucketing strategies.
-                        #
-                        # The transformed value will be a hyphenated string of
-                        # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                        # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                        #
-                        # This can be used on data of type: double, long.
-                        #
-                        # If the bound Value type differs from the type of data
-                        # being transformed, we will first attempt converting the type of the data to
-                        # be transformed to match the type of the bound before comparing.
-                        #
-                        # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                      &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                          # grouped together into a single bucket; for example if `upper_bound` = 89,
-                          # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                          # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                          # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                          # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                      &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                          # grouped together into a single bucket; for example if `lower_bound` = 10,
-                          # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                    },
-                    &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                        # fixed character. Masking can start from the beginning or end of the string.
-                        # This can be used on data of any type (numbers, longs, and so on) and when
-                        # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                        # type. (This allows you to take a long like 123 and modify it to a string like
-                        # **3.
-                      &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                          # characters. For example, if the input string is `555-555-5555` and you
-                          # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                          # returns `***-**5-5555`.
-                        { # Characters to skip when doing deidentification of a value. These will be left
-                            # alone and skipped.
-                          &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                          &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                              # punctuation.
-                        },
-                      ],
-                      &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                          # masked. Skipped characters do not count towards this tally.
-                      &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                          # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                          # code or credit card number. This string must have a length of 1. If not
-                          # supplied, this value defaults to `*` for strings, and `0` for digits.
-                      &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                          # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                          # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                          # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                          # is `true`, then the string `12345` is masked as `12***`.
-                    },
                   },
-                  &quot;infoTypes&quot;: [ # InfoTypes to apply the transformation to. An empty list will cause
-                      # this transformation to apply to all findings that correspond to
-                      # infoTypes that were requested in `InspectConfig`.
-                    { # Type of information detected by the API.
-                      &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
-                          # creating a CustomInfoType, or one of the names listed
-                          # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                          # a built-in type. InfoType names should conform to the pattern
-                          # `[a-zA-Z0-9_]{1,64}`.
-                    },
-                  ],
                 },
               ],
             },
             &quot;primitiveTransformation&quot;: { # A rule for transforming a value. # Apply the transformation to the entire field.
-              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
-                  # portion of the value.
-                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
-              },
               &quot;dateShiftConfig&quot;: { # Shifts dates by random number of days, with option to be consistent for the # Date Shift
                   # same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting
                   # to learn more.
@@ -11870,7 +11978,6 @@
                     # be more than 365250 days (1000 years) each direction.
                     #
                     # For example, 3 means shift date to at most 3 days into the future.
-                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Causes the shift to be computed based on this key and the context. This
                     # results in the same shift for the same context and crypto_key. If
                     # set, must also set context. Can only be applied to table items.
@@ -11878,10 +11985,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -11899,10 +12002,62 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
+                &quot;lowerBoundDays&quot;: 42, # Required. For example, -5 means shift date to at most 5 days back in the past.
+              },
+              &quot;timePartConfig&quot;: { # For use with `Date`, `Timestamp`, and `TimeOfDay`, extract or preserve a # Time extraction
+                  # portion of the value.
+                &quot;partToExtract&quot;: &quot;A String&quot;, # The part of the time to keep.
               },
               &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
               },
+              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
+                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+              },
               &quot;cryptoHashConfig&quot;: { # Pseudonymization method that generates surrogates via cryptographic hashing. # Crypto
                   # Uses SHA-256.
                   # The key size must be either 32 or 64 bytes.
@@ -11915,10 +12070,6 @@
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -11936,8 +12087,152 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
+              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
+                  # fixed character. Masking can start from the beginning or end of the string.
+                  # This can be used on data of any type (numbers, longs, and so on) and when
+                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
+                  # type. (This allows you to take a long like 123 and modify it to a string like
+                  # **3.
+                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
+                    # characters. For example, if the input string is `555-555-5555` and you
+                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
+                    # returns `***-**5-5555`.
+                  { # Characters to skip when doing deidentification of a value. These will be left
+                      # alone and skipped.
+                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
+                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
+                        # punctuation.
+                  },
+                ],
+                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
+                    # masked. Skipped characters do not count towards this tally.
+                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
+                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
+                    # code or credit card number. This string must have a length of 1. If not
+                    # supplied, this value defaults to `*` for strings, and `0` for digits.
+                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
+                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
+                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
+                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
+                    # is `true`, then the string `12345` is masked as `12***`.
+              },
+              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
+                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
+                  # output would be &#x27;My phone number is &#x27;.
+              },
+              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
+                  # Bucketing transformation can provide all of this functionality,
+                  # but requires more configuration. This message is provided as a convenience to
+                  # the user for simple bucketing strategies.
+                  #
+                  # The transformed value will be a hyphenated string of
+                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
+                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
+                  #
+                  # This can be used on data of type: double, long.
+                  #
+                  # If the bound Value type differs from the type of data
+                  # being transformed, we will first attempt converting the type of the data to
+                  # be transformed to match the type of the bound before comparing.
+                  #
+                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
+                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
+                    # grouped together into a single bucket; for example if `upper_bound` = 89,
+                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
+                    # grouped together into a single bucket; for example if `lower_bound` = 10,
+                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
+                    # Note that for the purposes of inspection or transformation, the number
+                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                    # 123456789, the number of bytes would be counted as 9, even though an
+                    # int64 only holds up to 8 bytes of data.
+                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                      # types are google.type.Date and `google.protobuf.Timestamp`.
+                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                        # allow the value 60 if it allows leap-seconds.
+                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                  },
+                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                  &quot;floatValue&quot;: 3.14, # float
+                  &quot;stringValue&quot;: &quot;A String&quot;, # string
+                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                      # and time zone are either specified elsewhere or are not significant. The date
+                      # is relative to the Proleptic Gregorian Calendar. This can represent:
+                      #
+                      # * A full date, with non-zero year, month and day values
+                      # * A month and day value, with a zero year, e.g. an anniversary
+                      # * A year on its own, with zero month and day values
+                      # * A year and month value, with a zero day, e.g. a credit card expiration date
+                      #
+                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                        # month and day.
+                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                        # a year.
+                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                        # if specifying a year by itself or a year and month where the day is not
+                        # significant.
+                  },
+                  &quot;booleanValue&quot;: True or False, # boolean
+                },
+                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
+                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
+                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
+                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
+              },
               &quot;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
                   # (FPE) with the FFX mode of operation; however when used in the
                   # `ReidentifyContent` API method, it serves the opposite function by reversing
@@ -11963,7 +12258,7 @@
                     #
                     # This annotation identifies the surrogate when inspecting content using the
                     # custom infoType
-                    # [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
+                    # [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
                     # This facilitates reversal of the surrogate when it occurs in free text.
                     #
                     # In order for inspection to work properly, the name of this infoType must
@@ -11979,9 +12274,10 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
+                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
                 &quot;context&quot;: { # General identifier of a data field in a storage service. # The &#x27;tweak&#x27;, a context may be used for higher security since the same
                     # identifier in two different contexts won&#x27;t be given the same surrogate. If
                     # the context is not set, a default tweak will be used.
@@ -12004,16 +12300,21 @@
                     # - a string is encoded in UTF-8 format followed by a single byte of value 2
                   &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                 },
-                &quot;radix&quot;: 42, # The native way to select the alphabet. Must be in the range [2, 95].
+                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
+                    # that the FFX mode natively supports. This happens before/after
+                    # encryption/decryption.
+                    # Each character listed must appear only once.
+                    # Number of characters must be in the range [2, 95].
+                    # This must be encoded as ASCII.
+                    # The order of characters does not matter.
+                    # The full list of allowed characters is:
+                    # &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+                    # ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#x27;&lt;,&gt;.?/&lt;/code&gt;
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # Required. The key used by the encryption algorithm.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -12031,19 +12332,36 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
-                &quot;customAlphabet&quot;: &quot;A String&quot;, # This is supported by mapping these to the alphanumeric characters
-                    # that the FFX mode natively supports. This happens before/after
-                    # encryption/decryption.
-                    # Each character listed must appear only once.
-                    # Number of characters must be in the range [2, 95].
-                    # This must be encoded as ASCII.
-                    # The order of characters does not matter.
                 &quot;commonAlphabet&quot;: &quot;A String&quot;, # Common alphabets.
               },
               &quot;cryptoDeterministicConfig&quot;: { # Pseudonymization method that generates deterministic encryption for the given # Deterministic Crypto
                   # input. Outputs a base64 encoded representation of the encrypted output.
                   # Uses AES-SIV based on the RFC https://tools.ietf.org/html/rfc5297.
+                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
+                    # referential integrity such that the same identifier in two different
+                    # contexts will be given a distinct surrogate. The context is appended to
+                    # plaintext value being encrypted. On decryption the provided context is
+                    # validated against the value used during encryption. If a context was
+                    # provided during encryption, same context must be provided during decryption
+                    # as well.
+                    #
+                    # If the context is not set, plaintext would be used as is for encryption.
+                    # If the context is set but:
+                    #
+                    # 1. there is no record present when transforming a given value or
+                    # 2. the field is not present when transforming a given value,
+                    #
+                    # plaintext would be used as is for encryption.
+                    #
+                    # Note that case (1) is expected when an `InfoTypeTransformation` is
+                    # applied to both structured and non-structured `ContentItem`s.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
                 &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom info type to annotate the surrogate with.
                     # This annotation will be applied to the surrogate by prefixing it with
                     # the name of the custom info type followed by the number of
@@ -12079,38 +12397,14 @@
                   &quot;name&quot;: &quot;A String&quot;, # Name of the information type. Either a name of your choosing when
                       # creating a CustomInfoType, or one of the names listed
                       # at https://cloud.google.com/dlp/docs/infotypes-reference when specifying
-                      # a built-in type. InfoType names should conform to the pattern
-                      # `[a-zA-Z0-9_]{1,64}`.
-                },
-                &quot;context&quot;: { # General identifier of a data field in a storage service. # A context may be used for higher security and maintaining
-                    # referential integrity such that the same identifier in two different
-                    # contexts will be given a distinct surrogate. The context is appended to
-                    # plaintext value being encrypted. On decryption the provided context is
-                    # validated against the value used during encryption. If a context was
-                    # provided during encryption, same context must be provided during decryption
-                    # as well.
-                    #
-                    # If the context is not set, plaintext would be used as is for encryption.
-                    # If the context is set but:
-                    #
-                    # 1. there is no record present when transforming a given value or
-                    # 2. the field is not present when transforming a given value,
-                    #
-                    # plaintext would be used as is for encryption.
-                    #
-                    # Note that case (1) is expected when an `InfoTypeTransformation` is
-                    # applied to both structured and non-structured `ContentItem`s.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      # a built-in type.  When sending Cloud DLP results to Data Catalog, infoType
+                      # names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
                 },
                 &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the encryption function.
                     # a key encryption key (KEK) stored by KMS).
                     # When using KMS to wrap/unwrap DEKs, be sure to set an appropriate
                     # IAM policy on the KMS CryptoKey (KEK) to ensure an attacker cannot
                     # unwrap the data crypto key.
-                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
-                      # leaking the key. Choose another type of key if possible.
-                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
-                  },
                   &quot;transient&quot;: { # Use this to have a random data crypto key generated. # Transient crypto key
                       # It will be discarded after the request finishes.
                     &quot;name&quot;: &quot;A String&quot;, # Required. Name of the key.
@@ -12128,6 +12422,10 @@
                     &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
                     &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
                   },
+                  &quot;unwrapped&quot;: { # Using raw keys is prone to security risks due to accidentally # Unwrapped crypto key
+                      # leaking the key. Choose another type of key if possible.
+                    &quot;key&quot;: &quot;A String&quot;, # Required. A 128/192/256 bit key.
+                  },
                 },
               },
               &quot;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
@@ -12141,13 +12439,26 @@
                   # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
                 &quot;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
                   { # Bucket is represented as a range, along with replacement values.
-                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Replacement value for this bucket. If not provided
-                        # the default behavior will be to hyphenate the min-max range.
+                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
                         # Note that for the purposes of inspection or transformation, the number
                         # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -12159,29 +12470,56 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;booleanValue&quot;: True or False, # boolean
+                    },
+                    &quot;replacementValue&quot;: { # Set of primitive values supported by the system. # Required. Replacement value for this bucket.
+                        # Note that for the purposes of inspection or transformation, the number
+                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
+                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
+                        # 123456789, the number of bytes would be counted as 9, even though an
+                        # int64 only holds up to 8 bytes of data.
                       &quot;integerValue&quot;: &quot;A String&quot;, # integer
                       &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
                           # or are specified elsewhere. An API may choose to allow leap seconds. Related
                           # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
                         &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
                             # allow the value 60 if it allows leap-seconds.
                         &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
+                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
+                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
+                          # and time zone are either specified elsewhere or are not significant. The date
+                          # is relative to the Proleptic Gregorian Calendar. This can represent:
+                          #
+                          # * A full date, with non-zero year, month and day values
+                          # * A month and day value, with a zero year, e.g. an anniversary
+                          # * A year on its own, with zero month and day values
+                          # * A year and month value, with a zero day, e.g. a credit card expiration date
+                          #
+                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
+                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
+                            # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
+                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
+                            # if specifying a year by itself or a year and month where the day is not
+                            # significant.
                       },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                     &quot;min&quot;: { # Set of primitive values supported by the system. # Lower bound of the range, inclusive. Type should be the same as max if
                         # used.
@@ -12190,6 +12528,20 @@
                         # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                         # 123456789, the number of bytes would be counted as 9, even though an
                         # int64 only holds up to 8 bytes of data.
+                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                          # types are google.type.Date and `google.protobuf.Timestamp`.
+                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                            # allow the value 60 if it allows leap-seconds.
+                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                      },
+                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                      &quot;floatValue&quot;: 3.14, # float
+                      &quot;stringValue&quot;: &quot;A String&quot;, # string
                       &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                       &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                           # and time zone are either specified elsewhere or are not significant. The date
@@ -12201,257 +12553,19 @@
                           # * A year and month value, with a zero day, e.g. a credit card expiration date
                           #
                           # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
                         &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                             # month and day.
+                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                            # a year.
                         &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                             # if specifying a year by itself or a year and month where the day is not
                             # significant.
                       },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
                       &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    },
-                    &quot;max&quot;: { # Set of primitive values supported by the system. # Upper bound of the range, exclusive; type must match min.
-                        # Note that for the purposes of inspection or transformation, the number
-                        # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                        # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                        # 123456789, the number of bytes would be counted as 9, even though an
-                        # int64 only holds up to 8 bytes of data.
-                      &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                      &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                          # and time zone are either specified elsewhere or are not significant. The date
-                          # is relative to the Proleptic Gregorian Calendar. This can represent:
-                          #
-                          # * A full date, with non-zero year, month and day values
-                          # * A month and day value, with a zero year, e.g. an anniversary
-                          # * A year on its own, with zero month and day values
-                          # * A year and month value, with a zero day, e.g. a credit card expiration date
-                          #
-                          # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                        &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                            # a year.
-                        &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                            # month and day.
-                        &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                            # if specifying a year by itself or a year and month where the day is not
-                            # significant.
-                      },
-                      &quot;stringValue&quot;: &quot;A String&quot;, # string
-                      &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                      &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                          # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                          # types are google.type.Date and `google.protobuf.Timestamp`.
-                        &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                            # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                        &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                        &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                            # allow the value 60 if it allows leap-seconds.
-                        &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                      },
-                      &quot;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     },
                   },
                 ],
               },
-              &quot;redactConfig&quot;: { # Redact a given value. For example, if used with an `InfoTypeTransformation` # Redact
-                  # transforming PHONE_NUMBER, and input &#x27;My phone number is 206-555-0123&#x27;, the
-                  # output would be &#x27;My phone number is &#x27;.
-              },
-              &quot;replaceConfig&quot;: { # Replace each input value with a given `Value`. # Replace
-                &quot;newValue&quot;: { # Set of primitive values supported by the system. # Value to replace it with.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;fixedSizeBucketingConfig&quot;: { # Buckets values based on fixed size ranges. The # Fixed size bucketing
-                  # Bucketing transformation can provide all of this functionality,
-                  # but requires more configuration. This message is provided as a convenience to
-                  # the user for simple bucketing strategies.
-                  #
-                  # The transformed value will be a hyphenated string of
-                  # {lower_bound}-{upper_bound}, i.e if lower_bound = 10 and upper_bound = 20
-                  # all values that are within this bucket will be replaced with &quot;10-20&quot;.
-                  #
-                  # This can be used on data of type: double, long.
-                  #
-                  # If the bound Value type differs from the type of data
-                  # being transformed, we will first attempt converting the type of the data to
-                  # be transformed to match the type of the bound before comparing.
-                  #
-                  # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                &quot;upperBound&quot;: { # Set of primitive values supported by the system. # Required. Upper bound value of buckets. All values greater than upper_bound are
-                    # grouped together into a single bucket; for example if `upper_bound` = 89,
-                    # then all values greater than 89 are replaced with the value &quot;89+&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-                &quot;bucketSize&quot;: 3.14, # Required. Size of each bucket (except for minimum and maximum buckets). So if
-                    # `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the
-                    # following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60,
-                    # 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works.
-                &quot;lowerBound&quot;: { # Set of primitive values supported by the system. # Required. Lower bound value of buckets. All values less than `lower_bound` are
-                    # grouped together into a single bucket; for example if `lower_bound` = 10,
-                    # then all values less than 10 are replaced with the value &quot;-10&quot;.
-                    # Note that for the purposes of inspection or transformation, the number
-                    # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                    # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                    # 123456789, the number of bytes would be counted as 9, even though an
-                    # int64 only holds up to 8 bytes of data.
-                  &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                  &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                      # and time zone are either specified elsewhere or are not significant. The date
-                      # is relative to the Proleptic Gregorian Calendar. This can represent:
-                      #
-                      # * A full date, with non-zero year, month and day values
-                      # * A month and day value, with a zero year, e.g. an anniversary
-                      # * A year on its own, with zero month and day values
-                      # * A year and month value, with a zero day, e.g. a credit card expiration date
-                      #
-                      # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                        # a year.
-                    &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                        # month and day.
-                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                        # if specifying a year by itself or a year and month where the day is not
-                        # significant.
-                  },
-                  &quot;stringValue&quot;: &quot;A String&quot;, # string
-                  &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                  &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                      # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                      # types are google.type.Date and `google.protobuf.Timestamp`.
-                    &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                        # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                    &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                    &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                        # allow the value 60 if it allows leap-seconds.
-                    &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                  },
-                  &quot;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                },
-              },
-              &quot;characterMaskConfig&quot;: { # Partially mask a string by replacing a given number of characters with a # Mask
-                  # fixed character. Masking can start from the beginning or end of the string.
-                  # This can be used on data of any type (numbers, longs, and so on) and when
-                  # de-identifying structured data we&#x27;ll attempt to preserve the original data&#x27;s
-                  # type. (This allows you to take a long like 123 and modify it to a string like
-                  # **3.
-                &quot;charactersToIgnore&quot;: [ # When masking a string, items in this list will be skipped when replacing
-                    # characters. For example, if the input string is `555-555-5555` and you
-                    # instruct Cloud DLP to skip `-` and mask 5 characters with `*`, Cloud DLP
-                    # returns `***-**5-5555`.
-                  { # Characters to skip when doing deidentification of a value. These will be left
-                      # alone and skipped.
-                    &quot;charactersToSkip&quot;: &quot;A String&quot;, # Characters to not transform when masking.
-                    &quot;commonCharactersToIgnore&quot;: &quot;A String&quot;, # Common characters to not transform when masking. Useful to avoid removing
-                        # punctuation.
-                  },
-                ],
-                &quot;numberToMask&quot;: 42, # Number of characters to mask. If not set, all matching chars will be
-                    # masked. Skipped characters do not count towards this tally.
-                &quot;maskingCharacter&quot;: &quot;A String&quot;, # Character to use to mask the sensitive values&amp;mdash;for example, `*` for an
-                    # alphabetic string such as a name, or `0` for a numeric string such as ZIP
-                    # code or credit card number. This string must have a length of 1. If not
-                    # supplied, this value defaults to `*` for strings, and `0` for digits.
-                &quot;reverseOrder&quot;: True or False, # Mask characters in reverse order. For example, if `masking_character` is
-                    # `0`, `number_to_mask` is `14`, and `reverse_order` is `false`, then the
-                    # input string `1234-5678-9012-3456` is masked as `00000000000000-3456`.
-                    # If `masking_character` is `*`, `number_to_mask` is `3`, and `reverse_order`
-                    # is `true`, then the string `12345` is masked as `12***`.
-              },
             },
             &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # Only apply the transformation if the condition evaluates to true for the
                 # given `RecordCondition`. The conditions are allowed to reference fields
@@ -12464,8 +12578,6 @@
                 # - Redact a field if the date of birth field is greater than 85.
                 # a field.
               &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
-                &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
-                    # only supported value is `AND`.
                 &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
                   &quot;conditions&quot;: [ # A collection of conditions.
                     { # The field type of `value` and `field` do not need to match to be
@@ -12487,12 +12599,29 @@
                         #
                         # If we fail to compare do to type mismatch, a warning will be given and
                         # the condition will evaluate to false.
+                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
+                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                      },
                       &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
                           # Note that for the purposes of inspection or transformation, the number
                           # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
                           # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
                           # 123456789, the number of bytes would be counted as 9, even though an
                           # int64 only holds up to 8 bytes of data.
+                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
+                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
+                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
+                            # types are google.type.Date and `google.protobuf.Timestamp`.
+                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
+                              # allow the value 60 if it allows leap-seconds.
+                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
+                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
+                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
+                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
+                        },
+                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
+                        &quot;floatValue&quot;: 3.14, # float
+                        &quot;stringValue&quot;: &quot;A String&quot;, # string
                         &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
                         &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
                             # and time zone are either specified elsewhere or are not significant. The date
@@ -12504,126 +12633,37 @@
                             # * A year and month value, with a zero day, e.g. a credit card expiration date
                             #
                             # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
                           &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
                               # month and day.
+                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
+                              # a year.
                           &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
                               # if specifying a year by itself or a year and month where the day is not
                               # significant.
                         },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
                         &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
                       },
                       &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                     },
                   ],
                 },
-              },
-            },
-          },
-        ],
-        &quot;recordSuppressions&quot;: [ # Configuration defining which records get suppressed entirely. Records that
-            # match any suppression rule are omitted from the output.
-          { # Configuration to suppress records whose suppression conditions evaluate to
-              # true.
-            &quot;condition&quot;: { # A condition for determining whether a transformation should be applied to # A condition that when it evaluates to true will result in the record being
-                # evaluated to be suppressed from the transformed content.
-                # a field.
-              &quot;expressions&quot;: { # An expression, consisting or an operator and conditions. # An expression.
                 &quot;logicalOperator&quot;: &quot;A String&quot;, # The operator to apply to the result of conditions. Default and currently
                     # only supported value is `AND`.
-                &quot;conditions&quot;: { # A collection of conditions. # Conditions to apply to the expression.
-                  &quot;conditions&quot;: [ # A collection of conditions.
-                    { # The field type of `value` and `field` do not need to match to be
-                        # considered equal, but not all comparisons are possible.
-                        # EQUAL_TO and NOT_EQUAL_TO attempt to compare even with incompatible types,
-                        # but all other comparisons are invalid with incompatible types.
-                        # A `value` of type:
-                        #
-                        # - `string` can be compared against all other types
-                        # - `boolean` can only be compared against other booleans
-                        # - `integer` can be compared against doubles or a string if the string value
-                        # can be parsed as an integer.
-                        # - `double` can be compared against integers or a string if the string can
-                        # be parsed as a double.
-                        # - `Timestamp` can be compared against strings in RFC 3339 date string
-                        # format.
-                        # - `TimeOfDay` can be compared against timestamps and strings in the format
-                        # of &#x27;HH:mm:ss&#x27;.
-                        #
-                        # If we fail to compare do to type mismatch, a warning will be given and
-                        # the condition will evaluate to false.
-                      &quot;value&quot;: { # Set of primitive values supported by the system. # Value to compare against. [Mandatory, except for `EXISTS` tests.]
-                          # Note that for the purposes of inspection or transformation, the number
-                          # of bytes considered to comprise a &#x27;Value&#x27; is based on its representation
-                          # as a UTF-8 encoded string. For example, if &#x27;integer_value&#x27; is set to
-                          # 123456789, the number of bytes would be counted as 9, even though an
-                          # int64 only holds up to 8 bytes of data.
-                        &quot;timestampValue&quot;: &quot;A String&quot;, # timestamp
-                        &quot;dateValue&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day # date
-                            # and time zone are either specified elsewhere or are not significant. The date
-                            # is relative to the Proleptic Gregorian Calendar. This can represent:
-                            #
-                            # * A full date, with non-zero year, month and day values
-                            # * A month and day value, with a zero year, e.g. an anniversary
-                            # * A year on its own, with zero month and day values
-                            # * A year and month value, with a zero day, e.g. a credit card expiration date
-                            #
-                            # Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
-                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without
-                              # a year.
-                          &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a
-                              # month and day.
-                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0
-                              # if specifying a year by itself or a year and month where the day is not
-                              # significant.
-                        },
-                        &quot;stringValue&quot;: &quot;A String&quot;, # string
-                        &quot;integerValue&quot;: &quot;A String&quot;, # integer
-                        &quot;timeValue&quot;: { # Represents a time of day. The date and time zone are either not significant # time of day
-                            # or are specified elsewhere. An API may choose to allow leap seconds. Related
-                            # types are google.type.Date and `google.protobuf.Timestamp`.
-                          &quot;hours&quot;: 42, # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
-                              # to allow the value &quot;24:00:00&quot; for scenarios like business closing time.
-                          &quot;minutes&quot;: 42, # Minutes of hour of day. Must be from 0 to 59.
-                          &quot;seconds&quot;: 42, # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
-                              # allow the value 60 if it allows leap-seconds.
-                          &quot;nanos&quot;: 42, # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
-                        },
-                        &quot;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      },
-                      &quot;field&quot;: { # General identifier of a data field in a storage service. # Required. Field within the record this condition is evaluated against.
-                        &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                      },
-                      &quot;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
-                    },
-                  ],
-                },
               },
             },
+            &quot;fields&quot;: [ # Required. Input field(s) to apply the transformation to.
+              { # General identifier of a data field in a storage service.
+                &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+              },
+            ],
           },
         ],
       },
     },
+    &quot;createTime&quot;: &quot;A String&quot;, # Output only. The creation timestamp of an inspectTemplate.
+    &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of an inspectTemplate.
+    &quot;description&quot;: &quot;A String&quot;, # Short description (max 256 chars).
+    &quot;displayName&quot;: &quot;A String&quot;, # Display name (max 256 chars).
   }</pre>
 </div>