| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | using System.Collections.Generic; |
| | | 9 | | |
| | | 10 | | namespace Azure.ResourceManager.Compute.Models |
| | | 11 | | { |
| | | 12 | | /// <summary> Specifies information about the dedicated host group that the dedicated host should be assigned to. On |
| | | 13 | | public partial class DedicatedHostGroupUpdate : UpdateResource |
| | | 14 | | { |
| | | 15 | | /// <summary> Initializes a new instance of DedicatedHostGroupUpdate. </summary> |
| | 4 | 16 | | public DedicatedHostGroupUpdate() |
| | | 17 | | { |
| | 4 | 18 | | } |
| | | 19 | | |
| | | 20 | | /// <summary> Initializes a new instance of DedicatedHostGroupUpdate. </summary> |
| | | 21 | | /// <param name="tags"> Resource tags. </param> |
| | | 22 | | /// <param name="zones"> Availability Zone to use for this host group. Only single zone is supported. The zone c |
| | | 23 | | /// <param name="platformFaultDomainCount"> Number of fault domains that the host group can span. </param> |
| | | 24 | | /// <param name="hosts"> A list of references to all dedicated hosts in the dedicated host group. </param> |
| | 0 | 25 | | internal DedicatedHostGroupUpdate(IDictionary<string, string> tags, IList<string> zones, int? platformFaultDomai |
| | | 26 | | { |
| | 0 | 27 | | Zones = zones; |
| | 0 | 28 | | PlatformFaultDomainCount = platformFaultDomainCount; |
| | 0 | 29 | | Hosts = hosts; |
| | 0 | 30 | | } |
| | | 31 | | |
| | | 32 | | /// <summary> Availability Zone to use for this host group. Only single zone is supported. The zone can be assig |
| | 0 | 33 | | public IList<string> Zones { get; set; } |
| | | 34 | | /// <summary> Number of fault domains that the host group can span. </summary> |
| | 12 | 35 | | public int? PlatformFaultDomainCount { get; set; } |
| | | 36 | | /// <summary> A list of references to all dedicated hosts in the dedicated host group. </summary> |
| | 4 | 37 | | public IList<SubResourceReadOnly> Hosts { get; } |
| | | 38 | | } |
| | | 39 | | } |