-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathPreferencesValidationResult.cs
34 lines (28 loc) · 1.41 KB
/
PreferencesValidationResult.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using Azure;
namespace Azure.ResourceManager.DataBox.Models
{
/// <summary> Properties of data center and transport preference validation response. </summary>
public partial class PreferencesValidationResult : DataBoxValidationInputResult
{
/// <summary> Initializes a new instance of PreferencesValidationResult. </summary>
internal PreferencesValidationResult()
{
ValidationType = DataBoxValidationInputDiscriminator.ValidatePreferences;
}
/// <summary> Initializes a new instance of PreferencesValidationResult. </summary>
/// <param name="validationType"> Identifies the type of validation response. </param>
/// <param name="error"> Error code and message of validation response. </param>
/// <param name="status"> Validation status of requested data center and transport. </param>
internal PreferencesValidationResult(DataBoxValidationInputDiscriminator validationType, ResponseError error, DataBoxValidationStatus? status) : base(validationType, error)
{
Status = status;
ValidationType = validationType;
}
/// <summary> Validation status of requested data center and transport. </summary>
public DataBoxValidationStatus? Status { get; }
}
}