generated/api/Models/ApplicationGroupGetOptions.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>Application Group Backup Options</summary> public partial class ApplicationGroupGetOptions : Commvault.Powershell.Models.IApplicationGroupGetOptions, Commvault.Powershell.Models.IApplicationGroupGetOptionsInternal { /// <summary>Backing field for <see cref="BackupStreams" /> property.</summary> private long? _backupStreams; /// <summary>Define number of parallel data readers</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public long? BackupStreams { get => this._backupStreams; set => this._backupStreams = value; } /// <summary>Backing field for <see cref="JobStartTime" /> property.</summary> private long? _jobStartTime; /// <summary>Define the backup job start time in epochs</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public long? JobStartTime { get => this._jobStartTime; set => this._jobStartTime = value; } /// <summary>Creates an new <see cref="ApplicationGroupGetOptions" /> instance.</summary> public ApplicationGroupGetOptions() { } } /// Application Group Backup Options public partial interface IApplicationGroupGetOptions : Commvault.Powershell.Runtime.IJsonSerializable { /// <summary>Define number of parallel data readers</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Define number of parallel data readers", SerializedName = @"backupStreams", PossibleTypes = new [] { typeof(long) })] long? BackupStreams { get; set; } /// <summary>Define the backup job start time in epochs</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Define the backup job start time in epochs", SerializedName = @"jobStartTime", PossibleTypes = new [] { typeof(long) })] long? JobStartTime { get; set; } } /// Application Group Backup Options internal partial interface IApplicationGroupGetOptionsInternal { /// <summary>Define number of parallel data readers</summary> long? BackupStreams { get; set; } /// <summary>Define the backup job start time in epochs</summary> long? JobStartTime { get; set; } } } |