google-apis-networkmanagement_v1 0.46.0 → 0.48.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: dc195da5c57487f19965a28423a267fc46970d3b93eee85139f150c40d069644
4
- data.tar.gz: 98f500eb26ebaf76de529377f12b716f5c19b7b17e4f2b829bc41255defa22cb
3
+ metadata.gz: 79005375c3b553af588e8369c475941b119a232722a16cb061aada6484febb6e
4
+ data.tar.gz: 2dc6e09ab38bbc0e69316eabe1718c72276204e49c2b4434ddac33b43eb5c70d
5
5
  SHA512:
6
- metadata.gz: 9ef8d7bd4bc3997180e511b585383c88e246ad6f2190c5b1e610335c90025d7f2603d77e26a8d610e3ee791e73ea4a8f6d256cf9aa675bb16fca56111199f944
7
- data.tar.gz: 19db8efd01b356b91bd49c6fb42147098bac9fac331a1fd0d4f79a4f2055d8a8f19e6febb0d0a7441103073b680200a219a8b1372e34810139c82a77aec380f3
6
+ metadata.gz: 9bc7108821c9d7c1e280f5f27e4e27502a71b101457832910aa15c16ef04dfec54b1d0d4e3bd858a5c397d3790acda1835dd2d34c64c196e20c292ac0d8a4942
7
+ data.tar.gz: 6f5a8e41c8c6937286779ff8bea1c6cba11021ad037bd352e8c466ee2baebafe5e63848d1729edb51f1b07b67f56102f9f6c664ed58fc380535e2bff81e7713b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.48.0 (2024-09-22)
4
+
5
+ * Regenerated from discovery document revision 20240911
6
+
7
+ ### v0.47.0 (2024-09-15)
8
+
9
+ * Regenerated from discovery document revision 20240905
10
+
3
11
  ### v0.46.0 (2024-09-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20240821
@@ -1685,7 +1685,8 @@ module Google
1685
1685
  end
1686
1686
  end
1687
1687
 
1688
- # For display only. Metadata associated with a Compute Engine network.
1688
+ # For display only. Metadata associated with a Compute Engine network. Next ID:
1689
+ # 7
1689
1690
  class NetworkInfo
1690
1691
  include Google::Apis::Core::Hashable
1691
1692
 
@@ -1694,11 +1695,21 @@ module Google
1694
1695
  # @return [String]
1695
1696
  attr_accessor :display_name
1696
1697
 
1697
- # The IP range that matches the test.
1698
+ # The IP range of the subnet matching the source IP address of the test.
1698
1699
  # Corresponds to the JSON property `matchedIpRange`
1699
1700
  # @return [String]
1700
1701
  attr_accessor :matched_ip_range
1701
1702
 
1703
+ # URI of the subnet matching the source IP address of the test.
1704
+ # Corresponds to the JSON property `matchedSubnetUri`
1705
+ # @return [String]
1706
+ attr_accessor :matched_subnet_uri
1707
+
1708
+ # The region of the subnet matching the source IP address of the test.
1709
+ # Corresponds to the JSON property `region`
1710
+ # @return [String]
1711
+ attr_accessor :region
1712
+
1702
1713
  # URI of a Compute Engine network.
1703
1714
  # Corresponds to the JSON property `uri`
1704
1715
  # @return [String]
@@ -1712,6 +1723,8 @@ module Google
1712
1723
  def update!(**args)
1713
1724
  @display_name = args[:display_name] if args.key?(:display_name)
1714
1725
  @matched_ip_range = args[:matched_ip_range] if args.key?(:matched_ip_range)
1726
+ @matched_subnet_uri = args[:matched_subnet_uri] if args.key?(:matched_subnet_uri)
1727
+ @region = args[:region] if args.key?(:region)
1715
1728
  @uri = args[:uri] if args.key?(:uri)
1716
1729
  end
1717
1730
  end
@@ -2129,6 +2142,58 @@ module Google
2129
2142
  end
2130
2143
  end
2131
2144
 
