Skip to content

Commit c102b91

Browse files
author
SDK Automation
committed
Generated from 23bcbdbab81104a92f2f24b59e03438bee900144
1 parent 00cba53 commit c102b91

24 files changed

+398
-224
lines changed

sdk/dns/mgmt-v2016_04_01/pom.xml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
<parent>
1212
<groupId>com.microsoft.azure</groupId>
1313
<artifactId>azure-arm-parent</artifactId>
14-
<version>1.3.0</version>
15-
<relativePath>../../parents/azure-arm-parent</relativePath>
14+
<version>1.1.0</version>
15+
<relativePath>../../../pom.management.xml</relativePath>
1616
</parent>
17-
<artifactId>azure-mgmt-dns</artifactId>
18-
<version>1.0.0-beta-2</version>
17+
<artifactId>azure-mgmt-network</artifactId>
18+
<version>1.0.0-beta</version>
1919
<packaging>jar</packaging>
20-
<name>Microsoft Azure SDK for DNS Management</name>
21-
<description>This package contains Microsoft DNS Management SDK.</description>
22-
<url>https://github.com/Azure/azure-libraries-for-java</url>
20+
<name>Microsoft Azure SDK for Network Management</name>
21+
<description>This package contains Microsoft Network Management SDK.</description>
22+
<url>https://github.com/Azure/azure-sdk-for-java</url>
2323
<licenses>
2424
<license>
2525
<name>The MIT License (MIT)</name>
@@ -28,8 +28,8 @@
2828
</license>
2929
</licenses>
3030
<scm>
31-
<url>scm:git:https://github.com/Azure/azure-libraries-for-java</url>
32-
<connection>scm:git:git@github.com:Azure/azure-libraries-for-java.git</connection>
31+
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
32+
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
3333
<tag>HEAD</tag>
3434
</scm>
3535
<properties>
@@ -71,6 +71,8 @@
7171
<artifactId>azure-arm-client-runtime</artifactId>
7272
<type>test-jar</type>
7373
<scope>test</scope>
74+
<!--Below version for test jar needs to be removed, this will be done as part of v1-runtime 1.6.7-->
75+
<version>1.6.5</version>
7476
</dependency>
7577
</dependencies>
7678
<build>

