google-cloud-network_services 1.0.1 → 1.1.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: 42738d9588d4b09771165a7b17dd1249363d7d0f5d08093926cba5901c34d13f
4
- data.tar.gz: 1832f12217b13b9cfbf97e3708e083450a7cbb872ed12bfdb7bda02f4c13e112
3
+ metadata.gz: f65b2f57c0118542cd05d25eb3927463df0681a863f93d4ef2af8fafd387c317
4
+ data.tar.gz: c2bce6b48a41856c908408dccd1e4973a370cbe1305c946e9786cbb20034699b
5
5
  SHA512:
6
- metadata.gz: 4aea16178a02cf9f6ce86b354ed227949db3630bf35aa3f4232ecd8d05d18366e430b9ef9016db2dff468c39b3c1b708568ff92ed1c69dbbce1622fe494a75d4
7
- data.tar.gz: 9b03334d54269567a2a87c633e01fccc81ecbf8ff305124c2fac52ce731dbd33a76f9b20a21b5932609b5101564551ceb733975fcb292a453bd69c742b030fb2
6
+ metadata.gz: 5e97004e6c89337aa26d5d0d160f3e8083273a18310abad1ea9954521b5e2961a9320dc29139ed786b922e2deeb37833df52e86c135b3601089882d204434d6b
7
+ data.tar.gz: 5327ceb0a25916caf5c2fe3862ff35a8a348d89a5897dde9360cc80aaa167e7e258a07114acf4304e2f5fd1f6567573b941ae8e4a06c1589e497d47b3bde5d79
data/README.md CHANGED
@@ -34,9 +34,39 @@ 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/networkservices.googleapis.com)
35
35
  1. {file:AUTHENTICATION.md Set up authentication.}
36
36
 
