generated/api/Models/DistributedSystemsListResp.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 distributed systems.</summary>
    public partial class DistributedSystemsListResp :
        Commvault.Powershell.Models.IDistributedSystemsListResp,
        Commvault.Powershell.Models.IDistributedSystemsListRespInternal
    {

        /// <summary>Backing field for <see cref="DistributedSystems" /> property.</summary>
        private Commvault.Powershell.Models.IDistributedSystemSummary[] _distributedSystems;

        /// <summary>This returns the distributed systems list.</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IDistributedSystemSummary[] DistributedSystems { get => this._distributedSystems; set => this._distributedSystems = value; }

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

        }
    }
    /// Used to return a list of distributed systems.
    public partial interface IDistributedSystemsListResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>This returns the distributed systems list.</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"This returns the distributed systems list.",
        SerializedName = @"distributedSystems",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IDistributedSystemSummary) })]
        Commvault.Powershell.Models.IDistributedSystemSummary[] DistributedSystems { get; set; }

    }
    /// Used to return a list of distributed systems.
    internal partial interface IDistributedSystemsListRespInternal

    {
        /// <summary>This returns the distributed systems list.</summary>
        Commvault.Powershell.Models.IDistributedSystemSummary[] DistributedSystems { get; set; }

    }
}