docs: update docs (#916)

* fix: re-run script

* test: fix noxfile
diff --git a/docs/dyn/dlp_v2.projects.deidentifyTemplates.html b/docs/dyn/dlp_v2.projects.deidentifyTemplates.html
index 9e44412..ef68831 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, pageToken=None, locationId=None, pageSize=None, orderBy=None, x__xgafv=None)</a></code></p>
+  <code><a href="#list">list(parent, orderBy=None, pageToken=None, locationId=None, pageSize=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>
@@ -123,6 +123,630 @@
       &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.
+            # apply various `PrimitiveTransformation`s to each finding, where the
+            # transformation is applied to only values that were identified as a specific
+            # info_type.
+          &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
+              # 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;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.
+                  &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
+                      # If set, must also set cryptoKey. If set, shift will be consistent for the
+                      # given context.
+                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                  },
+                  &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
+                      # range (inclusive ends). Negative means shift to earlier in time. Must not
+                      # 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.
+                      # 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.
+                          # This is an arbitrary string used to differentiate different keys.
+                          # A unique key is generated per name: two separate `TransientCryptoKey`
+                          # protos share the same generated key if their names are the same.
+                          # When the data crypto key is generated, this name is not used in any way
+                          # (repeating the api call will result in a different key being generated).
+                    },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
+                },
+                &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.
+                    # Outputs a base64 encoded representation of the hashed output
+                    # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
+                    # Currently, only string and integer values can be hashed.
+                    # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
+                  &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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.
+                          # This is an arbitrary string used to differentiate different keys.
+                          # A unique key is generated per name: two separate `TransientCryptoKey`
+                          # protos share the same generated key if their names are the same.
+                          # When the data crypto key is generated, this name is not used in any way
+                          # (repeating the api call will result in a different key being generated).
+                    },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;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
+                    # the surrogate back into the original identifier. The identifier must be
+                    # encoded as ASCII. For a given crypto key and context, the same identifier
+                    # will be replaced with the same surrogate. Identifiers must be at least two
+                    # characters long. In the case that the identifier is the empty string, it will
+                    # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
+                    # more.
+                    #
+                    # Note: We recommend using  CryptoDeterministicConfig for all use cases which
+                    # do not require preserving the input alphabet space and size, plus warrant
+                    # referential integrity.
+                  &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
+                      # This annotation will be applied to the surrogate by prefixing it with
+                      # the name of the custom infoType followed by the number of
+                      # characters comprising the surrogate. The following scheme defines the
+                      # format: info_type_name(surrogate_character_count):surrogate
+                      #
+                      # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                      # the surrogate is &#x27;abc&#x27;, the full replacement value
+                      # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                      #
+                      # This annotation identifies the surrogate when inspecting content using the
+                      # custom infoType
+                      # [`SurrogateType`](/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
+                      # not occur naturally anywhere in your data; otherwise, inspection may
+                      # find a surrogate that does not correspond to an actual identifier.
+                      # Therefore, choose your custom infoType name carefully after considering
+                      # what your data looks like. One way to select a name that has a high chance
+                      # of yielding reliable detection is to include one or more unicode characters
+                      # that are highly improbable to exist in your data.
+                      # For example, assuming your data is entered from a regular ASCII keyboard,
+                      # the symbol with the hex code point 29DD might be used like so:
+                      # ⧝MY_TOKEN_TYPE
+                    &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. # 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.
+                      #
+                      # If the context is set but:
+                      #
+                      # 1. there is no record present when transforming a given value or
+                      # 1. the field is not present when transforming a given value,
+                      #
+                      # a default tweak will be used.
+                      #
+                      # Note that case (1) is expected when an `InfoTypeTransformation` is
+                      # applied to both structured and non-structured `ContentItem`s.
+                      # Currently, the referenced field may be of value type integer or string.
+                      #
+                      # The tweak is constructed as a sequence of bytes in big endian byte order
+                      # such that:
+                      #
+                      # - a 64 bit integer is encoded followed by a single byte of value 1
+                      # - 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;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.
+                          # This is an arbitrary string used to differentiate different keys.
+                          # A unique key is generated per name: two separate `TransientCryptoKey`
+                          # protos share the same generated key if their names are the same.
+                          # When the data crypto key is generated, this name is not used in any way
+                          # (repeating the api call will result in a different key being generated).
+                    },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;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;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
+                      # characters comprising the surrogate. The following scheme defines the
+                      # format: {info type name}({surrogate character count}):{surrogate}
+                      #
+                      # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                      # the surrogate is &#x27;abc&#x27;, the full replacement value
+                      # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                      #
+                      # This annotation identifies the surrogate when inspecting content using the
+                      # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
+                      # surrogate when it occurs in free text.
+                      #
+                      # Note: For record transformations where the entire cell in a table is being
+                      # transformed, surrogates are not mandatory. Surrogates are used to denote
+                      # the location of the token and are necessary for re-identification in free
+                      # form text.
+                      #
+                      # In order for inspection to work properly, the name of this info type must
+                      # not occur naturally anywhere in your data; otherwise, inspection may either
+                      #
+                      # - reverse a surrogate that does not correspond to an actual identifier
+                      # - be unable to parse the surrogate and result in an error
+                      #
+                      # Therefore, choose your custom info type name carefully after considering
+                      # what your data looks like. One way to select a name that has a high chance
+                      # of yielding reliable detection is to include one or more unicode characters
+                      # that are highly improbable to exist in your data.
+                      # For example, assuming your data is entered from a regular ASCII keyboard,
+                      # the symbol with the hex code point 29DD might be used like so:
+                      # ⧝MY_TOKEN_TYPE.
+                    &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.
+                  },
+                  &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.
+                          # This is an arbitrary string used to differentiate different keys.
+                          # A unique key is generated per name: two separate `TransientCryptoKey`
+                          # protos share the same generated key if their names are the same.
+                          # When the data crypto key is generated, this name is not used in any way
+                          # (repeating the api call will result in a different key being generated).
+                    },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
+                    # replacement values are dynamically provided by the user for custom behavior,
+                    # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
+                    # This can be used on
+                    # data of type: number, long, string, timestamp.
+                    # 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;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.
+                          # 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;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.
+                          # 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;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;transformationErrorHandling&quot;: { # How to handle transformation errors during de-identification. A # Mode for handling transformation errors. If left unspecified, the default
             # mode is `TransformationErrorHandling.ThrowError`.
             # transformation error occurs when the requested transformation is incompatible
@@ -144,89 +768,6 @@
             # 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;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;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;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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          &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;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;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;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.
@@ -243,17 +784,6 @@
                     # for a given infoType.
                   { # A transformation to apply to text that is identified as a specific
                       # info_type.
-                    &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. # 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.
@@ -280,14 +810,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                              # The wrapped key must be a 128/192/256 bit key.
-                              # Authorization requires the following IAM permissions when sending a request
-                              # to perform a crypto transformation using a kms-wrapped crypto key:
-                              # dlp.kms.encrypt
-                            &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                            &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                          },
                           &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.
@@ -301,6 +823,14 @@
                                 # When the data crypto key is generated, this name is not used in any way
                                 # (repeating the api call will result in a different key being generated).
                           },
+                          &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                              # The wrapped key must be a 128/192/256 bit key.
+                              # Authorization requires the following IAM permissions when sending a request
+                              # to perform a crypto transformation using a kms-wrapped crypto key:
+                              # dlp.kms.encrypt
+                            &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -317,14 +847,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                              # The wrapped key must be a 128/192/256 bit key.
-                              # Authorization requires the following IAM permissions when sending a request
-                              # to perform a crypto transformation using a kms-wrapped crypto key:
-                              # dlp.kms.encrypt
-                            &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                            &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                          },
                           &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.
@@ -338,6 +860,14 @@
                                 # When the data crypto key is generated, this name is not used in any way
                                 # (repeating the api call will result in a different key being generated).
                           },
+                          &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                              # The wrapped key must be a 128/192/256 bit key.
+                              # Authorization requires the following IAM permissions when sending a request
+                              # to perform a crypto transformation using a kms-wrapped crypto key:
+                              # dlp.kms.encrypt
+                            &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -353,14 +883,6 @@
                           # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                           # do not require preserving the input alphabet space and size, plus warrant
                           # referential integrity.
-                        &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                             # This annotation will be applied to the surrogate by prefixing it with
                             # the name of the custom infoType followed by the number of
@@ -420,14 +942,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                              # The wrapped key must be a 128/192/256 bit key.
-                              # Authorization requires the following IAM permissions when sending a request
-                              # to perform a crypto transformation using a kms-wrapped crypto key:
-                              # dlp.kms.encrypt
-                            &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                            &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                          },
                           &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.
@@ -441,7 +955,23 @@
                                 # When the data crypto key is generated, this name is not used in any way
                                 # (repeating the api call will result in a different key being generated).
                           },
+                          &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                              # The wrapped key must be a 128/192/256 bit key.
+                              # Authorization requires the following IAM permissions when sending a request
+                              # to perform a crypto transformation using a kms-wrapped crypto key:
+                              # dlp.kms.encrypt
+                            &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;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.
@@ -509,14 +1039,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                              # The wrapped key must be a 128/192/256 bit key.
-                              # Authorization requires the following IAM permissions when sending a request
-                              # to perform a crypto transformation using a kms-wrapped crypto key:
-                              # dlp.kms.encrypt
-                            &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                            &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                          },
                           &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.
@@ -530,12 +1052,16 @@
                                 # When the data crypto key is generated, this name is not used in any way
                                 # (repeating the api call will result in a different key being generated).
                           },
+                          &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                              # The wrapped key must be a 128/192/256 bit key.
+                              # Authorization requires the following IAM permissions when sending a request
+                              # to perform a crypto transformation using a kms-wrapped crypto key:
+                              # dlp.kms.encrypt
+                            &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                           # replacement values are dynamically provided by the user for custom behavior,
                           # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -547,89 +1073,6 @@
                           # 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;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.
-                                # 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;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                              &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                              &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;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;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;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.
                                 # Note that for the purposes of inspection or transformation, the number
@@ -637,9 +1080,6 @@
                                 # 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;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                               &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
@@ -664,17 +1104,107 @@
                               &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;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;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.
+                                # 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;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
@@ -682,9 +1212,6 @@
                             # 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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           &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
@@ -709,44 +1236,18 @@
                           &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;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;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;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;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
@@ -763,49 +1264,6 @@
                           # be transformed to match the type of the bound before comparing.
                           #
                           # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                        &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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          &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;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;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;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;.
@@ -814,9 +1272,6 @@
                             # 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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           &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
