generated/api/Models/MediaAgentList.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 Media agents that can be added</summary> public partial class MediaAgentList : Commvault.Powershell.Models.IMediaAgentList, Commvault.Powershell.Models.IMediaAgentListInternal { /// <summary>Backing field for <see cref="MediaAgents" /> property.</summary> private System.Collections.Generic.List<Commvault.Powershell.Models.IIdNameDisplayName> _mediaAgents; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public System.Collections.Generic.List<Commvault.Powershell.Models.IIdNameDisplayName> MediaAgents { get => this._mediaAgents; set => this._mediaAgents = value; } /// <summary>Creates an new <see cref="MediaAgentList" /> instance.</summary> public MediaAgentList() { } } /// List of Media agents that can be added public partial interface IMediaAgentList : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"mediaAgents", PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IIdNameDisplayName) })] System.Collections.Generic.List<Commvault.Powershell.Models.IIdNameDisplayName> MediaAgents { get; set; } } /// List of Media agents that can be added internal partial interface IMediaAgentListInternal { System.Collections.Generic.List<Commvault.Powershell.Models.IIdNameDisplayName> MediaAgents { get; set; } } } |