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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns
namespace Dns
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns
namespace Dns
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand Down Expand Up @@ -153,7 +153,7 @@ internal DnsResourceReferenceOperations(DnsManagementClient client)
string _requestContent = null;
if(parameters != null)
{
_requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
_requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
_httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
_httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
}
Expand Down Expand Up @@ -183,7 +183,7 @@ internal DnsResourceReferenceOperations(DnsManagementClient client)
try
{
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject<CloudError>(_responseContent, Client.DeserializationSettings);
CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject<CloudError>(_responseContent, Client.DeserializationSettings);
if (_errorBody != null)
{
ex = new CloudException(_errorBody.Message);
Expand Down Expand Up @@ -225,7 +225,7 @@ internal DnsResourceReferenceOperations(DnsManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
_result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject<DnsResourceReferenceResult>(_responseContent, Client.DeserializationSettings);
_result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject<DnsResourceReferenceResult>(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns
namespace Dns
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns
namespace Dns
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns
namespace Dns
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns
namespace Dns
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand Down Expand Up @@ -45,7 +45,7 @@ public partial interface IRecordSetsOperations
/// <param name='ifMatch'>
/// The etag of the record set. Omit this value to always overwrite the
/// current record set. Specify the last-seen etag value to prevent
/// accidentally overwritting concurrent changes.
/// accidentally overwriting concurrent changes.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
Expand Down Expand Up @@ -87,7 +87,7 @@ public partial interface IRecordSetsOperations
/// <param name='ifMatch'>
/// The etag of the record set. Omit this value to always overwrite the
/// current record set. Specify the last-seen etag value to prevent
/// accidentally overwritting any concurrent changes.
/// accidentally overwriting any concurrent changes.
/// </param>
/// <param name='ifNoneMatch'>
/// Set to '*' to allow a new record set to be created, but to prevent
Expand Down
6 changes: 3 additions & 3 deletions src/SDKs/Dns/Management.Dns/Generated/IZonesOperations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns
namespace Dns
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand Down Expand Up @@ -39,7 +39,7 @@ public partial interface IZonesOperations
/// <param name='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.
/// accidentally overwriting any concurrent changes.
/// </param>
/// <param name='ifNoneMatch'>
/// Set to '*' to allow a new DNS zone to be created, but to prevent
Expand Down Expand Up @@ -127,7 +127,7 @@ public partial interface IZonesOperations
/// <param name='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.
/// accidentally overwriting any concurrent changes.
/// </param>
/// <param name='tags'>
/// Resource tags.
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/ARecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/AaaaRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/CaaRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
Expand All @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.Dns.Models
/// <summary>
/// Represents the properties of the Dns Resource Reference Request.
/// </summary>
[Rest.Serialization.JsonTransformation]
[JsonTransformation]
public partial class DnsResourceReferenceRequest
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
Expand All @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.Dns.Models
/// <summary>
/// Represents the properties of the Dns Resource Reference Result.
/// </summary>
[Rest.Serialization.JsonTransformation]
[JsonTransformation]
public partial class DnsResourceReferenceResult
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/MxRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/NsRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/Page.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/PtrRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
4 changes: 2 additions & 2 deletions src/SDKs/Dns/Management.Dns/Generated/Models/RecordSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand All @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Management.Dns.Models
/// Describes a DNS record set (a collection of DNS records with the same
/// name and type).
/// </summary>
[Rest.Serialization.JsonTransformation]
[JsonTransformation]
public partial class RecordSet : IResource
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/RecordType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/Resource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/SoaRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/SrvRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/TxtRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Collections;
Expand Down
4 changes: 2 additions & 2 deletions src/SDKs/Dns/Management.Dns/Generated/Models/Zone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
Expand All @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.Dns.Models
/// <summary>
/// Describes a DNS zone.
/// </summary>
[Rest.Serialization.JsonTransformation]
[JsonTransformation]
public partial class Zone : Resource
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/ZoneType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Dns/Management.Dns/Generated/Models/ZoneUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// regenerated.
// </auto-generated>

namespace Microsoft.Azure.Management.Dns.Models
namespace Dns.Models
{
using Newtonsoft.Json;
using System.Collections;
Expand Down
Loading