google-apis-dlp_v2 0.92.0 → 0.93.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/CHANGELOG.md +4 -0
- data/lib/google/apis/dlp_v2/classes.rb +47 -13
- data/lib/google/apis/dlp_v2/gem_version.rb +2 -2
- data/lib/google/apis/dlp_v2/representations.rb +18 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47bbc3ef12902185c8d6de81014baec471c93a2820b7167b357fcc571ea9c5ba
|
4
|
+
data.tar.gz: cca180ced4dac9d041f8d4e3719abf42d2976cd4c5bb199dfe7a820eb5166e2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f045c18303bf59cf5da8b3415882f2ec7bd7e669f080f468c60890264e8176f0b58952f4c79fa4967d95be1e5108faae906e66756975d7cdf2290cddd63cd9e2
|
7
|
+
data.tar.gz: a68393e7d10f6f94d08883aeb939f09c6ab5b2c4b5aaeed0b8d89cfc7979585bec8452716e43bedf4ae3461757cc4ba682c21a8f7c757b97390c4d92b7cba3a7
|
data/CHANGELOG.md
CHANGED
@@ -4500,6 +4500,33 @@ module Google
|
|
4500
4500
|
end
|
4501
4501
|
end
|
4502
4502
|
|
4503
|
+
# Configure document processing to fall back to any of the following processing
|
4504
|
+
# options if document processing is unavailable in the original request location.
|
4505
|
+
class GooglePrivacyDlpV2DocumentFallbackLocation
|
4506
|
+
include Google::Apis::Core::Hashable
|
4507
|
+
|
4508
|
+
# Processing occurs in the global region.
|
4509
|
+
# Corresponds to the JSON property `globalProcessing`
|
4510
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2GlobalProcessing]
|
4511
|
+
attr_accessor :global_processing
|
4512
|
+
|
4513
|
+
# Processing occurs in a multi-region that contains the current region if
|
4514
|
+
# available.
|
4515
|
+
# Corresponds to the JSON property `multiRegionProcessing`
|
4516
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2MultiRegionProcessing]
|
4517
|
+
attr_accessor :multi_region_processing
|
4518
|
+
|
4519
|
+
def initialize(**args)
|
4520
|
+
update!(**args)
|
4521
|
+
end
|
4522
|
+
|
4523
|
+
# Update properties of this object
|
4524
|
+
def update!(**args)
|
4525
|
+
@global_processing = args[:global_processing] if args.key?(:global_processing)
|
4526
|
+
@multi_region_processing = args[:multi_region_processing] if args.key?(:multi_region_processing)
|
4527
|
+
end
|
4528
|
+
end
|
4529
|
+
|
4503
4530
|
# Location of a finding within a document.
|
4504
4531
|
class GooglePrivacyDlpV2DocumentLocation
|
4505
4532
|
include Google::Apis::Core::Hashable
|
@@ -5487,7 +5514,7 @@ module Google
|
|
5487
5514
|
end
|
5488
5515
|
end
|
5489
5516
|
|
5490
|
-
# Processing
|
5517
|
+
# Processing occurs in the global region.
|
5491
5518
|
class GooglePrivacyDlpV2GlobalProcessing
|
5492
5519
|
include Google::Apis::Core::Hashable
|
5493
5520
|
|
@@ -5750,17 +5777,17 @@ module Google
|
|
5750
5777
|
end
|
5751
5778
|
end
|
5752
5779
|
|
5753
|
-
# Configure image processing to fall back to the
|
5754
|
-
#
|
5780
|
+
# Configure image processing to fall back to any of the following processing
|
5781
|
+
# options if image processing is unavailable in the original request location.
|
5755
5782
|
class GooglePrivacyDlpV2ImageFallbackLocation
|
5756
5783
|
include Google::Apis::Core::Hashable
|
5757
5784
|
|
5758
|
-
# Processing
|
5785
|
+
# Processing occurs in the global region.
|
5759
5786
|
# Corresponds to the JSON property `globalProcessing`
|
5760
5787
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2GlobalProcessing]
|
5761
5788
|
attr_accessor :global_processing
|
5762
5789
|
|
5763
|
-
# Processing
|
5790
|
+
# Processing occurs in a multi-region that contains the current region if
|
5764
5791
|
# available.
|
5765
5792
|
# Corresponds to the JSON property `multiRegionProcessing`
|
5766
5793
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2MultiRegionProcessing]
|
@@ -6344,7 +6371,7 @@ module Google
|
|
6344
6371
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedOptions]
|
6345
6372
|
attr_accessor :requested_options
|
6346
6373
|
|
6347
|
-
# All
|
6374
|
+
# All Result fields are updated while the job is processing.
|
6348
6375
|
# Corresponds to the JSON property `result`
|
6349
6376
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Result]
|
6350
6377
|
attr_accessor :result
|
@@ -7595,7 +7622,7 @@ module Google
|
|
7595
7622
|
end
|
7596
7623
|
end
|
7597
7624
|
|
7598
|
-
# Processing
|
7625
|
+
# Processing occurs in a multi-region that contains the current region if
|
7599
7626
|
# available.
|
7600
7627
|
class GooglePrivacyDlpV2MultiRegionProcessing
|
7601
7628
|
include Google::Apis::Core::Hashable
|
@@ -8200,8 +8227,14 @@ module Google
|
|
8200
8227
|
class GooglePrivacyDlpV2ProcessingLocation
|
8201
8228
|
include Google::Apis::Core::Hashable
|
8202
8229
|
|
8203
|
-
# Configure
|
8204
|
-
#
|
8230
|
+
# Configure document processing to fall back to any of the following processing
|
8231
|
+
# options if document processing is unavailable in the original request location.
|
8232
|
+
# Corresponds to the JSON property `documentFallbackLocation`
|
8233
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DocumentFallbackLocation]
|
8234
|
+
attr_accessor :document_fallback_location
|
8235
|
+
|
8236
|
+
# Configure image processing to fall back to any of the following processing
|
8237
|
+
# options if image processing is unavailable in the original request location.
|
8205
8238
|
# Corresponds to the JSON property `imageFallbackLocation`
|
8206
8239
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ImageFallbackLocation]
|
8207
8240
|
attr_accessor :image_fallback_location
|
@@ -8212,6 +8245,7 @@ module Google
|
|
8212
8245
|
|
8213
8246
|
# Update properties of this object
|
8214
8247
|
def update!(**args)
|
8248
|
+
@document_fallback_location = args[:document_fallback_location] if args.key?(:document_fallback_location)
|
8215
8249
|
@image_fallback_location = args[:image_fallback_location] if args.key?(:image_fallback_location)
|
8216
8250
|
end
|
8217
8251
|
end
|
@@ -8576,7 +8610,7 @@ module Google
|
|
8576
8610
|
|
8577
8611
|
# A column can be tagged with a custom tag. In this case, the user must indicate
|
8578
8612
|
# an auxiliary table that contains statistical information on the possible
|
8579
|
-
# values of this column
|
8613
|
+
# values of this column.
|
8580
8614
|
# Corresponds to the JSON property `customTag`
|
8581
8615
|
# @return [String]
|
8582
8616
|
attr_accessor :custom_tag
|
@@ -8645,7 +8679,7 @@ module Google
|
|
8645
8679
|
|
8646
8680
|
# A column can be tagged with a custom tag. In this case, the user must indicate
|
8647
8681
|
# an auxiliary table that contains statistical information on the possible
|
8648
|
-
# values of this column
|
8682
|
+
# values of this column.
|
8649
8683
|
# Corresponds to the JSON property `customTag`
|
8650
8684
|
# @return [String]
|
8651
8685
|
attr_accessor :custom_tag
|
@@ -9236,7 +9270,7 @@ module Google
|
|
9236
9270
|
end
|
9237
9271
|
end
|
9238
9272
|
|
9239
|
-
# All
|
9273
|
+
# All Result fields are updated while the job is processing.
|
9240
9274
|
class GooglePrivacyDlpV2Result
|
9241
9275
|
include Google::Apis::Core::Hashable
|
9242
9276
|
|
@@ -10348,7 +10382,7 @@ module Google
|
|
10348
10382
|
|
10349
10383
|
# A column can be tagged with a custom tag. In this case, the user must indicate
|
10350
10384
|
# an auxiliary table that contains statistical information on the possible
|
10351
|
-
# values of this column
|
10385
|
+
# values of this column.
|
10352
10386
|
# Corresponds to the JSON property `customTag`
|
10353
10387
|
# @return [String]
|
10354
10388
|
attr_accessor :custom_tag
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DlpV2
|
18
18
|
# Version of the google-apis-dlp_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.93.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250720"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -754,6 +754,12 @@ module Google
|
|
754
754
|
include Google::Apis::Core::JsonObjectSupport
|
755
755
|
end
|
756
756
|
|
757
|
+
class GooglePrivacyDlpV2DocumentFallbackLocation
|
758
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
|
+
|
760
|
+
include Google::Apis::Core::JsonObjectSupport
|
761
|
+
end
|
762
|
+
|
757
763
|
class GooglePrivacyDlpV2DocumentLocation
|
758
764
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
765
|
|
@@ -3341,6 +3347,16 @@ module Google
|
|
3341
3347
|
end
|
3342
3348
|
end
|
3343
3349
|
|
3350
|
+
class GooglePrivacyDlpV2DocumentFallbackLocation
|
3351
|
+
# @private
|
3352
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3353
|
+
property :global_processing, as: 'globalProcessing', class: Google::Apis::DlpV2::GooglePrivacyDlpV2GlobalProcessing, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2GlobalProcessing::Representation
|
3354
|
+
|
3355
|
+
property :multi_region_processing, as: 'multiRegionProcessing', class: Google::Apis::DlpV2::GooglePrivacyDlpV2MultiRegionProcessing, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2MultiRegionProcessing::Representation
|
3356
|
+
|
3357
|
+
end
|
3358
|
+
end
|
3359
|
+
|
3344
3360
|
class GooglePrivacyDlpV2DocumentLocation
|
3345
3361
|
# @private
|
3346
3362
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4473,6 +4489,8 @@ module Google
|
|
4473
4489
|
class GooglePrivacyDlpV2ProcessingLocation
|
4474
4490
|
# @private
|
4475
4491
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4492
|
+
property :document_fallback_location, as: 'documentFallbackLocation', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DocumentFallbackLocation, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DocumentFallbackLocation::Representation
|
4493
|
+
|
4476
4494
|
property :image_fallback_location, as: 'imageFallbackLocation', class: Google::Apis::DlpV2::GooglePrivacyDlpV2ImageFallbackLocation, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2ImageFallbackLocation::Representation
|
4477
4495
|
|
4478
4496
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dlp_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.93.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dlp_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.93.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dlp_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|