google-cloud-dlp-v2 1.7.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/dlp/v2/dlp_service/client.rb +4 -1
- data/lib/google/cloud/dlp/v2/dlp_service/rest/client.rb +4 -1
- data/lib/google/cloud/dlp/v2/dlp_service/rest/service_stub.rb +14 -0
- data/lib/google/cloud/dlp/v2/version.rb +1 -1
- data/lib/google/privacy/dlp/v2/dlp_pb.rb +18 -1
- data/lib/google/privacy/dlp/v2/dlp_services_pb.rb +4 -1
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/privacy/dlp/v2/dlp.rb +388 -32
- data/proto_docs/google/privacy/dlp/v2/storage.rb +1 -1
- metadata +3 -3
@@ -58,6 +58,9 @@ module Google
|
|
58
58
|
# When no InfoTypes or CustomInfoTypes are specified in this request, the
|
59
59
|
# system will automatically choose what detectors to run. By default this may
|
60
60
|
# be all types, but may change over time as detectors are updated.
|
61
|
+
#
|
62
|
+
# Only the first frame of each multiframe image is redacted. Metadata and
|
63
|
+
# other frames are omitted in the response.
|
61
64
|
rpc :RedactImage, ::Google::Cloud::Dlp::V2::RedactImageRequest, ::Google::Cloud::Dlp::V2::RedactImageResponse
|
62
65
|
# De-identifies potentially sensitive info from a ContentItem.
|
63
66
|
# This method has limits on input size and output size.
|
@@ -74,7 +77,7 @@ module Google
|
|
74
77
|
# https://cloud.google.com/sensitive-data-protection/docs/pseudonymization#re-identification_in_free_text_code_example
|
75
78
|
# to learn more.
|
76
79
|
rpc :ReidentifyContent, ::Google::Cloud::Dlp::V2::ReidentifyContentRequest, ::Google::Cloud::Dlp::V2::ReidentifyContentResponse
|
77
|
-
# Returns a list of the sensitive information types that DLP API
|
80
|
+
# Returns a list of the sensitive information types that the DLP API
|
78
81
|
# supports. See
|
79
82
|
# https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference
|
80
83
|
# to learn more.
|
@@ -221,6 +221,12 @@ module Google
|
|
221
221
|
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
222
|
# enabled by default 1 month after launching the feature in preview
|
223
223
|
# packages.
|
224
|
+
# @!attribute [rw] unversioned_package_disabled
|
225
|
+
# @return [::Boolean]
|
226
|
+
# Disables generation of an unversioned Python package for this client
|
227
|
+
# library. This means that the module names will need to be versioned in
|
228
|
+
# import statements. For example `import google.cloud.library_v2` instead
|
229
|
+
# of `import google.cloud.library`.
|
224
230
|
class ExperimentalFeatures
|
225
231
|
include ::Google::Protobuf::MessageExts
|
226
232
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -409,6 +415,14 @@ module Google
|
|
409
415
|
# @return [::Array<::String>]
|
410
416
|
# An allowlist of the fully qualified names of RPCs that should be included
|
411
417
|
# on public client surfaces.
|
418
|
+
# @!attribute [rw] generate_omitted_as_internal
|
419
|
+
# @return [::Boolean]
|
420
|
+
# Setting this to true indicates to the client generators that methods
|
421
|
+
# that would be excluded from the generation should instead be generated
|
422
|
+
# in a way that indicates these methods should not be consumed by
|
423
|
+
# end users. How this is expressed is up to individual language
|
424
|
+
# implementations to decide. Some examples may be: added annotations,
|
425
|
+
# obfuscated identifiers, or other language idiomatic patterns.
|
412
426
|
class SelectiveGapicGeneration
|
413
427
|
include ::Google::Protobuf::MessageExts
|
414
428
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|