forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.NET SDK Resource Provider:'StorageSync' (Azure#5596)
REST Spec PR 'Azure/azure-rest-api-specs#5210' REST Spec PR Author 'anpint' REST Spec PR Last commit
- Loading branch information
Showing
12 changed files
with
385 additions
and
369 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!--This file and it's contents are updated at build time moving or editing might result in build failure. Take due deligence while editing this file--> | ||
<PropertyGroup> | ||
<AzureApiTag>StorageSync_2018-10-01;</AzureApiTag> | ||
<AzureApiTag>StorageSync_2019-02-01;</AzureApiTag> | ||
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags> | ||
</PropertyGroup> | ||
</Project> |
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
71 changes: 71 additions & 0 deletions
71
src/SDKs/StorageSync/Management.StorageSync/Generated/Models/FilesNotSyncingError.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,71 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.Management.StorageSync.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// Files not syncing error object | ||
/// </summary> | ||
public partial class FilesNotSyncingError | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the FilesNotSyncingError class. | ||
/// </summary> | ||
public FilesNotSyncingError() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the FilesNotSyncingError class. | ||
/// </summary> | ||
/// <param name="errorCode">Error code (HResult)</param> | ||
/// <param name="persistentCount">Count of persistent files not syncing | ||
/// with the specified error code</param> | ||
/// <param name="transientCount">Count of transient files not syncing | ||
/// with the specified error code</param> | ||
public FilesNotSyncingError(int? errorCode = default(int?), long? persistentCount = default(long?), long? transientCount = default(long?)) | ||
{ | ||
ErrorCode = errorCode; | ||
PersistentCount = persistentCount; | ||
TransientCount = transientCount; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets error code (HResult) | ||
/// </summary> | ||
[JsonProperty(PropertyName = "errorCode")] | ||
public int? ErrorCode { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets count of persistent files not syncing with the specified error | ||
/// code | ||
/// </summary> | ||
[JsonProperty(PropertyName = "persistentCount")] | ||
public long? PersistentCount { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets count of transient files not syncing with the specified error | ||
/// code | ||
/// </summary> | ||
[JsonProperty(PropertyName = "transientCount")] | ||
public long? TransientCount { get; private set; } | ||
|
||
} | ||
} |
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
143 changes: 0 additions & 143 deletions
143
src/SDKs/StorageSync/Management.StorageSync/Generated/Models/ServerEndpointHealth.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.