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.
[Databox] SDK refresh to support new API version (2019-09-01) (Azure#…
…8219) * SDK refresh to support new API version (#1) * Refreshing SDK with support for new API version * Added recorded sessions to fix CI (Azure#2) * Added recorded tests * Coder review fix * SDK refresh to support new API version (#1) * Refreshing SDK with support for new API version * Added recorded sessions to fix CI (Azure#2) * Added recorded tests * Adding SDK changes * code review fix to downgrade the version * reverting assembly version
- Loading branch information
Showing
84 changed files
with
6,477 additions
and
490 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Installing AutoRest version: latest | ||
AutoRest installed successfully. | ||
Commencing code generation | ||
Generating CSharp code | ||
Executing AutoRest command | ||
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/databox/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-2019-09 --csharp-sdks-folder=D:\god\azure_sdk_net\azure-sdk-for-net\sdk | ||
2019-10-17 06:34:11 UTC | ||
Azure-rest-api-specs repository information | ||
GitHub fork: Azure | ||
Branch: master | ||
Commit: 59998f796f05580bc1d43ba39f0170204113fa91 | ||
AutoRest information | ||
Requested version: latest | ||
Bootstrapper version: [email protected] |
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>DataBox_2018-01-01;</AzureApiTag> | ||
<AzureApiTag>DataBox_2019-09-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
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
70 changes: 70 additions & 0 deletions
70
...ox/Microsoft.Azure.Management.DataBox/src/Generated/Models/AddressValidationProperties.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,70 @@ | ||
// <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.DataBox.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// The address validation output. | ||
/// </summary> | ||
[Newtonsoft.Json.JsonObject("ValidateAddress")] | ||
public partial class AddressValidationProperties : ValidationInputResponse | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the AddressValidationProperties | ||
/// class. | ||
/// </summary> | ||
public AddressValidationProperties() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the AddressValidationProperties | ||
/// class. | ||
/// </summary> | ||
/// <param name="error">Error code and message of validation | ||
/// response.</param> | ||
/// <param name="validationStatus">The address validation status. | ||
/// Possible values include: 'Valid', 'Invalid', 'Ambiguous'</param> | ||
/// <param name="alternateAddresses">List of alternate | ||
/// addresses.</param> | ||
public AddressValidationProperties(Error error = default(Error), AddressValidationStatus? validationStatus = default(AddressValidationStatus?), IList<ShippingAddress> alternateAddresses = default(IList<ShippingAddress>)) | ||
: base(error) | ||
{ | ||
ValidationStatus = validationStatus; | ||
AlternateAddresses = alternateAddresses; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets the address validation status. Possible values include: | ||
/// 'Valid', 'Invalid', 'Ambiguous' | ||
/// </summary> | ||
[JsonProperty(PropertyName = "validationStatus")] | ||
public AddressValidationStatus? ValidationStatus { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets list of alternate addresses. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "alternateAddresses")] | ||
public IList<ShippingAddress> AlternateAddresses { get; private set; } | ||
|
||
} | ||
} |
Oops, something went wrong.