generated/api/Models/ClusterDetailsCommonClientSecurity.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 client security details of a Kubernetes cluster</summary>
    public partial class ClusterDetailsCommonClientSecurity :
        Commvault.Powershell.Models.IClusterDetailsCommonClientSecurity,
        Commvault.Powershell.Models.IClusterDetailsCommonClientSecurityInternal
    {

        /// <summary>Backing field for <see cref="Owners" /> property.</summary>
        private string[] _owners;

        /// <summary>List of owners associated to the cluster</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string[] Owners { get => this._owners; set => this._owners = value; }

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

        }
    }
    /// Describe the client security details of a Kubernetes cluster
    public partial interface IClusterDetailsCommonClientSecurity :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>List of owners associated to the cluster</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"List of owners associated to the cluster",
        SerializedName = @"owners",
        PossibleTypes = new [] { typeof(string) })]
        string[] Owners { get; set; }

    }
    /// Describe the client security details of a Kubernetes cluster
    internal partial interface IClusterDetailsCommonClientSecurityInternal

    {
        /// <summary>List of owners associated to the cluster</summary>
        string[] Owners { get; set; }

    }
}