google-cloud-apigee_registry 0.2.0 → 0.3.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: 7a51213132ca4ae27f93f0559dff749620cfca548738830ce7231019888e2726
4
- data.tar.gz: 1c65c73adfb8578c85c4a4e76fe4104b870eef4dd0772099c4806cd2accb9ad4
3
+ metadata.gz: 8eb4eda39fe085e76e5c51c05d7555b6fd63278740ed8ed978acd6488f024083
4
+ data.tar.gz: 4ac3b263324210312694bb9a89ca7b0357aa4ca8dff54932fc2fe227c19ab347
5
5
  SHA512:
6
- metadata.gz: aa8edc50af57bca7b19782c60f384a2f74787ddfe75887bb4680786074214fc1cff28426cb51ca1fb51444cf0dca422e759bf8d445bc66325be0b4da2fa14c49
7
- data.tar.gz: 84afa49c2b1b15e66d20d101f8d06bfe1bb5cd3c6c662ffca98e21c8be944a03cba3a562567d4da110e3bf6900aed651434f81fabfe4ce0bbc3864c3a89189b8
6
+ metadata.gz: abc178d223597635a57020557a2a151dc391ead3710d1d7e1d87466e68cfb2f510b07632d31d78d71a26e796b256a91679bb846679b38ccf8145b699b2418d53
7
+ data.tar.gz: ded86839e297a75e56ca49dfcba6570db2dca6e681a6e16f6cfb0b28311c98272ac742f444863ec73eb22f42aa5dea529ef96db57457c82f689489ab7a749fe2
data/AUTHENTICATION.md CHANGED
@@ -112,7 +112,7 @@ credentials are discovered.
112
112
  To configure your system for this, simply:
113
113
 
114
114
  1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
115
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
115
+ 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
116
116
  3. Write code as if already authenticated.
117
117
 
118
118
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
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/apigeeregistry.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+.
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Cloud
22
22
  module ApigeeRegistry
23
- VERSION = "0.2.0"
23
+ VERSION = "0.3.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::ApigeeRegistry::V1::Provisioning::Client](https://googleapis.dev/ruby/google-cloud-apigee_registry-v1/latest/Google/Cloud/ApigeeRegistry/V1/Provisioning/Client.html)
52
- # for version V1 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 V1 of the API.
53
+ # However, you can specify a different API version by passing it in the
54
54
  # `version` parameter. If the Provisioning 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 Provisioning
59
61
  #
@@ -62,17 +64,19 @@ module Google
62
64
  #
63
65
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
64
66
  # Defaults to `:v1`.
65
- # @return [Provisioning::Client] A client object for the specified version.
67
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
68
+ # @return [::Object] A client object for the specified version.
66
69
  #
67
- def self.provisioning version: :v1, &block
70
+ def self.provisioning version: :v1, transport: :grpc, &block
68
71
  require "google/cloud/apigee_registry/#{version.to_s.downcase}"
69
72
 
70
73
  package_name = Google::Cloud::ApigeeRegistry
71
74
  .constants
72
75
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
73
76
  .first
74
- package_module = Google::Cloud::ApigeeRegistry.const_get package_name
75
- package_module.const_get(:Provisioning).const_get(:Client).new(&block)
77
+ service_module = Google::Cloud::ApigeeRegistry.const_get(package_name).const_get(:Provisioning)
78
+ service_module = service_module.const_get(:Rest) if transport == :rest
79
+ service_module.const_get(:Client).new(&block)
76
80
  end
77
81
 
78
82
  ##
@@ -80,11 +84,13 @@ module Google
80
84
  #
81
85
  # By default, this returns an instance of
82
86
  # [Google::Cloud::ApigeeRegistry::V1::Registry::Client](https://googleapis.dev/ruby/google-cloud-apigee_registry-v1/latest/Google/Cloud/ApigeeRegistry/V1/Registry/Client.html)
83
- # for version V1 of the API.
84
- # However, you can specify specify a different API version by passing it in the
87
+ # for a gRPC client for version V1 of the API.
88
+ # However, you can specify a different API version by passing it in the
85
89
  # `version` parameter. If the Registry service is
86
90
  # supported by that API version, and the corresponding gem is available, the
87
91
  # appropriate versioned client will be returned.
92
+ # You can also specify a different transport by passing `:rest` or `:grpc` in
93
+ # the `transport` parameter.
88
94
  #
89
95
  # ## About Registry
90
96
  #
@@ -92,17 +98,19 @@ module Google
92
98
  #
93
99
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
94
100
  # Defaults to `:v1`.
95
- # @return [Registry::Client] A client object for the specified version.
101
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
102
+ # @return [::Object] A client object for the specified version.
96
103
  #
97
- def self.registry version: :v1, &block
104
+ def self.registry version: :v1, transport: :grpc, &block
98
105
  require "google/cloud/apigee_registry/#{version.to_s.downcase}"
99
106
 
100
107
  package_name = Google::Cloud::ApigeeRegistry
101
108
  .constants
102
109
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
103
110
  .first
104
- package_module = Google::Cloud::ApigeeRegistry.const_get package_name
105
- package_module.const_get(:Registry).const_get(:Client).new(&block)
111
+ service_module = Google::Cloud::ApigeeRegistry.const_get(package_name).const_get(:Registry)
112
+ service_module = service_module.const_get(:Rest) if transport == :rest
113
+ service_module.const_get(:Client).new(&block)
106
114
  end
107
115
 
108
116
  ##
@@ -122,7 +130,7 @@ module Google
122
130
  # * `timeout` (*type:* `Numeric`) -
123
131
  # Default timeout in seconds.
124
132
  # * `metadata` (*type:* `Hash{Symbol=>String}`) -
125
- # Additional gRPC headers to be sent with the call.
133
+ # Additional headers to be sent with the call.
126
134
  # * `retry_policy` (*type:* `Hash`) -
127
135
  # The retry policy. The value is a hash with the following keys:
128
136
  # * `: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-apigee_registry
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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-01 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-apigee_registry-v1
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.0'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.0'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
195
195
  - !ruby/object:Gem::Version
196
196
  version: '0'
197
197
  requirements: []
198
- rubygems_version: 3.3.14
198
+ rubygems_version: 3.4.2
199
199
  signing_key:
200
200
  specification_version: 4
201
201
  summary: API Client library for the Apigee Registry API