generated/api/Models/GetSnapConfig.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>Get snap configs for vendors</summary>
    public partial class GetSnapConfig :
        Commvault.Powershell.Models.IGetSnapConfig,
        Commvault.Powershell.Models.IGetSnapConfigInternal
    {

        /// <summary>Backing field for <see cref="ConfigList" /> property.</summary>
        private Commvault.Powershell.Models.IArrayConfigsGet[] _configList;

        /// <summary>snap configs of snap vendor with default values</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IArrayConfigsGet[] ConfigList { get => this._configList; set => this._configList = value; }

        /// <summary>Backing field for <see cref="Vendor" /> property.</summary>
        private string _vendor;

        /// <summary>vendor Name</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Vendor { get => this._vendor; set => this._vendor = value; }

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

        }
    }
    /// Get snap configs for vendors
    public partial interface IGetSnapConfig :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>snap configs of snap vendor with default values</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"snap configs of snap vendor with default values",
        SerializedName = @"configList",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IArrayConfigsGet) })]
        Commvault.Powershell.Models.IArrayConfigsGet[] ConfigList { get; set; }
        /// <summary>vendor Name</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"vendor Name",
        SerializedName = @"vendor",
        PossibleTypes = new [] { typeof(string) })]
        string Vendor { get; set; }

    }
    /// Get snap configs for vendors
    internal partial interface IGetSnapConfigInternal

    {
        /// <summary>snap configs of snap vendor with default values</summary>
        Commvault.Powershell.Models.IArrayConfigsGet[] ConfigList { get; set; }
        /// <summary>vendor Name</summary>
        string Vendor { get; set; }

    }
}