2145
+ # For display only. Metadata associated with a Redis Cluster.
2146
+ class RedisClusterInfo
2147
+ include Google::Apis::Core::Hashable
2148
+
2149
+ # Discovery endpoint IP address of a Redis Cluster.
2150
+ # Corresponds to the JSON property `discoveryEndpointIpAddress`
2151
+ # @return [String]
2152
+ attr_accessor :discovery_endpoint_ip_address
2153
+
2154
+ # Name of a Redis Cluster.
2155
+ # Corresponds to the JSON property `displayName`
2156
+ # @return [String]
2157
+ attr_accessor :display_name
2158
+
2159
+ # Name of the region in which the Redis Cluster is defined. For example, "us-
2160
+ # central1".
2161
+ # Corresponds to the JSON property `location`
2162
+ # @return [String]
2163
+ attr_accessor :location
2164
+
2165
+ # URI of a Redis Cluster network in format "projects/`project_id`/global/
2166
+ # networks/`network_id`".
2167
+ # Corresponds to the JSON property `networkUri`
2168
+ # @return [String]
2169
+ attr_accessor :network_uri
2170
+
2171
+ # Secondary endpoint IP address of a Redis Cluster.
2172
+ # Corresponds to the JSON property `secondaryEndpointIpAddress`
2173
+ # @return [String]
2174
+ attr_accessor :secondary_endpoint_ip_address
2175
+
2176
+ # URI of a Redis Cluster in format "projects/`project_id`/locations/`location`/
2177
+ # clusters/`cluster_id`"
2178
+ # Corresponds to the JSON property `uri`
2179
+ # @return [String]
2180
+ attr_accessor :uri
2181
+
2182
+ def initialize(**args)
2183
+ update!(**args)
2184
+ end
2185
+
2186
+ # Update properties of this object
2187
+ def update!(**args)
2188
+ @discovery_endpoint_ip_address = args[:discovery_endpoint_ip_address] if args.key?(:discovery_endpoint_ip_address)
2189
+ @display_name = args[:display_name] if args.key?(:display_name)
2190
+ @location = args[:location] if args.key?(:location)
2191
+ @network_uri = args[:network_uri] if args.key?(:network_uri)
2192
+ @secondary_endpoint_ip_address = args[:secondary_endpoint_ip_address] if args.key?(:secondary_endpoint_ip_address)
2193
+ @uri = args[:uri] if args.key?(:uri)
2194
+ end
2195
+ end
2196
+
2132
2197
  # For display only. Metadata associated with a Cloud Redis Instance.
2133
2198
  class RedisInstanceInfo
2134
2199
  include Google::Apis::Core::Hashable
@@ -2195,6 +2260,19 @@ module Google
2195
2260
  class RouteInfo
2196
2261
  include Google::Apis::Core::Hashable
2197
2262
 
2263
+ # For advertised routes, the URI of their next hop, i.e. the URI of the hybrid
2264
+ # endpoint (VPN tunnel, Interconnect attachment, NCC router appliance) the
2265
+ # advertised prefix is advertised through, or URI of the source peered network.
2266
+ # Corresponds to the JSON property `advertisedRouteNextHopUri`
2267
+ # @return [String]
2268
+ attr_accessor :advertised_route_next_hop_uri
2269
+
2270
+ # For advertised dynamic routes, the URI of the Cloud Router that advertised the
2271
+ # corresponding IP prefix.
2272
+ # Corresponds to the JSON property `advertisedRouteSourceRouterUri`
2273
+ # @return [String]
2274
+ attr_accessor :advertised_route_source_router_uri
2275
+
2198
2276
  # Destination IP range of the route.
2199
2277
  # Corresponds to the JSON property `destIpRange`
2200
2278
  # @return [String]
@@ -2250,6 +2328,11 @@ module Google
2250
2328
  # @return [Array<String>]
2251
2329
  attr_accessor :protocols
2252
2330
 
2331
+ # Region of the route (if applicable).
2332
+ # Corresponds to the JSON property `region`
2333
+ # @return [String]
2334
+ attr_accessor :region
2335
+
2253
2336
  # Indicates where route is applicable.
2254
2337
  # Corresponds to the JSON property `routeScope`
2255
2338
  # @return [String]
@@ -2270,9 +2353,7 @@ module Google
2270
2353
  # @return [Array<String>]
2271
2354
  attr_accessor :src_port_ranges
2272
2355
 
2273
- # URI of a route. Dynamic, peering static and peering dynamic routes do not have
2274
- # an URI. Advertised route from Google Cloud VPC to on-premises network also
2275
- # does not have an URI.
2356
+ # URI of a route (if applicable).
2276
2357
  # Corresponds to the JSON property `uri`
2277
2358
  # @return [String]
2278
2359
  attr_accessor :uri
@@ -2283,6 +2364,8 @@ module Google
2283
2364
 
2284
2365
  # Update properties of this object
2285
2366
  def update!(**args)
2367
+ @advertised_route_next_hop_uri = args[:advertised_route_next_hop_uri] if args.key?(:advertised_route_next_hop_uri)
2368
+ @advertised_route_source_router_uri = args[:advertised_route_source_router_uri] if args.key?(:advertised_route_source_router_uri)
2286
2369
  @dest_ip_range = args[:dest_ip_range] if args.key?(:dest_ip_range)
2287
2370
  @dest_port_ranges = args[:dest_port_ranges] if args.key?(:dest_port_ranges)
2288
2371
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -2294,6 +2377,7 @@ module Google
2294
2377
  @next_hop_type = args[:next_hop_type] if args.key?(:next_hop_type)
2295
2378
  @priority = args[:priority] if args.key?(:priority)
2296
2379
  @protocols = args[:protocols] if args.key?(:protocols)
2380
+ @region = args[:region] if args.key?(:region)
2297
2381
  @route_scope = args[:route_scope] if args.key?(:route_scope)
2298
2382
  @route_type = args[:route_type] if args.key?(:route_type)
2299
2383
  @src_ip_range = args[:src_ip_range] if args.key?(:src_ip_range)
@@ -2523,7 +2607,8 @@ module Google
2523
2607
  # @return [Google::Apis::NetworkmanagementV1::NatInfo]
2524
2608
  attr_accessor :nat
2525
2609
 
