-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Compute 2021-07-01 REST API version change #23511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
9730211
update market place test to use avail offer/sku
grizzlytheodore 7792fce
sdk re-generated with new version
grizzlytheodore 63a23a8
new recording
grizzlytheodore e8af439
new recordings
grizzlytheodore e10a6cd
recording failing diskrp tests
grizzlytheodore 496e6eb
fixing vmscenario_encryptionathost sku
grizzlytheodore 092d58f
update recording. last one
grizzlytheodore f8a9684
TestVmScaleSetRollingUpgradeAPI test new recording
grizzlytheodore 6360dc8
TestVmScaleSetRollingUpgradeAPI new recording
grizzlytheodore b735e1e
new skus file generated and recorded
grizzlytheodore f76dcad
Merge remote-tracking branch 'origin/main' into feature/cplat-2021-07-01
grizzlytheodore 901c874
sdk generated with all the swagger changes from 2021-04-01
grizzlytheodore df1d2d9
new recording for new test
grizzlytheodore f2f663a
sdk re-generated with new version
grizzlytheodore 4439bb1
new recording
grizzlytheodore 0d5615c
new recordings
grizzlytheodore 629030b
recording failing diskrp tests
grizzlytheodore a4d1dbd
fixing vmscenario_encryptionathost sku
grizzlytheodore 9e3500a
update recording. last one
grizzlytheodore 3b86cd8
sync with latest swagger and rebase to main branch
grizzlytheodore 7ff08ed
update recordings to resolve conflics more easily
grizzlytheodore 0171975
Added sdk changed for VMCustomization (#22394)
raktdas 167ed90
SDK related changes - VM Hibernation support feature (#22438)
pavanrachapudy90 6d6b365
updated with 2021-07-01 gallery
grizzlytheodore 4807fab
merge
grizzlytheodore 3b92a15
new recordings for tests added in 2021-04-01
grizzlytheodore a84a9e3
Feature/cplat 2021 07 01 (#22950)
grizzlytheodore 7046061
SDK changes for VMApps (#23026)
D1v38om83r 2883f9d
last gen from swagger master
grizzlytheodore 376d5bd
customizations (#23514)
grizzlytheodore 0e4abc7
add 2021-07-01 reference and update commit id for swagger
grizzlytheodore 57744e3
Merge branch 'feature/cplat-2021-07-01' of https://github.com/Azure/a…
grizzlytheodore 0666850
nuget version update
grizzlytheodore File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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_2021-04-01;Compute_2021-03-01;Compute_2020-12-01;Compute_2020-06-30;Compute_2020-05-01;Compute_2019-12-01;Compute_2019-11-01;Compute_2019-04-01;</AzureApiTag> | ||
| <AzureApiTag>Compute_2021-07-01;Compute_2021-04-01;Compute_2021-03-01;Compute_2020-12-01;Compute_2020-06-30;Compute_2020-05-01;Compute_2019-12-01;Compute_2019-11-01;Compute_2019-04-01;</AzureApiTag> | ||
| <PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags> | ||
| </PropertyGroup> | ||
| </Project> |
20 changes: 20 additions & 0 deletions
20
sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/IResourceSkusOperations.cs
This file contains hidden or 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,20 @@ | ||
| namespace Microsoft.Azure.Management.Compute | ||
| { | ||
| using Microsoft.Rest; | ||
| using Microsoft.Rest.Azure; | ||
| using Models; | ||
| using System.Collections; | ||
| using System.Collections.Generic; | ||
| using System.Threading; | ||
| using System.Threading.Tasks; | ||
|
|
||
| /// <summary> | ||
| /// ResourceSkusOperations operations. | ||
| /// </summary> | ||
| public partial interface IResourceSkusOperations | ||
| { | ||
| Task<AzureOperationResponse<IPage<ResourceSku>>> ListWithHttpMessagesAsync(string filter = default(string), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); | ||
|
|
||
| Task<AzureOperationResponse<IPage<ResourceSku>>> ListWithHttpMessagesAsync(string filter = default(string), Dictionary<string, List<string>> customHeaders = null); | ||
| } | ||
| } |
This file contains hidden or 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
30 changes: 30 additions & 0 deletions
30
sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/ResourceSkusOperations.cs
This file contains hidden or 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,30 @@ | ||
| namespace Microsoft.Azure.Management.Compute | ||
| { | ||
| using Microsoft.Rest; | ||
| using Microsoft.Rest.Azure; | ||
| using Models; | ||
| using Newtonsoft.Json; | ||
| using System.Collections; | ||
| using System.Collections.Generic; | ||
| using System.Linq; | ||
| using System.Net; | ||
| using System.Net.Http; | ||
| using System.Threading; | ||
| using System.Threading.Tasks; | ||
|
|
||
| /// <summary> | ||
| /// ResourceSkusOperations operations. | ||
| /// </summary> | ||
| internal partial class ResourceSkusOperations : IServiceOperations<ComputeManagementClient>, IResourceSkusOperations | ||
| { | ||
| public async Task<AzureOperationResponse<IPage<ResourceSku>>> ListWithHttpMessagesAsync(string filter = default(string), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) | ||
| { | ||
| return await ListWithHttpMessagesAsync(filter, null, customHeaders, cancellationToken); | ||
| } | ||
|
|
||
| public async Task<AzureOperationResponse<IPage<ResourceSku>>> ListWithHttpMessagesAsync(string filter = default(string), Dictionary<string, List<string>> customHeaders = null) | ||
| { | ||
| return await ListWithHttpMessagesAsync(filter, null, customHeaders, default(CancellationToken)); | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.