google-apis-dlp_v2 0.51.0 → 0.52.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afb63658c6abc7a59d2714da189ca8a62ac7c1c45d8403dcba389cce2a4399be
4
- data.tar.gz: de5c9b18a8bcdb1ddedc8211dc91663a3d10bb49ef2a96c9a130e45dec42c2a1
3
+ metadata.gz: b4ac7cf2974d3e7931eda05512beb0c680b4135b57c853b080c309e47068adf7
4
+ data.tar.gz: 47bd65d007cdcf5350d4c837db6a7356817ec3a21fc474b45b4da2fb5ccce03e
5
5
  SHA512:
6
- metadata.gz: bde7a067f11d88d17e12eb231ac5e4d7c574458b18e4552ae7983f673f8b70e9b241c8a65ce5b96800a682fb9f3c9431071fc3ed0569036d4228e7a3e3b56d36
7
- data.tar.gz: ac70721a54a25663a11e9da39d66186c74458b060d7e0d121d9d15301030c2aa9e7d5b5b86b85f17f60c806949f1b8ad8012f9aed16685f65c02abf8cd1e39f5
6
+ metadata.gz: f53c5ddce0a06480d6b62275d77a571cc36d2fc01e9d9241257d78c96fbe047538c2455bf79c81c4f7e280a4bc7e37261dd2d9344dfd47e468cccbdb6ebb0c80
7
+ data.tar.gz: ab324066ce87092d6faaa85b7210b0204bbc3aa9ca0efe116f8e5a4d3dec9ef82cfec3a86fe2007bafd4d8ab85fde5e85b42f44e1a70e3c0d2c07e7cca33c0d6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dlp_v2
2
2
 
3
+ ### v0.52.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231008
6
+
3
7
  ### v0.51.0 (2023-10-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20231001
@@ -346,7 +346,7 @@ module Google
346
346
  # References to fields excluded from scanning. This allows you to skip
347
347
  # inspection of entire columns which you know have no findings. When inspecting
348
348
  # a table, we recommend that you inspect all columns. Otherwise, findings might
349
- # be impacted because hints from excluded columns will not be used.
349
+ # be affected because hints from excluded columns will not be used.
350
350
  # Corresponds to the JSON property `excludedFields`
351
351
  # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]
352
352
  attr_accessor :excluded_fields
@@ -361,7 +361,7 @@ module Google
361
361
  attr_accessor :identifying_fields
362
362
 
363
363
  # Limit scanning only to these fields. When inspecting a table, we recommend
364
- # that you inspect all columns. Otherwise, findings might be impacted because
364
+ # that you inspect all columns. Otherwise, findings might be affected because
365
365
  # hints from excluded columns will not be used.
366
366
  # Corresponds to the JSON property `includedFields`
367
367
  # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId>]
@@ -2787,8 +2787,8 @@ module Google
2787
2787
  # @return [Google::Apis::DlpV2::GoogleRpcStatus]
2788
2788
  attr_accessor :details
2789
2789
 
2790
- # The times the error occurred. List includes the oldest timestamp, and the last
2791
- # 9 ones.
2790
+ # The times the error occurred. List includes the oldest timestamp and the last
2791
+ # 9 timestamps.
2792
2792
  # Corresponds to the JSON property `timestamps`
2793
2793
  # @return [Array<String>]
2794
2794
  attr_accessor :timestamps
@@ -3771,10 +3771,10 @@ module Google
3771
3771
  end
3772
3772
  end
3773
3773
 
3774
- # Configuration to control custom minimum likelihoods per infotype. Used when
3775
- # certain infotypes need to return with higher or lower precision than the
3776
- # baseline, i.e. when wanting PERSON_NAME to return all possible names without
3777
- # lowering the precision of other infotypes.
3774
+ # Configuration for setting a minimum likelihood per infotype. Used to customize
3775
+ # the minimum likelihood level for specific infotypes in the request. For
3776
+ # example, use this if you want to lower the precision for PERSON_NAME without
3777
+ # lowering the precision for the other infotypes in the request.
3778
3778
  class GooglePrivacyDlpV2InfoTypeLikelihood
3779
3779
  include Google::Apis::Core::Hashable
3780
3780
 
@@ -3783,8 +3783,8 @@ module Google
3783
3783
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
3784
3784
  attr_accessor :info_type
3785
3785
 
3786
- # Only returns findings equal or above this threshold. This field is required or
3787
- # else the configuration fails.
3786
+ # Only returns findings equal to or above this threshold. This field is required
3787
+ # or else the configuration fails.
3788
3788
  # Corresponds to the JSON property `minLikelihood`
3789
3789
  # @return [String]
3790
3790
  attr_accessor :min_likelihood
@@ -3977,15 +3977,19 @@ module Google
3977
3977
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FindingLimits]
3978
3978
  attr_accessor :limits
3979
3979
 
3980
- # Only returns findings equal or above this threshold. The default is POSSIBLE.
3981
- # See https://cloud.google.com/dlp/docs/likelihood to learn more.
3980
+ # Only returns findings equal to or above this threshold. The default is
3981
+ # POSSIBLE. In general, the highest likelihood setting yields the fewest
3982
+ # findings in results and the lowest chance of a false positive. For more
3983
+ # information, see [Match likelihood](https://cloud.google.com/dlp/docs/
3984
+ # likelihood).
3982
3985
  # Corresponds to the JSON property `minLikelihood`
3983
3986
  # @return [String]
3984
3987
  attr_accessor :min_likelihood
3985
3988
 
3986
- # Per infotype likelihoods. For each infotype, a user can specify a minimum
3987
- # likelihood, and only return that infotype if it is above that threshold. If an
3988
- # infotype is not included, it uses the InspectConfig min_likelihood.
3989
+ # Minimum likelihood per infotype. For each infotype, a user can specify a
3990
+ # minimum likelihood. The system only returns a finding if its likelihood is
3991
+ # above this threshold. If this field is not set, the system uses the
3992
+ # InspectConfig min_likelihood.
3989
3993
  # Corresponds to the JSON property `minLikelihoodPerInfoType`
3990
3994
  # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeLikelihood>]
3991
3995
  attr_accessor :min_likelihood_per_info_type
@@ -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.51.0"
19
+ GEM_VERSION = "0.52.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 = "20231001"
25
+ REVISION = "20231008"
26
26
  end
27
27
  end
28
28
  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.51.0
4
+ version: 0.52.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-10-08 00:00:00.000000000 Z
11
+ date: 2023-10-15 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.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.52.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: []