generated/api/Models/GetVMGroupProperties.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>This is used to store VM group details cache</summary>
    public partial class GetVMGroupProperties :
        Commvault.Powershell.Models.IGetVMGroupProperties,
        Commvault.Powershell.Models.IGetVMGroupPropertiesInternal
    {

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

        /// <summary>total count</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? FilterQueryCount { get => this._filterQueryCount; set => this._filterQueryCount = value; }

        /// <summary>Backing field for <see cref="VMGroups" /> property.</summary>
        private Commvault.Powershell.Models.IGetVMGroupResp[] _vMGroups;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public Commvault.Powershell.Models.IGetVMGroupResp[] VMGroups { get => this._vMGroups; set => this._vMGroups = value; }

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

        }
    }
    /// This is used to store VM group details cache
    public partial interface IGetVMGroupProperties :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>total count</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"total count",
        SerializedName = @"filterQueryCount",
        PossibleTypes = new [] { typeof(long) })]
        long? FilterQueryCount { get; set; }

        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"vmGroups",
        PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IGetVMGroupResp) })]
        Commvault.Powershell.Models.IGetVMGroupResp[] VMGroups { get; set; }

    }
    /// This is used to store VM group details cache
    internal partial interface IGetVMGroupPropertiesInternal

    {
        /// <summary>total count</summary>
        long? FilterQueryCount { get; set; }

        Commvault.Powershell.Models.IGetVMGroupResp[] VMGroups { get; set; }

    }
}