@@ -841,20 +1296,106 @@
                           &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;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}`.
+                      },
+                    ],
                   },
                 ],
               },
@@ -884,14 +1425,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
                     &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.
@@ -905,6 +1438,14 @@
                           # When the data crypto key is generated, this name is not used in any way
                           # (repeating the api call will result in a different key being generated).
                     },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -921,14 +1462,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
                     &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.
@@ -942,6 +1475,14 @@
                           # When the data crypto key is generated, this name is not used in any way
                           # (repeating the api call will result in a different key being generated).
                     },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -957,14 +1498,6 @@
                     # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                     # do not require preserving the input alphabet space and size, plus warrant
                     # referential integrity.
-                  &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                       # This annotation will be applied to the surrogate by prefixing it with
                       # the name of the custom infoType followed by the number of
@@ -1024,14 +1557,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
                     &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.
@@ -1045,7 +1570,23 @@
                           # When the data crypto key is generated, this name is not used in any way
                           # (repeating the api call will result in a different key being generated).
                     },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;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.
@@ -1113,14 +1654,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
                     &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.
@@ -1134,12 +1667,16 @@
                           # When the data crypto key is generated, this name is not used in any way
                           # (repeating the api call will result in a different key being generated).
                     },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                     # replacement values are dynamically provided by the user for custom behavior,
                     # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -1151,89 +1688,6 @@
                     # 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;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.
-                          # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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.
                           # Note that for the purposes of inspection or transformation, the number
@@ -1241,9 +1695,6 @@
                           # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -1268,17 +1719,107 @@
                         &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;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;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.
+                          # 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;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
@@ -1286,9 +1827,6 @@
                       # 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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     &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
@@ -1313,44 +1851,18 @@
                     &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;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;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;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;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
@@ -1367,49 +1879,6 @@
                     # be transformed to match the type of the bound before comparing.
                     #
                     # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                  &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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    &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;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;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;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;.
@@ -1418,9 +1887,6 @@
                       # 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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     &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
@@ -1445,18 +1911,93 @@
                     &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;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
@@ -1493,19 +2034,12 @@
                           #
                           # 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;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                         &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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           &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
@@ -1530,14 +2064,21 @@
                           &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;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.
                       },
                     ],
                   },
@@ -1545,627 +2086,86 @@
               },
             },
           ],
-        },
-        &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.
-            # apply various `PrimitiveTransformation`s to each finding, where the
-            # transformation is applied to only values that were identified as a specific
-            # info_type.
-          &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
-              # for a given infoType.
-            { # A transformation to apply to text that is identified as a specific
-                # info_type.
-              &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. # 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;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.
-                  &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
-                      # If set, must also set cryptoKey. If set, shift will be consistent for the
-                      # given context.
-                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                  },
-                  &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
-                      # range (inclusive ends). Negative means shift to earlier in time. Must not
-                      # 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.
-                      # 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
-                    &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.
-                          # This is an arbitrary string used to differentiate different keys.
-                          # A unique key is generated per name: two separate `TransientCryptoKey`
-                          # protos share the same generated key if their names are the same.
-                          # When the data crypto key is generated, this name is not used in any way
-                          # (repeating the api call will result in a different key being generated).
-                    },
-                  },
-                },
-                &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
-                },
-                &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.
-                    # Outputs a base64 encoded representation of the hashed output
-                    # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
-                    # Currently, only string and integer values can be hashed.
-                    # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
-                  &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
-                    &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.
-                          # This is an arbitrary string used to differentiate different keys.
-                          # A unique key is generated per name: two separate `TransientCryptoKey`
-                          # protos share the same generated key if their names are the same.
-                          # When the data crypto key is generated, this name is not used in any way
-                          # (repeating the api call will result in a different key being generated).
-                    },
-                  },
-                },
-                &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
-                    # the surrogate back into the original identifier. The identifier must be
-                    # encoded as ASCII. For a given crypto key and context, the same identifier
-                    # will be replaced with the same surrogate. Identifiers must be at least two
-                    # characters long. In the case that the identifier is the empty string, it will
-                    # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
-                    # more.
-                    #
-                    # Note: We recommend using  CryptoDeterministicConfig for all use cases which
-                    # do not require preserving the input alphabet space and size, plus warrant
-                    # referential integrity.
-                  &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
-                      # This annotation will be applied to the surrogate by prefixing it with
-                      # the name of the custom infoType followed by the number of
-                      # characters comprising the surrogate. The following scheme defines the
-                      # format: info_type_name(surrogate_character_count):surrogate
-                      #
-                      # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                      # the surrogate is &#x27;abc&#x27;, the full replacement value
-                      # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                      #
-                      # This annotation identifies the surrogate when inspecting content using the
-                      # custom infoType
-                      # [`SurrogateType`](/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
-                      # not occur naturally anywhere in your data; otherwise, inspection may
-                      # find a surrogate that does not correspond to an actual identifier.
-                      # Therefore, choose your custom infoType name carefully after considering
-                      # what your data looks like. One way to select a name that has a high chance
-                      # of yielding reliable detection is to include one or more unicode characters
-                      # that are highly improbable to exist in your data.
-                      # For example, assuming your data is entered from a regular ASCII keyboard,
-                      # the symbol with the hex code point 29DD might be used like so:
-                      # ⧝MY_TOKEN_TYPE
-                    &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. # 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.
-                      #
-                      # If the context is set but:
-                      #
-                      # 1. there is no record present when transforming a given value or
-                      # 1. the field is not present when transforming a given value,
-                      #
-                      # a default tweak will be used.
-                      #
-                      # Note that case (1) is expected when an `InfoTypeTransformation` is
-                      # applied to both structured and non-structured `ContentItem`s.
-                      # Currently, the referenced field may be of value type integer or string.
-                      #
-                      # The tweak is constructed as a sequence of bytes in big endian byte order
-                      # such that:
-                      #
-                      # - a 64 bit integer is encoded followed by a single byte of value 1
-                      # - 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;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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
-                    &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.
-                          # This is an arbitrary string used to differentiate different keys.
-                          # A unique key is generated per name: two separate `TransientCryptoKey`
-                          # protos share the same generated key if their names are the same.
-                          # When the data crypto key is generated, this name is not used in any way
-                          # (repeating the api call will result in a different key being generated).
-                    },
-                  },
-                },
-                &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;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
-                      # characters comprising the surrogate. The following scheme defines the
-                      # format: {info type name}({surrogate character count}):{surrogate}
-                      #
-                      # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                      # the surrogate is &#x27;abc&#x27;, the full replacement value
-                      # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                      #
-                      # This annotation identifies the surrogate when inspecting content using the
-                      # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
-                      # surrogate when it occurs in free text.
-                      #
-                      # Note: For record transformations where the entire cell in a table is being
-                      # transformed, surrogates are not mandatory. Surrogates are used to denote
-                      # the location of the token and are necessary for re-identification in free
-                      # form text.
-                      #
-                      # In order for inspection to work properly, the name of this info type must
-                      # not occur naturally anywhere in your data; otherwise, inspection may either
-                      #
-                      # - reverse a surrogate that does not correspond to an actual identifier
-                      # - be unable to parse the surrogate and result in an error
-                      #
-                      # Therefore, choose your custom info type name carefully after considering
-                      # what your data looks like. One way to select a name that has a high chance
-                      # of yielding reliable detection is to include one or more unicode characters
-                      # that are highly improbable to exist in your data.
-                      # For example, assuming your data is entered from a regular ASCII keyboard,
-                      # the symbol with the hex code point 29DD might be used like so:
-                      # ⧝MY_TOKEN_TYPE.
-                    &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.
-                  },
-                  &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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
-                    &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.
-                          # This is an arbitrary string used to differentiate different keys.
-                          # A unique key is generated per name: two separate `TransientCryptoKey`
-                          # protos share the same generated key if their names are the same.
-                          # When the data crypto key is generated, this name is not used in any way
-                          # (repeating the api call will result in a different key being generated).
-                    },
-                  },
-                },
-                &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
-                    # replacement values are dynamically provided by the user for custom behavior,
-                    # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
-                    # This can be used on
-                    # data of type: number, long, string, timestamp.
-                    # 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;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
-                    { # Bucket is represented as a range, along with replacement values.
-                      &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.
-                          # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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.
-                          # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    &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;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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    &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;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;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;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.
-                },
               },
             },
           ],
@@ -2196,6 +2196,630 @@
     &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.
+          # apply various `PrimitiveTransformation`s to each finding, where the
+          # transformation is applied to only values that were identified as a specific
+          # info_type.
+        &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
+            # 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;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.
+                &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
+                    # If set, must also set cryptoKey. If set, shift will be consistent for the
+                    # given context.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
+                &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
+                    # range (inclusive ends). Negative means shift to earlier in time. Must not
+                    # 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.
+                    # 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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
+              },
+              &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.
+                  # Outputs a base64 encoded representation of the hashed output
+                  # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
+                  # Currently, only string and integer values can be hashed.
+                  # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
+                &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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
+                  # the surrogate back into the original identifier. The identifier must be
+                  # encoded as ASCII. For a given crypto key and context, the same identifier
+                  # will be replaced with the same surrogate. Identifiers must be at least two
+                  # characters long. In the case that the identifier is the empty string, it will
+                  # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
+                  # more.
+                  #
+                  # Note: We recommend using  CryptoDeterministicConfig for all use cases which
+                  # do not require preserving the input alphabet space and size, plus warrant
+                  # referential integrity.
+                &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
+                    # This annotation will be applied to the surrogate by prefixing it with
+                    # the name of the custom infoType followed by the number of
+                    # characters comprising the surrogate. The following scheme defines the
+                    # format: info_type_name(surrogate_character_count):surrogate
+                    #
+                    # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                    # the surrogate is &#x27;abc&#x27;, the full replacement value
+                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                    #
+                    # This annotation identifies the surrogate when inspecting content using the
+                    # custom infoType
+                    # [`SurrogateType`](/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
+                    # not occur naturally anywhere in your data; otherwise, inspection may
+                    # find a surrogate that does not correspond to an actual identifier.
+                    # Therefore, choose your custom infoType name carefully after considering
+                    # what your data looks like. One way to select a name that has a high chance
+                    # of yielding reliable detection is to include one or more unicode characters
+                    # that are highly improbable to exist in your data.
+                    # For example, assuming your data is entered from a regular ASCII keyboard,
+                    # the symbol with the hex code point 29DD might be used like so:
+                    # ⧝MY_TOKEN_TYPE
+                  &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. # 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.
+                    #
+                    # If the context is set but:
+                    #
+                    # 1. there is no record present when transforming a given value or
+                    # 1. the field is not present when transforming a given value,
+                    #
+                    # a default tweak will be used.
+                    #
+                    # Note that case (1) is expected when an `InfoTypeTransformation` is
+                    # applied to both structured and non-structured `ContentItem`s.
+                    # Currently, the referenced field may be of value type integer or string.
+                    #
+                    # The tweak is constructed as a sequence of bytes in big endian byte order
+                    # such that:
+                    #
+                    # - a 64 bit integer is encoded followed by a single byte of value 1
+                    # - 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;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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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;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
+                    # characters comprising the surrogate. The following scheme defines the
+                    # format: {info type name}({surrogate character count}):{surrogate}
+                    #
+                    # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                    # the surrogate is &#x27;abc&#x27;, the full replacement value
+                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                    #
+                    # This annotation identifies the surrogate when inspecting content using the
+                    # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
+                    # surrogate when it occurs in free text.
+                    #
+                    # Note: For record transformations where the entire cell in a table is being
+                    # transformed, surrogates are not mandatory. Surrogates are used to denote
+                    # the location of the token and are necessary for re-identification in free
+                    # form text.
+                    #
+                    # In order for inspection to work properly, the name of this info type must
+                    # not occur naturally anywhere in your data; otherwise, inspection may either
+                    #
+                    # - reverse a surrogate that does not correspond to an actual identifier
+                    # - be unable to parse the surrogate and result in an error
+                    #
+                    # Therefore, choose your custom info type name carefully after considering
+                    # what your data looks like. One way to select a name that has a high chance
+                    # of yielding reliable detection is to include one or more unicode characters
+                    # that are highly improbable to exist in your data.
+                    # For example, assuming your data is entered from a regular ASCII keyboard,
+                    # the symbol with the hex code point 29DD might be used like so:
+                    # ⧝MY_TOKEN_TYPE.
+                  &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.
+                },
+                &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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
+                  # replacement values are dynamically provided by the user for custom behavior,
+                  # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
+                  # This can be used on
+                  # data of type: number, long, string, timestamp.
+                  # 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;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.
+                        # 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;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.
+                        # 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;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;transformationErrorHandling&quot;: { # How to handle transformation errors during de-identification. A # Mode for handling transformation errors. If left unspecified, the default
           # mode is `TransformationErrorHandling.ThrowError`.
           # transformation error occurs when the requested transformation is incompatible
@@ -2217,89 +2841,6 @@
           # 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;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;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;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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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.
@@ -2316,17 +2857,6 @@
                   # for a given infoType.
                 { # A transformation to apply to text that is identified as a specific
                     # info_type.
-                  &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. # 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.
@@ -2353,14 +2883,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -2374,6 +2896,14 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -2390,14 +2920,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -2411,6 +2933,14 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -2426,14 +2956,6 @@
                         # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                         # do not require preserving the input alphabet space and size, plus warrant
                         # referential integrity.
-                      &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                           # This annotation will be applied to the surrogate by prefixing it with
                           # the name of the custom infoType followed by the number of
@@ -2493,14 +3015,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -2514,7 +3028,23 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;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.
@@ -2582,14 +3112,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -2603,12 +3125,16 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                         # replacement values are dynamically provided by the user for custom behavior,
                         # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -2620,89 +3146,6 @@
                         # 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;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.
-                              # 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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            &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;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;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;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.
                               # Note that for the purposes of inspection or transformation, the number
@@ -2710,9 +3153,6 @@
                               # 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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             &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
@@ -2737,17 +3177,107 @@
                             &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;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;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.
+                              # 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;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
@@ -2755,9 +3285,6 @@
                           # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -2782,44 +3309,18 @@
                         &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;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;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;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;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
@@ -2836,49 +3337,6 @@
                         # be transformed to match the type of the bound before comparing.
                         #
                         # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                      &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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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;.
@@ -2887,9 +3345,6 @@
                           # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -2914,20 +3369,106 @@
                         &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;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}`.
+                    },
+                  ],
                 },
               ],
             },
@@ -2957,14 +3498,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -2978,6 +3511,14 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -2994,14 +3535,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -3015,6 +3548,14 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -3030,14 +3571,6 @@
                   # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                   # do not require preserving the input alphabet space and size, plus warrant
                   # referential integrity.
-                &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                     # This annotation will be applied to the surrogate by prefixing it with
                     # the name of the custom infoType followed by the number of
@@ -3097,14 +3630,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -3118,7 +3643,23 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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.
@@ -3186,14 +3727,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -3207,12 +3740,16 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                   # replacement values are dynamically provided by the user for custom behavior,
                   # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -3224,89 +3761,6 @@
                   # 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;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.
-                        # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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.
                         # Note that for the purposes of inspection or transformation, the number
@@ -3314,9 +3768,6 @@
                         # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       &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
