generated/api/Models/PlanOverrideSettings.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>
    /// To allow the derived plans that use this plan as the base plan to override the settings, property allowPlanOverride must
    /// be true, and then select one of the options for Storage pool, RPO and backup Content.
    /// </summary>
    public partial class PlanOverrideSettings :
        Commvault.Powershell.Models.IPlanOverrideSettings,
        Commvault.Powershell.Models.IPlanOverrideSettingsInternal
    {

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

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string BackupContent { get => this._backupContent; set => this._backupContent = value; }

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

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Rpo { get => this._rpo; set => this._rpo = value; }

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

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string StoragePool { get => this._storagePool; set => this._storagePool = value; }

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

        }
    }
    /// To allow the derived plans that use this plan as the base plan to override the settings, property allowPlanOverride must
    /// be true, and then select one of the options for Storage pool, RPO and backup Content.
    public partial interface IPlanOverrideSettings :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"backupContent",
        PossibleTypes = new [] { typeof(string) })]
        string BackupContent { get; set; }

        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"RPO",
        PossibleTypes = new [] { typeof(string) })]
        string Rpo { get; set; }

        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"storagePool",
        PossibleTypes = new [] { typeof(string) })]
        string StoragePool { get; set; }

    }
    /// To allow the derived plans that use this plan as the base plan to override the settings, property allowPlanOverride must
    /// be true, and then select one of the options for Storage pool, RPO and backup Content.
    internal partial interface IPlanOverrideSettingsInternal

    {
        string BackupContent { get; set; }

        string Rpo { get; set; }

        string StoragePool { get; set; }

    }
}