generated/api/Models/GetSpareGroupListResp.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>Spare Group details for a Storage</summary> public partial class GetSpareGroupListResp : Commvault.Powershell.Models.IGetSpareGroupListResp, Commvault.Powershell.Models.IGetSpareGroupListRespInternal { /// <summary>Backing field for <see cref="SpareGroupDetailsList" /> property.</summary> private System.Collections.Generic.List<Commvault.Powershell.Models.ISpareGroupDetails> _spareGroupDetailsList; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public System.Collections.Generic.List<Commvault.Powershell.Models.ISpareGroupDetails> SpareGroupDetailsList { get => this._spareGroupDetailsList; set => this._spareGroupDetailsList = value; } /// <summary>Creates an new <see cref="GetSpareGroupListResp" /> instance.</summary> public GetSpareGroupListResp() { } } /// Spare Group details for a Storage public partial interface IGetSpareGroupListResp : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"spareGroupDetailsList", PossibleTypes = new [] { typeof(Commvault.Powershell.Models.ISpareGroupDetails) })] System.Collections.Generic.List<Commvault.Powershell.Models.ISpareGroupDetails> SpareGroupDetailsList { get; set; } } /// Spare Group details for a Storage internal partial interface IGetSpareGroupListRespInternal { System.Collections.Generic.List<Commvault.Powershell.Models.ISpareGroupDetails> SpareGroupDetailsList { get; set; } } } |