Skip to content

Commit 7da81ec

Browse files
grizzlytheodoreTheodore ChangArcturusZhang
authored
Track2 SDK PR from modelvalidation fixes (#34644)
* updated with modelvalidation fixes * updated wtih modelvalidation * mitigate breaking changes in track 2 * remove track 1 changes * generated * autorest swagger input update * update changelog --------- Co-authored-by: Theodore Chang <[email protected]> Co-authored-by: Arcturus Zhang <[email protected]>
1 parent 46a3edf commit 7da81ec

File tree

41 files changed

+680
-579
lines changed

Some content is hidden

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

41 files changed

+680
-579
lines changed

sdk/compute/Azure.ResourceManager.Compute/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@
44

55
### Features Added
66

7+
- Added new properties `ComputerName`, `OSName`, `OSVersion` and `HyperVGeneration` to `VirtualMachineScaleSetVmInstanceView` class
8+
- Added new value `StandardSsdLrs` to `ImageStorageAccountType`
9+
710
### Breaking Changes
811

12+
- Class `VirtualMachineScaleSetNetworkConfiguration` and `VirtualMachineScaleSetIPConfiguration` no longer have the property `Id`
13+
914
### Bugs Fixed
1015

1116
### Other Changes

sdk/compute/Azure.ResourceManager.Compute/api/Azure.ResourceManager.Compute.netstandard2.0.cs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2951,7 +2951,7 @@ internal ComputeUsageName() { }
29512951
public partial class ComputeWriteableSubResourceData
29522952
{
29532953
public ComputeWriteableSubResourceData() { }
2954-
public Azure.Core.ResourceIdentifier Id { get { throw null; } set { } }
2954+
public virtual Azure.Core.ResourceIdentifier Id { get { throw null; } set { } }
29552955
}
29562956
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
29572957
public readonly partial struct ConfidentialVmEncryptionType : System.IEquatable<Azure.ResourceManager.Compute.Models.ConfidentialVmEncryptionType>
@@ -3924,6 +3924,7 @@ public ImageReference() { }
39243924
public ImageStorageAccountType(string value) { throw null; }
39253925
public static Azure.ResourceManager.Compute.Models.ImageStorageAccountType PremiumLrs { get { throw null; } }
39263926
public static Azure.ResourceManager.Compute.Models.ImageStorageAccountType StandardLrs { get { throw null; } }
3927+
public static Azure.ResourceManager.Compute.Models.ImageStorageAccountType StandardSsdLrs { get { throw null; } }
39273928
public static Azure.ResourceManager.Compute.Models.ImageStorageAccountType StandardZrs { get { throw null; } }
39283929
public bool Equals(Azure.ResourceManager.Compute.Models.ImageStorageAccountType other) { throw null; }
39293930
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
@@ -5781,6 +5782,8 @@ public partial class VirtualMachineScaleSetIPConfiguration : Azure.ResourceManag
57815782
public VirtualMachineScaleSetIPConfiguration(string name) { }
57825783
public System.Collections.Generic.IList<Azure.ResourceManager.Resources.Models.WritableSubResource> ApplicationGatewayBackendAddressPools { get { throw null; } }
57835784
public System.Collections.Generic.IList<Azure.ResourceManager.Resources.Models.WritableSubResource> ApplicationSecurityGroups { get { throw null; } }
5785+
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
5786+
public override Azure.Core.ResourceIdentifier Id { get { throw null; } set { } }
57845787
public System.Collections.Generic.IList<Azure.ResourceManager.Resources.Models.WritableSubResource> LoadBalancerBackendAddressPools { get { throw null; } }
57855788
public System.Collections.Generic.IList<Azure.ResourceManager.Resources.Models.WritableSubResource> LoadBalancerInboundNatPools { get { throw null; } }
57865789
public string Name { get { throw null; } set { } }
@@ -5810,6 +5813,8 @@ public VirtualMachineScaleSetNetworkConfiguration(string name) { }
58105813
public bool? EnableAcceleratedNetworking { get { throw null; } set { } }
58115814
public bool? EnableFpga { get { throw null; } set { } }
58125815
public bool? EnableIPForwarding { get { throw null; } set { } }
5816+
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
5817+
public override Azure.Core.ResourceIdentifier Id { get { throw null; } set { } }
58135818
public System.Collections.Generic.IList<Azure.ResourceManager.Compute.Models.VirtualMachineScaleSetIPConfiguration> IPConfigurations { get { throw null; } }
58145819
public bool? IsTcpStateTrackingDisabled { get { throw null; } set { } }
58155820
public string Name { get { throw null; } set { } }
@@ -6074,9 +6079,13 @@ public partial class VirtualMachineScaleSetVmInstanceView
60746079
internal VirtualMachineScaleSetVmInstanceView() { }
60756080
public Azure.Core.ResourceIdentifier AssignedHost { get { throw null; } }
60766081
public Azure.ResourceManager.Compute.Models.BootDiagnosticsInstanceView BootDiagnostics { get { throw null; } }
6082+
public string ComputerName { get { throw null; } }
60776083
public System.Collections.Generic.IReadOnlyList<Azure.ResourceManager.Compute.Models.DiskInstanceView> Disks { get { throw null; } }
60786084
public System.Collections.Generic.IReadOnlyList<Azure.ResourceManager.Compute.Models.VirtualMachineExtensionInstanceView> Extensions { get { throw null; } }
6085+
public Azure.ResourceManager.Compute.Models.HyperVGeneration? HyperVGeneration { get { throw null; } }
60796086
public Azure.ResourceManager.Compute.Models.MaintenanceRedeployStatus MaintenanceRedeployStatus { get { throw null; } }
6087+
public string OSName { get { throw null; } }
6088+
public string OSVersion { get { throw null; } }
60806089
public string PlacementGroupId { get { throw null; } }
60816090
public int? PlatformFaultDomain { get { throw null; } }
60826091
public int? PlatformUpdateDomain { get { throw null; } }

sdk/compute/Azure.ResourceManager.Compute/samples/Generated/Samples/Sample_AvailabilitySetCollection.cs

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

0 commit comments

Comments
 (0)