-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Gallery 2022_03_03 #29817
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
Yao725
merged 7 commits into
Azure:feature/gallery-2022-03-03
from
tiregan:gallery-2022-03-03-tiregan
Sep 7, 2022
Merged
Gallery 2022_03_03 #29817
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ba3deac
sdk tests for 03 03
tiregan d4c740c
Merge branch 'feature/gallery-2022-03-03' into gallery-2022-03-03-tir…
Sandido a0e375d
Add customizations for changed constructors. Regenerate based on upd…
tiregan 68cf46a
fix all tests adn add session records
tiregan 0338034
fix application version customizations.
tiregan 80f6efa
resovle conflicts
tiregan 64ab05a
Update GalleryApplicationVersion_CRUD_Tests.json
Sandido 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
24 changes: 24 additions & 0 deletions
24
...ompute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersion.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,24 @@ | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace Microsoft.Azure.Management.Compute.Models | ||
| { | ||
| public partial class GalleryApplicationVersion | ||
| { | ||
| public GalleryApplicationVersion( | ||
| string location, | ||
| GalleryApplicationVersionPublishingProfile publishingProfile, | ||
| string id, | ||
| string name, | ||
| string type, | ||
| IDictionary<string, string> tags, | ||
| string provisioningState, | ||
| ReplicationStatus replicationStatus = default(ReplicationStatus)) | ||
| : base(location, id, name, type, tags) | ||
| { | ||
| PublishingProfile = publishingProfile; | ||
| ProvisioningState = provisioningState; | ||
| ReplicationStatus = replicationStatus; | ||
| CustomInit(); | ||
| } | ||
| } | ||
| } | ||
23 changes: 23 additions & 0 deletions
23
.../Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersionUpdate.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,23 @@ | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace Microsoft.Azure.Management.Compute.Models | ||
| { | ||
| public partial class GalleryApplicationVersionUpdate | ||
| { | ||
| GalleryApplicationVersionUpdate( | ||
| GalleryApplicationVersionPublishingProfile publishingProfile, | ||
| string id, | ||
| string name, | ||
| string type, | ||
| IDictionary<string, string> tags, | ||
| string provisioningState, | ||
| ReplicationStatus replicationStatus = default(ReplicationStatus)) | ||
| : base(id, name, type, tags) | ||
| { | ||
| PublishingProfile = publishingProfile; | ||
| ProvisioningState = provisioningState; | ||
| ReplicationStatus = replicationStatus; | ||
| CustomInit(); | ||
| } | ||
| } | ||
| } |
26 changes: 26 additions & 0 deletions
26
sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryImageVersion.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,26 @@ | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace Microsoft.Azure.Management.Compute.Models | ||
| { | ||
| public partial class GalleryImageVersion | ||
| { | ||
| public GalleryImageVersion( | ||
| string location, | ||
| GalleryImageVersionStorageProfile storageProfile, | ||
| string id, | ||
| string name, | ||
| string type, | ||
| IDictionary<string, string> tags, | ||
| GalleryImageVersionPublishingProfile publishingProfile, | ||
| string provisioningState, | ||
| ReplicationStatus replicationStatus) | ||
| : base(location, id, name, type, tags) | ||
| { | ||
| PublishingProfile = publishingProfile; | ||
| ProvisioningState = provisioningState; | ||
| StorageProfile = storageProfile; | ||
| ReplicationStatus = replicationStatus; | ||
| CustomInit(); | ||
| } | ||
| } | ||
| } |
25 changes: 25 additions & 0 deletions
25
...ompute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryImageVersionUpdate.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,25 @@ | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace Microsoft.Azure.Management.Compute.Models | ||
| { | ||
| public partial class GalleryImageVersionUpdate | ||
| { | ||
| public GalleryImageVersionUpdate( | ||
| GalleryImageVersionStorageProfile storageProfile, | ||
| string id, | ||
| string name, | ||
| string type, | ||
| IDictionary<string, string> tags, | ||
| GalleryImageVersionPublishingProfile publishingProfile, | ||
| string provisioningState, | ||
| ReplicationStatus replicationStatus) | ||
| : base(id, name, type, tags) | ||
| { | ||
| PublishingProfile = publishingProfile; | ||
| ProvisioningState = provisioningState; | ||
| StorageProfile = storageProfile; | ||
| ReplicationStatus = replicationStatus; | ||
| CustomInit(); | ||
| } | ||
| } | ||
| } |
212 changes: 212 additions & 0 deletions
212
sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
54 changes: 54 additions & 0 deletions
54
...ute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperationsExtensions.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.
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.