generated/api/Models/PlanRuleExcludedEntitiesList.cs
// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.8.4, generator: @autorest/powershell@3.0.415) // Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Commvault.Powershell.Models { using static Commvault.Powershell.Runtime.Extensions; /// <summary>List of entities that are excluded from plan rule evaluation.</summary> public partial class PlanRuleExcludedEntitiesList : Commvault.Powershell.Models.IPlanRuleExcludedEntitiesList, Commvault.Powershell.Models.IPlanRuleExcludedEntitiesListInternal { /// <summary>Backing field for <see cref="Entities" /> property.</summary> private Commvault.Powershell.Models.IWorkloadEntity[] _entities; /// <summary>Details of entity excluded for plan association via plan rules.</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public Commvault.Powershell.Models.IWorkloadEntity[] Entities { get => this._entities; set => this._entities = value; } /// <summary>Creates an new <see cref="PlanRuleExcludedEntitiesList" /> instance.</summary> public PlanRuleExcludedEntitiesList() { } } /// List of entities that are excluded from plan rule evaluation. public partial interface IPlanRuleExcludedEntitiesList : Commvault.Powershell.Runtime.IJsonSerializable { /// <summary>Details of entity excluded for plan association via plan rules.</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Details of entity excluded for plan association via plan rules.", SerializedName = @"entities", PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IWorkloadEntity) })] Commvault.Powershell.Models.IWorkloadEntity[] Entities { get; set; } } /// List of entities that are excluded from plan rule evaluation. internal partial interface IPlanRuleExcludedEntitiesListInternal { /// <summary>Details of entity excluded for plan association via plan rules.</summary> Commvault.Powershell.Models.IWorkloadEntity[] Entities { get; set; } } } |