generated/api/Models/KubernetesContentSelectors.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>Describes the label selector content for the Application Group</summary>
    public partial class KubernetesContentSelectors :
        Commvault.Powershell.Models.IKubernetesContentSelectors,
        Commvault.Powershell.Models.IKubernetesContentSelectorsInternal
    {

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

        /// <summary>Selector level of the label selector</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string SelectorLevel { get => this._selectorLevel; set => this._selectorLevel = value; }

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

        /// <summary>Value of the label selector in key=value format</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string SelectorValue { get => this._selectorValue; set => this._selectorValue = value; }

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

        }
    }
    /// Describes the label selector content for the Application Group
    public partial interface IKubernetesContentSelectors :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>Selector level of the label selector</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = true,
        ReadOnly = false,
        Description = @"Selector level of the label selector",
        SerializedName = @"selectorLevel",
        PossibleTypes = new [] { typeof(string) })]
        string SelectorLevel { get; set; }
        /// <summary>Value of the label selector in key=value format</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = true,
        ReadOnly = false,
        Description = @"Value of the label selector in key=value format",
        SerializedName = @"selectorValue",
        PossibleTypes = new [] { typeof(string) })]
        string SelectorValue { get; set; }

    }
    /// Describes the label selector content for the Application Group
    internal partial interface IKubernetesContentSelectorsInternal

    {
        /// <summary>Selector level of the label selector</summary>
        string SelectorLevel { get; set; }
        /// <summary>Value of the label selector in key=value format</summary>
        string SelectorValue { get; set; }

    }
}