2526
- # For display only. Metadata associated with a Compute Engine network.
2610
+ # For display only. Metadata associated with a Compute Engine network. Next ID:
2611
+ # 7
2527
2612
  # Corresponds to the JSON property `network`
2528
2613
  # @return [Google::Apis::NetworkmanagementV1::NetworkInfo]
2529
2614
  attr_accessor :network
@@ -2538,6 +2623,11 @@ module Google
2538
2623
  # @return [Google::Apis::NetworkmanagementV1::ProxyConnectionInfo]
2539
2624
  attr_accessor :proxy_connection
2540
2625
 
2626
+ # For display only. Metadata associated with a Redis Cluster.
2627
+ # Corresponds to the JSON property `redisCluster`
2628
+ # @return [Google::Apis::NetworkmanagementV1::RedisClusterInfo]
2629
+ attr_accessor :redis_cluster
2630
+
2541
2631
  # For display only. Metadata associated with a Cloud Redis Instance.
2542
2632
  # Corresponds to the JSON property `redisInstance`
2543
2633
  # @return [Google::Apis::NetworkmanagementV1::RedisInstanceInfo]
@@ -2607,6 +2697,7 @@ module Google
2607
2697
  @network = args[:network] if args.key?(:network)
2608
2698
  @project_id = args[:project_id] if args.key?(:project_id)
2609
2699
  @proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
2700
+ @redis_cluster = args[:redis_cluster] if args.key?(:redis_cluster)
2610
2701
  @redis_instance = args[:redis_instance] if args.key?(:redis_instance)
2611
2702
  @route = args[:route] if args.key?(:route)
2612
2703
  @serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
@@ -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.46.0"
19
+ GEM_VERSION = "0.48.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 = "20240821"
25
+ REVISION = "20240911"
26
26
  end
27
27
  end
28
28
  end
@@ -280,6 +280,12 @@ module Google
280
280
  include Google::Apis::Core::JsonObjectSupport
281
281
  end
282
282
 
283
+ class RedisClusterInfo
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
283
289
  class RedisInstanceInfo
284
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
291
 
@@ -770,6 +776,8 @@ module Google
770
776
  class Representation < Google::Apis::Core::JsonRepresentation
771
777
  property :display_name, as: 'displayName'
772
778
  property :matched_ip_range, as: 'matchedIpRange'
779
+ property :matched_subnet_uri, as: 'matchedSubnetUri'
780
+ property :region, as: 'region'
773
781
  property :uri, as: 'uri'
774
782
  end
775
783
  end
@@ -859,6 +867,18 @@ module Google
859
867
  end
860
868
  end
861
869
 
870
+ class RedisClusterInfo
871
+ # @private
872
+ class Representation < Google::Apis::Core::JsonRepresentation
873
+ property :discovery_endpoint_ip_address, as: 'discoveryEndpointIpAddress'
874
+ property :display_name, as: 'displayName'
875
+ property :location, as: 'location'
876
+ property :network_uri, as: 'networkUri'
877
+ property :secondary_endpoint_ip_address, as: 'secondaryEndpointIpAddress'
878
+ property :uri, as: 'uri'
879
+ end
880
+ end
881
+
862
882
  class RedisInstanceInfo
863
883
  # @private
864
884
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -880,6 +900,8 @@ module Google
880
900
  class RouteInfo
881
901
  # @private
882
902
  class Representation < Google::Apis::Core::JsonRepresentation
903
+ property :advertised_route_next_hop_uri, as: 'advertisedRouteNextHopUri'
904
+ property :advertised_route_source_router_uri, as: 'advertisedRouteSourceRouterUri'
883
905
  property :dest_ip_range, as: 'destIpRange'
884
906
  collection :dest_port_ranges, as: 'destPortRanges'
885
907
  property :display_name, as: 'displayName'
@@ -891,6 +913,7 @@ module Google
891
913
  property :next_hop_type, as: 'nextHopType'
892
914
  property :priority, as: 'priority'
893
915
  collection :protocols, as: 'protocols'
916
+ property :region, as: 'region'
894
917
  property :route_scope, as: 'routeScope'
895
918
  property :route_type, as: 'routeType'
896
919
  property :src_ip_range, as: 'srcIpRange'
@@ -968,6 +991,8 @@ module Google
968
991
  property :project_id, as: 'projectId'
969
992
  property :proxy_connection, as: 'proxyConnection', class: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo::Representation
970
993
 
994
+ property :redis_cluster, as: 'redisCluster', class: Google::Apis::NetworkmanagementV1::RedisClusterInfo, decorator: Google::Apis::NetworkmanagementV1::RedisClusterInfo::Representation
995
+
971
996
  property :redis_instance, as: 'redisInstance', class: Google::Apis::NetworkmanagementV1::RedisInstanceInfo, decorator: Google::Apis::NetworkmanagementV1::RedisInstanceInfo::Representation
972
997
 
973
998
  property :route, as: 'route', class: Google::Apis::NetworkmanagementV1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1::RouteInfo::Representation
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.46.0
4
+ version: 0.48.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-01 00:00:00.000000000 Z
11
+ date: 2024-09-22 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.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.48.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: []