private/api/Nutanix/Powershell/Models/EntitySpec.cs
namespace Nutanix.Powershell.Models { using static Microsoft.Rest.ClientRuntime.Extensions; /// <summary>Specification of the entities which need to be placed</summary> public partial class EntitySpec : Nutanix.Powershell.Models.IEntitySpec, Microsoft.Rest.ClientRuntime.IValidates { /// <summary>Backing field for <see cref="CategoryList" /> property.</summary> private Nutanix.Powershell.Models.IEntitySpecCategoryListItemType[] _categoryList; /// <summary>Categories associated with the entity.</summary> public Nutanix.Powershell.Models.IEntitySpecCategoryListItemType[] CategoryList { get { return this._categoryList; } set { this._categoryList = value; } } /// <summary>Backing field for <see cref="VmReference" /> property.</summary> private Nutanix.Powershell.Models.IVmReference _vmReference; /// <summary>Reference to a VM</summary> public Nutanix.Powershell.Models.IVmReference VmReference { get { return this._vmReference; } set { this._vmReference = value; } } /// <summary>Backing field for <see cref="VmSpec" /> property.</summary> private Nutanix.Powershell.Models.IVm _vmSpec; /// <summary>VM config specification</summary> public Nutanix.Powershell.Models.IVm VmSpec { get { return this._vmSpec; } set { this._vmSpec = value; } } /// <summary>Creates an new <see cref="EntitySpec" /> instance.</summary> public EntitySpec() { } /// <summary>Validates that this object meets the validation criteria.</summary> /// <param name="eventListener">an <see cref="Microsoft.Rest.ClientRuntime.IEventListener" /> instance that will receive validation /// events.</param> /// <returns> /// A <see cref="System.Threading.Tasks.Task" /> that will be complete when validation is completed. /// </returns> public async System.Threading.Tasks.Task Validate(Microsoft.Rest.ClientRuntime.IEventListener eventListener) { if (CategoryList != null ) { for (int __i = 0; __i < CategoryList.Length; __i++) { await eventListener.AssertObjectIsValid($"CategoryList[{__i}]", CategoryList[__i]); } } await eventListener.AssertObjectIsValid(nameof(VmReference), VmReference); await eventListener.AssertObjectIsValid(nameof(VmSpec), VmSpec); } } /// Specification of the entities which need to be placed public partial interface IEntitySpec : Microsoft.Rest.ClientRuntime.IJsonSerializable { Nutanix.Powershell.Models.IEntitySpecCategoryListItemType[] CategoryList { get; set; } Nutanix.Powershell.Models.IVmReference VmReference { get; set; } Nutanix.Powershell.Models.IVm VmSpec { get; set; } } } |