google-apis-networkmanagement_v1 0.86.0 → 0.87.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: 27ae81cf1485958662702aa16d2340727cf6a0d9d1c268835f61fc71b36ae148
4
- data.tar.gz: 1c7922d1e6d85a0f4bc3296695d54304c0e9a209bdd51d2ec4fd50434b767ac2
3
+ metadata.gz: 9d18156e5e3ed7c3e7edcc81f28b7c77a2394d2a889113feba6d6023071299c1
4
+ data.tar.gz: 7c96db358a2ae68b69e6944645c72f622801e3eb4d93fa76eb6c323315dfd16f
5
5
  SHA512:
6
- metadata.gz: '0759077eed0abead7b63221d10d78e507869874b3808bab14ced81a1d60ec0ea9c058c2f191f7d5f208189cf1137c259da285c891f196eedf770c02cba16ee67'
7
- data.tar.gz: 11f0156b90c175d70da9337edfb044c8b3b977ec7d563e998bf19a609996c7185e2234842d2afcaf06a0f1ba97b4811273596564cb87532f66fe2797372f8082
6
+ metadata.gz: 690c6cd098f1135de91a2671e9cbafeb05a9a129d9546540af6ab1562fd1795639f955ac3c36b5600b53e9cb95012559cad166ffa7afaf74818eb067d098ecaf
7
+ data.tar.gz: ffa5ed6b94d7e8f14040469065b997a2fd9eef9eb598b5147a209cc2c4394ccabd676c74f1044e9fe2111cbd27c2d8395da4accc8b04323045d8165a72caaaad
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.87.0 (2026-08-02)
4
+
5
+ * Regenerated from discovery document revision 20260724
6
+
3
7
  ### v0.86.0 (2026-07-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20260617
@@ -1348,6 +1348,15 @@ module Google
1348
1348
  # @return [String]
1349
1349
  attr_accessor :display_name
1350
1350
 
1351
+ # Output only. State of the firewalls allowing health check traffic to the load
1352
+ # balancer frontend (Envoy proxies). This is the result of the firewall
1353
+ # configuration analysis verifying that health check traffic from required IP
1354
+ # ranges to the the Envoy-based load balancer frontend is allowed by firewall
1355
+ # rules with the load balancer target.
1356
+ # Corresponds to the JSON property `envoyHealthCheckFirewallsConfigState`
1357
+ # @return [String]
1358
+ attr_accessor :envoy_health_check_firewalls_config_state
1359
+
1351
1360
  # Name of the load balancer the forwarding rule belongs to. Empty for forwarding
1352
1361
  # rules not related to load balancers (like PSC forwarding rules).
1353
1362
  # Corresponds to the JSON property `loadBalancerName`
@@ -1411,6 +1420,7 @@ module Google
1411
1420
  # Update properties of this object
1412
1421
  def update!(**args)
1413
1422
  @display_name = args[:display_name] if args.key?(:display_name)
1423
+ @envoy_health_check_firewalls_config_state = args[:envoy_health_check_firewalls_config_state] if args.key?(:envoy_health_check_firewalls_config_state)
1414
1424
  @load_balancer_name = args[:load_balancer_name] if args.key?(:load_balancer_name)
1415
1425
  @matched_port_range = args[:matched_port_range] if args.key?(:matched_port_range)
1416
1426
  @matched_protocol = args[:matched_protocol] if args.key?(:matched_protocol)
@@ -2678,6 +2688,11 @@ module Google
2678
2688
  # @return [String]
2679
2689
  attr_accessor :router_uri
2680
2690
 
2691
+ # The number of the NAT rule that was matched.
2692
+ # Corresponds to the JSON property `ruleNumber`
2693
+ # @return [Fixnum]
2694
+ attr_accessor :rule_number
2695
+
2681
2696
  # Type of NAT.
2682
2697
  # Corresponds to the JSON property `type`
2683
2698
  # @return [String]
@@ -2702,6 +2717,7 @@ module Google
2702
2717
  @old_source_port = args[:old_source_port] if args.key?(:old_source_port)
2703
2718
  @protocol = args[:protocol] if args.key?(:protocol)
2704
2719
  @router_uri = args[:router_uri] if args.key?(:router_uri)
2720
+ @rule_number = args[:rule_number] if args.key?(:rule_number)
2705
2721
  @type = args[:type] if args.key?(:type)
2706
2722
  end
2707
2723
  end
@@ -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.86.0"
19
+ GEM_VERSION = "0.87.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260617"
25
+ REVISION = "20260724"
26
26
  end
27
27
  end
28
28
  end
@@ -858,6 +858,7 @@ module Google
858
858
  # @private
859
859
  class Representation < Google::Apis::Core::JsonRepresentation
860
860
  property :display_name, as: 'displayName'
861
+ property :envoy_health_check_firewalls_config_state, as: 'envoyHealthCheckFirewallsConfigState'
861
862
  property :load_balancer_name, as: 'loadBalancerName'
862
863
  property :matched_port_range, as: 'matchedPortRange'
863
864
  property :matched_protocol, as: 'matchedProtocol'
@@ -1193,6 +1194,7 @@ module Google
1193
1194
  property :old_source_port, as: 'oldSourcePort'
1194
1195
  property :protocol, as: 'protocol'
1195
1196
  property :router_uri, as: 'routerUri'
1197
+ property :rule_number, as: 'ruleNumber'
1196
1198
  property :type, as: 'type'
1197
1199
  end
1198
1200
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.86.0
4
+ version: 0.87.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.86.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.87.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
62
62
  rdoc_options: []
63
63
  require_paths: