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.
[Compute] DiskRP API 2022-03-02 Release (Azure#28464)
* set up feature branch * generated with new changes * set up feature branch * new recordings * Gallery 01 03 SDK (Azure#27466) * save * save * update * update * save * save * sanitization * add eula/privacy statement to gallery SDK release (Azure#28238) * save * update * update * update test * generated with new changes * SDK generation * Updated SDK * SDK changes for new properties "settings" and "advancedSettings" to gallery application version (Azure#28250) * Generated SDK using 0c46c6ca375c5b61de701f790db5673d76ceb8b6 * Updated test and recording * removed SAS tokens from recorded test * generated SDK with updated comments from API PR * removed "sig=" tokens from recorded test * added customization and sanitized keys in recorded tests * Restored older customization * fixed customization * Made enableHealthCheck optional parameter because it appears after settings and advancedSettings, as the WIKI states. * federatedclientid change * adding tests for restore point with securityprofile (Azure#28949) * Update AssemblyInfo.cs .Net version update * Update Microsoft.Azure.Management.Compute.csproj * save (Azure#29131) test rerecord that was needed * Test recordings * Adding Customizations * adding test recordings * update azsdk.rp.props and compute_resource-manager.txt * credscan Co-authored-by: Theodore Chang <thchan@microsoft.com> Co-authored-by: Adam Sandor <adsandor@microsoft.com> Co-authored-by: kangsun-ctrl <69279251+kangsun-ctrl@users.noreply.github.com> Co-authored-by: Bhaskar Brahma <bhbrahma@microsoft.com> Co-authored-by: anshulsolanki21 <73930854+anshulsolanki21@users.noreply.github.com>
- Loading branch information
1 parent
0b7cca9
commit 39d89f3
Showing
82 changed files
with
20,191 additions
and
16,509 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>Compute_2022-03-01;Compute_2021-11-01;Compute_2021-03-01;Compute_2021-07-01;Compute_2021-12-01;Compute_2022-01-03;Compute_2021-06-01-preview</AzureApiTag> | ||
<AzureApiTag>Compute_2022-03-02;Compute_2022-03-01;Compute_2021-11-01;Compute_2021-03-01;Compute_2021-07-01;Compute_2021-12-01;Compute_2022-01-03;Compute_2021-06-01-preview</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
43 changes: 43 additions & 0 deletions
43
sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/ImageDiskReference.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,43 @@ | ||
// <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.Compute.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// The source image used for creating the disk. | ||
/// </summary> | ||
public partial class ImageDiskReference | ||
{ | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the ImageDiskReference class. | ||
/// </summary> | ||
/// <param name="id">A relative uri containing either a Platform Image | ||
/// Repository, user image, or Azure Compute Gallery image | ||
/// reference.</param> | ||
/// <param name="sharedGalleryImageId">A relative uri containing a | ||
/// direct shared Azure Compute Gallery image reference.</param> | ||
/// <param name="communityGalleryImageId">A relative uri containing a | ||
/// community Azure Compute Gallery image reference.</param> | ||
/// <param name="lun">If the disk is created from an image's data disk, | ||
/// this is an index that indicates which of the data disks in the | ||
/// image to use. For OS disks, this field is null.</param> | ||
public ImageDiskReference(string id = default(string), int? lun = default(int?)) | ||
{ | ||
Id = id; | ||
Lun = lun; | ||
CustomInit(); | ||
} | ||
|
||
} | ||
} |
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
38 changes: 19 additions & 19 deletions
38
sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
22 changes: 11 additions & 11 deletions
22
sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DiskAccessesOperations.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
14 changes: 7 additions & 7 deletions
14
sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DiskEncryptionSetsOperations.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DiskRestorePointOperations.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.