generated/api/Models/MountLocationDetails.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>Mount location details</summary> public partial class MountLocationDetails : Commvault.Powershell.Models.IMountLocationDetails, Commvault.Powershell.Models.IMountLocationDetailsInternal { /// <summary>Backing field for <see cref="Name" /> property.</summary> private string _name; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string Name { get => this._name; set => this._name = value; } /// <summary>Backing field for <see cref="Status" /> property.</summary> private string _status; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string Status { get => this._status; set => this._status = value; } /// <summary>Creates an new <see cref="MountLocationDetails" /> instance.</summary> public MountLocationDetails() { } } /// Mount location details public partial interface IMountLocationDetails : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"name", PossibleTypes = new [] { typeof(string) })] string Name { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"status", PossibleTypes = new [] { typeof(string) })] string Status { get; set; } } /// Mount location details internal partial interface IMountLocationDetailsInternal { string Name { get; set; } string Status { get; set; } } } |