google-apis-dlp_v2 0.44.0 → 0.45.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: e9b149bf63ee15bdccfcb9626280567c7cccf37f16994b6ef4481f0b5e795ca9
4
- data.tar.gz: f7aa0d7db036a3384ec89e5d67b67322ff2977d9c81f704312fea6c12c2265ef
3
+ metadata.gz: cac47d3dcd8054dd1462c0407575cebfd620af093f9bccbc45f4d0dcf272ce63
4
+ data.tar.gz: 5d254382db9c3c41628906b32653ab07e47ce16af259bb1e0f14b1beadb4bf3d
5
5
  SHA512:
6
- metadata.gz: b182d8c16117dc87582f15bb74c8f1e4b91c6b8a9ddc99ffeee839e603be182317038f93fad82881bb247bdb42c15a46f12fc62cc55396f35ea2ba6d08ae0953
7
- data.tar.gz: 308fb1451c6cb2d645868714cd7912238552f3e0a67a3030a6f314439b67f8e288f788b7027f7ed1d8d9688348a566235a1a7d0ff62c83ff8153369f7f8a9507
6
+ metadata.gz: ad2afe96d3d802b34c98d2334b09757c5ce2bdd6555b49f3a7b78dccf08323bd4bcb9be989216ccdd8622cfa90a993cc43947566088609dfa3b07c7106f5bed7
7
+ data.tar.gz: a1db50ea68d50814dcadeeb6823e38f706b388d480ca9fdee163c94c3ce1b58310c8983fe35ee7b3f600c93b16576f6e2f4f3cc4efdfe8700ee167637ede21ca
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dlp_v2
2
2
 
3
+ ### v0.45.0 (2023-05-28)
4
+
5
+ * Regenerated from discovery document revision 20230521
6
+
3
7
  ### v0.44.0 (2023-05-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20230514
data/OVERVIEW.md CHANGED
@@ -1,6 +1,6 @@
1
- # Simple REST client for version V2 of the Cloud Data Loss Prevention (DLP) API
1
+ # Simple REST client for version V2 of the Cloud Data Loss Prevention (DLP)
2
2
 
3
- This is a simple client library for version V2 of the Cloud Data Loss Prevention (DLP) API. It provides:
3
+ This is a simple client library for version V2 of the Cloud Data Loss Prevention (DLP). It provides:
4
4
 
5
5
  * A client object that connects to the HTTP/JSON REST endpoint for the service.
6
6
  * Ruby objects for data structures related to the service.
@@ -65,7 +65,7 @@ More detailed descriptions of the Google simple REST clients are available in tw
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Dlp service in particular.)
67
67
 
68
- For reference information on specific calls in the Cloud Data Loss Prevention (DLP) API, see the {Google::Apis::DlpV2::DLPService class reference docs}.
68
+ For reference information on specific calls in the Cloud Data Loss Prevention (DLP), see the {Google::Apis::DlpV2::DLPService class reference docs}.
69
69
 
70
70
  ## Which client should I use?
71
71
 
@@ -5033,6 +5033,13 @@ module Google
5033
5033
  # @return [Fixnum]
5034
5034
  attr_accessor :estimated_prevalence
5035
5035
 
5036
+ # Whether this infoType was excluded from sensitivity and risk analysis due to
5037
+ # factors such as low prevalence (subject to change).
5038
+ # Corresponds to the JSON property `excludedFromAnalysis`
5039
+ # @return [Boolean]
5040
+ attr_accessor :excluded_from_analysis
5041
+ alias_method :excluded_from_analysis?, :excluded_from_analysis
5042
+
5036
5043
  # Type of information detected by the API.
5037
5044
  # Corresponds to the JSON property `infoType`
5038
5045
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
@@ -5045,6 +5052,7 @@ module Google
5045
5052
  # Update properties of this object
5046
5053
  def update!(**args)
