diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ARecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ARecord.java index 3da437b20ff..d0216d37cbf 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ARecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ARecord.java @@ -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 */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/AaaaRecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/AaaaRecord.java index fff80bdd708..539e51b9d8f 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/AaaaRecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/AaaaRecord.java @@ -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 */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CaaRecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CaaRecord.java index b7046ac8979..8794b0ec5fc 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CaaRecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CaaRecord.java @@ -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 */ @@ -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. @@ -53,7 +53,7 @@ public CaaRecord withFlags(Integer flags) { } /** - * Get the tag value. + * Get the tag for this CAA record. * * @return the tag value */ @@ -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. @@ -73,7 +73,7 @@ public CaaRecord withTag(String tag) { } /** - * Get the value value. + * Get the value for this CAA record. * * @return the value value */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CnameRecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CnameRecord.java index deb9ccdb3b5..56e5b58e597 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CnameRecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CnameRecord.java @@ -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 */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/MxRecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/MxRecord.java index ed3ecc2e193..88952da13c2 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/MxRecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/MxRecord.java @@ -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 */ @@ -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. @@ -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 */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/NsRecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/NsRecord.java index 882447cecef..9e4eca55350 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/NsRecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/NsRecord.java @@ -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 */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/PtrRecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/PtrRecord.java index 154a256f467..ae97e95ea5c 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/PtrRecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/PtrRecord.java @@ -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 */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/RecordSetUpdateParameters.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/RecordSetUpdateParameters.java index b9d4c1671f6..4512ff32cc8 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/RecordSetUpdateParameters.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/RecordSetUpdateParameters.java @@ -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 */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SoaRecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SoaRecord.java index 369f6a170b8..274e345ba95 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SoaRecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SoaRecord.java @@ -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 */ @@ -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. @@ -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 */ @@ -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. @@ -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 */ @@ -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. @@ -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 */ @@ -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. @@ -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 */ @@ -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. @@ -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 */ @@ -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. @@ -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 */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SrvRecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SrvRecord.java index 591a6e0a1cb..202dbfed70c 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SrvRecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SrvRecord.java @@ -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 */ @@ -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. @@ -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 */ @@ -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. @@ -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 */ @@ -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. @@ -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 */ @@ -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. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SubResource.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SubResource.java index 22a22e18b9a..61eba253fe2 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SubResource.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/SubResource.java @@ -21,7 +21,7 @@ public class SubResource { private String id; /** - * Get the id value. + * Get resource Id. * * @return the id value */ @@ -30,7 +30,7 @@ public String id() { } /** - * Set the id value. + * Set resource Id. * * @param id the id value to set * @return the SubResource object itself. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/TxtRecord.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/TxtRecord.java index 7ec0496a13a..3fad74fca5a 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/TxtRecord.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/TxtRecord.java @@ -22,7 +22,7 @@ public class TxtRecord { private List value; /** - * Get the value value. + * Get the text value of this TXT record. * * @return the value value */ @@ -31,7 +31,7 @@ public List value() { } /** - * Set the value value. + * Set the text value of this TXT record. * * @param value the value value to set * @return the TxtRecord object itself. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ZoneUpdate.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ZoneUpdate.java index 316eec0e569..813c2268d38 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ZoneUpdate.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ZoneUpdate.java @@ -22,7 +22,7 @@ public class ZoneUpdate { private Map tags; /** - * Get the tags value. + * Get resource tags. * * @return the tags value */ @@ -31,7 +31,7 @@ public Map tags() { } /** - * Set the tags value. + * Set resource tags. * * @param tags the tags value to set * @return the ZoneUpdate object itself. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/RecordSetInner.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/RecordSetInner.java index 03cbfc5dee1..2157fe06de1 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/RecordSetInner.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/RecordSetInner.java @@ -132,7 +132,7 @@ public class RecordSetInner { private List caaRecords; /** - * Get the id value. + * Get the ID of the record set. * * @return the id value */ @@ -141,7 +141,7 @@ public String id() { } /** - * Get the name value. + * Get the name of the record set. * * @return the name value */ @@ -150,7 +150,7 @@ public String name() { } /** - * Get the type value. + * Get the type of the record set. * * @return the type value */ @@ -159,7 +159,7 @@ public String type() { } /** - * Get the etag value. + * Get the etag of the record set. * * @return the etag value */ @@ -168,7 +168,7 @@ public String etag() { } /** - * Set the etag value. + * Set the etag of the record set. * * @param etag the etag value to set * @return the RecordSetInner object itself. @@ -179,7 +179,7 @@ public RecordSetInner withEtag(String etag) { } /** - * Get the metadata value. + * Get the metadata attached to the record set. * * @return the metadata value */ @@ -188,7 +188,7 @@ public Map metadata() { } /** - * Set the metadata value. + * Set the metadata attached to the record set. * * @param metadata the metadata value to set * @return the RecordSetInner object itself. @@ -199,7 +199,7 @@ public RecordSetInner withMetadata(Map metadata) { } /** - * Get the tTL value. + * Get the TTL (time-to-live) of the records in the record set. * * @return the tTL value */ @@ -208,7 +208,7 @@ public Long tTL() { } /** - * Set the tTL value. + * Set the TTL (time-to-live) of the records in the record set. * * @param tTL the tTL value to set * @return the RecordSetInner object itself. @@ -219,7 +219,7 @@ public RecordSetInner withTTL(Long tTL) { } /** - * Get the fqdn value. + * Get fully qualified domain name of the record set. * * @return the fqdn value */ @@ -228,7 +228,7 @@ public String fqdn() { } /** - * Get the aRecords value. + * Get the list of A records in the record set. * * @return the aRecords value */ @@ -237,7 +237,7 @@ public List aRecords() { } /** - * Set the aRecords value. + * Set the list of A records in the record set. * * @param aRecords the aRecords value to set * @return the RecordSetInner object itself. @@ -248,7 +248,7 @@ public RecordSetInner withARecords(List aRecords) { } /** - * Get the aaaaRecords value. + * Get the list of AAAA records in the record set. * * @return the aaaaRecords value */ @@ -257,7 +257,7 @@ public List aaaaRecords() { } /** - * Set the aaaaRecords value. + * Set the list of AAAA records in the record set. * * @param aaaaRecords the aaaaRecords value to set * @return the RecordSetInner object itself. @@ -268,7 +268,7 @@ public RecordSetInner withAaaaRecords(List aaaaRecords) { } /** - * Get the mxRecords value. + * Get the list of MX records in the record set. * * @return the mxRecords value */ @@ -277,7 +277,7 @@ public List mxRecords() { } /** - * Set the mxRecords value. + * Set the list of MX records in the record set. * * @param mxRecords the mxRecords value to set * @return the RecordSetInner object itself. @@ -288,7 +288,7 @@ public RecordSetInner withMxRecords(List mxRecords) { } /** - * Get the nsRecords value. + * Get the list of NS records in the record set. * * @return the nsRecords value */ @@ -297,7 +297,7 @@ public List nsRecords() { } /** - * Set the nsRecords value. + * Set the list of NS records in the record set. * * @param nsRecords the nsRecords value to set * @return the RecordSetInner object itself. @@ -308,7 +308,7 @@ public RecordSetInner withNsRecords(List nsRecords) { } /** - * Get the ptrRecords value. + * Get the list of PTR records in the record set. * * @return the ptrRecords value */ @@ -317,7 +317,7 @@ public List ptrRecords() { } /** - * Set the ptrRecords value. + * Set the list of PTR records in the record set. * * @param ptrRecords the ptrRecords value to set * @return the RecordSetInner object itself. @@ -328,7 +328,7 @@ public RecordSetInner withPtrRecords(List ptrRecords) { } /** - * Get the srvRecords value. + * Get the list of SRV records in the record set. * * @return the srvRecords value */ @@ -337,7 +337,7 @@ public List srvRecords() { } /** - * Set the srvRecords value. + * Set the list of SRV records in the record set. * * @param srvRecords the srvRecords value to set * @return the RecordSetInner object itself. @@ -348,7 +348,7 @@ public RecordSetInner withSrvRecords(List srvRecords) { } /** - * Get the txtRecords value. + * Get the list of TXT records in the record set. * * @return the txtRecords value */ @@ -357,7 +357,7 @@ public List txtRecords() { } /** - * Set the txtRecords value. + * Set the list of TXT records in the record set. * * @param txtRecords the txtRecords value to set * @return the RecordSetInner object itself. @@ -368,7 +368,7 @@ public RecordSetInner withTxtRecords(List txtRecords) { } /** - * Get the cnameRecord value. + * Get the CNAME record in the record set. * * @return the cnameRecord value */ @@ -377,7 +377,7 @@ public CnameRecord cnameRecord() { } /** - * Set the cnameRecord value. + * Set the CNAME record in the record set. * * @param cnameRecord the cnameRecord value to set * @return the RecordSetInner object itself. @@ -388,7 +388,7 @@ public RecordSetInner withCnameRecord(CnameRecord cnameRecord) { } /** - * Get the soaRecord value. + * Get the SOA record in the record set. * * @return the soaRecord value */ @@ -397,7 +397,7 @@ public SoaRecord soaRecord() { } /** - * Set the soaRecord value. + * Set the SOA record in the record set. * * @param soaRecord the soaRecord value to set * @return the RecordSetInner object itself. @@ -408,7 +408,7 @@ public RecordSetInner withSoaRecord(SoaRecord soaRecord) { } /** - * Get the caaRecords value. + * Get the list of CAA records in the record set. * * @return the caaRecords value */ @@ -417,7 +417,7 @@ public List caaRecords() { } /** - * Set the caaRecords value. + * Set the list of CAA records in the record set. * * @param caaRecords the caaRecords value to set * @return the RecordSetInner object itself. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/RecordSetsInner.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/RecordSetsInner.java index 98ad28dd923..8a641a1caaf 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/RecordSetsInner.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/RecordSetsInner.java @@ -108,7 +108,7 @@ interface RecordSetsService { /** * Updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -125,7 +125,7 @@ public RecordSetInner update(String resourceGroupName, String zoneName, String r /** * Updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -141,7 +141,7 @@ public ServiceFuture updateAsync(String resourceGroupName, Strin /** * Updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -161,7 +161,7 @@ public RecordSetInner call(ServiceResponse response) { /** * Updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -210,7 +210,7 @@ public Observable> call(Response r /** * Updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -228,7 +228,7 @@ public RecordSetInner update(String resourceGroupName, String zoneName, String r /** * Updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -245,7 +245,7 @@ public ServiceFuture updateAsync(String resourceGroupName, Strin /** * Updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -266,7 +266,7 @@ public RecordSetInner call(ServiceResponse response) { /** * Updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -322,7 +322,7 @@ private ServiceResponse updateDelegate(Response re /** * Creates or updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA can be updated but not created (they are created when the DNS zone is created). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -339,7 +339,7 @@ public RecordSetInner createOrUpdate(String resourceGroupName, String zoneName, /** * Creates or updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA can be updated but not created (they are created when the DNS zone is created). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -355,7 +355,7 @@ public ServiceFuture createOrUpdateAsync(String resourceGroupNam /** * Creates or updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA can be updated but not created (they are created when the DNS zone is created). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -375,7 +375,7 @@ public RecordSetInner call(ServiceResponse response) { /** * Creates or updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA can be updated but not created (they are created when the DNS zone is created). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -425,7 +425,7 @@ public Observable> call(Response r /** * Creates or updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA can be updated but not created (they are created when the DNS zone is created). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -444,7 +444,7 @@ public RecordSetInner createOrUpdate(String resourceGroupName, String zoneName, /** * Creates or updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA can be updated but not created (they are created when the DNS zone is created). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -462,7 +462,7 @@ public ServiceFuture createOrUpdateAsync(String resourceGroupNam /** * Creates or updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA can be updated but not created (they are created when the DNS zone is created). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -484,7 +484,7 @@ public RecordSetInner call(ServiceResponse response) { /** * Creates or updates a record set within a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA can be updated but not created (they are created when the DNS zone is created). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -542,7 +542,7 @@ private ServiceResponse createOrUpdateDelegate(Response deleteAsync(String resourceGroupName, String zoneName /** * Deletes a record set from a DNS zone. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be deleted (they are deleted when the DNS zone is deleted). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -591,7 +591,7 @@ public Void call(ServiceResponse response) { /** * Deletes a record set from a DNS zone. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be deleted (they are deleted when the DNS zone is deleted). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -635,7 +635,7 @@ public Observable> call(Response response) { /** * Deletes a record set from a DNS zone. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be deleted (they are deleted when the DNS zone is deleted). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -651,7 +651,7 @@ public void delete(String resourceGroupName, String zoneName, String relativeRec /** * Deletes a record set from a DNS zone. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be deleted (they are deleted when the DNS zone is deleted). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -667,7 +667,7 @@ public ServiceFuture deleteAsync(String resourceGroupName, String zoneName /** * Deletes a record set from a DNS zone. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be deleted (they are deleted when the DNS zone is deleted). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -687,7 +687,7 @@ public Void call(ServiceResponse response) { /** * Deletes a record set from a DNS zone. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Record sets of type SOA cannot be deleted (they are deleted when the DNS zone is deleted). Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -739,7 +739,7 @@ private ServiceResponse deleteDelegate(Response response) th /** * Gets a record set. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -755,7 +755,7 @@ public RecordSetInner get(String resourceGroupName, String zoneName, String rela /** * Gets a record set. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -770,7 +770,7 @@ public ServiceFuture getAsync(String resourceGroupName, String z /** * Gets a record set. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -789,7 +789,7 @@ public RecordSetInner call(ServiceResponse response) { /** * Gets a record set. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param relativeRecordSetName The name of the record set, relative to the name of the zone. * @param recordType The type of DNS record in this record set. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' @@ -839,7 +839,7 @@ private ServiceResponse getDelegate(Response respo /** * Lists the record sets of a specified type in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' * @throws IllegalArgumentException thrown if parameters fail the validation @@ -860,7 +860,7 @@ public Page nextPage(String nextPageLink) { /** * Lists the record sets of a specified type in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' * @param serviceCallback the async ServiceCallback to handle successful and failed responses. @@ -882,7 +882,7 @@ public Observable>> call(String nextPageLin /** * Lists the record sets of a specified type in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' * @throws IllegalArgumentException thrown if parameters fail the validation @@ -901,7 +901,7 @@ public Page call(ServiceResponse> response) /** * Lists the record sets of a specified type in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' * @throws IllegalArgumentException thrown if parameters fail the validation @@ -924,7 +924,7 @@ public Observable>> call(ServiceResponse>> call(Response nextPage(String nextPageLink) { /** * Lists the record sets of a specified type in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. @@ -1012,7 +1012,7 @@ public Observable>> call(String nextPageLin /** * Lists the record sets of a specified type in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. @@ -1033,7 +1033,7 @@ public Page call(ServiceResponse> response) /** * Lists the record sets of a specified type in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. @@ -1058,7 +1058,7 @@ public Observable>> call(ServiceResponse> * @param resourceGroupName The name of the resource group. + ServiceResponse> * @param resourceGroupName The name of the resource group. The name is case insensitive. ServiceResponse> * @param zoneName The name of the DNS zone (without a terminating dot). ServiceResponse> * @param recordType The type of record sets to enumerate. Possible values include: 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'PTR', 'SOA', 'SRV', 'TXT' ServiceResponse> * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. @@ -1106,7 +1106,7 @@ private ServiceResponse> listByTypeDelegate(Response nextPage(String nextPageLink) { /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -1147,7 +1147,7 @@ public Observable>> call(String nextPageLin /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<RecordSetInner> object @@ -1165,7 +1165,7 @@ public Page call(ServiceResponse> response) /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<RecordSetInner> object @@ -1187,7 +1187,7 @@ public Observable>> call(ServiceResponse>> call(Response nextPage(String nextPageLink) { /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @param recordsetnamesuffix The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> @@ -1269,7 +1269,7 @@ public Observable>> call(String nextPageLin /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @param recordsetnamesuffix The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> @@ -1289,7 +1289,7 @@ public Page call(ServiceResponse> response) /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @param recordsetnamesuffix The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> @@ -1313,7 +1313,7 @@ public Observable>> call(ServiceResponse> * @param resourceGroupName The name of the resource group. + ServiceResponse> * @param resourceGroupName The name of the resource group. The name is case insensitive. ServiceResponse> * @param zoneName The name of the DNS zone (without a terminating dot). ServiceResponse> * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. ServiceResponse> * @param recordsetnamesuffix The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> @@ -1357,7 +1357,7 @@ private ServiceResponse> listByDnsZoneDelegate(Response /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server @@ -1377,7 +1377,7 @@ public Page nextPage(String nextPageLink) { /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -1398,7 +1398,7 @@ public Observable>> call(String nextPageLin /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<RecordSetInner> object @@ -1416,7 +1416,7 @@ public Page call(ServiceResponse> response) /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<RecordSetInner> object @@ -1438,7 +1438,7 @@ public Observable>> call(ServiceResponse>> call(Response nextPage(String nextPageLink) { /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @param recordSetNameSuffix The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> @@ -1520,7 +1520,7 @@ public Observable>> call(String nextPageLin /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @param recordSetNameSuffix The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> @@ -1540,7 +1540,7 @@ public Page call(ServiceResponse> response) /** * Lists all record sets in a DNS zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @param recordSetNameSuffix The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> @@ -1564,7 +1564,7 @@ public Observable>> call(ServiceResponse> * @param resourceGroupName The name of the resource group. + ServiceResponse> * @param resourceGroupName The name of the resource group. The name is case insensitive. ServiceResponse> * @param zoneName The name of the DNS zone (without a terminating dot). ServiceResponse> * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. ServiceResponse> * @param recordSetNameSuffix The suffix label of the record set name that has to be used to filter the record set enumerations. If this parameter is specified, Enumeration will return only records that end with .<recordSetNameSuffix> diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/ZoneInner.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/ZoneInner.java index 06591549748..355cfb8c92f 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/ZoneInner.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/ZoneInner.java @@ -70,7 +70,7 @@ public class ZoneInner extends Resource { private List resolutionVirtualNetworks; /** - * Get the etag value. + * Get the etag of the zone. * * @return the etag value */ @@ -79,7 +79,7 @@ public String etag() { } /** - * Set the etag value. + * Set the etag of the zone. * * @param etag the etag value to set * @return the ZoneInner object itself. @@ -90,7 +90,7 @@ public ZoneInner withEtag(String etag) { } /** - * Get the maxNumberOfRecordSets value. + * Get the maximum number of record sets that can be created in this DNS zone. This is a read-only property and any attempt to set this value will be ignored. * * @return the maxNumberOfRecordSets value */ @@ -99,7 +99,7 @@ public Long maxNumberOfRecordSets() { } /** - * Get the numberOfRecordSets value. + * Get the current number of record sets in this DNS zone. This is a read-only property and any attempt to set this value will be ignored. * * @return the numberOfRecordSets value */ @@ -108,7 +108,7 @@ public Long numberOfRecordSets() { } /** - * Get the nameServers value. + * Get the name servers for this DNS zone. This is a read-only property and any attempt to set this value will be ignored. * * @return the nameServers value */ @@ -117,7 +117,7 @@ public List nameServers() { } /** - * Get the zoneType value. + * Get the type of this DNS zone (Public or Private). Possible values include: 'Public', 'Private'. * * @return the zoneType value */ @@ -126,7 +126,7 @@ public ZoneType zoneType() { } /** - * Set the zoneType value. + * Set the type of this DNS zone (Public or Private). Possible values include: 'Public', 'Private'. * * @param zoneType the zoneType value to set * @return the ZoneInner object itself. @@ -137,7 +137,7 @@ public ZoneInner withZoneType(ZoneType zoneType) { } /** - * Get the registrationVirtualNetworks value. + * Get a list of references to virtual networks that register hostnames in this DNS zone. This is a only when ZoneType is Private. * * @return the registrationVirtualNetworks value */ @@ -146,7 +146,7 @@ public List registrationVirtualNetworks() { } /** - * Set the registrationVirtualNetworks value. + * Set a list of references to virtual networks that register hostnames in this DNS zone. This is a only when ZoneType is Private. * * @param registrationVirtualNetworks the registrationVirtualNetworks value to set * @return the ZoneInner object itself. @@ -157,7 +157,7 @@ public ZoneInner withRegistrationVirtualNetworks(List registrationV } /** - * Get the resolutionVirtualNetworks value. + * Get a list of references to virtual networks that resolve records in this DNS zone. This is a only when ZoneType is Private. * * @return the resolutionVirtualNetworks value */ @@ -166,7 +166,7 @@ public List resolutionVirtualNetworks() { } /** - * Set the resolutionVirtualNetworks value. + * Set a list of references to virtual networks that resolve records in this DNS zone. This is a only when ZoneType is Private. * * @param resolutionVirtualNetworks the resolutionVirtualNetworks value to set * @return the ZoneInner object itself. diff --git a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/ZonesInner.java b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/ZonesInner.java index 25c70e49a94..9e07ba95995 100644 --- a/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/ZonesInner.java +++ b/azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/implementation/ZonesInner.java @@ -108,7 +108,7 @@ interface ZonesService { /** * Creates or updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param parameters Parameters supplied to the CreateOrUpdate operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -123,7 +123,7 @@ public ZoneInner createOrUpdate(String resourceGroupName, String zoneName, ZoneI /** * Creates or updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param parameters Parameters supplied to the CreateOrUpdate operation. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. @@ -137,7 +137,7 @@ public ServiceFuture createOrUpdateAsync(String resourceGroupName, St /** * Creates or updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param parameters Parameters supplied to the CreateOrUpdate operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -155,7 +155,7 @@ public ZoneInner call(ServiceResponse response) { /** * Creates or updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param parameters Parameters supplied to the CreateOrUpdate operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -197,7 +197,7 @@ public Observable> call(Response respon /** * Creates or updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param parameters Parameters supplied to the CreateOrUpdate operation. * @param ifMatch The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwritting any concurrent changes. @@ -214,7 +214,7 @@ public ZoneInner createOrUpdate(String resourceGroupName, String zoneName, ZoneI /** * Creates or updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param parameters Parameters supplied to the CreateOrUpdate operation. * @param ifMatch The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwritting any concurrent changes. @@ -230,7 +230,7 @@ public ServiceFuture createOrUpdateAsync(String resourceGroupName, St /** * Creates or updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param parameters Parameters supplied to the CreateOrUpdate operation. * @param ifMatch The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwritting any concurrent changes. @@ -250,7 +250,7 @@ public ZoneInner call(ServiceResponse response) { /** * Creates or updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param parameters Parameters supplied to the CreateOrUpdate operation. * @param ifMatch The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwritting any concurrent changes. @@ -300,7 +300,7 @@ private ServiceResponse createOrUpdateDelegate(Response /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server @@ -313,7 +313,7 @@ public void delete(String resourceGroupName, String zoneName) { /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -326,7 +326,7 @@ public ServiceFuture deleteAsync(String resourceGroupName, String zoneName /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request @@ -343,7 +343,7 @@ public Void call(ServiceResponse response) { /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request @@ -368,7 +368,7 @@ public Observable> deleteWithServiceResponseAsync(String r /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always delete the current zone. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -382,7 +382,7 @@ public void delete(String resourceGroupName, String zoneName, String ifMatch) { /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always delete the current zone. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. @@ -396,7 +396,7 @@ public ServiceFuture deleteAsync(String resourceGroupName, String zoneName /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always delete the current zone. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -414,7 +414,7 @@ public Void call(ServiceResponse response) { /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always delete the current zone. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -440,7 +440,7 @@ public Observable> deleteWithServiceResponseAsync(String r /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server @@ -453,7 +453,7 @@ public void beginDelete(String resourceGroupName, String zoneName) { /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -466,7 +466,7 @@ public ServiceFuture beginDeleteAsync(String resourceGroupName, String zon /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. @@ -483,7 +483,7 @@ public Void call(ServiceResponse response) { /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. @@ -519,7 +519,7 @@ public Observable> call(Response response) { /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always delete the current zone. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -533,7 +533,7 @@ public void beginDelete(String resourceGroupName, String zoneName, String ifMatc /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always delete the current zone. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. @@ -547,7 +547,7 @@ public ServiceFuture beginDeleteAsync(String resourceGroupName, String zon /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always delete the current zone. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -565,7 +565,7 @@ public Void call(ServiceResponse response) { /** * Deletes a DNS zone. WARNING: All DNS records in the zone will also be deleted. This operation cannot be undone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always delete the current zone. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -610,7 +610,7 @@ private ServiceResponse beginDeleteDelegate(Response respons /** * Gets a DNS zone. Retrieves the zone properties, but not the record sets within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server @@ -624,7 +624,7 @@ public ZoneInner getByResourceGroup(String resourceGroupName, String zoneName) { /** * Gets a DNS zone. Retrieves the zone properties, but not the record sets within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -637,7 +637,7 @@ public ServiceFuture getByResourceGroupAsync(String resourceGroupName /** * Gets a DNS zone. Retrieves the zone properties, but not the record sets within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ZoneInner object @@ -654,7 +654,7 @@ public ZoneInner call(ServiceResponse response) { /** * Gets a DNS zone. Retrieves the zone properties, but not the record sets within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ZoneInner object @@ -696,7 +696,7 @@ private ServiceResponse getByResourceGroupDelegate(Response updateAsync(String resourceGroupName, String zon /** * Updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ZoneInner object @@ -740,7 +740,7 @@ public ZoneInner call(ServiceResponse response) { /** * Updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ZoneInner object @@ -779,7 +779,7 @@ public Observable> call(Response respon /** * Updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwritting any concurrent changes. * @param tags Resource tags. @@ -795,7 +795,7 @@ public ZoneInner update(String resourceGroupName, String zoneName, String ifMatc /** * Updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwritting any concurrent changes. * @param tags Resource tags. @@ -810,7 +810,7 @@ public ServiceFuture updateAsync(String resourceGroupName, String zon /** * Updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwritting any concurrent changes. * @param tags Resource tags. @@ -829,7 +829,7 @@ public ZoneInner call(ServiceResponse response) { /** * Updates a DNS zone. Does not modify DNS records within the zone. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param zoneName The name of the DNS zone (without a terminating dot). * @param ifMatch The etag of the DNS zone. Omit this value to always overwrite the current zone. Specify the last-seen etag value to prevent accidentally overwritting any concurrent changes. * @param tags Resource tags. @@ -876,7 +876,7 @@ private ServiceResponse updateDelegate(Response respons /** * Lists the DNS zones within a resource group. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent @@ -895,7 +895,7 @@ public Page nextPage(String nextPageLink) { /** * Lists the DNS zones within a resource group. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object @@ -915,7 +915,7 @@ public Observable>> call(String nextPageLink) { /** * Lists the DNS zones within a resource group. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<ZoneInner> object */ @@ -932,7 +932,7 @@ public Page call(ServiceResponse> response) { /** * Lists the DNS zones within a resource group. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<ZoneInner> object */ @@ -953,7 +953,7 @@ public Observable>> call(ServiceResponse>> call(Response /** * Lists the DNS zones within a resource group. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server @@ -1005,7 +1005,7 @@ public Page nextPage(String nextPageLink) { /** * Lists the DNS zones within a resource group. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -1026,7 +1026,7 @@ public Observable>> call(String nextPageLink) { /** * Lists the DNS zones within a resource group. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<ZoneInner> object @@ -1044,7 +1044,7 @@ public Page call(ServiceResponse> response) { /** * Lists the DNS zones within a resource group. * - * @param resourceGroupName The name of the resource group. + * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<ZoneInner> object @@ -1066,7 +1066,7 @@ public Observable>> call(ServiceResponse> * @param resourceGroupName The name of the resource group. + ServiceResponse> * @param resourceGroupName The name of the resource group. The name is case insensitive. ServiceResponse> * @param top The maximum number of record sets to return. If not specified, returns up to 100 record sets. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList<ZoneInner> object wrapped in {@link ServiceResponse} if successful.