generated/api/Models/AlertRulesDetailsList.cs
// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/powershell@4.0.708) // 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 the alert rules</summary> public partial class AlertRulesDetailsList : Commvault.Powershell.Models.IAlertRulesDetailsList, Commvault.Powershell.Models.IAlertRulesDetailsListInternal { /// <summary>Backing field for <see cref="QueryEntities" /> property.</summary> private System.Collections.Generic.List<Commvault.Powershell.Models.IAlertRuleQueryEntityDetails> _queryEntities; /// <summary>list of query entities</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public System.Collections.Generic.List<Commvault.Powershell.Models.IAlertRuleQueryEntityDetails> QueryEntities { get => this._queryEntities; set => this._queryEntities = value; } /// <summary>Creates an new <see cref="AlertRulesDetailsList" /> instance.</summary> public AlertRulesDetailsList() { } } /// list of the alert rules public partial interface IAlertRulesDetailsList : Commvault.Powershell.Runtime.IJsonSerializable { /// <summary>list of query entities</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"list of query entities", SerializedName = @"queryEntities", PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IAlertRuleQueryEntityDetails) })] System.Collections.Generic.List<Commvault.Powershell.Models.IAlertRuleQueryEntityDetails> QueryEntities { get; set; } } /// list of the alert rules internal partial interface IAlertRulesDetailsListInternal { /// <summary>list of query entities</summary> System.Collections.Generic.List<Commvault.Powershell.Models.IAlertRuleQueryEntityDetails> QueryEntities { get; set; } } } |