google-apis-dlp_v2 0.42.0 → 0.43.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 +14 -0
- data/lib/google/apis/dlp_v2/gem_version.rb +2 -2
- data/lib/google/apis/dlp_v2/representations.rb +4 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ac96733ab15c5ea9530d121ffd669307f84969bb01e8dc60bb394785870fce5
|
|
4
|
+
data.tar.gz: deb041a517c0fcb70f413cc080e3ea3fa555840035fa8341d924d70022db9246
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c54e1ea48dcdbf59d8353872db75290ea9615a5dc56a811e8e84e766265eb74b58829148fe23171c85d24f58be46a73c7f864445aed71110270c8b2e9301198a
|
|
7
|
+
data.tar.gz: 4e133fc55d2ea3ce742e46ca0e4d5ee8bc8e549f355da10818fcbb2c05a224c5ff1cdc63d686d104db7c7ae95f0aa6aa6819159aa133f56d5bdd9900bad5b433
|
data/CHANGELOG.md
CHANGED
|
@@ -1590,6 +1590,12 @@ module Google
|
|
|
1590
1590
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Regex]
|
|
1591
1591
|
attr_accessor :regex
|
|
1592
1592
|
|
|
1593
|
+
# Score is a summary of all elements in the data profile. A higher number means
|
|
1594
|
+
# more sensitive.
|
|
1595
|
+
# Corresponds to the JSON property `sensitivityScore`
|
|
1596
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore]
|
|
1597
|
+
attr_accessor :sensitivity_score
|
|
1598
|
+
|
|
1593
1599
|
# A reference to a StoredInfoType to use with scanning.
|
|
1594
1600
|
# Corresponds to the JSON property `storedType`
|
|
1595
1601
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredType]
|
|
@@ -1618,6 +1624,7 @@ module Google
|
|
|
1618
1624
|
@info_type = args[:info_type] if args.key?(:info_type)
|
|
1619
1625
|
@likelihood = args[:likelihood] if args.key?(:likelihood)
|
|
1620
1626
|
@regex = args[:regex] if args.key?(:regex)
|
|
1627
|
+
@sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
|
|
1621
1628
|
@stored_type = args[:stored_type] if args.key?(:stored_type)
|
|
1622
1629
|
@surrogate_type = args[:surrogate_type] if args.key?(:surrogate_type)
|
|
1623
1630
|
end
|
|
@@ -3470,6 +3477,12 @@ module Google
|
|
|
3470
3477
|
# @return [String]
|
|
3471
3478
|
attr_accessor :name
|
|
3472
3479
|
|
|
3480
|
+
# Score is a summary of all elements in the data profile. A higher number means
|
|
3481
|
+
# more sensitive.
|
|
3482
|
+
# Corresponds to the JSON property `sensitivityScore`
|
|
3483
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore]
|
|
3484
|
+
attr_accessor :sensitivity_score
|
|
3485
|
+
|
|
3473
3486
|
# Optional version name for this InfoType.
|
|
3474
3487
|
# Corresponds to the JSON property `version`
|
|
3475
3488
|
# @return [String]
|
|
@@ -3482,6 +3495,7 @@ module Google
|
|
|
3482
3495
|
# Update properties of this object
|
|
3483
3496
|
def update!(**args)
|
|
3484
3497
|
@name = args[:name] if args.key?(:name)
|
|
3498
|
+
@sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
|
|
3485
3499
|
@version = args[:version] if args.key?(:version)
|
|
3486
3500
|
end
|
|
3487
3501
|
end
|
|
@@ -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.43.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230428"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1837,6 +1837,8 @@ module Google
|
|
|
1837
1837
|
property :likelihood, as: 'likelihood'
|
|
1838
1838
|
property :regex, as: 'regex', class: Google::Apis::DlpV2::GooglePrivacyDlpV2Regex, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2Regex::Representation
|
|
1839
1839
|
|
|
1840
|
+
property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore::Representation
|
|
1841
|
+
|
|
1840
1842
|
property :stored_type, as: 'storedType', class: Google::Apis::DlpV2::GooglePrivacyDlpV2StoredType, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2StoredType::Representation
|
|
1841
1843
|
|
|
1842
1844
|
property :surrogate_type, as: 'surrogateType', class: Google::Apis::DlpV2::GooglePrivacyDlpV2SurrogateType, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2SurrogateType::Representation
|
|
@@ -2388,6 +2390,8 @@ module Google
|
|
|
2388
2390
|
# @private
|
|
2389
2391
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2390
2392
|
property :name, as: 'name'
|
|
2393
|
+
property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore::Representation
|
|
2394
|
+
|
|
2391
2395
|
property :version, as: 'version'
|
|
2392
2396
|
end
|
|
2393
2397
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.43.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dlp_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.43.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dlp_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|