class Google::Apis::NetworkmanagementV1::LoadBalancerBackend

For display only. Metadata associated with a specific load balancer backend.

Attributes

display_name[RW]

Name of a Compute Engine instance or network endpoint. Corresponds to the JSON property `displayName` @return [String]

health_check_allowing_firewall_rules[RW]

A list of firewall rule URIs allowing probes from health check IP ranges. Corresponds to the JSON property `healthCheckAllowingFirewallRules` @return [Array<String>]

health_check_blocking_firewall_rules[RW]

A list of firewall rule URIs blocking probes from health check IP ranges. Corresponds to the JSON property `healthCheckBlockingFirewallRules` @return [Array<String>]

health_check_firewall_state[RW]

State of the health check firewall configuration. Corresponds to the JSON property `healthCheckFirewallState` @return [String]

uri[RW]

URI of a Compute Engine instance or network endpoint. Corresponds to the JSON property `uri` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/networkmanagement_v1/classes.rb, line 955
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/networkmanagement_v1/classes.rb, line 960
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