-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
Gallery 2022_03_03 #29817
Changes from 4 commits
ba3deac
d4c740c
a0e375d
68cf46a
0338034
80f6efa
64ab05a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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) | ||
| : base(location, id, name, type, tags) | ||
| { | ||
| PublishingProfile = publishingProfile; | ||
| ProvisioningState = provisioningState; | ||
| ReplicationStatus = replicationStatus; | ||
| CustomInit(); | ||
| } | ||
| } | ||
| } | ||
| 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) | ||
|
tiregan marked this conversation as resolved.
Outdated
|
||
| : base(id, name, type, tags) | ||
| { | ||
| PublishingProfile = publishingProfile; | ||
| ProvisioningState = provisioningState; | ||
| ReplicationStatus = replicationStatus; | ||
| CustomInit(); | ||
| } | ||
| } | ||
| } | ||
| 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(); | ||
| } | ||
| } | ||
| } |
| 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(); | ||
| } | ||
| } | ||
| } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.