forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAvailabilitySetData.cs
More file actions
23 lines (20 loc) · 963 Bytes
/
Copy pathAvailabilitySetData.cs
File metadata and controls
23 lines (20 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#nullable disable
using System;
using System.Collections.Generic;
using System.ComponentModel;
using Azure.ResourceManager.Compute.Models;
using Azure.ResourceManager.Resources.Models;
namespace Azure.ResourceManager.Compute
{
public partial class AvailabilitySetData
{
// Backward compatibility: the generated Compute-local property is named VirtualMachineResources and uses
// ComputeWriteableSubResourceData. Restore the old VirtualMachines property with ARM common WritableSubResource.
/// <summary> A list of references to all virtual machines in the availability set. </summary>
[Obsolete("This property is obsolete and no longer works. Use VirtualMachineResources instead.", false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public IList<WritableSubResource> VirtualMachines { get; set; }
}
}