google-apis-dlp_v2 0.95.0 → 0.96.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 +32 -0
- data/lib/google/apis/dlp_v2/gem_version.rb +2 -2
- data/lib/google/apis/dlp_v2/representations.rb +16 -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: 5cf8f1fce48ef7dab5197a8e514fdbdab66320dcb9be51ab8dea1143e9fc9a95
|
4
|
+
data.tar.gz: 34fabf2c0c7b81b1b14edbfbacb2066b9efce560d99a44bf49e1fd8823579444
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3cc46429c3bb373f2cec823e2db9e7fb928832c02fc9ce8f92ac43239f4e93bc4b0aab9bbe18fafab603c10a44d44afcb36c25db2999d39329752f708ca3004
|
7
|
+
data.tar.gz: aa5a5b182a14605c6764ce5fd0928929915c0fe5c86dc4c8ff3b77cd4636b6d890adbb7c95847ce423331d174cb9333cddc35e3102440a0e7255e9a35af8f4af
|
data/CHANGELOG.md
CHANGED
@@ -6007,6 +6007,11 @@ module Google
|
|
6007
6007
|
# @return [String]
|
6008
6008
|
attr_accessor :example
|
6009
6009
|
|
6010
|
+
# Locations at which a feature can be used.
|
6011
|
+
# Corresponds to the JSON property `locationSupport`
|
6012
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LocationSupport]
|
6013
|
+
attr_accessor :location_support
|
6014
|
+
|
6010
6015
|
# Internal name of the infoType.
|
6011
6016
|
# Corresponds to the JSON property `name`
|
6012
6017
|
# @return [String]
|
@@ -6047,6 +6052,7 @@ module Google
|
|
6047
6052
|
@description = args[:description] if args.key?(:description)
|
6048
6053
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6049
6054
|
@example = args[:example] if args.key?(:example)
|
6055
|
+
@location_support = args[:location_support] if args.key?(:location_support)
|
6050
6056
|
@name = args[:name] if args.key?(:name)
|
6051
6057
|
@sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
|
6052
6058
|
@specific_info_types = args[:specific_info_types] if args.key?(:specific_info_types)
|
@@ -7585,6 +7591,32 @@ module Google
|
|
7585
7591
|
end
|
7586
7592
|
end
|
7587
7593
|
|
7594
|
+
# Locations at which a feature can be used.
|
7595
|
+
class GooglePrivacyDlpV2LocationSupport
|
7596
|
+
include Google::Apis::Core::Hashable
|
7597
|
+
|
7598
|
+
# Specific locations where the feature may be used. Examples: us-central1, us,
|
7599
|
+
# asia, global If scope is ANY_LOCATION, no regions will be listed.
|
7600
|
+
# Corresponds to the JSON property `locations`
|
7601
|
+
# @return [Array<String>]
|
7602
|
+
attr_accessor :locations
|
7603
|
+
|
7604
|
+
# The current scope for location on this feature. This may expand over time.
|
7605
|
+
# Corresponds to the JSON property `regionalizationScope`
|
7606
|
+
# @return [String]
|
7607
|
+
attr_accessor :regionalization_scope
|
7608
|
+
|
7609
|
+
def initialize(**args)
|
7610
|
+
update!(**args)
|
7611
|
+
end
|
7612
|
+
|
7613
|
+
# Update properties of this object
|
7614
|
+
def update!(**args)
|
7615
|
+
@locations = args[:locations] if args.key?(:locations)
|
7616
|
+
@regionalization_scope = args[:regionalization_scope] if args.key?(:regionalization_scope)
|
7617
|
+
end
|
7618
|
+
end
|
7619
|
+
|
7588
7620
|
# Job trigger option for hybrid jobs. Jobs must be manually created and finished.
|
7589
7621
|
class GooglePrivacyDlpV2Manual
|
7590
7622
|
include Google::Apis::Core::Hashable
|
@@ -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.96.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 = "20250817"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1300,6 +1300,12 @@ module Google
|
|
1300
1300
|
include Google::Apis::Core::JsonObjectSupport
|
1301
1301
|
end
|
1302
1302
|
|
1303
|
+
class GooglePrivacyDlpV2LocationSupport
|
1304
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1305
|
+
|
1306
|
+
include Google::Apis::Core::JsonObjectSupport
|
1307
|
+
end
|
1308
|
+
|
1303
1309
|
class GooglePrivacyDlpV2Manual
|
1304
1310
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1305
1311
|
|
@@ -3806,6 +3812,8 @@ module Google
|
|
3806
3812
|
property :description, as: 'description'
|
3807
3813
|
property :display_name, as: 'displayName'
|
3808
3814
|
property :example, as: 'example'
|
3815
|
+
property :location_support, as: 'locationSupport', class: Google::Apis::DlpV2::GooglePrivacyDlpV2LocationSupport, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2LocationSupport::Representation
|
3816
|
+
|
3809
3817
|
property :name, as: 'name'
|
3810
3818
|
property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore::Representation
|
3811
3819
|
|
@@ -4300,6 +4308,14 @@ module Google
|
|
4300
4308
|
end
|
4301
4309
|
end
|
4302
4310
|
|
4311
|
+
class GooglePrivacyDlpV2LocationSupport
|
4312
|
+
# @private
|
4313
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4314
|
+
collection :locations, as: 'locations'
|
4315
|
+
property :regionalization_scope, as: 'regionalizationScope'
|
4316
|
+
end
|
4317
|
+
end
|
4318
|
+
|
4303
4319
|
class GooglePrivacyDlpV2Manual
|
4304
4320
|
# @private
|
4305
4321
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.96.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.96.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:
|