Class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RrSetRoutingPolicyLoadBalancerTarget

Returns a new instance of RrSetRoutingPolicyLoadBalancerTarget.



2160
2161
2162
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2160

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

Instance Attribute Details

#ip_addressString

The frontend IP address of the Load Balancer to health check. Corresponds to the JSON property ipAddress

Returns:

  • (String)


2119
2120
2121
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2119

def ip_address
  @ip_address
end

#ip_protocolString

Corresponds to the JSON property ipProtocol

Returns:

  • (String)


2124
2125
2126
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2124

def ip_protocol
  @ip_protocol
end

#kindString

Corresponds to the JSON property kind

Returns:

  • (String)


2129
2130
2131
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2129

def kind
  @kind
end

#load_balancer_typeString

The type of Load Balancer specified by this target. Must match the configuration of the Load Balancer located at the LoadBalancerTarget's IP address/port and region. Corresponds to the JSON property loadBalancerType

Returns:

  • (String)


2136
2137
2138
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2136

def load_balancer_type
  @load_balancer_type
end

#network_urlString

The fully qualified url of the network on which the ILB is present. This should be formatted like https://www.googleapis.com/compute/v1/projects/` project/global/networks/network Corresponds to the JSON propertynetworkUrl`

Returns:

  • (String)


2143
2144
2145
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2143

def network_url
  @network_url
end

#portString

The configured port of the Load Balancer. Corresponds to the JSON property port

Returns:

  • (String)


2148
2149
2150
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2148

def port
  @port
end

#projectString

The project ID in which the ILB exists. Corresponds to the JSON property project

Returns:

  • (String)


2153
2154
2155
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2153

def project
  @project
end

#regionString

The region in which the ILB exists. Corresponds to the JSON property region

Returns:

  • (String)


2158
2159
2160
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2158

def region
  @region
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 2165

def update!(**args)
  @ip_address = args[:ip_address] if args.key?(:ip_address)
  @ip_protocol = args[:ip_protocol] if args.key?(:ip_protocol)
  @kind = args[:kind] if args.key?(:kind)
  @load_balancer_type = args[:load_balancer_type] if args.key?(:load_balancer_type)
  @network_url = args[:network_url] if args.key?(:network_url)
  @port = args[:port] if args.key?(:port)
  @project = args[:project] if args.key?(:project)
  @region = args[:region] if args.key?(:region)
end