google-cloud-network_management-v1 1.6.0 → 2.0.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 +4 -4
- data/lib/google/cloud/network_management/v1/reachability_service/rest/client.rb +4 -2
- data/lib/google/cloud/network_management/v1/version.rb +1 -1
- data/lib/google/cloud/network_management/v1/vpc_flow_logs_service/rest/client.rb +4 -2
- data/proto_docs/google/api/client.rb +8 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e328fc847a48df4aae1a203ad832fcc185872575abc86e451fad5d9877ca692
|
4
|
+
data.tar.gz: a49092af763fbc9a2128a1398367201ac632f690fd166e07fcaf927de40c280b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9f708e92ab941826659be7c65d96de81fc4c00d70123051ba5aaf0ede11e549f6a1711d6c77737b618682485cf283b7a3de192a6719bc2577cc99d877c4e239
|
7
|
+
data.tar.gz: 92d189000aca404d163f9744f3373fb0a82678478e635cd5a4ad1b56e0c19915bd30a9fb5c66ded37275117268381246ffb4997e753004d7941f35e81f1f18b2
|
@@ -280,10 +280,10 @@ module Google
|
|
280
280
|
# @param order_by [::String]
|
281
281
|
# Field to use to sort the list.
|
282
282
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
283
|
-
# @yieldparam result [::Google::Cloud::NetworkManagement::V1::
|
283
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::NetworkManagement::V1::ConnectivityTest>]
|
284
284
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
285
285
|
#
|
286
|
-
# @return [::Google::Cloud::NetworkManagement::V1::
|
286
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::NetworkManagement::V1::ConnectivityTest>]
|
287
287
|
#
|
288
288
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
289
289
|
#
|
@@ -335,7 +335,9 @@ module Google
|
|
335
335
|
retry_policy: @config.retry_policy
|
336
336
|
|
337
337
|
@reachability_service_stub.list_connectivity_tests request, options do |result, operation|
|
338
|
+
result = ::Gapic::Rest::PagedEnumerable.new @reachability_service_stub, :list_connectivity_tests, "resources", request, result, options
|
338
339
|
yield result, operation if block_given?
|
340
|
+
throw :response, result
|
339
341
|
end
|
340
342
|
rescue ::Gapic::Rest::Error => e
|
341
343
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -259,10 +259,10 @@ module Google
|
|
259
259
|
# @param order_by [::String]
|
260
260
|
# Optional. Field to use to sort the list.
|
261
261
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
262
|
-
# @yieldparam result [::Google::Cloud::NetworkManagement::V1::
|
262
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::NetworkManagement::V1::VpcFlowLogsConfig>]
|
263
263
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
264
264
|
#
|
265
|
-
# @return [::Google::Cloud::NetworkManagement::V1::
|
265
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::NetworkManagement::V1::VpcFlowLogsConfig>]
|
266
266
|
#
|
267
267
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
268
268
|
#
|
@@ -314,7 +314,9 @@ module Google
|
|
314
314
|
retry_policy: @config.retry_policy
|
315
315
|
|
316
316
|
@vpc_flow_logs_service_stub.list_vpc_flow_logs_configs request, options do |result, operation|
|
317
|
+
result = ::Gapic::Rest::PagedEnumerable.new @vpc_flow_logs_service_stub, :list_vpc_flow_logs_configs, "vpc_flow_logs_configs", request, result, options
|
317
318
|
yield result, operation if block_given?
|
319
|
+
throw :response, result
|
318
320
|
end
|
319
321
|
rescue ::Gapic::Rest::Error => e
|
320
322
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -409,6 +409,14 @@ module Google
|
|
409
409
|
# @return [::Array<::String>]
|
410
410
|
# An allowlist of the fully qualified names of RPCs that should be included
|
411
411
|
# on public client surfaces.
|
412
|
+
# @!attribute [rw] generate_omitted_as_internal
|
413
|
+
# @return [::Boolean]
|
414
|
+
# Setting this to true indicates to the client generators that methods
|
415
|
+
# that would be excluded from the generation should instead be generated
|
416
|
+
# in a way that indicates these methods should not be consumed by
|
417
|
+
# end users. How this is expressed is up to individual language
|
418
|
+
# implementations to decide. Some examples may be: added annotations,
|
419
|
+
# obfuscated identifiers, or other language idiomatic patterns.
|
412
420
|
class SelectiveGapicGeneration
|
413
421
|
include ::Google::Protobuf::MessageExts
|
414
422
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-network_management-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-02-07 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gapic-common
|
@@ -164,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
164
|
- !ruby/object:Gem::Version
|
165
165
|
version: '0'
|
166
166
|
requirements: []
|
167
|
-
rubygems_version: 3.6.
|
167
|
+
rubygems_version: 3.6.3
|
168
168
|
specification_version: 4
|
169
169
|
summary: The Network Management API provides a collection of network performance monitoring
|
170
170
|
and diagnostic capabilities.
|