Class: Google::Apis::DnsV1::PolicyAlternativeNameServerConfigTargetNameServer

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PolicyAlternativeNameServerConfigTargetNameServer

Returns a new instance of PolicyAlternativeNameServerConfigTargetNameServer.



1707
1708
1709
# File 'lib/google/apis/dns_v1/classes.rb', line 1707

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

Instance Attribute Details

#forwarding_pathString

Forwarding path for this TargetNameServer. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target. Corresponds to the JSON property forwardingPath

Returns:

  • (String)


1689
1690
1691
# File 'lib/google/apis/dns_v1/classes.rb', line 1689

def forwarding_path
  @forwarding_path
end

#ipv4_addressString

IPv4 address to forward queries to. Corresponds to the JSON property ipv4Address

Returns:

  • (String)


1694
1695
1696
# File 'lib/google/apis/dns_v1/classes.rb', line 1694

def ipv4_address
  @ipv4_address
end

#ipv6_addressString

IPv6 address to forward to. Does not accept both fields (ipv4 & ipv6) being populated. Public preview as of November 2022. Corresponds to the JSON property ipv6Address

Returns:

  • (String)


1700
1701
1702
# File 'lib/google/apis/dns_v1/classes.rb', line 1700

def ipv6_address
  @ipv6_address
end

#kindString

Corresponds to the JSON property kind

Returns:

  • (String)


1705
1706
1707
# File 'lib/google/apis/dns_v1/classes.rb', line 1705

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1712
1713
1714
1715
1716
1717
# File 'lib/google/apis/dns_v1/classes.rb', line 1712

def update!(**args)
  @forwarding_path = args[:forwarding_path] if args.key?(:forwarding_path)
  @ipv4_address = args[:ipv4_address] if args.key?(:ipv4_address)
  @ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
  @kind = args[:kind] if args.key?(:kind)
end