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

    public partial class BackupOperationsList :
        Commvault.Powershell.Models.IBackupOperationsList,
        Commvault.Powershell.Models.IBackupOperationsListInternal
    {

        /// <summary>Backing field for <see cref="Full" /> property.</summary>
        private bool? _full;

        /// <summary>Full job is selected or not for blackout window</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public bool? Full { get => this._full; set => this._full = value; }

        /// <summary>Backing field for <see cref="IncrementalAndDifferential" /> property.</summary>
        private bool? _incrementalAndDifferential;

        /// <summary>Incremental and Differential job is selected or not for blackout window</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public bool? IncrementalAndDifferential { get => this._incrementalAndDifferential; set => this._incrementalAndDifferential = value; }

        /// <summary>Backing field for <see cref="SyntheticFull" /> property.</summary>
        private bool? _syntheticFull;

        /// <summary>Synthetic Full job is selected or not for blackout window</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public bool? SyntheticFull { get => this._syntheticFull; set => this._syntheticFull = value; }

        /// <summary>Backing field for <see cref="TransactionLog" /> property.</summary>
        private bool? _transactionLog;

        /// <summary>Transaction Log job is selected or not for blackout window</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public bool? TransactionLog { get => this._transactionLog; set => this._transactionLog = value; }

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

        }
    }
    public partial interface IBackupOperationsList :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>Full job is selected or not for blackout window</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Full job is selected or not for blackout window",
        SerializedName = @"full",
        PossibleTypes = new [] { typeof(bool) })]
        bool? Full { get; set; }
        /// <summary>Incremental and Differential job is selected or not for blackout window</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Incremental and Differential job is selected or not for blackout window",
        SerializedName = @"incrementalAndDifferential",
        PossibleTypes = new [] { typeof(bool) })]
        bool? IncrementalAndDifferential { get; set; }
        /// <summary>Synthetic Full job is selected or not for blackout window</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Synthetic Full job is selected or not for blackout window",
        SerializedName = @"syntheticFull",
        PossibleTypes = new [] { typeof(bool) })]
        bool? SyntheticFull { get; set; }
        /// <summary>Transaction Log job is selected or not for blackout window</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Transaction Log job is selected or not for blackout window",
        SerializedName = @"transactionLog",
        PossibleTypes = new [] { typeof(bool) })]
        bool? TransactionLog { get; set; }

    }
    internal partial interface IBackupOperationsListInternal

    {
        /// <summary>Full job is selected or not for blackout window</summary>
        bool? Full { get; set; }
        /// <summary>Incremental and Differential job is selected or not for blackout window</summary>
        bool? IncrementalAndDifferential { get; set; }
        /// <summary>Synthetic Full job is selected or not for blackout window</summary>
        bool? SyntheticFull { get; set; }
        /// <summary>Transaction Log job is selected or not for blackout window</summary>
        bool? TransactionLog { get; set; }

    }
}