Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-08-01;Compute_2022-07-02;Compute_2022-04-04;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>
<AzureApiTag>Compute-2022-08-01;Compute_2022-07-02;Compute_2022-04-04;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-03-03;Compute_2021-06-01-preview</AzureApiTag>
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>
</Project>
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();
}
}
}
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();
}
}
}
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.

Loading