Skip to content

Commit 3331174

Browse files
authored
Gallery 2022-03-03 version update (#30125)
1 parent 52076fb commit 3331174

File tree

61 files changed

+4358
-2951
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+4358
-2951
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<!--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-->
33
<PropertyGroup>
4-
<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>
4+
<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>
55
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
66
</PropertyGroup>
7-
</Project>
7+
</Project>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
using System.Collections.Generic;
2+
3+
namespace Microsoft.Azure.Management.Compute.Models
4+
{
5+
public partial class GalleryApplicationVersion
6+
{
7+
public GalleryApplicationVersion(
8+
string location,
9+
GalleryApplicationVersionPublishingProfile publishingProfile,
10+
string id,
11+
string name,
12+
string type,
13+
IDictionary<string, string> tags,
14+
string provisioningState,
15+
ReplicationStatus replicationStatus = default(ReplicationStatus))
16+
: base(location, id, name, type, tags)
17+
{
18+
PublishingProfile = publishingProfile;
19+
ProvisioningState = provisioningState;
20+
ReplicationStatus = replicationStatus;
21+
CustomInit();
22+
}
23+
}
24+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using System.Collections.Generic;
2+
3+
namespace Microsoft.Azure.Management.Compute.Models
4+
{
5+
public partial class GalleryApplicationVersionUpdate
6+
{
7+
GalleryApplicationVersionUpdate(
8+
GalleryApplicationVersionPublishingProfile publishingProfile,
9+
string id,
10+
string name,
11+
string type,
12+
IDictionary<string, string> tags,
13+
string provisioningState,
14+
ReplicationStatus replicationStatus = default(ReplicationStatus))
15+
: base(id, name, type, tags)
16+
{
17+
PublishingProfile = publishingProfile;
18+
ProvisioningState = provisioningState;
19+
ReplicationStatus = replicationStatus;
20+
CustomInit();
21+
}
22+
}
23+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using System.Collections.Generic;
2+
3+
namespace Microsoft.Azure.Management.Compute.Models
4+
{
5+
public partial class GalleryImageVersion
6+
{
7+
public GalleryImageVersion(
8+
string location,
9+
GalleryImageVersionStorageProfile storageProfile,
10+
string id,
11+
string name,
12+
string type,
13+
IDictionary<string, string> tags,
14+
GalleryImageVersionPublishingProfile publishingProfile,
15+
string provisioningState,
16+
ReplicationStatus replicationStatus)
17+
: base(location, id, name, type, tags)
18+
{
19+
PublishingProfile = publishingProfile;
20+
ProvisioningState = provisioningState;
21+
StorageProfile = storageProfile;
22+
ReplicationStatus = replicationStatus;
23+
CustomInit();
24+
}
25+
}
26+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System.Collections.Generic;
2+
3+
namespace Microsoft.Azure.Management.Compute.Models
4+
{
5+
public partial class GalleryImageVersionUpdate
6+
{
7+
public GalleryImageVersionUpdate(
8+
GalleryImageVersionStorageProfile storageProfile,
9+
string id,
10+
string name,
11+
string type,
12+
IDictionary<string, string> tags,
13+
GalleryImageVersionPublishingProfile publishingProfile,
14+
string provisioningState,
15+
ReplicationStatus replicationStatus)
16+
: base(id, name, type, tags)
17+
{
18+
PublishingProfile = publishingProfile;
19+
ProvisioningState = provisioningState;
20+
StorageProfile = storageProfile;
21+
ReplicationStatus = replicationStatus;
22+
CustomInit();
23+
}
24+
}
25+
}

sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleriesOperations.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImageVersionsOperations.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImagesOperations.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)