generated/api/Models/RpStoreListResponse.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>List of recovery point stores.</summary> public partial class RpStoreListResponse : Commvault.Powershell.Models.IRpStoreListResponse, Commvault.Powershell.Models.IRpStoreListResponseInternal { /// <summary>Backing field for <see cref="Stores" /> property.</summary> private System.Collections.Generic.List<Commvault.Powershell.Models.IRpStoreListEntity> _stores; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public System.Collections.Generic.List<Commvault.Powershell.Models.IRpStoreListEntity> Stores { get => this._stores; set => this._stores = value; } /// <summary>Creates an new <see cref="RpStoreListResponse" /> instance.</summary> public RpStoreListResponse() { } } /// List of recovery point stores. public partial interface IRpStoreListResponse : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"stores", PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IRpStoreListEntity) })] System.Collections.Generic.List<Commvault.Powershell.Models.IRpStoreListEntity> Stores { get; set; } } /// List of recovery point stores. internal partial interface IRpStoreListResponseInternal { System.Collections.Generic.List<Commvault.Powershell.Models.IRpStoreListEntity> Stores { get; set; } } } |