generated/api/Models/KubernetesSlaDetails.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>SLA Details for a Kubernetes entity</summary>
    public partial class KubernetesSlaDetails :
        Commvault.Powershell.Models.IKubernetesSlaDetails,
        Commvault.Powershell.Models.IKubernetesSlaDetailsInternal
    {

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

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

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

        /// <summary>Provides the SLA status.</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Status { get => this._status; set => this._status = value; }

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

        }
    }
    /// SLA Details for a Kubernetes entity
    public partial interface IKubernetesSlaDetails :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"reason",
        PossibleTypes = new [] { typeof(string) })]
        string Reason { get; set; }
        /// <summary>Provides the SLA status.</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Provides the SLA status.",
        SerializedName = @"status",
        PossibleTypes = new [] { typeof(string) })]
        string Status { get; set; }

    }
    /// SLA Details for a Kubernetes entity
    internal partial interface IKubernetesSlaDetailsInternal

    {
        string Reason { get; set; }
        /// <summary>Provides the SLA status.</summary>
        string Status { get; set; }

    }
}