generated/api/Models/PlanSnapshotOptions.cs
// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.8.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 feature applies only to File System Agents</summary> public partial class PlanSnapshotOptions : Commvault.Powershell.Models.IPlanSnapshotOptions, Commvault.Powershell.Models.IPlanSnapshotOptionsInternal { /// <summary>Backing field for <see cref="BackupCopyRpoMins" /> property.</summary> private long? _backupCopyRpoMins; /// <summary>Backup copy RPO in minutes</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public long? BackupCopyRpoMins { get => this._backupCopyRpoMins; set => this._backupCopyRpoMins = value; } /// <summary>Backing field for <see cref="EnableBackupCopy" /> property.</summary> private bool? _enableBackupCopy; /// <summary>Flag to enable backup copy</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public bool? EnableBackupCopy { get => this._enableBackupCopy; set => this._enableBackupCopy = value; } /// <summary>Creates an new <see cref="PlanSnapshotOptions" /> instance.</summary> public PlanSnapshotOptions() { } } /// This feature applies only to File System Agents public partial interface IPlanSnapshotOptions : Commvault.Powershell.Runtime.IJsonSerializable { /// <summary>Backup copy RPO in minutes</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Backup copy RPO in minutes", SerializedName = @"backupCopyRPOMins", PossibleTypes = new [] { typeof(long) })] long? BackupCopyRpoMins { get; set; } /// <summary>Flag to enable backup copy</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Flag to enable backup copy", SerializedName = @"enableBackupCopy", PossibleTypes = new [] { typeof(bool) })] bool? EnableBackupCopy { get; set; } } /// This feature applies only to File System Agents internal partial interface IPlanSnapshotOptionsInternal { /// <summary>Backup copy RPO in minutes</summary> long? BackupCopyRpoMins { get; set; } /// <summary>Flag to enable backup copy</summary> bool? EnableBackupCopy { get; set; } } } |