google-apis-networkmanagement_v1 0.47.0 → 0.49.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: fa5f2912f8c801cfdbd640bc6df36b298436fca67a49cd5c39f0a62419b01816
|
4
|
+
data.tar.gz: abf85e14ed11ce255ef7b9e3eb478778e2ccfb15df08fc8146d5fecd448ddeb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ad6dd77ebfad1de5170c91e6453538263babfc55a0118d9e92d5b5406bfd43c1faa18df85c767a63dae42a3c9498c65abb232f5bf69ed3ed3625c9c7b134b52
|
7
|
+
data.tar.gz: b962ff11f3c35cabec175c83db5f3892cea5e8c01a6cd28e1d2bf85e1bf7719600795a3def0379074ec95f55366be06a54d6e35fd563143d9e1e3e7c45a8276e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
2
2
|
|
3
|
+
### v0.49.0 (2024-09-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240918
|
6
|
+
|
7
|
+
### v0.48.0 (2024-09-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240911
|
10
|
+
|
3
11
|
### v0.47.0 (2024-09-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240905
|
@@ -779,6 +779,16 @@ module Google
|
|
779
779
|
# @return [String]
|
780
780
|
attr_accessor :project_id
|
781
781
|
|
782
|
+
# A [Redis Cluster](https://cloud.google.com/memorystore/docs/cluster) URI.
|
783
|
+
# Corresponds to the JSON property `redisCluster`
|
784
|
+
# @return [String]
|
785
|
+
attr_accessor :redis_cluster
|
786
|
+
|
787
|
+
# A [Redis Instance](https://cloud.google.com/memorystore/docs/redis) URI.
|
788
|
+
# Corresponds to the JSON property `redisInstance`
|
789
|
+
# @return [String]
|
790
|
+
attr_accessor :redis_instance
|
791
|
+
|
782
792
|
def initialize(**args)
|
783
793
|
update!(**args)
|
784
794
|
end
|
@@ -800,6 +810,8 @@ module Google
|
|
800
810
|
@network_type = args[:network_type] if args.key?(:network_type)
|
801
811
|
@port = args[:port] if args.key?(:port)
|
802
812
|
@project_id = args[:project_id] if args.key?(:project_id)
|
813
|
+
@redis_cluster = args[:redis_cluster] if args.key?(:redis_cluster)
|
814
|
+
@redis_instance = args[:redis_instance] if args.key?(:redis_instance)
|
803
815
|
end
|
804
816
|
end
|
805
817
|
|
@@ -1685,7 +1697,8 @@ module Google
|
|
1685
1697
|
end
|
1686
1698
|
end
|
1687
1699
|
|
1688
|
-
# For display only. Metadata associated with a Compute Engine network.
|
1700
|
+
# For display only. Metadata associated with a Compute Engine network. Next ID:
|
1701
|
+
# 7
|
1689
1702
|
class NetworkInfo
|
1690
1703
|
include Google::Apis::Core::Hashable
|
1691
1704
|
|
@@ -1694,11 +1707,21 @@ module Google
|
|
1694
1707
|
# @return [String]
|
1695
1708
|
attr_accessor :display_name
|
1696
1709
|
|
1697
|
-
# The IP range
|
1710
|
+
# The IP range of the subnet matching the source IP address of the test.
|
1698
1711
|
# Corresponds to the JSON property `matchedIpRange`
|
1699
1712
|
# @return [String]
|
1700
1713
|
attr_accessor :matched_ip_range
|
1701
1714
|
|
1715
|
+
# URI of the subnet matching the source IP address of the test.
|
1716
|
+
# Corresponds to the JSON property `matchedSubnetUri`
|
1717
|
+
# @return [String]
|
1718
|
+
attr_accessor :matched_subnet_uri
|
1719
|
+
|
1720
|
+
# The region of the subnet matching the source IP address of the test.
|
1721
|
+
# Corresponds to the JSON property `region`
|
1722
|
+
# @return [String]
|
1723
|
+
attr_accessor :region
|
1724
|
+
|
1702
1725
|
# URI of a Compute Engine network.
|
1703
1726
|
# Corresponds to the JSON property `uri`
|
1704
1727
|
# @return [String]
|
@@ -1712,6 +1735,8 @@ module Google
|
|
1712
1735
|
def update!(**args)
|
1713
1736
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1714
1737
|
@matched_ip_range = args[:matched_ip_range] if args.key?(:matched_ip_range)
|
1738
|
+
@matched_subnet_uri = args[:matched_subnet_uri] if args.key?(:matched_subnet_uri)
|
1739
|
+
@region = args[:region] if args.key?(:region)
|
1715
1740
|
@uri = args[:uri] if args.key?(:uri)
|
1716
1741
|
end
|
1717
1742
|
end
|
@@ -2247,6 +2272,19 @@ module Google
|
|
2247
2272
|
class RouteInfo
|
2248
2273
|
include Google::Apis::Core::Hashable
|
2249
2274
|
|
2275
|
+
# For advertised routes, the URI of their next hop, i.e. the URI of the hybrid
|
2276
|
+
# endpoint (VPN tunnel, Interconnect attachment, NCC router appliance) the
|
2277
|
+
# advertised prefix is advertised through, or URI of the source peered network.
|
2278
|
+
# Corresponds to the JSON property `advertisedRouteNextHopUri`
|
2279
|
+
# @return [String]
|
2280
|
+
attr_accessor :advertised_route_next_hop_uri
|
2281
|
+
|
2282
|
+
# For advertised dynamic routes, the URI of the Cloud Router that advertised the
|
2283
|
+
# corresponding IP prefix.
|
2284
|
+
# Corresponds to the JSON property `advertisedRouteSourceRouterUri`
|
2285
|
+
# @return [String]
|
2286
|
+
attr_accessor :advertised_route_source_router_uri
|
2287
|
+
|
2250
2288
|
# Destination IP range of the route.
|
2251
2289
|
# Corresponds to the JSON property `destIpRange`
|
2252
2290
|
# @return [String]
|
@@ -2302,6 +2340,11 @@ module Google
|
|
2302
2340
|
# @return [Array<String>]
|
2303
2341
|
attr_accessor :protocols
|
2304
2342
|
|
2343
|
+
# Region of the route (if applicable).
|
2344
|
+
# Corresponds to the JSON property `region`
|
2345
|
+
# @return [String]
|
2346
|
+
attr_accessor :region
|
2347
|
+
|
2305
2348
|
# Indicates where route is applicable.
|
2306
2349
|
# Corresponds to the JSON property `routeScope`
|
2307
2350
|
# @return [String]
|
@@ -2322,9 +2365,7 @@ module Google
|
|
2322
2365
|
# @return [Array<String>]
|
2323
2366
|
attr_accessor :src_port_ranges
|
2324
2367
|
|
2325
|
-
# URI of a route
|
2326
|
-
# an URI. Advertised route from Google Cloud VPC to on-premises network also
|
2327
|
-
# does not have an URI.
|
2368
|
+
# URI of a route (if applicable).
|
2328
2369
|
# Corresponds to the JSON property `uri`
|
2329
2370
|
# @return [String]
|
2330
2371
|
attr_accessor :uri
|
@@ -2335,6 +2376,8 @@ module Google
|
|
2335
2376
|
|
2336
2377
|
# Update properties of this object
|
2337
2378
|
def update!(**args)
|
2379
|
+
@advertised_route_next_hop_uri = args[:advertised_route_next_hop_uri] if args.key?(:advertised_route_next_hop_uri)
|
2380
|
+
@advertised_route_source_router_uri = args[:advertised_route_source_router_uri] if args.key?(:advertised_route_source_router_uri)
|
2338
2381
|
@dest_ip_range = args[:dest_ip_range] if args.key?(:dest_ip_range)
|
2339
2382
|
@dest_port_ranges = args[:dest_port_ranges] if args.key?(:dest_port_ranges)
|
2340
2383
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -2346,6 +2389,7 @@ module Google
|
|
2346
2389
|
@next_hop_type = args[:next_hop_type] if args.key?(:next_hop_type)
|
2347
2390
|
@priority = args[:priority] if args.key?(:priority)
|
2348
2391
|
@protocols = args[:protocols] if args.key?(:protocols)
|
2392
|
+
@region = args[:region] if args.key?(:region)
|
2349
2393
|
@route_scope = args[:route_scope] if args.key?(:route_scope)
|
2350
2394
|
@route_type = args[:route_type] if args.key?(:route_type)
|
2351
2395
|
@src_ip_range = args[:src_ip_range] if args.key?(:src_ip_range)
|
@@ -2575,7 +2619,8 @@ module Google
|
|
2575
2619
|
# @return [Google::Apis::NetworkmanagementV1::NatInfo]
|
2576
2620
|
attr_accessor :nat
|
2577
2621
|
|
2578
|
-
# For display only. Metadata associated with a Compute Engine network.
|
2622
|
+
# For display only. Metadata associated with a Compute Engine network. Next ID:
|
2623
|
+
# 7
|
2579
2624
|
# Corresponds to the JSON property `network`
|
2580
2625
|
# @return [Google::Apis::NetworkmanagementV1::NetworkInfo]
|
2581
2626
|
attr_accessor :network
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkmanagementV1
|
18
18
|
# Version of the google-apis-networkmanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.49.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 = "20240918"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -555,6 +555,8 @@ module Google
|
|
555
555
|
property :network_type, as: 'networkType'
|
556
556
|
property :port, as: 'port'
|
557
557
|
property :project_id, as: 'projectId'
|
558
|
+
property :redis_cluster, as: 'redisCluster'
|
559
|
+
property :redis_instance, as: 'redisInstance'
|
558
560
|
end
|
559
561
|
end
|
560
562
|
|
@@ -776,6 +778,8 @@ module Google
|
|
776
778
|
class Representation < Google::Apis::Core::JsonRepresentation
|
777
779
|
property :display_name, as: 'displayName'
|
778
780
|
property :matched_ip_range, as: 'matchedIpRange'
|
781
|
+
property :matched_subnet_uri, as: 'matchedSubnetUri'
|
782
|
+
property :region, as: 'region'
|
779
783
|
property :uri, as: 'uri'
|
780
784
|
end
|
781
785
|
end
|
@@ -898,6 +902,8 @@ module Google
|
|
898
902
|
class RouteInfo
|
899
903
|
# @private
|
900
904
|
class Representation < Google::Apis::Core::JsonRepresentation
|
905
|
+
property :advertised_route_next_hop_uri, as: 'advertisedRouteNextHopUri'
|
906
|
+
property :advertised_route_source_router_uri, as: 'advertisedRouteSourceRouterUri'
|
901
907
|
property :dest_ip_range, as: 'destIpRange'
|
902
908
|
collection :dest_port_ranges, as: 'destPortRanges'
|
903
909
|
property :display_name, as: 'displayName'
|
@@ -909,6 +915,7 @@ module Google
|
|
909
915
|
property :next_hop_type, as: 'nextHopType'
|
910
916
|
property :priority, as: 'priority'
|
911
917
|
collection :protocols, as: 'protocols'
|
918
|
+
property :region, as: 'region'
|
912
919
|
property :route_scope, as: 'routeScope'
|
913
920
|
property :route_type, as: 'routeType'
|
914
921
|
property :src_ip_range, as: 'srcIpRange'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkmanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.49.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: 2024-09-
|
11
|
+
date: 2024-09-29 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.49.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|