class Google::Apis::NetworkmanagementV1beta1::LoadBalancerBackend
For display only. Metadata associated with a specific load balancer backend.
Attributes
Name of a Compute Engine instance or network endpoint. Corresponds to the JSON property `displayName` @return [String]
A list of firewall rule URIs allowing probes from health check IP ranges. Corresponds to the JSON property `healthCheckAllowingFirewallRules` @return [Array<String>]
A list of firewall rule URIs blocking probes from health check IP ranges. Corresponds to the JSON property `healthCheckBlockingFirewallRules` @return [Array<String>]
State of the health check firewall configuration. Corresponds to the JSON property `healthCheckFirewallState` @return [String]
URI of a Compute Engine instance or network endpoint. Corresponds to the JSON property `uri` @return [String]
Public Class Methods
# File lib/google/apis/networkmanagement_v1beta1/classes.rb, line 1007 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/networkmanagement_v1beta1/classes.rb, line 1012 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @health_check_allowing_firewall_rules = args[:health_check_allowing_firewall_rules] if args.key?(:health_check_allowing_firewall_rules) @health_check_blocking_firewall_rules = args[:health_check_blocking_firewall_rules] if args.key?(:health_check_blocking_firewall_rules) @health_check_firewall_state = args[:health_check_firewall_state] if args.key?(:health_check_firewall_state) @uri = args[:uri] if args.key?(:uri) end