generated/api/Models/VMHypervisorSecurityProp.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 VMHypervisorSecurityProp :
        Commvault.Powershell.Models.IVMHypervisorSecurityProp,
        Commvault.Powershell.Models.IVMHypervisorSecurityPropInternal
    {

        /// <summary>Backing field for <see cref="AssociatedUserGroups" /> property.</summary>
        private Commvault.Powershell.Models.IIdName[] _associatedUserGroups;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IIdName[] AssociatedUserGroups { get => this._associatedUserGroups; set => this._associatedUserGroups = value; }

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

        /// <summary>Client owners for the Hypervisor</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string ClientOwners { get => this._clientOwners; set => this._clientOwners = value; }

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

        }
    }
    public partial interface IVMHypervisorSecurityProp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"associatedUserGroups",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IIdName) })]
        Commvault.Powershell.Models.IIdName[] AssociatedUserGroups { get; set; }
        /// <summary>Client owners for the Hypervisor</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Client owners for the Hypervisor",
        SerializedName = @"clientOwners",
        PossibleTypes = new [] { typeof(string) })]
        string ClientOwners { get; set; }

    }
    internal partial interface IVMHypervisorSecurityPropInternal

    {
        Commvault.Powershell.Models.IIdName[] AssociatedUserGroups { get; set; }
        /// <summary>Client owners for the Hypervisor</summary>
        string ClientOwners { get; set; }

    }
}