google-apis-dlp_v2 0.22.0 → 0.23.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a2cda6185edc27ec3058865c0218c10502aa424ef013218a99654baeab98cc9
4
- data.tar.gz: ec40e92757e5ea73f2fec650079b2345c85b1cf15db06888ea72684ff0f1ae66
3
+ metadata.gz: 28ccba9defded8026812de763589828b65a57dc6ad579d76c76fb01a14854a0d
4
+ data.tar.gz: '08b6d656aa3dda795357c9760fc6a54ef4e6af6cdce0454812e72e84a46f7084'
5
5
  SHA512:
6
- metadata.gz: 7982f2998ec6be91902c527e203b77644de1b1886d0d6cf0815e23a98326a9d3bc6c544c017ae33624702d2068555ff512cb31834e46cf98e708cc9d1623c23b
7
- data.tar.gz: 44576fc54a29a3ecdc57150a38d92f16fc242c1d7ca00e97f951eb3b9b5d00cedcac63362675b04c531b33a02b25e061960f15d53e7e968ae7096c53ebe8668a
6
+ metadata.gz: 32c5b9f396b8af3cea9ed594329a8554d652983e259b2202cb916d3c10def684a47431b3ce6d55dea081529a3dd21d3e0038dfa5bc33728a1bcd271c3bfd66e0
7
+ data.tar.gz: b04c7ce7df00e320b5c74ad28182c419ec1fcff8fb9c6de826613b3dd680ac6d5d91e60c547d1bdfd6dcacd346c3c70ac8eb8686df71a9c4b1693d858a2da076
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dlp_v2
2
2
 
3
+ ### v0.23.0 (2022-05-12)
4
+
5
+ * Regenerated from discovery document revision 20220506
6
+
3
7
  ### v0.22.0 (2022-04-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20220402
@@ -3283,6 +3283,12 @@ module Google
3283
3283
  class GooglePrivacyDlpV2InfoTypeSummary
3284
3284
  include Google::Apis::Core::Hashable
3285
3285
 
3286
+ # Approximate percentage of non-null rows that contained data detected by this
3287
+ # infotype.
3288
+ # Corresponds to the JSON property `estimatedPrevalence`
3289
+ # @return [Fixnum]
3290
+ attr_accessor :estimated_prevalence
3291
+
3286
3292
  # Type of information detected by the API.
3287
3293
  # Corresponds to the JSON property `infoType`
3288
3294
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
@@ -3294,6 +3300,7 @@ module Google
3294
3300
 
3295
3301
  # Update properties of this object
3296
3302
  def update!(**args)
3303
+ @estimated_prevalence = args[:estimated_prevalence] if args.key?(:estimated_prevalence)
3297
3304
  @info_type = args[:info_type] if args.key?(:info_type)
3298
3305
  end
3299
3306
  end
@@ -4655,6 +4662,12 @@ module Google
4655
4662
  class GooglePrivacyDlpV2OtherInfoTypeSummary
4656
4663
  include Google::Apis::Core::Hashable
4657
4664
 
4665
+ # Approximate percentage of non-null rows that contained data detected by this
4666
+ # infotype.
4667
+ # Corresponds to the JSON property `estimatedPrevalence`
4668
+ # @return [Fixnum]
4669
+ attr_accessor :estimated_prevalence
4670
+
4658
4671
  # Type of information detected by the API.
4659
4672
  # Corresponds to the JSON property `infoType`
4660
4673
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
@@ -4666,6 +4679,7 @@ module Google
4666
4679
 
4667
4680
  # Update properties of this object
4668
4681
  def update!(**args)
4682
+ @estimated_prevalence = args[:estimated_prevalence] if args.key?(:estimated_prevalence)
4669
4683
  @info_type = args[:info_type] if args.key?(:info_type)
4670
4684
  end
4671
4685
  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.22.0"
19
+ GEM_VERSION = "0.23.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220402"
25
+ REVISION = "20220506"
26
26
  end
27
27
  end
28
28
  end
@@ -2212,6 +2212,7 @@ module Google
2212
2212
  class GooglePrivacyDlpV2InfoTypeSummary
2213
2213
  # @private
2214
2214
  class Representation < Google::Apis::Core::JsonRepresentation
2215
+ property :estimated_prevalence, as: 'estimatedPrevalence'
2215
2216
  property :info_type, as: 'infoType', class: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType::Representation
2216
2217
 
2217
2218
  end
@@ -2647,6 +2648,7 @@ module Google
2647
2648
  class GooglePrivacyDlpV2OtherInfoTypeSummary
2648
2649
  # @private
2649
2650
  class Representation < Google::Apis::Core::JsonRepresentation
2651
+ property :estimated_prevalence, as: 'estimatedPrevalence'
2650
2652
  property :info_type, as: 'infoType', class: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType::Representation
2651
2653
 
2652
2654
  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.22.0
4
+ version: 0.23.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: 2022-04-11 00:00:00.000000000 Z
11
+ date: 2022-05-16 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.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.23.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: []