generated/api/Models/GetRunningJobsIdList.cs
// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/powershell@4.0.708) // 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>List of running jobs</summary> public partial class GetRunningJobsIdList : Commvault.Powershell.Models.IGetRunningJobsIdList, Commvault.Powershell.Models.IGetRunningJobsIdListInternal { /// <summary>Backing field for <see cref="JobIds" /> property.</summary> private System.Collections.Generic.List<long> _jobIds; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public System.Collections.Generic.List<long> JobIds { get => this._jobIds; set => this._jobIds = value; } /// <summary>Creates an new <see cref="GetRunningJobsIdList" /> instance.</summary> public GetRunningJobsIdList() { } } /// List of running jobs public partial interface IGetRunningJobsIdList : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"jobIds", PossibleTypes = new [] { typeof(long) })] System.Collections.Generic.List<long> JobIds { get; set; } } /// List of running jobs internal partial interface IGetRunningJobsIdListInternal { System.Collections.Generic.List<long> JobIds { get; set; } } } |