5047
5054
  @estimated_prevalence = args[:estimated_prevalence] if args.key?(:estimated_prevalence)
5055
+ @excluded_from_analysis = args[:excluded_from_analysis] if args.key?(:excluded_from_analysis)
5048
5056
  @info_type = args[:info_type] if args.key?(:info_type)
5049
5057
  end
5050
5058
  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.44.0"
19
+ GEM_VERSION = "0.45.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 = "20230514"
25
+ REVISION = "20230521"
26
26
  end
27
27
  end
28
28
  end
@@ -2879,6 +2879,7 @@ module Google
2879
2879
  # @private
2880
2880
  class Representation < Google::Apis::Core::JsonRepresentation
2881
2881
  property :estimated_prevalence, as: 'estimatedPrevalence'
2882
+ property :excluded_from_analysis, as: 'excludedFromAnalysis'
2882
2883
  property :info_type, as: 'infoType', class: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType::Representation
2883
2884
 
2884
2885
  end
@@ -20,7 +20,7 @@ require 'google/apis/errors'
20
20
  module Google
21
21
  module Apis
22
22
  module DlpV2
23
- # Cloud Data Loss Prevention (DLP) API
23
+ # Cloud Data Loss Prevention (DLP)
24
24
  #
25
25
  # Provides methods for detection, risk analysis, and de-identification of
26
26
  # privacy-sensitive fragments in text, images, and Google Cloud Platform storage
@@ -19,7 +19,7 @@ require 'google/apis/dlp_v2/gem_version.rb'
19
19
 
20
20
  module Google
21
21
  module Apis
22
- # Cloud Data Loss Prevention (DLP) API
22
+ # Cloud Data Loss Prevention (DLP)
23
23
  #
24
24
  # Provides methods for detection, risk analysis, and de-identification of
25
25
  # privacy-sensitive fragments in text, images, and Google Cloud Platform storage
@@ -27,7 +27,7 @@ module Google
27
27
  #
28
28
  # @see https://cloud.google.com/dlp/docs/
29
29
  module DlpV2
30
- # Version of the Cloud Data Loss Prevention (DLP) API this client connects to.
30
+ # Version of the Cloud Data Loss Prevention (DLP) this client connects to.
31
31
  # This is NOT the gem version.
32
32
  VERSION = 'V2'
33
33
 
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.44.0
4
+ version: 0.45.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-05-21 00:00:00.000000000 Z
11
+ date: 2023-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -30,13 +30,13 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
33
- description: This is the simple REST client for Cloud Data Loss Prevention (DLP) API
34
- V2. Simple REST clients are Ruby client libraries that provide access to Google
35
- services via their HTTP REST API endpoints. These libraries are generated and updated
36
- automatically based on the discovery documents published by the service, and they
37
- handle most concerns such as authentication, pagination, retry, timeouts, and logging.
38
- You can use this client to access the Cloud Data Loss Prevention (DLP) API, but
39
- note that some services may provide a separate modern client that is easier to use.
33
+ description: This is the simple REST client for Cloud Data Loss Prevention (DLP) V2.
34
+ Simple REST clients are Ruby client libraries that provide access to Google services
35
+ via their HTTP REST API endpoints. These libraries are generated and updated automatically
36
+ based on the discovery documents published by the service, and they handle most
37
+ concerns such as authentication, pagination, retry, timeouts, and logging. You can
38
+ use this client to access the Cloud Data Loss Prevention (DLP), but note that some
39
+ services may provide a separate modern client that is easier to use.
40
40
  email: googleapis-packages@google.com
41
41
  executables: []
42
42
  extensions: []
@@ -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.44.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.45.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: []
@@ -78,5 +78,5 @@ requirements: []
78
78
  rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
- summary: Simple REST client for Cloud Data Loss Prevention (DLP) API V2
81
+ summary: Simple REST client for Cloud Data Loss Prevention (DLP) V2
82
82
  test_files: []