-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1262 from anuchandy/dns-fluent-2
[Ready for review] Dns Zone fluent implementation
- Loading branch information
Showing
57 changed files
with
4,272 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ARecordSet.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.microsoft.azure.management.dns; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* An immutable client-side representation of a A (Ipv4) record set in Azure Dns Zone. | ||
*/ | ||
public interface ARecordSet extends DnsRecordSet { | ||
/** | ||
* @return the Ipv4 addresses of A records in this record set | ||
*/ | ||
List<String> ipv4Addresses(); | ||
} |
14 changes: 14 additions & 0 deletions
14
azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/ARecordSets.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.microsoft.azure.management.dns; | ||
|
||
import com.microsoft.azure.management.apigeneration.Fluent; | ||
import com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingByName; | ||
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsListing; | ||
|
||
/** | ||
* Entry point to A record sets in a Dns zone. | ||
*/ | ||
@Fluent | ||
public interface ARecordSets extends | ||
SupportsListing<ARecordSet>, | ||
SupportsGettingByName<ARecordSet> { | ||
} |
13 changes: 13 additions & 0 deletions
13
azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/AaaaRecordSet.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.microsoft.azure.management.dns; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* An immutable client-side representation of a Aaaa (Ipv6) record set in Azure Dns Zone. | ||
*/ | ||
public interface AaaaRecordSet extends DnsRecordSet { | ||
/** | ||
* @return the IPv6 addresses of Aaaa records in this record set | ||
*/ | ||
List<String> ipv6Addresses(); | ||
} |
14 changes: 14 additions & 0 deletions
14
azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/AaaaRecordSets.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.microsoft.azure.management.dns; | ||
|
||
import com.microsoft.azure.management.apigeneration.Fluent; | ||
import com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingByName; | ||
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsListing; | ||
|
||
/** | ||
* Entry point to Aaaa record sets in a Dns zone. | ||
*/ | ||
@Fluent | ||
public interface AaaaRecordSets extends | ||
SupportsListing<AaaaRecordSet>, | ||
SupportsGettingByName<AaaaRecordSet> { | ||
} |
11 changes: 11 additions & 0 deletions
11
azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CnameRecordSet.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.microsoft.azure.management.dns; | ||
|
||
/** | ||
* An immutable client-side representation of a CName (canonical name) record set in Azure Dns Zone. | ||
*/ | ||
public interface CnameRecordSet extends DnsRecordSet { | ||
/** | ||
* @return the canonical name (without a terminating dot) of CName record in this record set | ||
*/ | ||
String canonicalName(); | ||
} |
14 changes: 14 additions & 0 deletions
14
azure-mgmt-dns/src/main/java/com/microsoft/azure/management/dns/CnameRecordSets.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.microsoft.azure.management.dns; | ||
|
||
import com.microsoft.azure.management.apigeneration.Fluent; | ||
import com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsGettingByName; | ||
import com.microsoft.azure.management.resources.fluentcore.collection.SupportsListing; | ||
|
||
/** | ||
* Entry point to Cname record sets in a Dns zone. | ||
*/ | ||
@Fluent | ||
public interface CnameRecordSets extends | ||
SupportsListing<CnameRecordSet>, | ||
SupportsGettingByName<CnameRecordSet> { | ||
} |
Oops, something went wrong.