google-cloud-security-public_ca 0.1.0 → 0.2.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: c8cde1ed5f99af0a569ef36837c6f506168313dd8910a2bffda47a9389d38120
4
- data.tar.gz: 8ae2779dfa30d2244549ecfdfeecf68888a18262d075550d1bff8c3964f7de3c
3
+ metadata.gz: 9677157eb9ac3b2b17360645927b8fcb476193bc0a819edf8393d11884c7c33d
4
+ data.tar.gz: c4b4ae509dc1e96e58ea9eac4c96fd06aeb36ee8db2716be5872caa8282149bc
5
5
  SHA512:
6
- metadata.gz: 214ae2b1c147b0e4de174a9483aebaad3583c58cd4501854fc48fc380c5418115f9e3b4fcf63c9d504c0740781a638125283ae209a0be61c7209da56c2319705
7
- data.tar.gz: cbc9f20ce3f4cc7fe24de31d0a45d00d792a362de6afb4cd21692d48a0974ef46f557770aad03022b4b99471fcd43415ad46aa287cead2e6f474545297c94b2f
6
+ metadata.gz: 0bd1ce2953714b69d14f5e46f2c9ecaeb702f70dd393be37232eed7b1521a0be6d9187643d6e299540c016d35a25d87bf58dc53ce5250f902f40c55f5169a0e6
7
+ data.tar.gz: eeadf5f2c95c4a4eb026aef9acc4e75f6b48dfa1d4da6d692f78e25faf1ec3c4e995d2a433b13debe0de51546914a1bdbe2121dd31a7d835ae6f821b32f4dccb
data/README.md CHANGED
@@ -34,32 +34,6 @@ In order to use this library, you first need to go through the following steps:
34
34
  1. [Enable the API.](https://console.cloud.google.com/apis/library/publicca.googleapis.com)
35
35
  1. {file:AUTHENTICATION.md Set up authentication.}
36
36
 
37
- ## Enabling Logging
38
-
39
- To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
40
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
41
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
42
- 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)
43
- and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
44
-
45
- Configuring a Ruby stdlib logger:
46
-
47
- ```ruby
48
- require "logger"
49
-
50
- module MyLogger
51
- LOGGER = Logger.new $stderr, level: Logger::WARN
52
- def logger
53
- LOGGER
54
- end
55
- end
56
-
57
- # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
58
- module GRPC
59
- extend MyLogger
60
- end
61
- ```
62
-
63
37
  ## Supported Ruby Versions
64
38
 
65
39
  This library is supported on Ruby 2.6+.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Security
23
23
  module PublicCA
24
- VERSION = "0.1.0"
24
+ VERSION = "0.2.0"
25
25
  end
26
26
  end
27
27
  end
@@ -50,11 +50,13 @@ module Google
50
50
  #
51
51
  # By default, this returns an instance of
52
52
  # [Google::Cloud::Security::PublicCA::V1beta1::PublicCertificateAuthorityService::Client](https://googleapis.dev/ruby/google-cloud-security-public_ca-v1beta1/latest/Google/Cloud/Security/PublicCA/V1beta1/PublicCertificateAuthorityService/Client.html)
53
- # for version V1beta1 of the API.
54
- # However, you can specify specify a different API version by passing it in the
53
+ # for a gRPC client for version V1beta1 of the API.
54
+ # However, you can specify a different API version by passing it in the
55
55
  # `version` parameter. If the PublicCertificateAuthorityService service is
56
56
  # supported by that API version, and the corresponding gem is available, the
57
57
  # appropriate versioned client will be returned.
58
+ # You can also specify a different transport by passing `:rest` or `:grpc` in
59
+ # the `transport` parameter.
58
60
  #
59
61
  # ## About PublicCertificateAuthorityService
60
62
  #
@@ -64,17 +66,19 @@ module Google
64
66
  #
65
67
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
66
68
  # Defaults to `:v1beta1`.
67
- # @return [PublicCertificateAuthorityService::Client] A client object for the specified version.
69
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
70
+ # @return [::Object] A client object for the specified version.
68
71
  #
69
- def self.public_certificate_authority_service version: :v1beta1, &block
72
+ def self.public_certificate_authority_service version: :v1beta1, transport: :grpc, &block
70
73
  require "google/cloud/security/public_ca/#{version.to_s.downcase}"
71
74
 
72
75
  package_name = Google::Cloud::Security::PublicCA
73
76
  .constants
74
77
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
75
78
  .first
76
- package_module = Google::Cloud::Security::PublicCA.const_get package_name
77
- package_module.const_get(:PublicCertificateAuthorityService).const_get(:Client).new(&block)
79
+ service_module = Google::Cloud::Security::PublicCA.const_get(package_name).const_get(:PublicCertificateAuthorityService)
80
+ service_module = service_module.const_get(:Rest) if transport == :rest
81
+ service_module.const_get(:Client).new(&block)
78
82
  end
79
83
 
80
84
  ##
@@ -94,7 +98,7 @@ module Google
94
98
  # * `timeout` (*type:* `Numeric`) -
95
99
  # Default timeout in seconds.
96
100
  # * `metadata` (*type:* `Hash{Symbol=>String}`) -
97
- # Additional gRPC headers to be sent with the call.
101
+ # Additional headers to be sent with the call.
98
102
  # * `retry_policy` (*type:* `Hash`) -
99
103
  # The retry policy. The value is a hash with the following keys:
100
104
  # * `: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-security-public_ca
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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-09-16 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.0'
33
+ version: '0.2'
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.0'
43
+ version: '0.2'
44
44
  - - "<"
45
45
  - !ruby/object:Gem::Version
46
46
  version: 2.a
@@ -194,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
194
194
  - !ruby/object:Gem::Version
195
195
  version: '0'
196
196
  requirements: []
197
- rubygems_version: 3.3.14
197
+ rubygems_version: 3.4.2
198
198
  signing_key:
199
199
  specification_version: 4
200
200
  summary: API Client library for the Public Certificate Authority API