@@ -3341,17 +3792,107 @@
                       &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;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;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.
+                        # 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;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
@@ -3359,9 +3900,6 @@
                     # 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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                   &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
@@ -3386,44 +3924,18 @@
                   &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;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;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;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;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
@@ -3440,49 +3952,6 @@
                   # be transformed to match the type of the bound before comparing.
                   #
                   # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                &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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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;.
@@ -3491,9 +3960,6 @@
                     # 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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                   &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
@@ -3518,18 +3984,93 @@
                   &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;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
@@ -3566,19 +4107,12 @@
                         #
                         # 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;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                       &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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -3603,14 +4137,21 @@
                         &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;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.
                     },
                   ],
                 },
@@ -3618,627 +4159,86 @@
             },
           },
         ],
-      },
-      &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.
-          # apply various `PrimitiveTransformation`s to each finding, where the
-          # transformation is applied to only values that were identified as a specific
-          # info_type.
-        &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
-            # for a given infoType.
-          { # A transformation to apply to text that is identified as a specific
-              # info_type.
-            &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. # 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;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.
-                &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
-                    # If set, must also set cryptoKey. If set, shift will be consistent for the
-                    # given context.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                },
-                &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
-                    # range (inclusive ends). Negative means shift to earlier in time. Must not
-                    # 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.
-                    # 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
-              },
-              &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.
-                  # Outputs a base64 encoded representation of the hashed output
-                  # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
-                  # Currently, only string and integer values can be hashed.
-                  # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
-                &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &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
-                  # the surrogate back into the original identifier. The identifier must be
-                  # encoded as ASCII. For a given crypto key and context, the same identifier
-                  # will be replaced with the same surrogate. Identifiers must be at least two
-                  # characters long. In the case that the identifier is the empty string, it will
-                  # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
-                  # more.
-                  #
-                  # Note: We recommend using  CryptoDeterministicConfig for all use cases which
-                  # do not require preserving the input alphabet space and size, plus warrant
-                  # referential integrity.
-                &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
-                    # This annotation will be applied to the surrogate by prefixing it with
-                    # the name of the custom infoType followed by the number of
-                    # characters comprising the surrogate. The following scheme defines the
-                    # format: info_type_name(surrogate_character_count):surrogate
-                    #
-                    # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                    # the surrogate is &#x27;abc&#x27;, the full replacement value
-                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                    #
-                    # This annotation identifies the surrogate when inspecting content using the
-                    # custom infoType
-                    # [`SurrogateType`](/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
-                    # not occur naturally anywhere in your data; otherwise, inspection may
-                    # find a surrogate that does not correspond to an actual identifier.
-                    # Therefore, choose your custom infoType name carefully after considering
-                    # what your data looks like. One way to select a name that has a high chance
-                    # of yielding reliable detection is to include one or more unicode characters
-                    # that are highly improbable to exist in your data.
-                    # For example, assuming your data is entered from a regular ASCII keyboard,
-                    # the symbol with the hex code point 29DD might be used like so:
-                    # ⧝MY_TOKEN_TYPE
-                  &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. # 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.
-                    #
-                    # If the context is set but:
-                    #
-                    # 1. there is no record present when transforming a given value or
-                    # 1. the field is not present when transforming a given value,
-                    #
-                    # a default tweak will be used.
-                    #
-                    # Note that case (1) is expected when an `InfoTypeTransformation` is
-                    # applied to both structured and non-structured `ContentItem`s.
-                    # Currently, the referenced field may be of value type integer or string.
-                    #
-                    # The tweak is constructed as a sequence of bytes in big endian byte order
-                    # such that:
-                    #
-                    # - a 64 bit integer is encoded followed by a single byte of value 1
-                    # - 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;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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &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;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
-                    # characters comprising the surrogate. The following scheme defines the
-                    # format: {info type name}({surrogate character count}):{surrogate}
-                    #
-                    # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                    # the surrogate is &#x27;abc&#x27;, the full replacement value
-                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                    #
-                    # This annotation identifies the surrogate when inspecting content using the
-                    # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
-                    # surrogate when it occurs in free text.
-                    #
-                    # Note: For record transformations where the entire cell in a table is being
-                    # transformed, surrogates are not mandatory. Surrogates are used to denote
-                    # the location of the token and are necessary for re-identification in free
-                    # form text.
-                    #
-                    # In order for inspection to work properly, the name of this info type must
-                    # not occur naturally anywhere in your data; otherwise, inspection may either
-                    #
-                    # - reverse a surrogate that does not correspond to an actual identifier
-                    # - be unable to parse the surrogate and result in an error
-                    #
-                    # Therefore, choose your custom info type name carefully after considering
-                    # what your data looks like. One way to select a name that has a high chance
-                    # of yielding reliable detection is to include one or more unicode characters
-                    # that are highly improbable to exist in your data.
-                    # For example, assuming your data is entered from a regular ASCII keyboard,
-                    # the symbol with the hex code point 29DD might be used like so:
-                    # ⧝MY_TOKEN_TYPE.
-                  &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.
-                },
-                &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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
-                  # replacement values are dynamically provided by the user for custom behavior,
-                  # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
-                  # This can be used on
-                  # data of type: number, long, string, timestamp.
-                  # 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;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
-                  { # Bucket is represented as a range, along with replacement values.
-                    &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.
-                        # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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.
-                        # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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.
-              },
             },
           },
         ],
@@ -4307,6 +4307,630 @@
     &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.
+          # apply various `PrimitiveTransformation`s to each finding, where the
+          # transformation is applied to only values that were identified as a specific
+          # info_type.
+        &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
+            # 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;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.
+                &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
+                    # If set, must also set cryptoKey. If set, shift will be consistent for the
+                    # given context.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
+                &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
+                    # range (inclusive ends). Negative means shift to earlier in time. Must not
+                    # 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.
+                    # 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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
+              },
+              &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.
+                  # Outputs a base64 encoded representation of the hashed output
+                  # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
+                  # Currently, only string and integer values can be hashed.
+                  # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
+                &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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
+                  # the surrogate back into the original identifier. The identifier must be
+                  # encoded as ASCII. For a given crypto key and context, the same identifier
+                  # will be replaced with the same surrogate. Identifiers must be at least two
+                  # characters long. In the case that the identifier is the empty string, it will
+                  # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
+                  # more.
+                  #
+                  # Note: We recommend using  CryptoDeterministicConfig for all use cases which
+                  # do not require preserving the input alphabet space and size, plus warrant
+                  # referential integrity.
+                &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
+                    # This annotation will be applied to the surrogate by prefixing it with
+                    # the name of the custom infoType followed by the number of
+                    # characters comprising the surrogate. The following scheme defines the
+                    # format: info_type_name(surrogate_character_count):surrogate
+                    #
+                    # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                    # the surrogate is &#x27;abc&#x27;, the full replacement value
+                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                    #
+                    # This annotation identifies the surrogate when inspecting content using the
+                    # custom infoType
+                    # [`SurrogateType`](/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
+                    # not occur naturally anywhere in your data; otherwise, inspection may
+                    # find a surrogate that does not correspond to an actual identifier.
+                    # Therefore, choose your custom infoType name carefully after considering
+                    # what your data looks like. One way to select a name that has a high chance
+                    # of yielding reliable detection is to include one or more unicode characters
+                    # that are highly improbable to exist in your data.
+                    # For example, assuming your data is entered from a regular ASCII keyboard,
+                    # the symbol with the hex code point 29DD might be used like so:
+                    # ⧝MY_TOKEN_TYPE
+                  &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. # 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.
+                    #
+                    # If the context is set but:
+                    #
+                    # 1. there is no record present when transforming a given value or
+                    # 1. the field is not present when transforming a given value,
+                    #
+                    # a default tweak will be used.
+                    #
+                    # Note that case (1) is expected when an `InfoTypeTransformation` is
+                    # applied to both structured and non-structured `ContentItem`s.
+                    # Currently, the referenced field may be of value type integer or string.
+                    #
+                    # The tweak is constructed as a sequence of bytes in big endian byte order
+                    # such that:
+                    #
+                    # - a 64 bit integer is encoded followed by a single byte of value 1
+                    # - 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;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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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;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
+                    # characters comprising the surrogate. The following scheme defines the
+                    # format: {info type name}({surrogate character count}):{surrogate}
+                    #
+                    # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                    # the surrogate is &#x27;abc&#x27;, the full replacement value
+                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                    #
+                    # This annotation identifies the surrogate when inspecting content using the
+                    # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
+                    # surrogate when it occurs in free text.
+                    #
+                    # Note: For record transformations where the entire cell in a table is being
+                    # transformed, surrogates are not mandatory. Surrogates are used to denote
+                    # the location of the token and are necessary for re-identification in free
+                    # form text.
+                    #
+                    # In order for inspection to work properly, the name of this info type must
+                    # not occur naturally anywhere in your data; otherwise, inspection may either
+                    #
+                    # - reverse a surrogate that does not correspond to an actual identifier
+                    # - be unable to parse the surrogate and result in an error
+                    #
+                    # Therefore, choose your custom info type name carefully after considering
+                    # what your data looks like. One way to select a name that has a high chance
+                    # of yielding reliable detection is to include one or more unicode characters
+                    # that are highly improbable to exist in your data.
+                    # For example, assuming your data is entered from a regular ASCII keyboard,
+                    # the symbol with the hex code point 29DD might be used like so:
+                    # ⧝MY_TOKEN_TYPE.
+                  &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.
+                },
+                &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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
+                  # replacement values are dynamically provided by the user for custom behavior,
+                  # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
+                  # This can be used on
+                  # data of type: number, long, string, timestamp.
+                  # 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;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.
+                        # 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;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.
+                        # 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;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;transformationErrorHandling&quot;: { # How to handle transformation errors during de-identification. A # Mode for handling transformation errors. If left unspecified, the default
           # mode is `TransformationErrorHandling.ThrowError`.
           # transformation error occurs when the requested transformation is incompatible
@@ -4328,89 +4952,6 @@
           # 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;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;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;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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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.
