Class: Google::Cloud::Domains::V1beta1::DnsSettings::GlueRecord
- Inherits:
-
Object
- Object
- Google::Cloud::Domains::V1beta1::DnsSettings::GlueRecord
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/domains/v1beta1/domains.rb
Overview
Defines a host on your domain that is a DNS name server for your domain
and/or other domains. Glue records are a way of making the IP address of a
name server known, even when it serves DNS queries for its parent domain.
For example, when ns.example.com
is a name server for example.com
, the
host ns.example.com
must have a glue record to break the circular DNS
reference.
Instance Attribute Summary collapse
-
#host_name ⇒ ::String
Required.
-
#ipv4_addresses ⇒ ::Array<::String>
List of IPv4 addresses corresponding to this host in the standard decimal format (e.g.
198.51.100.1
). -
#ipv6_addresses ⇒ ::Array<::String>
List of IPv6 addresses corresponding to this host in the standard hexadecimal format (e.g.
2001:db8::
).
Instance Attribute Details
#host_name ⇒ ::String
Returns Required. Domain name of the host in Punycode format.
364 365 366 367 |
# File 'proto_docs/google/cloud/domains/v1beta1/domains.rb', line 364 class GlueRecord include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#ipv4_addresses ⇒ ::Array<::String>
Returns List of IPv4 addresses corresponding to this host in the standard decimal
format (e.g. 198.51.100.1
). At least one of ipv4_address
and
ipv6_address
must be set.
364 365 366 367 |
# File 'proto_docs/google/cloud/domains/v1beta1/domains.rb', line 364 class GlueRecord include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#ipv6_addresses ⇒ ::Array<::String>
Returns List of IPv6 addresses corresponding to this host in the standard
hexadecimal format (e.g. 2001:db8::
). At least one of
ipv4_address
and ipv6_address
must be set.
364 365 366 367 |
# File 'proto_docs/google/cloud/domains/v1beta1/domains.rb', line 364 class GlueRecord include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |