Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
a4ff269
generated from new folder
grizzlytheodore Feb 17, 2022
922cba7
fix updateed object
grizzlytheodore Feb 22, 2022
e702b91
updated recordings for 2022-03-01
grizzlytheodore Apr 13, 2022
b8a0528
new recordings
grizzlytheodore Apr 15, 2022
06577e9
last recordings and test fixes
grizzlytheodore Apr 15, 2022
c413348
fix dedicated host test
grizzlytheodore Apr 15, 2022
1b381fa
add ;
grizzlytheodore Apr 15, 2022
d2f8ed7
mitigate failing test
grizzlytheodore Apr 15, 2022
7f0ace9
fix last test recording
grizzlytheodore Apr 16, 2022
661f8cc
Generated SDK modules and recorded tests for UltraSSDCapability prope…
hari-bodicherla Apr 18, 2022
45b8073
update with latest swagger form
grizzlytheodore Apr 18, 2022
6d03edc
dedicatedHost customization
grizzlytheodore Apr 19, 2022
4118b10
small ssdk change 1.1 (#28006)
prchin May 9, 2022
76c8925
[RestorePoints] InstanceView Fix SDK changes (#28188)
prchin May 9, 2022
9234ff9
SDK changes for Vmss Flex deleteOption (#27923)
kimberlyyipc May 9, 2022
3a6b6eb
Updated tests for changes in PR https://github.com/Azure/azure-rest-a…
D1v38om83r May 9, 2022
0273202
Merge branch 'feature/cplat-2022-03-01' of https://github.com/Azure/a…
grizzlytheodore May 10, 2022
8032592
generated from new folder
grizzlytheodore Feb 17, 2022
d309758
fix updateed object
grizzlytheodore Feb 22, 2022
922789f
updated recordings for 2022-03-01
grizzlytheodore Apr 13, 2022
0a415ff
new recordings
grizzlytheodore Apr 15, 2022
5ce96da
last recordings and test fixes
grizzlytheodore Apr 15, 2022
e658fc6
fix dedicated host test
grizzlytheodore Apr 15, 2022
322eff1
add ;
grizzlytheodore Apr 15, 2022
92ba3d3
mitigate failing test
grizzlytheodore Apr 15, 2022
0f06c1c
fix last test recording
grizzlytheodore Apr 16, 2022
4229cd6
Generated SDK modules and recorded tests for UltraSSDCapability prope…
hari-bodicherla Apr 18, 2022
f4d41eb
update with latest swagger form
grizzlytheodore Apr 18, 2022
1141447
dedicatedHost customization
grizzlytheodore Apr 19, 2022
c86cd29
small ssdk change 1.1 (#28006)
prchin May 9, 2022
c25a7dc
[RestorePoints] InstanceView Fix SDK changes (#28188)
prchin May 9, 2022
0303743
SDK changes for Vmss Flex deleteOption (#27923)
kimberlyyipc May 9, 2022
1165698
Updated tests for changes in PR https://github.com/Azure/azure-rest-a…
D1v38om83r May 9, 2022
65b2ee3
resolve conflict
grizzlytheodore May 10, 2022
8affb5f
without preview release
grizzlytheodore May 10, 2022
e3450e8
Delete VMApplicationProfile_Tests.json
grizzlytheodore May 10, 2022
5317b69
Delete TestVMScaleSetApplicationProfile.json
grizzlytheodore May 10, 2022
1af2e72
fix VMTestBase for DH
grizzlytheodore May 10, 2022
f6807d5
resolve tests
grizzlytheodore May 12, 2022
21d7136
update version name
grizzlytheodore May 12, 2022
2cbd151
Merge branch 'feature/cplat-2022-03-01' of https://github.com/Azure/a…
grizzlytheodore May 12, 2022
c57b503
Sanitize SAS and key
grizzlytheodore May 12, 2022
60cec96
Update Microsoft.Azure.Management.Compute.csproj
grizzlytheodore May 13, 2022
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
2 changes: 1 addition & 1 deletion eng/mgmt/mgmtmetadata/compute_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Autorest CSharp Version: 2.3.82
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: main
Commit: dbf0a617330c7ea3794df1596ba4c1484058fa66
Commit: 28db62c152a3556a579a6031f730d3f6b9f868a4
AutoRest information
Requested version: v2
Bootstrapper version: [email protected]
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-11-01;Compute_2021-03-01;Compute_2021-07-01;Compute_2021-12-01;Compute_2021-10-01;Compute_2021-06-01-preview</AzureApiTag>
<AzureApiTag>Compute_2022-03-01;Compute_2021-11-01;Compute_2021-03-01;Compute_2021-07-01;Compute_2021-12-01;Compute_2021-10-01;Compute_2021-06-01-preview</AzureApiTag>
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Microsoft.Azure.Management.Compute.Models
{
public partial class DedicatedHostGroup : Resource
{
public DedicatedHostGroup(string location, int platformFaultDomainCount, string id, string name, string type, IDictionary<string, string> tags, IList<SubResourceReadOnly> hosts, DedicatedHostGroupInstanceView instanceView, bool? supportAutomaticPlacement, IList<string> zones)
: base(location, id, name, type, tags)
{
PlatformFaultDomainCount = platformFaultDomainCount;
Hosts = hosts;
InstanceView = instanceView;
SupportAutomaticPlacement = supportAutomaticPlacement;
Zones = zones;
CustomInit();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Microsoft.Azure.Management.Compute.Models
{
public partial class DedicatedHostGroupUpdate : UpdateResource
{
public DedicatedHostGroupUpdate(int platformFaultDomainCount, IDictionary<string, string> tags, IList<SubResourceReadOnly> hosts, DedicatedHostGroupInstanceView instanceView, bool? supportAutomaticPlacement, IList<string> zones)
: base(tags)
{
PlatformFaultDomainCount = platformFaultDomainCount;
Hosts = hosts;
InstanceView = instanceView;
SupportAutomaticPlacement = supportAutomaticPlacement;
Zones = zones;
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.

Loading