Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class ARecord {
private String ipv4Address;

/**
* Get the ipv4Address value.
* Get the IPv4 address of this A record.
*
* @return the ipv4Address value
*/
Expand All @@ -30,7 +30,7 @@ public String ipv4Address() {
}

/**
* Set the ipv4Address value.
* Set the IPv4 address of this A record.
*
* @param ipv4Address the ipv4Address value to set
* @return the ARecord object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class AaaaRecord {
private String ipv6Address;

/**
* Get the ipv6Address value.
* Get the IPv6 address of this AAAA record.
*
* @return the ipv6Address value
*/
Expand All @@ -30,7 +30,7 @@ public String ipv6Address() {
}

/**
* Set the ipv6Address value.
* Set the IPv6 address of this AAAA record.
*
* @param ipv6Address the ipv6Address value to set
* @return the AaaaRecord object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class CaaRecord {
private String value;

/**
* Get the flags value.
* Get the flags for this CAA record as an integer between 0 and 255.
*
* @return the flags value
*/
Expand All @@ -42,7 +42,7 @@ public Integer flags() {
}

/**
* Set the flags value.
* Set the flags for this CAA record as an integer between 0 and 255.
*
* @param flags the flags value to set
* @return the CaaRecord object itself.
Expand All @@ -53,7 +53,7 @@ public CaaRecord withFlags(Integer flags) {
}

/**
* Get the tag value.
* Get the tag for this CAA record.
*
* @return the tag value
*/
Expand All @@ -62,7 +62,7 @@ public String tag() {
}

/**
* Set the tag value.
* Set the tag for this CAA record.
*
* @param tag the tag value to set
* @return the CaaRecord object itself.
Expand All @@ -73,7 +73,7 @@ public CaaRecord withTag(String tag) {
}

/**
* Get the value value.
* Get the value for this CAA record.
*
* @return the value value
*/
Expand All @@ -82,7 +82,7 @@ public String value() {
}

/**
* Set the value value.
* Set the value for this CAA record.
*
* @param value the value value to set
* @return the CaaRecord object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class CnameRecord {
private String cname;

/**
* Get the cname value.
* Get the canonical name for this CNAME record.
*
* @return the cname value
*/
Expand All @@ -30,7 +30,7 @@ public String cname() {
}

/**
* Set the cname value.
* Set the canonical name for this CNAME record.
*
* @param cname the cname value to set
* @return the CnameRecord object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class MxRecord {
private String exchange;

/**
* Get the preference value.
* Get the preference value for this MX record.
*
* @return the preference value
*/
Expand All @@ -36,7 +36,7 @@ public Integer preference() {
}

/**
* Set the preference value.
* Set the preference value for this MX record.
*
* @param preference the preference value to set
* @return the MxRecord object itself.
Expand All @@ -47,7 +47,7 @@ public MxRecord withPreference(Integer preference) {
}

/**
* Get the exchange value.
* Get the domain name of the mail host for this MX record.
*
* @return the exchange value
*/
Expand All @@ -56,7 +56,7 @@ public String exchange() {
}

/**
* Set the exchange value.
* Set the domain name of the mail host for this MX record.
*
* @param exchange the exchange value to set
* @return the MxRecord object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class NsRecord {
private String nsdname;

/**
* Get the nsdname value.
* Get the name server name for this NS record.
*
* @return the nsdname value
*/
Expand All @@ -30,7 +30,7 @@ public String nsdname() {
}

/**
* Set the nsdname value.
* Set the name server name for this NS record.
*
* @param nsdname the nsdname value to set
* @return the NsRecord object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class PtrRecord {
private String ptrdname;

/**
* Get the ptrdname value.
* Get the PTR target domain name for this PTR record.
*
* @return the ptrdname value
*/
Expand All @@ -30,7 +30,7 @@ public String ptrdname() {
}

/**
* Set the ptrdname value.
* Set the PTR target domain name for this PTR record.
*
* @param ptrdname the ptrdname value to set
* @return the PtrRecord object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class RecordSetUpdateParameters {
private RecordSetInner recordSet;

/**
* Get the recordSet value.
* Get specifies information about the record set being updated.
*
* @return the recordSet value
*/
Expand All @@ -31,7 +31,7 @@ public RecordSetInner recordSet() {
}

/**
* Set the recordSet value.
* Set specifies information about the record set being updated.
*
* @param recordSet the recordSet value to set
* @return the RecordSetUpdateParameters object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class SoaRecord {
private Long minimumTtl;

/**
* Get the host value.
* Get the domain name of the authoritative name server for this SOA record.
*
* @return the host value
*/
Expand All @@ -67,7 +67,7 @@ public String host() {
}

/**
* Set the host value.
* Set the domain name of the authoritative name server for this SOA record.
*
* @param host the host value to set
* @return the SoaRecord object itself.
Expand All @@ -78,7 +78,7 @@ public SoaRecord withHost(String host) {
}

/**
* Get the email value.
* Get the email contact for this SOA record.
*
* @return the email value
*/
Expand All @@ -87,7 +87,7 @@ public String email() {
}

/**
* Set the email value.
* Set the email contact for this SOA record.
*
* @param email the email value to set
* @return the SoaRecord object itself.
Expand All @@ -98,7 +98,7 @@ public SoaRecord withEmail(String email) {
}

/**
* Get the serialNumber value.
* Get the serial number for this SOA record.
*
* @return the serialNumber value
*/
Expand All @@ -107,7 +107,7 @@ public Long serialNumber() {
}

/**
* Set the serialNumber value.
* Set the serial number for this SOA record.
*
* @param serialNumber the serialNumber value to set
* @return the SoaRecord object itself.
Expand All @@ -118,7 +118,7 @@ public SoaRecord withSerialNumber(Long serialNumber) {
}

/**
* Get the refreshTime value.
* Get the refresh value for this SOA record.
*
* @return the refreshTime value
*/
Expand All @@ -127,7 +127,7 @@ public Long refreshTime() {
}

/**
* Set the refreshTime value.
* Set the refresh value for this SOA record.
*
* @param refreshTime the refreshTime value to set
* @return the SoaRecord object itself.
Expand All @@ -138,7 +138,7 @@ public SoaRecord withRefreshTime(Long refreshTime) {
}

/**
* Get the retryTime value.
* Get the retry time for this SOA record.
*
* @return the retryTime value
*/
Expand All @@ -147,7 +147,7 @@ public Long retryTime() {
}

/**
* Set the retryTime value.
* Set the retry time for this SOA record.
*
* @param retryTime the retryTime value to set
* @return the SoaRecord object itself.
Expand All @@ -158,7 +158,7 @@ public SoaRecord withRetryTime(Long retryTime) {
}

/**
* Get the expireTime value.
* Get the expire time for this SOA record.
*
* @return the expireTime value
*/
Expand All @@ -167,7 +167,7 @@ public Long expireTime() {
}

/**
* Set the expireTime value.
* Set the expire time for this SOA record.
*
* @param expireTime the expireTime value to set
* @return the SoaRecord object itself.
Expand All @@ -178,7 +178,7 @@ public SoaRecord withExpireTime(Long expireTime) {
}

/**
* Get the minimumTtl value.
* Get the minimum value for this SOA record. By convention this is used to determine the negative caching duration.
*
* @return the minimumTtl value
*/
Expand All @@ -187,7 +187,7 @@ public Long minimumTtl() {
}

/**
* Set the minimumTtl value.
* Set the minimum value for this SOA record. By convention this is used to determine the negative caching duration.
*
* @param minimumTtl the minimumTtl value to set
* @return the SoaRecord object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class SrvRecord {
private String target;

/**
* Get the priority value.
* Get the priority value for this SRV record.
*
* @return the priority value
*/
Expand All @@ -48,7 +48,7 @@ public Integer priority() {
}

/**
* Set the priority value.
* Set the priority value for this SRV record.
*
* @param priority the priority value to set
* @return the SrvRecord object itself.
Expand All @@ -59,7 +59,7 @@ public SrvRecord withPriority(Integer priority) {
}

/**
* Get the weight value.
* Get the weight value for this SRV record.
*
* @return the weight value
*/
Expand All @@ -68,7 +68,7 @@ public Integer weight() {
}

/**
* Set the weight value.
* Set the weight value for this SRV record.
*
* @param weight the weight value to set
* @return the SrvRecord object itself.
Expand All @@ -79,7 +79,7 @@ public SrvRecord withWeight(Integer weight) {
}

/**
* Get the port value.
* Get the port value for this SRV record.
*
* @return the port value
*/
Expand All @@ -88,7 +88,7 @@ public Integer port() {
}

/**
* Set the port value.
* Set the port value for this SRV record.
*
* @param port the port value to set
* @return the SrvRecord object itself.
Expand All @@ -99,7 +99,7 @@ public SrvRecord withPort(Integer port) {
}

/**
* Get the target value.
* Get the target domain name for this SRV record.
*
* @return the target value
*/
Expand All @@ -108,7 +108,7 @@ public String target() {
}

/**
* Set the target value.
* Set the target domain name for this SRV record.
*
* @param target the target value to set
* @return the SrvRecord object itself.
Expand Down
Loading