@@ -4427,17 +4968,6 @@
                   # for a given infoType.
                 { # A transformation to apply to text that is identified as a specific
                     # info_type.
-                  &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. # 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.
@@ -4464,14 +4994,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -4485,6 +5007,14 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -4501,14 +5031,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -4522,6 +5044,14 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -4537,14 +5067,6 @@
                         # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                         # do not require preserving the input alphabet space and size, plus warrant
                         # referential integrity.
-                      &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                           # This annotation will be applied to the surrogate by prefixing it with
                           # the name of the custom infoType followed by the number of
@@ -4604,14 +5126,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -4625,7 +5139,23 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;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.
@@ -4693,14 +5223,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -4714,12 +5236,16 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                         # replacement values are dynamically provided by the user for custom behavior,
                         # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -4731,89 +5257,6 @@
                         # 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;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.
-                              # 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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            &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;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;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;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.
                               # Note that for the purposes of inspection or transformation, the number
@@ -4821,9 +5264,6 @@
                               # 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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             &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
@@ -4848,17 +5288,107 @@
                             &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;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;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.
+                              # 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;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
@@ -4866,9 +5396,6 @@
                           # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -4893,44 +5420,18 @@
                         &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;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;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;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;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
@@ -4947,49 +5448,6 @@
                         # be transformed to match the type of the bound before comparing.
                         #
                         # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                      &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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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;.
@@ -4998,9 +5456,6 @@
                           # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -5025,20 +5480,106 @@
                         &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;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}`.
+                    },
+                  ],
                 },
               ],
             },
@@ -5068,14 +5609,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -5089,6 +5622,14 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -5105,14 +5646,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -5126,6 +5659,14 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -5141,14 +5682,6 @@
                   # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                   # do not require preserving the input alphabet space and size, plus warrant
                   # referential integrity.
-                &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                     # This annotation will be applied to the surrogate by prefixing it with
                     # the name of the custom infoType followed by the number of
@@ -5208,14 +5741,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -5229,7 +5754,23 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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.
@@ -5297,14 +5838,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -5318,12 +5851,16 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                   # replacement values are dynamically provided by the user for custom behavior,
                   # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -5335,89 +5872,6 @@
                   # 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;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.
-                        # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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.
                         # Note that for the purposes of inspection or transformation, the number
@@ -5425,9 +5879,6 @@
                         # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       &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
@@ -5452,17 +5903,107 @@
                       &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;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;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.
+                        # 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;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
@@ -5470,9 +6011,6 @@
                     # 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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                   &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
@@ -5497,44 +6035,18 @@
                   &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;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;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;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;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
@@ -5551,49 +6063,6 @@
                   # be transformed to match the type of the bound before comparing.
                   #
                   # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                &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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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;.
@@ -5602,9 +6071,6 @@
                     # 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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                   &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
@@ -5629,18 +6095,93 @@
                   &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;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
@@ -5677,19 +6218,12 @@
                         #
                         # 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;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                       &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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -5714,14 +6248,21 @@
                         &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;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.
                     },
                   ],
                 },
@@ -5729,627 +6270,86 @@
             },
           },
         ],
-      },
-      &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.
-          # apply various `PrimitiveTransformation`s to each finding, where the
-          # transformation is applied to only values that were identified as a specific
-          # info_type.
-        &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
-            # for a given infoType.
-          { # A transformation to apply to text that is identified as a specific
-              # info_type.
-            &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. # 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;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.
-                &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
-                    # If set, must also set cryptoKey. If set, shift will be consistent for the
-                    # given context.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                },
-                &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
-                    # range (inclusive ends). Negative means shift to earlier in time. Must not
-                    # 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.
-                    # 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
-              },
-              &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.
-                  # Outputs a base64 encoded representation of the hashed output
-                  # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
-                  # Currently, only string and integer values can be hashed.
-                  # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
-                &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &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
-                  # the surrogate back into the original identifier. The identifier must be
-                  # encoded as ASCII. For a given crypto key and context, the same identifier
-                  # will be replaced with the same surrogate. Identifiers must be at least two
-                  # characters long. In the case that the identifier is the empty string, it will
-                  # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
-                  # more.
-                  #
-                  # Note: We recommend using  CryptoDeterministicConfig for all use cases which
-                  # do not require preserving the input alphabet space and size, plus warrant
-                  # referential integrity.
-                &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
-                    # This annotation will be applied to the surrogate by prefixing it with
-                    # the name of the custom infoType followed by the number of
-                    # characters comprising the surrogate. The following scheme defines the
-                    # format: info_type_name(surrogate_character_count):surrogate
-                    #
-                    # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                    # the surrogate is &#x27;abc&#x27;, the full replacement value
-                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                    #
-                    # This annotation identifies the surrogate when inspecting content using the
-                    # custom infoType
-                    # [`SurrogateType`](/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
-                    # not occur naturally anywhere in your data; otherwise, inspection may
-                    # find a surrogate that does not correspond to an actual identifier.
-                    # Therefore, choose your custom infoType name carefully after considering
-                    # what your data looks like. One way to select a name that has a high chance
-                    # of yielding reliable detection is to include one or more unicode characters
-                    # that are highly improbable to exist in your data.
-                    # For example, assuming your data is entered from a regular ASCII keyboard,
-                    # the symbol with the hex code point 29DD might be used like so:
-                    # ⧝MY_TOKEN_TYPE
-                  &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. # 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.
-                    #
-                    # If the context is set but:
-                    #
-                    # 1. there is no record present when transforming a given value or
-                    # 1. the field is not present when transforming a given value,
-                    #
-                    # a default tweak will be used.
-                    #
-                    # Note that case (1) is expected when an `InfoTypeTransformation` is
-                    # applied to both structured and non-structured `ContentItem`s.
-                    # Currently, the referenced field may be of value type integer or string.
-                    #
-                    # The tweak is constructed as a sequence of bytes in big endian byte order
-                    # such that:
-                    #
-                    # - a 64 bit integer is encoded followed by a single byte of value 1
-                    # - 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;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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &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;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
-                    # characters comprising the surrogate. The following scheme defines the
-                    # format: {info type name}({surrogate character count}):{surrogate}
-                    #
-                    # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                    # the surrogate is &#x27;abc&#x27;, the full replacement value
-                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                    #
-                    # This annotation identifies the surrogate when inspecting content using the
-                    # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
-                    # surrogate when it occurs in free text.
-                    #
-                    # Note: For record transformations where the entire cell in a table is being
-                    # transformed, surrogates are not mandatory. Surrogates are used to denote
-                    # the location of the token and are necessary for re-identification in free
-                    # form text.
-                    #
-                    # In order for inspection to work properly, the name of this info type must
-                    # not occur naturally anywhere in your data; otherwise, inspection may either
-                    #
-                    # - reverse a surrogate that does not correspond to an actual identifier
-                    # - be unable to parse the surrogate and result in an error
-                    #
-                    # Therefore, choose your custom info type name carefully after considering
-                    # what your data looks like. One way to select a name that has a high chance
-                    # of yielding reliable detection is to include one or more unicode characters
-                    # that are highly improbable to exist in your data.
-                    # For example, assuming your data is entered from a regular ASCII keyboard,
-                    # the symbol with the hex code point 29DD might be used like so:
-                    # ⧝MY_TOKEN_TYPE.
-                  &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.
-                },
-                &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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
-                  # replacement values are dynamically provided by the user for custom behavior,
-                  # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
-                  # This can be used on
-                  # data of type: number, long, string, timestamp.
-                  # 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;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
-                  { # Bucket is represented as a range, along with replacement values.
-                    &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.
-                        # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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.
-                        # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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.
-              },
             },
           },
         ],
@@ -6359,7 +6359,7 @@
 </div>
 
 <div class="method">
-    <code class="details" id="list">list(parent, pageToken=None, locationId=None, pageSize=None, orderBy=None, x__xgafv=None)</code>
+    <code class="details" id="list">list(parent, orderBy=None, pageToken=None, locationId=None, pageSize=None, x__xgafv=None)</code>
   <pre>Lists DeidentifyTemplates.
 See https://cloud.google.com/dlp/docs/creating-templates-deid to learn
 more.
@@ -6367,12 +6367,6 @@
 Args:
   parent: string, Required. The parent resource name, for example projects/my-project-id or
 organizations/my-org-id. (required)
-  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.
   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
@@ -6386,6 +6380,12 @@
 - `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.
   x__xgafv: string, V1 error format.
     Allowed values
       1 - v1 error format
@@ -6411,6 +6411,630 @@
         &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.
+              # apply various `PrimitiveTransformation`s to each finding, where the
+              # transformation is applied to only values that were identified as a specific
+              # info_type.
+            &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
+                # 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;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.
+                    &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
+                        # If set, must also set cryptoKey. If set, shift will be consistent for the
+                        # given context.
+                      &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                    },
+                    &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
+                        # range (inclusive ends). Negative means shift to earlier in time. Must not
+                        # 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.
+                        # 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.
+                            # This is an arbitrary string used to differentiate different keys.
+                            # A unique key is generated per name: two separate `TransientCryptoKey`
+                            # protos share the same generated key if their names are the same.
+                            # When the data crypto key is generated, this name is not used in any way
+                            # (repeating the api call will result in a different key being generated).
+                      },
+                      &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                          # The wrapped key must be a 128/192/256 bit key.
+                          # Authorization requires the following IAM permissions when sending a request
+                          # to perform a crypto transformation using a kms-wrapped crypto key:
+                          # dlp.kms.encrypt
+                        &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
+                  },
+                  &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.
+                      # Outputs a base64 encoded representation of the hashed output
+                      # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
+                      # Currently, only string and integer values can be hashed.
+                      # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
+                    &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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.
+                            # This is an arbitrary string used to differentiate different keys.
+                            # A unique key is generated per name: two separate `TransientCryptoKey`
+                            # protos share the same generated key if their names are the same.
+                            # When the data crypto key is generated, this name is not used in any way
+                            # (repeating the api call will result in a different key being generated).
+                      },
+                      &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                          # The wrapped key must be a 128/192/256 bit key.
+                          # Authorization requires the following IAM permissions when sending a request
+                          # to perform a crypto transformation using a kms-wrapped crypto key:
+                          # dlp.kms.encrypt
+                        &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;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
+                      # the surrogate back into the original identifier. The identifier must be
+                      # encoded as ASCII. For a given crypto key and context, the same identifier
+                      # will be replaced with the same surrogate. Identifiers must be at least two
+                      # characters long. In the case that the identifier is the empty string, it will
+                      # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
+                      # more.
+                      #
+                      # Note: We recommend using  CryptoDeterministicConfig for all use cases which
+                      # do not require preserving the input alphabet space and size, plus warrant
+                      # referential integrity.
+                    &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
+                        # This annotation will be applied to the surrogate by prefixing it with
+                        # the name of the custom infoType followed by the number of
+                        # characters comprising the surrogate. The following scheme defines the
+                        # format: info_type_name(surrogate_character_count):surrogate
+                        #
+                        # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                        # the surrogate is &#x27;abc&#x27;, the full replacement value
+                        # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                        #
+                        # This annotation identifies the surrogate when inspecting content using the
+                        # custom infoType
+                        # [`SurrogateType`](/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
+                        # not occur naturally anywhere in your data; otherwise, inspection may
+                        # find a surrogate that does not correspond to an actual identifier.
+                        # Therefore, choose your custom infoType name carefully after considering
+                        # what your data looks like. One way to select a name that has a high chance
+                        # of yielding reliable detection is to include one or more unicode characters
+                        # that are highly improbable to exist in your data.
+                        # For example, assuming your data is entered from a regular ASCII keyboard,
+                        # the symbol with the hex code point 29DD might be used like so:
+                        # ⧝MY_TOKEN_TYPE
+                      &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. # 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.
+                        #
+                        # If the context is set but:
+                        #
+                        # 1. there is no record present when transforming a given value or
+                        # 1. the field is not present when transforming a given value,
+                        #
+                        # a default tweak will be used.
+                        #
+                        # Note that case (1) is expected when an `InfoTypeTransformation` is
+                        # applied to both structured and non-structured `ContentItem`s.
+                        # Currently, the referenced field may be of value type integer or string.
+                        #
+                        # The tweak is constructed as a sequence of bytes in big endian byte order
+                        # such that:
+                        #
+                        # - a 64 bit integer is encoded followed by a single byte of value 1
+                        # - 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;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.
+                            # This is an arbitrary string used to differentiate different keys.
+                            # A unique key is generated per name: two separate `TransientCryptoKey`
+                            # protos share the same generated key if their names are the same.
+                            # When the data crypto key is generated, this name is not used in any way
+                            # (repeating the api call will result in a different key being generated).
+                      },
+                      &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                          # The wrapped key must be a 128/192/256 bit key.
+                          # Authorization requires the following IAM permissions when sending a request
+                          # to perform a crypto transformation using a kms-wrapped crypto key:
+                          # dlp.kms.encrypt
+                        &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;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;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
+                        # characters comprising the surrogate. The following scheme defines the
+                        # format: {info type name}({surrogate character count}):{surrogate}
+                        #
+                        # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                        # the surrogate is &#x27;abc&#x27;, the full replacement value
+                        # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                        #
+                        # This annotation identifies the surrogate when inspecting content using the
+                        # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
+                        # surrogate when it occurs in free text.
+                        #
+                        # Note: For record transformations where the entire cell in a table is being
+                        # transformed, surrogates are not mandatory. Surrogates are used to denote
+                        # the location of the token and are necessary for re-identification in free
+                        # form text.
+                        #
+                        # In order for inspection to work properly, the name of this info type must
+                        # not occur naturally anywhere in your data; otherwise, inspection may either
+                        #
+                        # - reverse a surrogate that does not correspond to an actual identifier
+                        # - be unable to parse the surrogate and result in an error
+                        #
+                        # Therefore, choose your custom info type name carefully after considering
+                        # what your data looks like. One way to select a name that has a high chance
+                        # of yielding reliable detection is to include one or more unicode characters
+                        # that are highly improbable to exist in your data.
+                        # For example, assuming your data is entered from a regular ASCII keyboard,
+                        # the symbol with the hex code point 29DD might be used like so:
+                        # ⧝MY_TOKEN_TYPE.
+                      &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.
+                    },
+                    &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.
+                            # This is an arbitrary string used to differentiate different keys.
+                            # A unique key is generated per name: two separate `TransientCryptoKey`
+                            # protos share the same generated key if their names are the same.
+                            # When the data crypto key is generated, this name is not used in any way
+                            # (repeating the api call will result in a different key being generated).
+                      },
+                      &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                          # The wrapped key must be a 128/192/256 bit key.
+                          # Authorization requires the following IAM permissions when sending a request
+                          # to perform a crypto transformation using a kms-wrapped crypto key:
+                          # dlp.kms.encrypt
+                        &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
+                      # replacement values are dynamically provided by the user for custom behavior,
+                      # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
+                      # This can be used on
+                      # data of type: number, long, string, timestamp.
+                      # 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;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.
+                            # 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;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.
+                            # 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;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;transformationErrorHandling&quot;: { # How to handle transformation errors during de-identification. A # Mode for handling transformation errors. If left unspecified, the default
               # mode is `TransformationErrorHandling.ThrowError`.
               # transformation error occurs when the requested transformation is incompatible
@@ -6432,89 +7056,6 @@
               # 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;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;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;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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            &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;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;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;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.
@@ -6531,17 +7072,6 @@
                       # for a given infoType.
                     { # A transformation to apply to text that is identified as a specific
                         # info_type.
-                      &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. # 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.
@@ -6568,14 +7098,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                                # The wrapped key must be a 128/192/256 bit key.
-                                # Authorization requires the following IAM permissions when sending a request
-                                # to perform a crypto transformation using a kms-wrapped crypto key:
-                                # dlp.kms.encrypt
-                              &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                              &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                            },
                             &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.
