View Source GoogleApi.Domains.V1beta1.Model.GlueRecord (google_api_domains v0.11.0)

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.

Attributes

  • hostName (type: String.t, default: nil) - Required. Domain name of the host in Punycode format.
  • ipv4Addresses (type: list(String.t), default: nil) - 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.
  • ipv6Addresses (type: list(String.t), default: nil) - 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.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.Domains.V1beta1.Model.GlueRecord{
  hostName: String.t() | nil,
  ipv4Addresses: [String.t()] | nil,
  ipv6Addresses: [String.t()] | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.