generated/api/Models/BigDataAppListResp.cs

// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.9.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>Used to return a list of big data apps.</summary>
    public partial class BigDataAppListResp :
        Commvault.Powershell.Models.IBigDataAppListResp,
        Commvault.Powershell.Models.IBigDataAppListRespInternal
    {

        /// <summary>Backing field for <see cref="BigDataApps" /> property.</summary>
        private Commvault.Powershell.Models.IBigDataAppSummary[] _bigDataApps;

        /// <summary>This returns the big data app list.</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IBigDataAppSummary[] BigDataApps { get => this._bigDataApps; set => this._bigDataApps = value; }

        /// <summary>Creates an new <see cref="BigDataAppListResp" /> instance.</summary>
        public BigDataAppListResp()
        {

        }
    }
    /// Used to return a list of big data apps.
    public partial interface IBigDataAppListResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>This returns the big data app list.</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"This returns the big data app list.",
        SerializedName = @"bigDataApps",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IBigDataAppSummary) })]
        Commvault.Powershell.Models.IBigDataAppSummary[] BigDataApps { get; set; }

    }
    /// Used to return a list of big data apps.
    internal partial interface IBigDataAppListRespInternal

    {
        /// <summary>This returns the big data app list.</summary>
        Commvault.Powershell.Models.IBigDataAppSummary[] BigDataApps { get; set; }

    }
}