@@ -6589,6 +7111,14 @@
                                   # When the data crypto key is generated, this name is not used in any way
                                   # (repeating the api call will result in a different key being generated).
                             },
+                            &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                                # The wrapped key must be a 128/192/256 bit key.
+                                # Authorization requires the following IAM permissions when sending a request
+                                # to perform a crypto transformation using a kms-wrapped crypto key:
+                                # dlp.kms.encrypt
+                              &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -6605,14 +7135,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                                # The wrapped key must be a 128/192/256 bit key.
-                                # Authorization requires the following IAM permissions when sending a request
-                                # to perform a crypto transformation using a kms-wrapped crypto key:
-                                # dlp.kms.encrypt
-                              &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                              &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                            },
                             &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.
@@ -6626,6 +7148,14 @@
                                   # When the data crypto key is generated, this name is not used in any way
                                   # (repeating the api call will result in a different key being generated).
                             },
+                            &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                                # The wrapped key must be a 128/192/256 bit key.
+                                # Authorization requires the following IAM permissions when sending a request
+                                # to perform a crypto transformation using a kms-wrapped crypto key:
+                                # dlp.kms.encrypt
+                              &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -6641,14 +7171,6 @@
                             # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                             # do not require preserving the input alphabet space and size, plus warrant
                             # referential integrity.
-                          &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                               # This annotation will be applied to the surrogate by prefixing it with
                               # the name of the custom infoType followed by the number of
@@ -6708,14 +7230,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                                # The wrapped key must be a 128/192/256 bit key.
-                                # Authorization requires the following IAM permissions when sending a request
-                                # to perform a crypto transformation using a kms-wrapped crypto key:
-                                # dlp.kms.encrypt
-                              &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                              &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                            },
                             &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.
@@ -6729,7 +7243,23 @@
                                   # When the data crypto key is generated, this name is not used in any way
                                   # (repeating the api call will result in a different key being generated).
                             },
+                            &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                                # The wrapped key must be a 128/192/256 bit key.
+                                # Authorization requires the following IAM permissions when sending a request
+                                # to perform a crypto transformation using a kms-wrapped crypto key:
+                                # dlp.kms.encrypt
+                              &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;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.
@@ -6797,14 +7327,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                                # The wrapped key must be a 128/192/256 bit key.
-                                # Authorization requires the following IAM permissions when sending a request
-                                # to perform a crypto transformation using a kms-wrapped crypto key:
-                                # dlp.kms.encrypt
-                              &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                              &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                            },
                             &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.
@@ -6818,12 +7340,16 @@
                                   # When the data crypto key is generated, this name is not used in any way
                                   # (repeating the api call will result in a different key being generated).
                             },
+                            &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                                # The wrapped key must be a 128/192/256 bit key.
+                                # Authorization requires the following IAM permissions when sending a request
+                                # to perform a crypto transformation using a kms-wrapped crypto key:
+                                # dlp.kms.encrypt
+                              &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                             # replacement values are dynamically provided by the user for custom behavior,
                             # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -6835,89 +7361,6 @@
                             # 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;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.
-                                  # 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;booleanValue&quot;: True or False, # boolean
-                                &quot;floatValue&quot;: 3.14, # float
-                                &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                                &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                                &quot;floatValue&quot;: 3.14, # float
-                                &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                                &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;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;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;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.
                                   # Note that for the purposes of inspection or transformation, the number
@@ -6925,9 +7368,6 @@
                                   # 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;booleanValue&quot;: True or False, # boolean
-                                &quot;floatValue&quot;: 3.14, # float
-                                &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                                 &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
@@ -6952,17 +7392,107 @@
                                 &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;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;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.
+                                  # 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;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
@@ -6970,9 +7500,6 @@
                               # 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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             &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
@@ -6997,44 +7524,18 @@
                             &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;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;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;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;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
@@ -7051,49 +7552,6 @@
                             # be transformed to match the type of the bound before comparing.
                             #
                             # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                          &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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            &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;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;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;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;.
@@ -7102,9 +7560,6 @@
                               # 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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             &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