sdk/dns/mgmt-v2016_04_01/src/main/java/com/microsoft/azure/management/dns/v2016_04_01/ARecord.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class ARecord {
2121
private String ipv4Address;
2222

2323
/**
24-
* Get the ipv4Address value.
24+
* Get the IPv4 address of this A record.
2525
*
2626
* @return the ipv4Address value
2727
*/
@@ -30,7 +30,7 @@ public String ipv4Address() {
3030
}
3131

3232
/**
33-
* Set the ipv4Address value.
33+
* Set the IPv4 address of this A record.
3434
*
3535
* @param ipv4Address the ipv4Address value to set
3636
* @return the ARecord object itself.

sdk/dns/mgmt-v2016_04_01/src/main/java/com/microsoft/azure/management/dns/v2016_04_01/AaaaRecord.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class AaaaRecord {
2121
private String ipv6Address;
2222

2323
/**
24-
* Get the ipv6Address value.
24+
* Get the IPv6 address of this AAAA record.
2525
*
2626
* @return the ipv6Address value
2727
*/
@@ -30,7 +30,7 @@ public String ipv6Address() {
3030
}
3131

3232
/**
33-
* Set the ipv6Address value.
33+
* Set the IPv6 address of this AAAA record.
3434
*
3535
* @param ipv6Address the ipv6Address value to set
3636
* @return the AaaaRecord object itself.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/**
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
*/
8+
9+
package com.microsoft.azure.management.dns.v2016_04_01;
10+
11+
import com.fasterxml.jackson.annotation.JsonProperty;
12+
import com.microsoft.azure.ProxyResource;
13+
14+
/**
15+
* Entity Resource.
16+
* The resource model definition for an Azure Resource Manager resource with an
17+
* etag.
18+
*/
19+
public class AzureEntityResource extends ProxyResource {
20+
/**
21+
* Resource Etag.
22+
*/
23+
@JsonProperty(value = "etag", access = JsonProperty.Access.WRITE_ONLY)
24+
private String etag;
25+
26+
/**
27+
* Get resource Etag.
28+
*
29+
* @return the etag value
30+
*/
31+
public String etag() {
32+
return this.etag;
33+
}
34+
35+
}

sdk/dns/mgmt-v2016_04_01/src/main/java/com/microsoft/azure/management/dns/v2016_04_01/CnameRecord.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class CnameRecord {
2121
private String cname;
2222

2323
/**
24-
* Get the cname value.
24+
* Get the canonical name for this CNAME record.
2525
*
2626
* @return the cname value
2727
*/
@@ -30,7 +30,7 @@ public String cname() {
3030
}
3131

3232
/**
33-
* Set the cname value.
33+
* Set the canonical name for this CNAME record.
3434
*
3535
* @param cname the cname value to set
3636
* @return the CnameRecord object itself.

sdk/dns/mgmt-v2016_04_01/src/main/java/com/microsoft/azure/management/dns/v2016_04_01/MxRecord.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class MxRecord {
2727
private String exchange;
2828

2929
/**
30-
* Get the preference value.
30+
* Get the preference value for this MX record.
3131
*
3232
* @return the preference value
3333
*/
@@ -36,7 +36,7 @@ public Integer preference() {
3636
}
3737

3838
/**
39-
* Set the preference value.
39+
* Set the preference value for this MX record.
4040
*
4141
* @param preference the preference value to set
4242
* @return the MxRecord object itself.
@@ -47,7 +47,7 @@ public MxRecord withPreference(Integer preference) {
4747
}
4848

4949
/**
50-
* Get the exchange value.
50+
* Get the domain name of the mail host for this MX record.
5151
*
5252
* @return the exchange value
5353
*/
@@ -56,7 +56,7 @@ public String exchange() {
5656
}
5757

5858
/**
59-
* Set the exchange value.
59+
* Set the domain name of the mail host for this MX record.
6060
*
6161
* @param exchange the exchange value to set
6262
* @return the MxRecord object itself.

sdk/dns/mgmt-v2016_04_01/src/main/java/com/microsoft/azure/management/dns/v2016_04_01/NsRecord.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class NsRecord {
2121
private String nsdname;
2222

2323
/**
24-
* Get the nsdname value.
24+
* Get the name server name for this NS record.
2525
*
2626
* @return the nsdname value
2727
*/
@@ -30,7 +30,7 @@ public String nsdname() {
3030
}
3131

3232
/**
33-
* Set the nsdname value.
33+
* Set the name server name for this NS record.
3434
*
3535
* @param nsdname the nsdname value to set
3636
* @return the NsRecord object itself.

sdk/dns/mgmt-v2016_04_01/src/main/java/com/microsoft/azure/management/dns/v2016_04_01/PtrRecord.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class PtrRecord {
2121
private String ptrdname;
2222

2323
/**
24-
* Get the ptrdname value.
24+
* Get the PTR target domain name for this PTR record.
2525
*
2626
* @return the ptrdname value
2727
*/
@@ -30,7 +30,7 @@ public String ptrdname() {
3030
}
3131

3232
/**
33-
* Set the ptrdname value.
33+
* Set the PTR target domain name for this PTR record.
3434
*
3535
* @param ptrdname the ptrdname value to set
3636
* @return the PtrRecord object itself.

sdk/dns/mgmt-v2016_04_01/src/main/java/com/microsoft/azure/management/dns/v2016_04_01/RecordSet.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ public interface RecordSet extends HasInner<RecordSetInner>, HasManager<NetworkM
3939
*/
4040
String etag();
4141

42+
/**
43+
* @return the fqdn value.
44+
*/
45+
String fqdn();
46+
4247
/**
4348
* @return the id value.
4449
*/

sdk/dns/mgmt-v2016_04_01/src/main/java/com/microsoft/azure/management/dns/v2016_04_01/RecordSetUpdateParameters.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class RecordSetUpdateParameters {
2222
private RecordSetInner recordSet;
2323

2424
/**
25-
* Get the recordSet value.
25+
* Get specifies information about the record set being updated.
2626
*
2727
* @return the recordSet value
2828
*/
@@ -31,7 +31,7 @@ public RecordSetInner recordSet() {
3131
}
3232

3333
/**
34-
* Set the recordSet value.
34+
* Set specifies information about the record set being updated.
3535
*
3636
* @param recordSet the recordSet value to set
3737
* @return the RecordSetUpdateParameters object itself.

0 commit comments

Comments
 (0)