37
+ ## Debug Logging
38
+
39
+ This library comes with opt-in Debug Logging that can help you troubleshoot
40
+ your application's integration with the API. When logging is activated, key
41
+ events such as requests and responses, along with data payloads and metadata
42
+ such as headers and client configuration, are logged to the standard error
43
+ stream.
44
+
45
+ **WARNING:** Client Library Debug Logging includes your data payloads in
46
+ plaintext, which could include sensitive data such as PII for yourself or your
47
+ customers, private keys, or other security data that could be compromising if
48
+ leaked. Always practice good data hygiene with your application logs, and follow
49
+ the principle of least access. Google also recommends that Client Library Debug
50
+ Logging be enabled only temporarily during active debugging, and not used
51
+ permanently in production.
52
+
53
+ To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
54
+ to the value `all`. Alternatively, you can set the value to a comma-delimited
55
+ list of client library gem names. This will select the default logging behavior,
56
+ which writes logs to the standard error stream. On a local workstation, this may
57
+ result in logs appearing on the console. When running on a Google Cloud hosting
58
+ service such as [Google Cloud Run](https://cloud.google.com/run), this generally
59
+ results in logs appearing alongside your application logs in the
60
+ [Google Cloud Logging](https://cloud.google.com/logging/) service.
61
+
62
+ Debug logging also requires that the versioned clients for this service be
63
+ sufficiently recent, released after about Dec 10, 2024. If logging is not
64
+ working, try updating the versioned clients in your bundle or installed gems:
65
+ [google-cloud-network_services-v1](https://cloud.google.com/ruby/docs/reference/google-cloud-network_services-v1/latest).
66
+
37
67
  ## Supported Ruby Versions
38
68
 
39
- This library is supported on Ruby 2.7+.
69
+ This library is supported on Ruby 3.0+.
40
70
 
41
71
  Google provides official support for Ruby versions that are actively supported
42
72
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Cloud
22
22
  module NetworkServices
23
- VERSION = "1.0.1"
23
+ VERSION = "1.1.0"
24
24
  end
25
25
  end
26
26
  end
@@ -58,6 +58,11 @@ module Google
58
58
  # You can also specify a different transport by passing `:rest` or `:grpc` in
59
59
  # the `transport` parameter.
60
60
  #
61
+ # Raises an exception if the currently installed versioned client gem for the
62
+ # given API version does not support the given transport of the DepService service.
63
+ # You can determine whether the method will succeed by calling
64
+ # {Google::Cloud::NetworkServices.dep_service_available?}.
65
+ #
61
66
  # ## About DepService
62
67
  #
63
68
  # Service describing handlers for resources.
@@ -79,6 +84,37 @@ module Google
79
84
  service_module.const_get(:Client).new(&block)
80
85
  end
81
86
 
87
+ ##
88
+ # Determines whether the DepService service is supported by the current client.
89
+ # If true, you can retrieve a client object by calling {Google::Cloud::NetworkServices.dep_service}.
90
+ # If false, that method will raise an exception. This could happen if the given
91
+ # API version does not exist or does not support the DepService service,
92
+ # or if the versioned client gem needs an update to support the DepService service.
93
+ #
94
+ # @param version [::String, ::Symbol] The API version to connect to. Optional.
95
+ # Defaults to `:v1`.
96
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
97
+ # @return [boolean] Whether the service is available.
98
+ #
99
+ def self.dep_service_available? version: :v1, transport: :grpc
100
+ require "google/cloud/network_services/#{version.to_s.downcase}"
101
+ package_name = Google::Cloud::NetworkServices
102
+ .constants
103
+ .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
104
+ .first
105
+ return false unless package_name
106
+ service_module = Google::Cloud::NetworkServices.const_get package_name
107
+ return false unless service_module.const_defined? :DepService
108
+ service_module = service_module.const_get :DepService
109
+ if transport == :rest
110
+ return false unless service_module.const_defined? :Rest
111
+ service_module = service_module.const_get :Rest
112
+ end
113
+ service_module.const_defined? :Client
114
+ rescue ::LoadError
115
+ false
116
+ end
117
+
82
118
  ##
83
119
  # Create a new client object for NetworkServices.
84
120
  #
@@ -92,6 +128,11 @@ module Google
92
128
  # You can also specify a different transport by passing `:rest` or `:grpc` in
93
129
  # the `transport` parameter.
94
130
  #
131
+ # Raises an exception if the currently installed versioned client gem for the
132
+ # given API version does not support the given transport of the NetworkServices service.
133
+ # You can determine whether the method will succeed by calling
134
+ # {Google::Cloud::NetworkServices.network_services_available?}.
135
+ #
95
136
  # ## About NetworkServices
96
137
  #
97
138
  # Service describing handlers for resources.
@@ -113,6 +154,37 @@ module Google
113
154
  service_module.const_get(:Client).new(&block)
114
155
  end
115
156
 
157
+ ##
158
+ # Determines whether the NetworkServices service is supported by the current client.
159
+ # If true, you can retrieve a client object by calling {Google::Cloud::NetworkServices.network_services}.
160
+ # If false, that method will raise an exception. This could happen if the given
161
+ # API version does not exist or does not support the NetworkServices service,
162
+ # or if the versioned client gem needs an update to support the NetworkServices service.
163
+ #
164
+ # @param version [::String, ::Symbol] The API version to connect to. Optional.
165
+ # Defaults to `:v1`.
166
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
167
+ # @return [boolean] Whether the service is available.
168
+ #
169
+ def self.network_services_available? version: :v1, transport: :grpc
170
+ require "google/cloud/network_services/#{version.to_s.downcase}"
171
+ package_name = Google::Cloud::NetworkServices
172
+ .constants
173
+ .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
174
+ .first
175
+ return false unless package_name
176
+ service_module = Google::Cloud::NetworkServices.const_get package_name
177
+ return false unless service_module.const_defined? :NetworkServices
178
+ service_module = service_module.const_get :NetworkServices
179
+ if transport == :rest
180
+ return false unless service_module.const_defined? :Rest
181
+ service_module = service_module.const_get :Rest
182
+ end
183
+ service_module.const_defined? :Client
184
+ rescue ::LoadError
185
+ false
186
+ end
187
+
116
188
  ##
117
189
  # Configure the google-cloud-network_services library.
118
190
  #
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-network_services
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-08-09 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-cloud-core
@@ -62,7 +61,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
62
61
  licenses:
63
62
  - Apache-2.0
64
63
  metadata: {}
65
- post_install_message:
66
64
  rdoc_options: []
67
65
  require_paths:
68
66
  - lib
@@ -70,15 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
70
68
  requirements:
71
69
  - - ">="
72
70
  - !ruby/object:Gem::Version
73
- version: '2.7'
71
+ version: '3.0'
74
72
  required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  requirements:
76
74
  - - ">="
77
75
  - !ruby/object:Gem::Version
78
76
  version: '0'
79
77
  requirements: []
80
- rubygems_version: 3.5.6
81
- signing_key:
78
+ rubygems_version: 3.6.2
82
79
  specification_version: 4
83
80
  summary: API Client library for the Network Services API
84
81
  test_files: []