generated/api/Models/AzureDestinationInfoDisk.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>Azure disk info for restore</summary>
    public partial class AzureDestinationInfoDisk :
        Commvault.Powershell.Models.IAzureDestinationInfoDisk,
        Commvault.Powershell.Models.IAzureDestinationInfoDiskInternal
    {

        /// <summary>Backing field for <see cref="Name" /> property.</summary>
        private string _name;

        /// <summary>Azure disk name</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Name { get => this._name; set => this._name = value; }

        /// <summary>Backing field for <see cref="StorageAccount" /> property.</summary>
        private string _storageAccount;

        /// <summary>Azure storage account name</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string StorageAccount { get => this._storageAccount; set => this._storageAccount = value; }

        /// <summary>Creates an new <see cref="AzureDestinationInfoDisk" /> instance.</summary>
        public AzureDestinationInfoDisk()
        {

        }
    }
    /// Azure disk info for restore
    public partial interface IAzureDestinationInfoDisk :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>Azure disk name</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Azure disk name",
        SerializedName = @"name",
        PossibleTypes = new [] { typeof(string) })]
        string Name { get; set; }
        /// <summary>Azure storage account name</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Azure storage account name",
        SerializedName = @"storageAccount",
        PossibleTypes = new [] { typeof(string) })]
        string StorageAccount { get; set; }

    }
    /// Azure disk info for restore
    internal partial interface IAzureDestinationInfoDiskInternal

    {
        /// <summary>Azure disk name</summary>
        string Name { get; set; }
        /// <summary>Azure storage account name</summary>
        string StorageAccount { get; set; }

    }
}