generated/api/Models/GoogleCloudDiskInfo.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>Google cloud disk information</summary>
    public partial class GoogleCloudDiskInfo :
        Commvault.Powershell.Models.IGoogleCloudDiskInfo,
        Commvault.Powershell.Models.IGoogleCloudDiskInfoInternal
    {

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

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

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

        }
    }
    /// Google cloud disk information
    public partial interface IGoogleCloudDiskInfo :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>Google Cloud VM disk name</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Google Cloud VM disk name",
        SerializedName = @"name",
        PossibleTypes = new [] { typeof(string) })]
        string Name { get; set; }

    }
    /// Google cloud disk information
    internal partial interface IGoogleCloudDiskInfoInternal

    {
        /// <summary>Google Cloud VM disk name</summary>
        string Name { get; set; }

    }
}