google-cloud-dlp 1.3.0 → 1.4.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: e82f69ffc995791a940f1f3c8b8d190b288700d988944631097b0b98b60028af
4
- data.tar.gz: 540fc9685fc2dd87351fbb46fdda6d92db0ec28f9fee03576cf009d1207f9fc8
3
+ metadata.gz: a94a098af84b11699ef961052fe8624177f261d7e8f6601cd7d3fb3152188090
4
+ data.tar.gz: 3e17c602d74c21549ee367f84efa2349c6bbc63bc7f047de81bf0786725975a0
5
5
  SHA512:
6
- metadata.gz: e8f159a6dbb184c2efe1ad80e3a437f22792274e31da8d9803c84a3ff69f613fd40f76db6249b0760a19fb383a2f8b11667c3882057e59aeefe4c6211cbf6372
7
- data.tar.gz: 5cbd63407e702d4d0ba97ade07cad79388451868aadb09203bb754037ea242ac9018c5d2a3d0b24956fa2c2e0d06fe7cebfe46679f1cfbf3ae4cccc1b845f1b3
6
+ metadata.gz: 5797cec86ccf54297ab717ed5c99c791c9aeeaba58051341fb6a489b114652f8d943c34615ec75f85c00f420b2f9cf606366bfb383fbee1cd47a20ecd8365aa8
7
+ data.tar.gz: ff7cc1d821fa670b85e595da0f7a54c2387d8b8d29da8e7f3cb9c56dd1a1f704403697af31e1814154a48a8fbfe71153eab37e311711759522f84c37d14208b2
data/AUTHENTICATION.md CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
114
114
  To configure your system for this, simply:
115
115
 
116
116
  1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
117
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
117
+ 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
118
118
  3. Write code as if already authenticated.
119
119
 
120
120
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
data/README.md CHANGED
@@ -42,32 +42,6 @@ and includes substantial interface changes. Existing code written for earlier
42
42
  versions of this library will likely require updates to use this version.
43
43
  See the {file:MIGRATING.md MIGRATING.md} document for more information.
44
44
 
45
- ## Enabling Logging
46
-
47
- To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
48
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
49
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
50
- that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
51
- and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
52
-
53
- Configuring a Ruby stdlib logger:
54
-
55
- ```ruby
56
- require "logger"
57
-
58
- module MyLogger
59
- LOGGER = Logger.new $stderr, level: Logger::WARN
60
- def logger
61
- LOGGER
62
- end
63
- end
64
-
65
- # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
66
- module GRPC
67
- extend MyLogger
68
- end
69
- ```
70
-
71
45
  ## Supported Ruby Versions
72
46
 
73
47
  This library is supported on Ruby 2.6+.
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Cloud
22
22
  module Dlp
23
- VERSION = "1.3.0"
23
+ VERSION = "1.4.0"
24
24
  end
25
25
  end
26
26
  end
@@ -49,11 +49,13 @@ module Google
49
49
  #
50
50
  # By default, this returns an instance of
51
51
  # [Google::Cloud::Dlp::V2::DlpService::Client](https://googleapis.dev/ruby/google-cloud-dlp-v2/latest/Google/Cloud/Dlp/V2/DlpService/Client.html)
52
- # for version V2 of the API.
53
- # However, you can specify specify a different API version by passing it in the
52
+ # for a gRPC client for version V2 of the API.
53
+ # However, you can specify a different API version by passing it in the
54
54
  # `version` parameter. If the DlpService service is
55
55
  # supported by that API version, and the corresponding gem is available, the
56
56
  # appropriate versioned client will be returned.
57
+ # You can also specify a different transport by passing `:rest` or `:grpc` in
58
+ # the `transport` parameter.
57
59
  #
58
60
  # ## About DlpService
59
61
  #
@@ -69,17 +71,19 @@ module Google
69
71
  #
70
72
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
71
73
  # Defaults to `:v2`.
72
- # @return [DlpService::Client] A client object for the specified version.
74
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
75
+ # @return [::Object] A client object for the specified version.
73
76
  #
74
- def self.dlp_service version: :v2, &block
77
+ def self.dlp_service version: :v2, transport: :grpc, &block
75
78
  require "google/cloud/dlp/#{version.to_s.downcase}"
76
79
 
77
80
  package_name = Google::Cloud::Dlp
78
81
  .constants
79
82
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
80
83
  .first
81
- package_module = Google::Cloud::Dlp.const_get package_name
82
- package_module.const_get(:DlpService).const_get(:Client).new(&block)
84
+ service_module = Google::Cloud::Dlp.const_get(package_name).const_get(:DlpService)
85
+ service_module = service_module.const_get(:Rest) if transport == :rest
86
+ service_module.const_get(:Client).new(&block)
83
87
  end
84
88
 
85
89
  ##
@@ -99,7 +103,7 @@ module Google
99
103
  # * `timeout` (*type:* `Numeric`) -
100
104
  # Default timeout in seconds.
101
105
  # * `metadata` (*type:* `Hash{Symbol=>String}`) -
102
- # Additional gRPC headers to be sent with the call.
106
+ # Additional headers to be sent with the call.
103
107
  # * `retry_policy` (*type:* `Hash`) -
104
108
  # The retry policy. The value is a hash with the following keys:
105
109
  # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dlp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.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-07-02 00:00:00.000000000 Z
11
+ date: 2023-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-core
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '0.2'
33
+ version: '0.16'
34
34
  - - "<"
35
35
  - !ruby/object:Gem::Version
36
36
  version: 2.a
@@ -40,7 +40,7 @@ dependencies:
40
40
  requirements:
41
41
  - - ">="
42
42
  - !ruby/object:Gem::Version
43
- version: '0.2'
43
+ version: '0.16'
44
44
  - - "<"
45
45
  - !ruby/object:Gem::Version
46
46
  version: 2.a
@@ -190,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
190
190
  - !ruby/object:Gem::Version
191
191
  version: '0'
192
192
  requirements: []
193
- rubygems_version: 3.3.14
193
+ rubygems_version: 3.4.2
194
194
  signing_key:
195
195
  specification_version: 4
196
196
  summary: API Client library for the Cloud Data Loss Prevention (DLP) API