generated/api/Models/KubernetesApplicationCountInfo.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>Describe the Backup info for a Kubernetes Application</summary>
    public partial class KubernetesApplicationCountInfo :
        Commvault.Powershell.Models.IKubernetesApplicationCountInfo,
        Commvault.Powershell.Models.IKubernetesApplicationCountInfoInternal
    {

        /// <summary>Backing field for <see cref="BackupUpWithErrorCount" /> property.</summary>
        private long? _backupUpWithErrorCount;

        /// <summary>Count of Applications Backed up with errors</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? BackupUpWithErrorCount { get => this._backupUpWithErrorCount; set => this._backupUpWithErrorCount = value; }

        /// <summary>Backing field for <see cref="NeverBackedUpCount" /> property.</summary>
        private long? _neverBackedUpCount;

        /// <summary>Count of Applications Never Backed up</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? NeverBackedUpCount { get => this._neverBackedUpCount; set => this._neverBackedUpCount = value; }

        /// <summary>Backing field for <see cref="NotProtectedCount" /> property.</summary>
        private long? _notProtectedCount;

        /// <summary>Count of Applications Not Protected</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? NotProtectedCount { get => this._notProtectedCount; set => this._notProtectedCount = value; }

        /// <summary>Backing field for <see cref="PendingCount" /> property.</summary>
        private long? _pendingCount;

        /// <summary>Count of Applications Pending backup</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? PendingCount { get => this._pendingCount; set => this._pendingCount = value; }

        /// <summary>Backing field for <see cref="ProtectedCount" /> property.</summary>
        private long? _protectedCount;

        /// <summary>Count of Applications Protected</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? ProtectedCount { get => this._protectedCount; set => this._protectedCount = value; }

        /// <summary>Backing field for <see cref="TotalCount" /> property.</summary>
        private long? _totalCount;

        /// <summary>Count of total number of Applications</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? TotalCount { get => this._totalCount; set => this._totalCount = value; }

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

        }
    }
    /// Describe the Backup info for a Kubernetes Application
    public partial interface IKubernetesApplicationCountInfo :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>Count of Applications Backed up with errors</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Count of Applications Backed up with errors",
        SerializedName = @"backupUpWithErrorCount",
        PossibleTypes = new [] { typeof(long) })]
        long? BackupUpWithErrorCount { get; set; }
        /// <summary>Count of Applications Never Backed up</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Count of Applications Never Backed up",
        SerializedName = @"neverBackedUpCount",
        PossibleTypes = new [] { typeof(long) })]
        long? NeverBackedUpCount { get; set; }
        /// <summary>Count of Applications Not Protected</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Count of Applications Not Protected",
        SerializedName = @"notProtectedCount",
        PossibleTypes = new [] { typeof(long) })]
        long? NotProtectedCount { get; set; }
        /// <summary>Count of Applications Pending backup</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Count of Applications Pending backup",
        SerializedName = @"pendingCount",
        PossibleTypes = new [] { typeof(long) })]
        long? PendingCount { get; set; }
        /// <summary>Count of Applications Protected</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Count of Applications Protected",
        SerializedName = @"protectedCount",
        PossibleTypes = new [] { typeof(long) })]
        long? ProtectedCount { get; set; }
        /// <summary>Count of total number of Applications</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Count of total number of Applications",
        SerializedName = @"totalCount",
        PossibleTypes = new [] { typeof(long) })]
        long? TotalCount { get; set; }

    }
    /// Describe the Backup info for a Kubernetes Application
    internal partial interface IKubernetesApplicationCountInfoInternal

    {
        /// <summary>Count of Applications Backed up with errors</summary>
        long? BackupUpWithErrorCount { get; set; }
        /// <summary>Count of Applications Never Backed up</summary>
        long? NeverBackedUpCount { get; set; }
        /// <summary>Count of Applications Not Protected</summary>
        long? NotProtectedCount { get; set; }
        /// <summary>Count of Applications Pending backup</summary>
        long? PendingCount { get; set; }
        /// <summary>Count of Applications Protected</summary>
        long? ProtectedCount { get; set; }
        /// <summary>Count of total number of Applications</summary>
        long? TotalCount { get; set; }

    }
}