-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
AnalysisServerNameAvailabilityResult.cs
36 lines (31 loc) · 1.43 KB
/
AnalysisServerNameAvailabilityResult.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
namespace Azure.ResourceManager.Analysis.Models
{
/// <summary> The checking result of server name availability. </summary>
public partial class AnalysisServerNameAvailabilityResult
{
/// <summary> Initializes a new instance of AnalysisServerNameAvailabilityResult. </summary>
internal AnalysisServerNameAvailabilityResult()
{
}
/// <summary> Initializes a new instance of AnalysisServerNameAvailabilityResult. </summary>
/// <param name="isNameAvailable"> Indicator of available of the server name. </param>
/// <param name="reason"> The reason of unavailability. </param>
/// <param name="message"> The detailed message of the request unavailability. </param>
internal AnalysisServerNameAvailabilityResult(bool? isNameAvailable, string reason, string message)
{
IsNameAvailable = isNameAvailable;
Reason = reason;
Message = message;
}
/// <summary> Indicator of available of the server name. </summary>
public bool? IsNameAvailable { get; }
/// <summary> The reason of unavailability. </summary>
public string Reason { get; }
/// <summary> The detailed message of the request unavailability. </summary>
public string Message { get; }
}
}