google-apis-networkmanagement_v1beta1 0.51.0 → 0.52.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83a2d3e69738bde30e924b70526af083584beb72b550ab8b4f78fd0c92fb4c64
|
|
4
|
+
data.tar.gz: 00b9660b2adc31175187c852ecec3514e80de8df8f3690bc852b81e5e1c2166e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8ba895c69776717360bbc4d59225130b2de48390ca2f41aad3d5d564b33d47e01942e198fedaee5126a0d0d45ad6d69e0e5a424e002605a8accb369618f9ef4
|
|
7
|
+
data.tar.gz: 97349abecd8a8ee017d67feef4180fff37d754e48afb63948b87c21004c52c41d190bbb8a36e41b9c085258075c1b8870d61eb7e6bfd3fef73b3157998488aa2
|
data/CHANGELOG.md
CHANGED
|
@@ -2332,14 +2332,15 @@ module Google
|
|
|
2332
2332
|
class RouteInfo
|
|
2333
2333
|
include Google::Apis::Core::Hashable
|
|
2334
2334
|
|
|
2335
|
-
# For
|
|
2335
|
+
# For ADVERTISED routes, the URI of their next hop, i.e. the URI of the hybrid
|
|
2336
2336
|
# endpoint (VPN tunnel, Interconnect attachment, NCC router appliance) the
|
|
2337
2337
|
# advertised prefix is advertised through, or URI of the source peered network.
|
|
2338
|
+
# Deprecated in favor of the next_hop_uri field, not used in new tests.
|
|
2338
2339
|
# Corresponds to the JSON property `advertisedRouteNextHopUri`
|
|
2339
2340
|
# @return [String]
|
|
2340
2341
|
attr_accessor :advertised_route_next_hop_uri
|
|
2341
2342
|
|
|
2342
|
-
# For
|
|
2343
|
+
# For ADVERTISED dynamic routes, the URI of the Cloud Router that advertised the
|
|
2343
2344
|
# corresponding IP prefix.
|
|
2344
2345
|
# Corresponds to the JSON property `advertisedRouteSourceRouterUri`
|
|
2345
2346
|
# @return [String]
|
|
@@ -2350,7 +2351,7 @@ module Google
|
|
|
2350
2351
|
# @return [String]
|
|
2351
2352
|
attr_accessor :dest_ip_range
|
|
2352
2353
|
|
|
2353
|
-
# Destination port ranges of the route.
|
|
2354
|
+
# Destination port ranges of the route. POLICY_BASED routes only.
|
|
2354
2355
|
# Corresponds to the JSON property `destPortRanges`
|
|
2355
2356
|
# @return [Array<String>]
|
|
2356
2357
|
attr_accessor :dest_port_ranges
|
|
@@ -2365,47 +2366,82 @@ module Google
|
|
|
2365
2366
|
# @return [Array<String>]
|
|
2366
2367
|
attr_accessor :instance_tags
|
|
2367
2368
|
|
|
2368
|
-
#
|
|
2369
|
+
# For PEERING_SUBNET and PEERING_DYNAMIC routes that are advertised by NCC Hub,
|
|
2370
|
+
# the URI of the corresponding route in NCC Hub's routing table.
|
|
2371
|
+
# Corresponds to the JSON property `nccHubRouteUri`
|
|
2372
|
+
# @return [String]
|
|
2373
|
+
attr_accessor :ncc_hub_route_uri
|
|
2374
|
+
|
|
2375
|
+
# URI of the NCC Hub the route is advertised by. PEERING_SUBNET and
|
|
2376
|
+
# PEERING_DYNAMIC routes that are advertised by NCC Hub only.
|
|
2369
2377
|
# Corresponds to the JSON property `nccHubUri`
|
|
2370
2378
|
# @return [String]
|
|
2371
2379
|
attr_accessor :ncc_hub_uri
|
|
2372
2380
|
|
|
2373
|
-
# URI of
|
|
2381
|
+
# URI of the destination NCC Spoke. PEERING_SUBNET and PEERING_DYNAMIC routes
|
|
2382
|
+
# that are advertised by NCC Hub only.
|
|
2374
2383
|
# Corresponds to the JSON property `nccSpokeUri`
|
|
2375
2384
|
# @return [String]
|
|
2376
2385
|
attr_accessor :ncc_spoke_uri
|
|
2377
2386
|
|
|
2378
|
-
# URI of a
|
|
2387
|
+
# URI of a VPC network where route is located.
|
|
2379
2388
|
# Corresponds to the JSON property `networkUri`
|
|
2380
2389
|
# @return [String]
|
|
2381
2390
|
attr_accessor :network_uri
|
|
2382
2391
|
|
|
2383
|
-
#
|
|
2392
|
+
# String type of the next hop of the route (for example, "VPN tunnel").
|
|
2393
|
+
# Deprecated in favor of the next_hop_type and next_hop_uri fields, not used in
|
|
2394
|
+
# new tests.
|
|
2384
2395
|
# Corresponds to the JSON property `nextHop`
|
|
2385
2396
|
# @return [String]
|
|
2386
2397
|
attr_accessor :next_hop
|
|
2387
2398
|
|
|
2399
|
+
# URI of a VPC network where the next hop resource is located.
|
|
2400
|
+
# Corresponds to the JSON property `nextHopNetworkUri`
|
|
2401
|
+
# @return [String]
|
|
2402
|
+
attr_accessor :next_hop_network_uri
|
|
2403
|
+
|
|
2388
2404
|
# Type of next hop.
|
|
2389
2405
|
# Corresponds to the JSON property `nextHopType`
|
|
2390
2406
|
# @return [String]
|
|
2391
2407
|
attr_accessor :next_hop_type
|
|
2392
2408
|
|
|
2409
|
+
# URI of the next hop resource.
|
|
2410
|
+
# Corresponds to the JSON property `nextHopUri`
|
|
2411
|
+
# @return [String]
|
|
2412
|
+
attr_accessor :next_hop_uri
|
|
2413
|
+
|
|
2414
|
+
# For PEERING_SUBNET, PEERING_STATIC and PEERING_DYNAMIC routes, the name of the
|
|
2415
|
+
# originating SUBNET/STATIC/DYNAMIC route.
|
|
2416
|
+
# Corresponds to the JSON property `originatingRouteDisplayName`
|
|
2417
|
+
# @return [String]
|
|
2418
|
+
attr_accessor :originating_route_display_name
|
|
2419
|
+
|
|
2420
|
+
# For PEERING_SUBNET and PEERING_STATIC routes, the URI of the originating
|
|
2421
|
+
# SUBNET/STATIC route.
|
|
2422
|
+
# Corresponds to the JSON property `originatingRouteUri`
|
|
2423
|
+
# @return [String]
|
|
2424
|
+
attr_accessor :originating_route_uri
|
|
2425
|
+
|
|
2393
2426
|
# Priority of the route.
|
|
2394
2427
|
# Corresponds to the JSON property `priority`
|
|
2395
2428
|
# @return [Fixnum]
|
|
2396
2429
|
attr_accessor :priority
|
|
2397
2430
|
|
|
2398
|
-
# Protocols of the route.
|
|
2431
|
+
# Protocols of the route. POLICY_BASED routes only.
|
|
2399
2432
|
# Corresponds to the JSON property `protocols`
|
|
2400
2433
|
# @return [Array<String>]
|
|
2401
2434
|
attr_accessor :protocols
|
|
2402
2435
|
|
|
2403
|
-
# Region of the route
|
|
2436
|
+
# Region of the route. DYNAMIC, PEERING_DYNAMIC, POLICY_BASED and ADVERTISED
|
|
2437
|
+
# routes only. If set for POLICY_BASED route, this is a region of VLAN
|
|
2438
|
+
# attachments for Cloud Interconnect the route applies to.
|
|
2404
2439
|
# Corresponds to the JSON property `region`
|
|
2405
2440
|
# @return [String]
|
|
2406
2441
|
attr_accessor :region
|
|
2407
2442
|
|
|
2408
|
-
# Indicates where route is applicable.
|
|
2443
|
+
# Indicates where route is applicable. Deprecated, routes with NCC_HUB scope are
|
|
2444
|
+
# not included in the trace in new tests.
|
|
2409
2445
|
# Corresponds to the JSON property `routeScope`
|
|
2410
2446
|
# @return [String]
|
|
2411
2447
|
attr_accessor :route_scope
|
|
@@ -2415,17 +2451,18 @@ module Google
|
|
|
2415
2451
|
# @return [String]
|
|
2416
2452
|
attr_accessor :route_type
|
|
2417
2453
|
|
|
2418
|
-
# Source IP address range of the route.
|
|
2454
|
+
# Source IP address range of the route. POLICY_BASED routes only.
|
|
2419
2455
|
# Corresponds to the JSON property `srcIpRange`
|
|
2420
2456
|
# @return [String]
|
|
2421
2457
|
attr_accessor :src_ip_range
|
|
2422
2458
|
|
|
2423
|
-
# Source port ranges of the route.
|
|
2459
|
+
# Source port ranges of the route. POLICY_BASED routes only.
|
|
2424
2460
|
# Corresponds to the JSON property `srcPortRanges`
|
|
2425
2461
|
# @return [Array<String>]
|
|
2426
2462
|
attr_accessor :src_port_ranges
|
|
2427
2463
|
|
|
2428
|
-
# URI of a route (
|
|
2464
|
+
# URI of a route. SUBNET, STATIC, PEERING_SUBNET (only for peering network) and
|
|
2465
|
+
# POLICY_BASED routes only.
|
|
2429
2466
|
# Corresponds to the JSON property `uri`
|
|
2430
2467
|
# @return [String]
|
|
2431
2468
|
attr_accessor :uri
|
|
@@ -2442,11 +2479,16 @@ module Google
|
|
|
2442
2479
|
@dest_port_ranges = args[:dest_port_ranges] if args.key?(:dest_port_ranges)
|
|
2443
2480
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
2444
2481
|
@instance_tags = args[:instance_tags] if args.key?(:instance_tags)
|
|
2482
|
+
@ncc_hub_route_uri = args[:ncc_hub_route_uri] if args.key?(:ncc_hub_route_uri)
|
|
2445
2483
|
@ncc_hub_uri = args[:ncc_hub_uri] if args.key?(:ncc_hub_uri)
|
|
2446
2484
|
@ncc_spoke_uri = args[:ncc_spoke_uri] if args.key?(:ncc_spoke_uri)
|
|
2447
2485
|
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
2448
2486
|
@next_hop = args[:next_hop] if args.key?(:next_hop)
|
|
2487
|
+
@next_hop_network_uri = args[:next_hop_network_uri] if args.key?(:next_hop_network_uri)
|
|
2449
2488
|
@next_hop_type = args[:next_hop_type] if args.key?(:next_hop_type)
|
|
2489
|
+
@next_hop_uri = args[:next_hop_uri] if args.key?(:next_hop_uri)
|
|
2490
|
+
@originating_route_display_name = args[:originating_route_display_name] if args.key?(:originating_route_display_name)
|
|
2491
|
+
@originating_route_uri = args[:originating_route_uri] if args.key?(:originating_route_uri)
|
|
2450
2492
|
@priority = args[:priority] if args.key?(:priority)
|
|
2451
2493
|
@protocols = args[:protocols] if args.key?(:protocols)
|
|
2452
2494
|
@region = args[:region] if args.key?(:region)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkmanagementV1beta1
|
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.52.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20241210"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -935,11 +935,16 @@ module Google
|
|
|
935
935
|
collection :dest_port_ranges, as: 'destPortRanges'
|
|
936
936
|
property :display_name, as: 'displayName'
|
|
937
937
|
collection :instance_tags, as: 'instanceTags'
|
|
938
|
+
property :ncc_hub_route_uri, as: 'nccHubRouteUri'
|
|
938
939
|
property :ncc_hub_uri, as: 'nccHubUri'
|
|
939
940
|
property :ncc_spoke_uri, as: 'nccSpokeUri'
|
|
940
941
|
property :network_uri, as: 'networkUri'
|
|
941
942
|
property :next_hop, as: 'nextHop'
|
|
943
|
+
property :next_hop_network_uri, as: 'nextHopNetworkUri'
|
|
942
944
|
property :next_hop_type, as: 'nextHopType'
|
|
945
|
+
property :next_hop_uri, as: 'nextHopUri'
|
|
946
|
+
property :originating_route_display_name, as: 'originatingRouteDisplayName'
|
|
947
|
+
property :originating_route_uri, as: 'originatingRouteUri'
|
|
943
948
|
property :priority, as: 'priority'
|
|
944
949
|
collection :protocols, as: 'protocols'
|
|
945
950
|
property :region, as: 'region'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkmanagement_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.52.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:
|
|
11
|
+
date: 2025-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.52.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|