generated/api/Models/TapeListResp.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; public partial class TapeListResp : Commvault.Powershell.Models.ITapeListResp, Commvault.Powershell.Models.ITapeListRespInternal { /// <summary>Backing field for <see cref="TapeList" /> property.</summary> private Commvault.Powershell.Models.ITapeSummary[] _tapeList; /// <summary>Returns list of tapes</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public Commvault.Powershell.Models.ITapeSummary[] TapeList { get => this._tapeList; set => this._tapeList = value; } /// <summary>Creates an new <see cref="TapeListResp" /> instance.</summary> public TapeListResp() { } } public partial interface ITapeListResp : Commvault.Powershell.Runtime.IJsonSerializable { /// <summary>Returns list of tapes</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Returns list of tapes", SerializedName = @"tapeList", PossibleTypes = new [] { typeof(Commvault.Powershell.Models.ITapeSummary) })] Commvault.Powershell.Models.ITapeSummary[] TapeList { get; set; } } internal partial interface ITapeListRespInternal { /// <summary>Returns list of tapes</summary> Commvault.Powershell.Models.ITapeSummary[] TapeList { get; set; } } } |