@@ -7129,20 +7584,106 @@
                             &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;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}`.
+                        },
+                      ],
                     },
                   ],
                 },
@@ -7172,14 +7713,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                          # The wrapped key must be a 128/192/256 bit key.
-                          # Authorization requires the following IAM permissions when sending a request
-                          # to perform a crypto transformation using a kms-wrapped crypto key:
-                          # dlp.kms.encrypt
-                        &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                        &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                      },
                       &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.
@@ -7193,6 +7726,14 @@
                             # When the data crypto key is generated, this name is not used in any way
                             # (repeating the api call will result in a different key being generated).
                       },
+                      &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                          # The wrapped key must be a 128/192/256 bit key.
+                          # Authorization requires the following IAM permissions when sending a request
+                          # to perform a crypto transformation using a kms-wrapped crypto key:
+                          # dlp.kms.encrypt
+                        &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -7209,14 +7750,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                          # The wrapped key must be a 128/192/256 bit key.
-                          # Authorization requires the following IAM permissions when sending a request
-                          # to perform a crypto transformation using a kms-wrapped crypto key:
-                          # dlp.kms.encrypt
-                        &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                        &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                      },
                       &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.
@@ -7230,6 +7763,14 @@
                             # When the data crypto key is generated, this name is not used in any way
                             # (repeating the api call will result in a different key being generated).
                       },
+                      &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                          # The wrapped key must be a 128/192/256 bit key.
+                          # Authorization requires the following IAM permissions when sending a request
+                          # to perform a crypto transformation using a kms-wrapped crypto key:
+                          # dlp.kms.encrypt
+                        &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -7245,14 +7786,6 @@
                       # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                       # do not require preserving the input alphabet space and size, plus warrant
                       # referential integrity.
-                    &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                         # This annotation will be applied to the surrogate by prefixing it with
                         # the name of the custom infoType followed by the number of
@@ -7312,14 +7845,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                          # The wrapped key must be a 128/192/256 bit key.
-                          # Authorization requires the following IAM permissions when sending a request
-                          # to perform a crypto transformation using a kms-wrapped crypto key:
-                          # dlp.kms.encrypt
-                        &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                        &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                      },
                       &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.
@@ -7333,7 +7858,23 @@
                             # When the data crypto key is generated, this name is not used in any way
                             # (repeating the api call will result in a different key being generated).
                       },
+                      &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                          # The wrapped key must be a 128/192/256 bit key.
+                          # Authorization requires the following IAM permissions when sending a request
+                          # to perform a crypto transformation using a kms-wrapped crypto key:
+                          # dlp.kms.encrypt
+                        &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;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.
@@ -7401,14 +7942,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                          # The wrapped key must be a 128/192/256 bit key.
-                          # Authorization requires the following IAM permissions when sending a request
-                          # to perform a crypto transformation using a kms-wrapped crypto key:
-                          # dlp.kms.encrypt
-                        &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                        &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                      },
                       &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.
@@ -7422,12 +7955,16 @@
                             # When the data crypto key is generated, this name is not used in any way
                             # (repeating the api call will result in a different key being generated).
                       },
+                      &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                          # The wrapped key must be a 128/192/256 bit key.
+                          # Authorization requires the following IAM permissions when sending a request
+                          # to perform a crypto transformation using a kms-wrapped crypto key:
+                          # dlp.kms.encrypt
+                        &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                       # replacement values are dynamically provided by the user for custom behavior,
                       # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -7439,89 +7976,6 @@
                       # 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;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.
-                            # 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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          &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;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;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;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.
                             # Note that for the purposes of inspection or transformation, the number
@@ -7529,9 +7983,6 @@
                             # 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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           &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
@@ -7556,17 +8007,107 @@
                           &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;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;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.
+                            # 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;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
@@ -7574,9 +8115,6 @@
                         # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       &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
@@ -7601,44 +8139,18 @@
                       &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;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;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;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;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
@@ -7655,49 +8167,6 @@
                       # be transformed to match the type of the bound before comparing.
                       #
                       # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                    &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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;.
@@ -7706,9 +8175,6 @@
                         # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       &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
@@ -7733,18 +8199,93 @@
                       &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;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
@@ -7781,19 +8322,12 @@
                             #
                             # 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;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                           &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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             &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
@@ -7818,14 +8352,21 @@
                             &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;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.
                         },
                       ],
                     },
@@ -7833,627 +8374,86 @@
                 },
               },
             ],
-          },
-          &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.
-              # apply various `PrimitiveTransformation`s to each finding, where the
-              # transformation is applied to only values that were identified as a specific
-              # info_type.
-            &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
-                # for a given infoType.
-              { # A transformation to apply to text that is identified as a specific
-                  # info_type.
-                &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. # 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;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.
-                    &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
-                        # If set, must also set cryptoKey. If set, shift will be consistent for the
-                        # given context.
-                      &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                    },
-                    &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
-                        # range (inclusive ends). Negative means shift to earlier in time. Must not
-                        # 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.
-                        # 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                          # The wrapped key must be a 128/192/256 bit key.
-                          # Authorization requires the following IAM permissions when sending a request
-                          # to perform a crypto transformation using a kms-wrapped crypto key:
-                          # dlp.kms.encrypt
-                        &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                        &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                      },
-                      &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.
-                            # This is an arbitrary string used to differentiate different keys.
-                            # A unique key is generated per name: two separate `TransientCryptoKey`
-                            # protos share the same generated key if their names are the same.
-                            # When the data crypto key is generated, this name is not used in any way
-                            # (repeating the api call will result in a different key being generated).
-                      },
-                    },
-                  },
-                  &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
-                  },
-                  &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.
-                      # Outputs a base64 encoded representation of the hashed output
-                      # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
-                      # Currently, only string and integer values can be hashed.
-                      # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
-                    &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                          # The wrapped key must be a 128/192/256 bit key.
-                          # Authorization requires the following IAM permissions when sending a request
-                          # to perform a crypto transformation using a kms-wrapped crypto key:
-                          # dlp.kms.encrypt
-                        &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                        &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                      },
-                      &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.
-                            # This is an arbitrary string used to differentiate different keys.
-                            # A unique key is generated per name: two separate `TransientCryptoKey`
-                            # protos share the same generated key if their names are the same.
-                            # When the data crypto key is generated, this name is not used in any way
-                            # (repeating the api call will result in a different key being generated).
-                      },
-                    },
-                  },
-                  &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
-                      # the surrogate back into the original identifier. The identifier must be
-                      # encoded as ASCII. For a given crypto key and context, the same identifier
-                      # will be replaced with the same surrogate. Identifiers must be at least two
-                      # characters long. In the case that the identifier is the empty string, it will
-                      # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
-                      # more.
-                      #
-                      # Note: We recommend using  CryptoDeterministicConfig for all use cases which
-                      # do not require preserving the input alphabet space and size, plus warrant
-                      # referential integrity.
-                    &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
-                        # This annotation will be applied to the surrogate by prefixing it with
-                        # the name of the custom infoType followed by the number of
-                        # characters comprising the surrogate. The following scheme defines the
-                        # format: info_type_name(surrogate_character_count):surrogate
-                        #
-                        # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                        # the surrogate is &#x27;abc&#x27;, the full replacement value
-                        # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                        #
-                        # This annotation identifies the surrogate when inspecting content using the
-                        # custom infoType
-                        # [`SurrogateType`](/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
-                        # not occur naturally anywhere in your data; otherwise, inspection may
-                        # find a surrogate that does not correspond to an actual identifier.
-                        # Therefore, choose your custom infoType name carefully after considering
-                        # what your data looks like. One way to select a name that has a high chance
-                        # of yielding reliable detection is to include one or more unicode characters
-                        # that are highly improbable to exist in your data.
-                        # For example, assuming your data is entered from a regular ASCII keyboard,
-                        # the symbol with the hex code point 29DD might be used like so:
-                        # ⧝MY_TOKEN_TYPE
-                      &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. # 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.
-                        #
-                        # If the context is set but:
-                        #
-                        # 1. there is no record present when transforming a given value or
-                        # 1. the field is not present when transforming a given value,
-                        #
-                        # a default tweak will be used.
-                        #
-                        # Note that case (1) is expected when an `InfoTypeTransformation` is
-                        # applied to both structured and non-structured `ContentItem`s.
-                        # Currently, the referenced field may be of value type integer or string.
-                        #
-                        # The tweak is constructed as a sequence of bytes in big endian byte order
-                        # such that:
-                        #
-                        # - a 64 bit integer is encoded followed by a single byte of value 1
-                        # - 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;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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                          # The wrapped key must be a 128/192/256 bit key.
-                          # Authorization requires the following IAM permissions when sending a request
-                          # to perform a crypto transformation using a kms-wrapped crypto key:
-                          # dlp.kms.encrypt
-                        &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                        &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                      },
-                      &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.
-                            # This is an arbitrary string used to differentiate different keys.
-                            # A unique key is generated per name: two separate `TransientCryptoKey`
-                            # protos share the same generated key if their names are the same.
-                            # When the data crypto key is generated, this name is not used in any way
-                            # (repeating the api call will result in a different key being generated).
-                      },
-                    },
-                  },
-                  &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;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
-                        # characters comprising the surrogate. The following scheme defines the
-                        # format: {info type name}({surrogate character count}):{surrogate}
-                        #
-                        # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                        # the surrogate is &#x27;abc&#x27;, the full replacement value
-                        # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                        #
-                        # This annotation identifies the surrogate when inspecting content using the
-                        # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
-                        # surrogate when it occurs in free text.
-                        #
-                        # Note: For record transformations where the entire cell in a table is being
-                        # transformed, surrogates are not mandatory. Surrogates are used to denote
-                        # the location of the token and are necessary for re-identification in free
-                        # form text.
-                        #
-                        # In order for inspection to work properly, the name of this info type must
-                        # not occur naturally anywhere in your data; otherwise, inspection may either
-                        #
-                        # - reverse a surrogate that does not correspond to an actual identifier
-                        # - be unable to parse the surrogate and result in an error
-                        #
-                        # Therefore, choose your custom info type name carefully after considering
-                        # what your data looks like. One way to select a name that has a high chance
-                        # of yielding reliable detection is to include one or more unicode characters
-                        # that are highly improbable to exist in your data.
-                        # For example, assuming your data is entered from a regular ASCII keyboard,
-                        # the symbol with the hex code point 29DD might be used like so:
-                        # ⧝MY_TOKEN_TYPE.
-                      &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.
-                    },
-                    &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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                          # The wrapped key must be a 128/192/256 bit key.
-                          # Authorization requires the following IAM permissions when sending a request
-                          # to perform a crypto transformation using a kms-wrapped crypto key:
-                          # dlp.kms.encrypt
-                        &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                        &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                      },
-                      &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.
-                            # This is an arbitrary string used to differentiate different keys.
-                            # A unique key is generated per name: two separate `TransientCryptoKey`
-                            # protos share the same generated key if their names are the same.
-                            # When the data crypto key is generated, this name is not used in any way
-                            # (repeating the api call will result in a different key being generated).
-                      },
-                    },
-                  },
-                  &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
-                      # replacement values are dynamically provided by the user for custom behavior,
-                      # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
-                      # This can be used on
-                      # data of type: number, long, string, timestamp.
-                      # 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;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
-                      { # Bucket is represented as a range, along with replacement values.
-                        &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.
-                            # 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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          &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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          &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;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;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;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.
-                            # 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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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.
-                  },
                 },
               },
             ],
@@ -8504,6 +8504,630 @@
       &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.
+            # apply various `PrimitiveTransformation`s to each finding, where the
+            # transformation is applied to only values that were identified as a specific
+            # info_type.
+          &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
+              # 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;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.
+                  &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
+                      # If set, must also set cryptoKey. If set, shift will be consistent for the
+                      # given context.
+                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                  },
+                  &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
+                      # range (inclusive ends). Negative means shift to earlier in time. Must not
+                      # 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.
+                      # 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.
+                          # This is an arbitrary string used to differentiate different keys.
+                          # A unique key is generated per name: two separate `TransientCryptoKey`
+                          # protos share the same generated key if their names are the same.
+                          # When the data crypto key is generated, this name is not used in any way
+                          # (repeating the api call will result in a different key being generated).
+                    },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
+                },
+                &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.
+                    # Outputs a base64 encoded representation of the hashed output
+                    # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
+                    # Currently, only string and integer values can be hashed.
+                    # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
+                  &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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.
+                          # This is an arbitrary string used to differentiate different keys.
+                          # A unique key is generated per name: two separate `TransientCryptoKey`
+                          # protos share the same generated key if their names are the same.
+                          # When the data crypto key is generated, this name is not used in any way
+                          # (repeating the api call will result in a different key being generated).
+                    },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;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
+                    # the surrogate back into the original identifier. The identifier must be
+                    # encoded as ASCII. For a given crypto key and context, the same identifier
+                    # will be replaced with the same surrogate. Identifiers must be at least two
+                    # characters long. In the case that the identifier is the empty string, it will
+                    # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
+                    # more.
+                    #
+                    # Note: We recommend using  CryptoDeterministicConfig for all use cases which
+                    # do not require preserving the input alphabet space and size, plus warrant
+                    # referential integrity.
+                  &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
+                      # This annotation will be applied to the surrogate by prefixing it with
+                      # the name of the custom infoType followed by the number of
+                      # characters comprising the surrogate. The following scheme defines the
+                      # format: info_type_name(surrogate_character_count):surrogate
+                      #
+                      # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                      # the surrogate is &#x27;abc&#x27;, the full replacement value
+                      # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                      #
+                      # This annotation identifies the surrogate when inspecting content using the
+                      # custom infoType
+                      # [`SurrogateType`](/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
+                      # not occur naturally anywhere in your data; otherwise, inspection may
+                      # find a surrogate that does not correspond to an actual identifier.
+                      # Therefore, choose your custom infoType name carefully after considering
+                      # what your data looks like. One way to select a name that has a high chance
+                      # of yielding reliable detection is to include one or more unicode characters
+                      # that are highly improbable to exist in your data.
+                      # For example, assuming your data is entered from a regular ASCII keyboard,
+                      # the symbol with the hex code point 29DD might be used like so:
+                      # ⧝MY_TOKEN_TYPE
+                    &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. # 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.
+                      #
+                      # If the context is set but:
+                      #
+                      # 1. there is no record present when transforming a given value or
+                      # 1. the field is not present when transforming a given value,
+                      #
+                      # a default tweak will be used.
+                      #
+                      # Note that case (1) is expected when an `InfoTypeTransformation` is
+                      # applied to both structured and non-structured `ContentItem`s.
+                      # Currently, the referenced field may be of value type integer or string.
+                      #
+                      # The tweak is constructed as a sequence of bytes in big endian byte order
+                      # such that:
+                      #
+                      # - a 64 bit integer is encoded followed by a single byte of value 1
+                      # - 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;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.
+                          # This is an arbitrary string used to differentiate different keys.
+                          # A unique key is generated per name: two separate `TransientCryptoKey`
+                          # protos share the same generated key if their names are the same.
+                          # When the data crypto key is generated, this name is not used in any way
+                          # (repeating the api call will result in a different key being generated).
+                    },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;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;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
+                      # characters comprising the surrogate. The following scheme defines the
+                      # format: {info type name}({surrogate character count}):{surrogate}
+                      #
+                      # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                      # the surrogate is &#x27;abc&#x27;, the full replacement value
+                      # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                      #
+                      # This annotation identifies the surrogate when inspecting content using the
+                      # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
+                      # surrogate when it occurs in free text.
+                      #
+                      # Note: For record transformations where the entire cell in a table is being
+                      # transformed, surrogates are not mandatory. Surrogates are used to denote
+                      # the location of the token and are necessary for re-identification in free
+                      # form text.
+                      #
+                      # In order for inspection to work properly, the name of this info type must
+                      # not occur naturally anywhere in your data; otherwise, inspection may either
+                      #
+                      # - reverse a surrogate that does not correspond to an actual identifier
+                      # - be unable to parse the surrogate and result in an error
+                      #
+                      # Therefore, choose your custom info type name carefully after considering
+                      # what your data looks like. One way to select a name that has a high chance
+                      # of yielding reliable detection is to include one or more unicode characters
+                      # that are highly improbable to exist in your data.
+                      # For example, assuming your data is entered from a regular ASCII keyboard,
+                      # the symbol with the hex code point 29DD might be used like so:
+                      # ⧝MY_TOKEN_TYPE.
+                    &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.
+                  },
+                  &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.
+                          # This is an arbitrary string used to differentiate different keys.
+                          # A unique key is generated per name: two separate `TransientCryptoKey`
+                          # protos share the same generated key if their names are the same.
+                          # When the data crypto key is generated, this name is not used in any way
+                          # (repeating the api call will result in a different key being generated).
+                    },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
+                    # replacement values are dynamically provided by the user for custom behavior,
+                    # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
+                    # This can be used on
+                    # data of type: number, long, string, timestamp.
+                    # 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;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.
+                          # 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;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.
+                          # 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;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;transformationErrorHandling&quot;: { # How to handle transformation errors during de-identification. A # Mode for handling transformation errors. If left unspecified, the default
             # mode is `TransformationErrorHandling.ThrowError`.
             # transformation error occurs when the requested transformation is incompatible
@@ -8525,89 +9149,6 @@
             # 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;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;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;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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          &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;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;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;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.
@@ -8624,17 +9165,6 @@
                     # for a given infoType.
                   { # A transformation to apply to text that is identified as a specific
                       # info_type.
-                    &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. # 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.
@@ -8661,14 +9191,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                              # The wrapped key must be a 128/192/256 bit key.
-                              # Authorization requires the following IAM permissions when sending a request
-                              # to perform a crypto transformation using a kms-wrapped crypto key:
-                              # dlp.kms.encrypt
-                            &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                            &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                          },
                           &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.
@@ -8682,6 +9204,14 @@
                                 # When the data crypto key is generated, this name is not used in any way
                                 # (repeating the api call will result in a different key being generated).
                           },
+                          &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                              # The wrapped key must be a 128/192/256 bit key.
+                              # Authorization requires the following IAM permissions when sending a request
+                              # to perform a crypto transformation using a kms-wrapped crypto key:
+                              # dlp.kms.encrypt
+                            &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -8698,14 +9228,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                              # The wrapped key must be a 128/192/256 bit key.
-                              # Authorization requires the following IAM permissions when sending a request
-                              # to perform a crypto transformation using a kms-wrapped crypto key:
-                              # dlp.kms.encrypt
-                            &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                            &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                          },
                           &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.
@@ -8719,6 +9241,14 @@
                                 # When the data crypto key is generated, this name is not used in any way
                                 # (repeating the api call will result in a different key being generated).
                           },
+                          &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                              # The wrapped key must be a 128/192/256 bit key.
+                              # Authorization requires the following IAM permissions when sending a request
+                              # to perform a crypto transformation using a kms-wrapped crypto key:
+                              # dlp.kms.encrypt
+                            &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -8734,14 +9264,6 @@
                           # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                           # do not require preserving the input alphabet space and size, plus warrant
                           # referential integrity.
-                        &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                             # This annotation will be applied to the surrogate by prefixing it with
                             # the name of the custom infoType followed by the number of
@@ -8801,14 +9323,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                              # The wrapped key must be a 128/192/256 bit key.
-                              # Authorization requires the following IAM permissions when sending a request
-                              # to perform a crypto transformation using a kms-wrapped crypto key:
-                              # dlp.kms.encrypt
-                            &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                            &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                          },
                           &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.
@@ -8822,7 +9336,23 @@
                                 # When the data crypto key is generated, this name is not used in any way
                                 # (repeating the api call will result in a different key being generated).
                           },
+                          &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                              # The wrapped key must be a 128/192/256 bit key.
+                              # Authorization requires the following IAM permissions when sending a request
+                              # to perform a crypto transformation using a kms-wrapped crypto key:
+                              # dlp.kms.encrypt
+                            &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;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.
@@ -8890,14 +9420,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                              # The wrapped key must be a 128/192/256 bit key.
-                              # Authorization requires the following IAM permissions when sending a request
-                              # to perform a crypto transformation using a kms-wrapped crypto key:
-                              # dlp.kms.encrypt
-                            &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                            &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                          },
                           &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.
@@ -8911,12 +9433,16 @@
                                 # When the data crypto key is generated, this name is not used in any way
                                 # (repeating the api call will result in a different key being generated).
                           },
+                          &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                              # The wrapped key must be a 128/192/256 bit key.
+                              # Authorization requires the following IAM permissions when sending a request
+                              # to perform a crypto transformation using a kms-wrapped crypto key:
+                              # dlp.kms.encrypt
+                            &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                           # replacement values are dynamically provided by the user for custom behavior,
                           # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -8928,89 +9454,6 @@
                           # 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;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.
-                                # 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;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                              &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                              &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;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;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;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.
                                 # Note that for the purposes of inspection or transformation, the number
@@ -9018,9 +9461,6 @@
                                 # 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;booleanValue&quot;: True or False, # boolean
-                              &quot;floatValue&quot;: 3.14, # float
-                              &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                               &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
@@ -9045,17 +9485,107 @@
                               &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;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;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.
+                                # 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;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
@@ -9063,9 +9593,6 @@
                             # 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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           &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
@@ -9090,44 +9617,18 @@
                           &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;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;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;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;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
@@ -9144,49 +9645,6 @@
                           # be transformed to match the type of the bound before comparing.
                           #
                           # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                        &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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                          &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;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;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;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;.
@@ -9195,9 +9653,6 @@
                             # 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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           &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
@@ -9222,20 +9677,106 @@
                           &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;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}`.
+                      },
+                    ],
                   },
                 ],
               },
@@ -9265,14 +9806,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
                     &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.
