generated/api/Models/AzureEndpoints.cs

// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/powershell@4.0.708)
// 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>Endpoints for Aunthentication, Storage and Management</summary>
    public partial class AzureEndpoints :
        Commvault.Powershell.Models.IAzureEndpoints,
        Commvault.Powershell.Models.IAzureEndpointsInternal
    {
 
        /// <summary>Backing field for <see cref="ActiveDirectory" /> property.</summary>
        private string _activeDirectory;
 
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string ActiveDirectory { get => this._activeDirectory; set => this._activeDirectory = value; }
 
        /// <summary>Backing field for <see cref="ResourceManager" /> property.</summary>
        private string _resourceManager;
 
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string ResourceManager { get => this._resourceManager; set => this._resourceManager = value; }
 
        /// <summary>Backing field for <see cref="Storage" /> property.</summary>
        private string _storage;
 
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Storage { get => this._storage; set => this._storage = value; }
 
        /// <summary>Creates an new <see cref="AzureEndpoints" /> instance.</summary>
        public AzureEndpoints()
        {
 
        }
    }
    /// Endpoints for Aunthentication, Storage and Management
    public partial interface IAzureEndpoints :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Read = true,
        Create = true,
        Update = true,
        Description = @"",
        SerializedName = @"activeDirectory",
        PossibleTypes = new [] { typeof(string) })]
        string ActiveDirectory { get; set; }
 
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Read = true,
        Create = true,
        Update = true,
        Description = @"",
        SerializedName = @"resourceManager",
        PossibleTypes = new [] { typeof(string) })]
        string ResourceManager { get; set; }
 
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Read = true,
        Create = true,
        Update = true,
        Description = @"",
        SerializedName = @"storage",
        PossibleTypes = new [] { typeof(string) })]
        string Storage { get; set; }
 
    }
    /// Endpoints for Aunthentication, Storage and Management
    internal partial interface IAzureEndpointsInternal
 
    {
        string ActiveDirectory { get; set; }
 
        string ResourceManager { get; set; }
 
        string Storage { get; set; }
 
    }
}