Class: Google::Apis::NetworkmanagementV1::LoadBalancerBackend

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/networkmanagement_v1/classes.rb,
generated/google/apis/networkmanagement_v1/representations.rb,
generated/google/apis/networkmanagement_v1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LoadBalancerBackend

Returns a new instance of LoadBalancerBackend.



842
843
844
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 842

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#display_nameString

Name of a Compute Engine instance or network endpoint. Corresponds to the JSON property displayName

Returns:

  • (String)


820
821
822
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 820

def display_name
  @display_name
end

#health_check_allowing_firewall_rulesArray<String>

A list of firewall rule URIs allowing probes from health check IP ranges. Corresponds to the JSON property healthCheckAllowingFirewallRules

Returns:

  • (Array<String>)


825
826
827
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 825

def health_check_allowing_firewall_rules
  @health_check_allowing_firewall_rules
end

#health_check_blocking_firewall_rulesArray<String>

A list of firewall rule URIs blocking probes from health check IP ranges. Corresponds to the JSON property healthCheckBlockingFirewallRules

Returns:

  • (Array<String>)


830
831
832
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 830

def health_check_blocking_firewall_rules
  @health_check_blocking_firewall_rules
end

#health_check_firewall_stateString

State of the health check firewall configuration. Corresponds to the JSON property healthCheckFirewallState

Returns:

  • (String)


835
836
837
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 835

def health_check_firewall_state
  @health_check_firewall_state
end

#uriString

URI of a Compute Engine instance or network endpoint. Corresponds to the JSON property uri

Returns:

  • (String)


840
841
842
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 840

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



847
848
849
850
851
852
853
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 847

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