@@ -9286,6 +9819,14 @@
                           # When the data crypto key is generated, this name is not used in any way
                           # (repeating the api call will result in a different key being generated).
                     },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -9302,14 +9843,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
                     &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.
@@ -9323,6 +9856,14 @@
                           # When the data crypto key is generated, this name is not used in any way
                           # (repeating the api call will result in a different key being generated).
                     },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -9338,14 +9879,6 @@
                     # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                     # do not require preserving the input alphabet space and size, plus warrant
                     # referential integrity.
-                  &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                       # This annotation will be applied to the surrogate by prefixing it with
                       # the name of the custom infoType followed by the number of
@@ -9405,14 +9938,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
                     &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.
@@ -9426,7 +9951,23 @@
                           # When the data crypto key is generated, this name is not used in any way
                           # (repeating the api call will result in a different key being generated).
                     },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;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.
@@ -9494,14 +10035,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
                     &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.
@@ -9515,12 +10048,16 @@
                           # When the data crypto key is generated, this name is not used in any way
                           # (repeating the api call will result in a different key being generated).
                     },
+                    &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                        # The wrapped key must be a 128/192/256 bit key.
+                        # Authorization requires the following IAM permissions when sending a request
+                        # to perform a crypto transformation using a kms-wrapped crypto key:
+                        # dlp.kms.encrypt
+                      &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                     # replacement values are dynamically provided by the user for custom behavior,
                     # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -9532,89 +10069,6 @@
                     # 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;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.
-                          # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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.
                           # Note that for the purposes of inspection or transformation, the number
@@ -9622,9 +10076,6 @@
                           # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -9649,17 +10100,107 @@
                         &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;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;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.
+                          # 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;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
@@ -9667,9 +10208,6 @@
                       # 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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     &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
@@ -9694,44 +10232,18 @@
                     &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;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;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;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;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
@@ -9748,49 +10260,6 @@
                     # be transformed to match the type of the bound before comparing.
                     #
                     # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                  &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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    &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;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;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;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;.
@@ -9799,9 +10268,6 @@
                       # 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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                     &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
@@ -9826,18 +10292,93 @@
                     &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;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
@@ -9874,19 +10415,12 @@
                           #
                           # 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;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                         &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;booleanValue&quot;: True or False, # boolean
-                          &quot;floatValue&quot;: 3.14, # float
-                          &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                           &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
@@ -9911,14 +10445,21 @@
                           &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;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.
                       },
                     ],
                   },
@@ -9926,627 +10467,86 @@
               },
             },
           ],
-        },
-        &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.
-            # apply various `PrimitiveTransformation`s to each finding, where the
-            # transformation is applied to only values that were identified as a specific
-            # info_type.
-          &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
-              # for a given infoType.
-            { # A transformation to apply to text that is identified as a specific
-                # info_type.
-              &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. # 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;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.
-                  &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
-                      # If set, must also set cryptoKey. If set, shift will be consistent for the
-                      # given context.
-                    &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                  },
-                  &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
-                      # range (inclusive ends). Negative means shift to earlier in time. Must not
-                      # 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.
-                      # 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
-                    &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.
-                          # This is an arbitrary string used to differentiate different keys.
-                          # A unique key is generated per name: two separate `TransientCryptoKey`
-                          # protos share the same generated key if their names are the same.
-                          # When the data crypto key is generated, this name is not used in any way
-                          # (repeating the api call will result in a different key being generated).
-                    },
-                  },
-                },
-                &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
-                },
-                &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.
-                    # Outputs a base64 encoded representation of the hashed output
-                    # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
-                    # Currently, only string and integer values can be hashed.
-                    # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
-                  &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
-                    &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.
-                          # This is an arbitrary string used to differentiate different keys.
-                          # A unique key is generated per name: two separate `TransientCryptoKey`
-                          # protos share the same generated key if their names are the same.
-                          # When the data crypto key is generated, this name is not used in any way
-                          # (repeating the api call will result in a different key being generated).
-                    },
-                  },
-                },
-                &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
-                    # the surrogate back into the original identifier. The identifier must be
-                    # encoded as ASCII. For a given crypto key and context, the same identifier
-                    # will be replaced with the same surrogate. Identifiers must be at least two
-                    # characters long. In the case that the identifier is the empty string, it will
-                    # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
-                    # more.
-                    #
-                    # Note: We recommend using  CryptoDeterministicConfig for all use cases which
-                    # do not require preserving the input alphabet space and size, plus warrant
-                    # referential integrity.
-                  &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
-                      # This annotation will be applied to the surrogate by prefixing it with
-                      # the name of the custom infoType followed by the number of
-                      # characters comprising the surrogate. The following scheme defines the
-                      # format: info_type_name(surrogate_character_count):surrogate
-                      #
-                      # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                      # the surrogate is &#x27;abc&#x27;, the full replacement value
-                      # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                      #
-                      # This annotation identifies the surrogate when inspecting content using the
-                      # custom infoType
-                      # [`SurrogateType`](/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
-                      # not occur naturally anywhere in your data; otherwise, inspection may
-                      # find a surrogate that does not correspond to an actual identifier.
-                      # Therefore, choose your custom infoType name carefully after considering
-                      # what your data looks like. One way to select a name that has a high chance
-                      # of yielding reliable detection is to include one or more unicode characters
-                      # that are highly improbable to exist in your data.
-                      # For example, assuming your data is entered from a regular ASCII keyboard,
-                      # the symbol with the hex code point 29DD might be used like so:
-                      # ⧝MY_TOKEN_TYPE
-                    &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. # 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.
-                      #
-                      # If the context is set but:
-                      #
-                      # 1. there is no record present when transforming a given value or
-                      # 1. the field is not present when transforming a given value,
-                      #
-                      # a default tweak will be used.
-                      #
-                      # Note that case (1) is expected when an `InfoTypeTransformation` is
-                      # applied to both structured and non-structured `ContentItem`s.
-                      # Currently, the referenced field may be of value type integer or string.
-                      #
-                      # The tweak is constructed as a sequence of bytes in big endian byte order
-                      # such that:
-                      #
-                      # - a 64 bit integer is encoded followed by a single byte of value 1
-                      # - 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;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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
-                    &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.
-                          # This is an arbitrary string used to differentiate different keys.
-                          # A unique key is generated per name: two separate `TransientCryptoKey`
-                          # protos share the same generated key if their names are the same.
-                          # When the data crypto key is generated, this name is not used in any way
-                          # (repeating the api call will result in a different key being generated).
-                    },
-                  },
-                },
-                &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;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
-                      # characters comprising the surrogate. The following scheme defines the
-                      # format: {info type name}({surrogate character count}):{surrogate}
-                      #
-                      # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                      # the surrogate is &#x27;abc&#x27;, the full replacement value
-                      # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                      #
-                      # This annotation identifies the surrogate when inspecting content using the
-                      # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
-                      # surrogate when it occurs in free text.
-                      #
-                      # Note: For record transformations where the entire cell in a table is being
-                      # transformed, surrogates are not mandatory. Surrogates are used to denote
-                      # the location of the token and are necessary for re-identification in free
-                      # form text.
-                      #
-                      # In order for inspection to work properly, the name of this info type must
-                      # not occur naturally anywhere in your data; otherwise, inspection may either
-                      #
-                      # - reverse a surrogate that does not correspond to an actual identifier
-                      # - be unable to parse the surrogate and result in an error
-                      #
-                      # Therefore, choose your custom info type name carefully after considering
-                      # what your data looks like. One way to select a name that has a high chance
-                      # of yielding reliable detection is to include one or more unicode characters
-                      # that are highly improbable to exist in your data.
-                      # For example, assuming your data is entered from a regular ASCII keyboard,
-                      # the symbol with the hex code point 29DD might be used like so:
-                      # ⧝MY_TOKEN_TYPE.
-                    &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.
-                  },
-                  &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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                        # The wrapped key must be a 128/192/256 bit key.
-                        # Authorization requires the following IAM permissions when sending a request
-                        # to perform a crypto transformation using a kms-wrapped crypto key:
-                        # dlp.kms.encrypt
-                      &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                      &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                    },
-                    &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.
-                          # This is an arbitrary string used to differentiate different keys.
-                          # A unique key is generated per name: two separate `TransientCryptoKey`
-                          # protos share the same generated key if their names are the same.
-                          # When the data crypto key is generated, this name is not used in any way
-                          # (repeating the api call will result in a different key being generated).
-                    },
-                  },
-                },
-                &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
-                    # replacement values are dynamically provided by the user for custom behavior,
-                    # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
-                    # This can be used on
-                    # data of type: number, long, string, timestamp.
-                    # 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;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
-                    { # Bucket is represented as a range, along with replacement values.
-                      &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.
-                          # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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.
-                          # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    &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;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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                    &quot;floatValue&quot;: 3.14, # float
-                    &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                    &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;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;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;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.
-                },
               },
             },
           ],
@@ -10576,6 +10576,630 @@
     &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.
+          # apply various `PrimitiveTransformation`s to each finding, where the
+          # transformation is applied to only values that were identified as a specific
+          # info_type.
+        &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
+            # 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;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.
+                &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
+                    # If set, must also set cryptoKey. If set, shift will be consistent for the
+                    # given context.
+                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
+                },
+                &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
+                    # range (inclusive ends). Negative means shift to earlier in time. Must not
+                    # 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.
+                    # 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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
+              },
+              &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.
+                  # Outputs a base64 encoded representation of the hashed output
+                  # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
+                  # Currently, only string and integer values can be hashed.
+                  # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
+                &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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
+                  # the surrogate back into the original identifier. The identifier must be
+                  # encoded as ASCII. For a given crypto key and context, the same identifier
+                  # will be replaced with the same surrogate. Identifiers must be at least two
+                  # characters long. In the case that the identifier is the empty string, it will
+                  # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
+                  # more.
+                  #
+                  # Note: We recommend using  CryptoDeterministicConfig for all use cases which
+                  # do not require preserving the input alphabet space and size, plus warrant
+                  # referential integrity.
+                &quot;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
+                    # This annotation will be applied to the surrogate by prefixing it with
+                    # the name of the custom infoType followed by the number of
+                    # characters comprising the surrogate. The following scheme defines the
+                    # format: info_type_name(surrogate_character_count):surrogate
+                    #
+                    # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                    # the surrogate is &#x27;abc&#x27;, the full replacement value
+                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                    #
+                    # This annotation identifies the surrogate when inspecting content using the
+                    # custom infoType
+                    # [`SurrogateType`](/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
+                    # not occur naturally anywhere in your data; otherwise, inspection may
+                    # find a surrogate that does not correspond to an actual identifier.
+                    # Therefore, choose your custom infoType name carefully after considering
+                    # what your data looks like. One way to select a name that has a high chance
+                    # of yielding reliable detection is to include one or more unicode characters
+                    # that are highly improbable to exist in your data.
+                    # For example, assuming your data is entered from a regular ASCII keyboard,
+                    # the symbol with the hex code point 29DD might be used like so:
+                    # ⧝MY_TOKEN_TYPE
+                  &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. # 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.
+                    #
+                    # If the context is set but:
+                    #
+                    # 1. there is no record present when transforming a given value or
+                    # 1. the field is not present when transforming a given value,
+                    #
+                    # a default tweak will be used.
+                    #
+                    # Note that case (1) is expected when an `InfoTypeTransformation` is
+                    # applied to both structured and non-structured `ContentItem`s.
+                    # Currently, the referenced field may be of value type integer or string.
+                    #
+                    # The tweak is constructed as a sequence of bytes in big endian byte order
+                    # such that:
+                    #
+                    # - a 64 bit integer is encoded followed by a single byte of value 1
+                    # - 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;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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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;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
+                    # characters comprising the surrogate. The following scheme defines the
+                    # format: {info type name}({surrogate character count}):{surrogate}
+                    #
+                    # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
+                    # the surrogate is &#x27;abc&#x27;, the full replacement value
+                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
+                    #
+                    # This annotation identifies the surrogate when inspecting content using the
+                    # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
+                    # surrogate when it occurs in free text.
+                    #
+                    # Note: For record transformations where the entire cell in a table is being
+                    # transformed, surrogates are not mandatory. Surrogates are used to denote
+                    # the location of the token and are necessary for re-identification in free
+                    # form text.
+                    #
+                    # In order for inspection to work properly, the name of this info type must
+                    # not occur naturally anywhere in your data; otherwise, inspection may either
+                    #
+                    # - reverse a surrogate that does not correspond to an actual identifier
+                    # - be unable to parse the surrogate and result in an error
+                    #
+                    # Therefore, choose your custom info type name carefully after considering
+                    # what your data looks like. One way to select a name that has a high chance
+                    # of yielding reliable detection is to include one or more unicode characters
+                    # that are highly improbable to exist in your data.
+                    # For example, assuming your data is entered from a regular ASCII keyboard,
+                    # the symbol with the hex code point 29DD might be used like so:
+                    # ⧝MY_TOKEN_TYPE.
+                  &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.
+                },
+                &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.
+                        # This is an arbitrary string used to differentiate different keys.
+                        # A unique key is generated per name: two separate `TransientCryptoKey`
+                        # protos share the same generated key if their names are the same.
+                        # When the data crypto key is generated, this name is not used in any way
+                        # (repeating the api call will result in a different key being generated).
+                  },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
+                  # replacement values are dynamically provided by the user for custom behavior,
+                  # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
+                  # This can be used on
+                  # data of type: number, long, string, timestamp.
+                  # 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;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.
+                        # 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;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.
+                        # 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;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;transformationErrorHandling&quot;: { # How to handle transformation errors during de-identification. A # Mode for handling transformation errors. If left unspecified, the default
           # mode is `TransformationErrorHandling.ThrowError`.
           # transformation error occurs when the requested transformation is incompatible
