-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP: Initial CRUD and List test for record and zone * WIP: Port of cloud issues * WIP: OneTimeTearDown and setup working. No double test runs * WIP: don't make zone twice * WIP: Commit test * WIP: Fix changelog and readme * WIP: Fix yaml * WIP: Fix yml 2 * WIP: Remove unused function * Remove .swp file * Remove SWP file * Update DNS Track 2 test * Add Tests Recordings * Fix Class name * WIP: Update tests * WIP: Make exception test clearner * WIP: Update live test records * Revert json change * Small fixes * WIP: Update SLN * WIP: Dns gen update * Revert "WIP: Dns gen update" This reverts commit 2c0317c. * WIP: make zonetype obsolete * WIP: make zone type readonly * WIP: update test * WIP: Make all private relate fields obsolete * WIP: only change things we want to change * WIP: Update test * WIP: Update test * WIP: update test correctly Co-authored-by: bqauntump <[email protected]>
- Loading branch information
Showing
30 changed files
with
958 additions
and
1,197 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
26 changes: 26 additions & 0 deletions
26
sdk/dns/Azure.ResourceManager.Dns/src/Customization/Models/Zones.cs
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,26 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
// <auto-generated/> | ||
|
||
#nullable disable | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace Azure.ResourceManager.Dns.Models | ||
{ | ||
/// <summary> Describes a DNS zone. </summary> | ||
public partial class Zone : Resource | ||
{ | ||
/// <summary> The type of this DNS zone (Public or Private). </summary> | ||
[Obsolete("Private DNS is not allowed in this API anymore, use the privatedns API")] | ||
public ZoneType? ZoneType { get; } | ||
/// <summary> A list of references to virtual networks that register hostnames in this DNS zone. This is a only when ZoneType is Private. </summary> | ||
[Obsolete("Private DNS is not allowed in this API anymore, use the privatedns API")] | ||
public IList<SubResource> RegistrationVirtualNetworks { get; } | ||
/// <summary> A list of references to virtual networks that resolve records in this DNS zone. This is a only when ZoneType is Private. </summary> | ||
[Obsolete("Private DNS is not allowed in this API anymore, use the privatedns API")] | ||
public IList<SubResource> ResolutionVirtualNetworks { get; } | ||
} | ||
} |
6 changes: 0 additions & 6 deletions
6
sdk/dns/Azure.ResourceManager.Dns/src/Generated/Models/Zone.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.