generated/api/Models/LaptopPlanBackupContent.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; public partial class LaptopPlanBackupContent : Commvault.Powershell.Models.ILaptopPlanBackupContent, Commvault.Powershell.Models.ILaptopPlanBackupContentInternal { /// <summary>Backing field for <see cref="FileSystemQuota" /> property.</summary> private long? _fileSystemQuota; /// <summary> /// Maximum number of gigabytes that you can store in the File System. Giving value as -1 means infinite file system quota. /// </summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public long? FileSystemQuota { get => this._fileSystemQuota; set => this._fileSystemQuota = value; } /// <summary>Backing field for <see cref="MacExcludedPaths" /> property.</summary> private string[] _macExcludedPaths; /// <summary>Paths to exclude for Mac</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string[] MacExcludedPaths { get => this._macExcludedPaths; set => this._macExcludedPaths = value; } /// <summary>Backing field for <see cref="MacIncludedPaths" /> property.</summary> private string[] _macIncludedPaths; /// <summary>Paths to include for Mac</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string[] MacIncludedPaths { get => this._macIncludedPaths; set => this._macIncludedPaths = value; } /// <summary>Backing field for <see cref="UnixExcludedPaths" /> property.</summary> private string[] _unixExcludedPaths; /// <summary>Paths to exclude for UNIX</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string[] UnixExcludedPaths { get => this._unixExcludedPaths; set => this._unixExcludedPaths = value; } /// <summary>Backing field for <see cref="UnixIncludedPaths" /> property.</summary> private string[] _unixIncludedPaths; /// <summary>Paths to include for UNIX</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string[] UnixIncludedPaths { get => this._unixIncludedPaths; set => this._unixIncludedPaths = value; } /// <summary>Backing field for <see cref="WindowsExcludedPaths" /> property.</summary> private string[] _windowsExcludedPaths; /// <summary>Paths to exclude for Windows</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string[] WindowsExcludedPaths { get => this._windowsExcludedPaths; set => this._windowsExcludedPaths = value; } /// <summary>Backing field for <see cref="WindowsIncludedPaths" /> property.</summary> private string[] _windowsIncludedPaths; /// <summary>Paths to include for Windows</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string[] WindowsIncludedPaths { get => this._windowsIncludedPaths; set => this._windowsIncludedPaths = value; } /// <summary>Creates an new <see cref="LaptopPlanBackupContent" /> instance.</summary> public LaptopPlanBackupContent() { } } public partial interface ILaptopPlanBackupContent : Commvault.Powershell.Runtime.IJsonSerializable { /// <summary> /// Maximum number of gigabytes that you can store in the File System. Giving value as -1 means infinite file system quota. /// </summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Maximum number of gigabytes that you can store in the File System. Giving value as -1 means infinite file system quota.", SerializedName = @"fileSystemQuota", PossibleTypes = new [] { typeof(long) })] long? FileSystemQuota { get; set; } /// <summary>Paths to exclude for Mac</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Paths to exclude for Mac", SerializedName = @"macExcludedPaths", PossibleTypes = new [] { typeof(string) })] string[] MacExcludedPaths { get; set; } /// <summary>Paths to include for Mac</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Paths to include for Mac", SerializedName = @"macIncludedPaths", PossibleTypes = new [] { typeof(string) })] string[] MacIncludedPaths { get; set; } /// <summary>Paths to exclude for UNIX</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Paths to exclude for UNIX", SerializedName = @"unixExcludedPaths", PossibleTypes = new [] { typeof(string) })] string[] UnixExcludedPaths { get; set; } /// <summary>Paths to include for UNIX</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Paths to include for UNIX", SerializedName = @"unixIncludedPaths", PossibleTypes = new [] { typeof(string) })] string[] UnixIncludedPaths { get; set; } /// <summary>Paths to exclude for Windows</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Paths to exclude for Windows", SerializedName = @"windowsExcludedPaths", PossibleTypes = new [] { typeof(string) })] string[] WindowsExcludedPaths { get; set; } /// <summary>Paths to include for Windows</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Paths to include for Windows", SerializedName = @"windowsIncludedPaths", PossibleTypes = new [] { typeof(string) })] string[] WindowsIncludedPaths { get; set; } } internal partial interface ILaptopPlanBackupContentInternal { /// <summary> /// Maximum number of gigabytes that you can store in the File System. Giving value as -1 means infinite file system quota. /// </summary> long? FileSystemQuota { get; set; } /// <summary>Paths to exclude for Mac</summary> string[] MacExcludedPaths { get; set; } /// <summary>Paths to include for Mac</summary> string[] MacIncludedPaths { get; set; } /// <summary>Paths to exclude for UNIX</summary> string[] UnixExcludedPaths { get; set; } /// <summary>Paths to include for UNIX</summary> string[] UnixIncludedPaths { get; set; } /// <summary>Paths to exclude for Windows</summary> string[] WindowsExcludedPaths { get; set; } /// <summary>Paths to include for Windows</summary> string[] WindowsIncludedPaths { get; set; } } } |