@@ -10597,89 +11221,6 @@
           # 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;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;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;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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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.
@@ -10696,17 +11237,6 @@
                   # for a given infoType.
                 { # A transformation to apply to text that is identified as a specific
                     # info_type.
-                  &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. # 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.
@@ -10733,14 +11263,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -10754,6 +11276,14 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -10770,14 +11300,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -10791,6 +11313,14 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -10806,14 +11336,6 @@
                         # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                         # do not require preserving the input alphabet space and size, plus warrant
                         # referential integrity.
-                      &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                           # This annotation will be applied to the surrogate by prefixing it with
                           # the name of the custom infoType followed by the number of
@@ -10873,14 +11395,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -10894,7 +11408,23 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;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.
@@ -10962,14 +11492,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                            # The wrapped key must be a 128/192/256 bit key.
-                            # Authorization requires the following IAM permissions when sending a request
-                            # to perform a crypto transformation using a kms-wrapped crypto key:
-                            # dlp.kms.encrypt
-                          &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                          &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                        },
                         &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.
@@ -10983,12 +11505,16 @@
                               # When the data crypto key is generated, this name is not used in any way
                               # (repeating the api call will result in a different key being generated).
                         },
+                        &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                            # The wrapped key must be a 128/192/256 bit key.
+                            # Authorization requires the following IAM permissions when sending a request
+                            # to perform a crypto transformation using a kms-wrapped crypto key:
+                            # dlp.kms.encrypt
+                          &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                         # replacement values are dynamically provided by the user for custom behavior,
                         # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -11000,89 +11526,6 @@
                         # 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;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.
-                              # 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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                            &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;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;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;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.
                               # Note that for the purposes of inspection or transformation, the number
@@ -11090,9 +11533,6 @@
                               # 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;booleanValue&quot;: True or False, # boolean
-                            &quot;floatValue&quot;: 3.14, # float
-                            &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                             &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
@@ -11117,17 +11557,107 @@
                             &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;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;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.
+                              # 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;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
@@ -11135,9 +11665,6 @@
                           # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -11162,44 +11689,18 @@
                         &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;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;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;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;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
@@ -11216,49 +11717,6 @@
                         # be transformed to match the type of the bound before comparing.
                         #
                         # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                      &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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                        &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;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;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;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;.
@@ -11267,9 +11725,6 @@
                           # 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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -11294,20 +11749,106 @@
                         &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;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}`.
+                    },
+                  ],
                 },
               ],
             },
@@ -11337,14 +11878,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -11358,6 +11891,14 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
@@ -11374,14 +11915,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -11395,6 +11928,14 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;cryptoReplaceFfxFpeConfig&quot;: { # Replaces an identifier with a surrogate using Format Preserving Encryption # Ffx-Fpe
@@ -11410,14 +11951,6 @@
                   # Note: We recommend using  CryptoDeterministicConfig for all use cases which
                   # do not require preserving the input alphabet space and size, plus warrant
                   # referential integrity.
-                &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
                     # This annotation will be applied to the surrogate by prefixing it with
                     # the name of the custom infoType followed by the number of
@@ -11477,14 +12010,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -11498,7 +12023,23 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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.
@@ -11566,14 +12107,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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
                   &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.
@@ -11587,12 +12120,16 @@
                         # When the data crypto key is generated, this name is not used in any way
                         # (repeating the api call will result in a different key being generated).
                   },
+                  &quot;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
+                      # The wrapped key must be a 128/192/256 bit key.
+                      # Authorization requires the following IAM permissions when sending a request
+                      # to perform a crypto transformation using a kms-wrapped crypto key:
+                      # dlp.kms.encrypt
+                    &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;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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
                   # replacement values are dynamically provided by the user for custom behavior,
                   # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
@@ -11604,89 +12141,6 @@
                   # 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;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.
-                        # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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.
                         # Note that for the purposes of inspection or transformation, the number
@@ -11694,9 +12148,6 @@
                         # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                       &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
@@ -11721,17 +12172,107 @@
                       &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;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;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.
+                        # 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;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
@@ -11739,9 +12280,6 @@
                     # 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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                   &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
@@ -11766,44 +12304,18 @@
                   &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;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;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;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;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
@@ -11820,49 +12332,6 @@
                   # be transformed to match the type of the bound before comparing.
                   #
                   # See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.
-                &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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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;.
@@ -11871,9 +12340,6 @@
                     # 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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                   &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
@@ -11898,18 +12364,93 @@
                   &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;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
@@ -11946,19 +12487,12 @@
                         #
                         # 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;operator&quot;: &quot;A String&quot;, # Required. Operator used to compare the field or infoType to the value.
                       &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;booleanValue&quot;: True or False, # boolean
-                        &quot;floatValue&quot;: 3.14, # float
-                        &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
                         &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
@@ -11983,14 +12517,21 @@
                         &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;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.
                     },
                   ],
                 },
@@ -11998,627 +12539,86 @@
             },
           },
         ],
-      },
-      &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.
-          # apply various `PrimitiveTransformation`s to each finding, where the
-          # transformation is applied to only values that were identified as a specific
-          # info_type.
-        &quot;transformations&quot;: [ # Required. Transformation for each infoType. Cannot specify more than one
-            # for a given infoType.
-          { # A transformation to apply to text that is identified as a specific
-              # info_type.
-            &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. # 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;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.
-                &quot;context&quot;: { # General identifier of a data field in a storage service. # Points to the field that contains the context, for example, an entity id.
-                    # If set, must also set cryptoKey. If set, shift will be consistent for the
-                    # given context.
-                  &quot;name&quot;: &quot;A String&quot;, # Name describing the field.
-                },
-                &quot;upperBoundDays&quot;: 42, # Required. Range of shift in days. Actual shift will be selected at random within this
-                    # range (inclusive ends). Negative means shift to earlier in time. Must not
-                    # 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.
-                    # 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &quot;replaceWithInfoTypeConfig&quot;: { # Replace each matching finding with the name of the info_type. # Replace with infotype
-              },
-              &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.
-                  # Outputs a base64 encoded representation of the hashed output
-                  # (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
-                  # Currently, only string and integer values can be hashed.
-                  # See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
-                &quot;cryptoKey&quot;: { # This is a data encryption key (DEK) (as opposed to # The key used by the hash 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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &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
-                  # the surrogate back into the original identifier. The identifier must be
-                  # encoded as ASCII. For a given crypto key and context, the same identifier
-                  # will be replaced with the same surrogate. Identifiers must be at least two
-                  # characters long. In the case that the identifier is the empty string, it will
-                  # be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn
-                  # more.
-                  #
-                  # Note: We recommend using  CryptoDeterministicConfig for all use cases which
-                  # do not require preserving the input alphabet space and size, plus warrant
-                  # referential integrity.
-                &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;surrogateInfoType&quot;: { # Type of information detected by the API. # The custom infoType to annotate the surrogate with.
-                    # This annotation will be applied to the surrogate by prefixing it with
-                    # the name of the custom infoType followed by the number of
-                    # characters comprising the surrogate. The following scheme defines the
-                    # format: info_type_name(surrogate_character_count):surrogate
-                    #
-                    # For example, if the name of custom infoType is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                    # the surrogate is &#x27;abc&#x27;, the full replacement value
-                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                    #
-                    # This annotation identifies the surrogate when inspecting content using the
-                    # custom infoType
-                    # [`SurrogateType`](/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
-                    # not occur naturally anywhere in your data; otherwise, inspection may
-                    # find a surrogate that does not correspond to an actual identifier.
-                    # Therefore, choose your custom infoType name carefully after considering
-                    # what your data looks like. One way to select a name that has a high chance
-                    # of yielding reliable detection is to include one or more unicode characters
-                    # that are highly improbable to exist in your data.
-                    # For example, assuming your data is entered from a regular ASCII keyboard,
-                    # the symbol with the hex code point 29DD might be used like so:
-                    # ⧝MY_TOKEN_TYPE
-                  &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. # 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.
-                    #
-                    # If the context is set but:
-                    #
-                    # 1. there is no record present when transforming a given value or
-                    # 1. the field is not present when transforming a given value,
-                    #
-                    # a default tweak will be used.
-                    #
-                    # Note that case (1) is expected when an `InfoTypeTransformation` is
-                    # applied to both structured and non-structured `ContentItem`s.
-                    # Currently, the referenced field may be of value type integer or string.
-                    #
-                    # The tweak is constructed as a sequence of bytes in big endian byte order
-                    # such that:
-                    #
-                    # - a 64 bit integer is encoded followed by a single byte of value 1
-                    # - 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;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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &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;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
-                    # characters comprising the surrogate. The following scheme defines the
-                    # format: {info type name}({surrogate character count}):{surrogate}
-                    #
-                    # For example, if the name of custom info type is &#x27;MY_TOKEN_INFO_TYPE&#x27; and
-                    # the surrogate is &#x27;abc&#x27;, the full replacement value
-                    # will be: &#x27;MY_TOKEN_INFO_TYPE(3):abc&#x27;
-                    #
-                    # This annotation identifies the surrogate when inspecting content using the
-                    # custom info type &#x27;Surrogate&#x27;. This facilitates reversal of the
-                    # surrogate when it occurs in free text.
-                    #
-                    # Note: For record transformations where the entire cell in a table is being
-                    # transformed, surrogates are not mandatory. Surrogates are used to denote
-                    # the location of the token and are necessary for re-identification in free
-                    # form text.
-                    #
-                    # In order for inspection to work properly, the name of this info type must
-                    # not occur naturally anywhere in your data; otherwise, inspection may either
-                    #
-                    # - reverse a surrogate that does not correspond to an actual identifier
-                    # - be unable to parse the surrogate and result in an error
-                    #
-                    # Therefore, choose your custom info type name carefully after considering
-                    # what your data looks like. One way to select a name that has a high chance
-                    # of yielding reliable detection is to include one or more unicode characters
-                    # that are highly improbable to exist in your data.
-                    # For example, assuming your data is entered from a regular ASCII keyboard,
-                    # the symbol with the hex code point 29DD might be used like so:
-                    # ⧝MY_TOKEN_TYPE.
-                  &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.
-                },
-                &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;kmsWrapped&quot;: { # Include to use an existing data crypto key wrapped by KMS. # Kms wrapped key
-                      # The wrapped key must be a 128/192/256 bit key.
-                      # Authorization requires the following IAM permissions when sending a request
-                      # to perform a crypto transformation using a kms-wrapped crypto key:
-                      # dlp.kms.encrypt
-                    &quot;wrappedKey&quot;: &quot;A String&quot;, # Required. The wrapped data crypto key.
-                    &quot;cryptoKeyName&quot;: &quot;A String&quot;, # Required. The resource name of the KMS CryptoKey to use for unwrapping.
-                  },
-                  &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.
-                        # This is an arbitrary string used to differentiate different keys.
-                        # A unique key is generated per name: two separate `TransientCryptoKey`
-                        # protos share the same generated key if their names are the same.
-                        # When the data crypto key is generated, this name is not used in any way
-                        # (repeating the api call will result in a different key being generated).
-                  },
-                },
-              },
-              &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;bucketingConfig&quot;: { # Generalization function that buckets values based on ranges. The ranges and # Bucketing
-                  # replacement values are dynamically provided by the user for custom behavior,
-                  # such as 1-30 -&gt; LOW 31-65 -&gt; MEDIUM 66-100 -&gt; HIGH
-                  # This can be used on
-                  # data of type: number, long, string, timestamp.
-                  # 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;buckets&quot;: [ # Set of buckets. Ranges must be non-overlapping.
-                  { # Bucket is represented as a range, along with replacement values.
-                    &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.
-                        # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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.
-                        # 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;booleanValue&quot;: True or False, # boolean
-                      &quot;floatValue&quot;: 3.14, # float
-                      &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                      &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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;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;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;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;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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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;booleanValue&quot;: True or False, # boolean
-                  &quot;floatValue&quot;: 3.14, # float
-                  &quot;dayOfWeekValue&quot;: &quot;A String&quot;, # day of week
-                  &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;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;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;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.
-              },
             },
           },
         ],