generated/api/Models/DistributedStorageListResp.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;

    /// <summary>List of distributed storages</summary>
    public partial class DistributedStorageListResp :
        Commvault.Powershell.Models.IDistributedStorageListResp,
        Commvault.Powershell.Models.IDistributedStorageListRespInternal
    {

        /// <summary>Backing field for <see cref="DistributedStorage" /> property.</summary>
        private Commvault.Powershell.Models.IDistributedStorageSummary[] _distributedStorage;

        /// <summary>List of distributed storages</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IDistributedStorageSummary[] DistributedStorage { get => this._distributedStorage; set => this._distributedStorage = value; }

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

        }
    }
    /// List of distributed storages
    public partial interface IDistributedStorageListResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>List of distributed storages</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"List of distributed storages",
        SerializedName = @"distributedStorage",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IDistributedStorageSummary) })]
        Commvault.Powershell.Models.IDistributedStorageSummary[] DistributedStorage { get; set; }

    }
    /// List of distributed storages
    internal partial interface IDistributedStorageListRespInternal

    {
        /// <summary>List of distributed storages</summary>
        Commvault.Powershell.Models.IDistributedStorageSummary[] DistributedStorage { get; set; }

    }
}