-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
MoverOperationStatusError.cs
45 lines (39 loc) · 1.81 KB
/
MoverOperationStatusError.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
37
38
39
40
41
42
43
44
45
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System.Collections.Generic;
using Azure.Core;
namespace Azure.ResourceManager.ResourceMover.Models
{
/// <summary> Class for operation status errors. </summary>
public partial class MoverOperationStatusError
{
/// <summary> Initializes a new instance of <see cref="MoverOperationStatusError"/>. </summary>
internal MoverOperationStatusError()
{
Details = new ChangeTrackingList<MoverOperationStatusError>();
AdditionalInfo = new ChangeTrackingList<MoverOperationErrorAdditionalInfo>();
}
/// <summary> Initializes a new instance of <see cref="MoverOperationStatusError"/>. </summary>
/// <param name="code"> The error code. </param>
/// <param name="message"> The error message. </param>
/// <param name="details"> The error details. </param>
/// <param name="additionalInfo"> The additional info. </param>
internal MoverOperationStatusError(string code, string message, IReadOnlyList<MoverOperationStatusError> details, IReadOnlyList<MoverOperationErrorAdditionalInfo> additionalInfo)
{
Code = code;
Message = message;
Details = details;
AdditionalInfo = additionalInfo;
}
/// <summary> The error code. </summary>
public string Code { get; }
/// <summary> The error message. </summary>
public string Message { get; }
/// <summary> The error details. </summary>
public IReadOnlyList<MoverOperationStatusError> Details { get; }
/// <summary> The additional info. </summary>
public IReadOnlyList<MoverOperationErrorAdditionalInfo> AdditionalInfo { get; }
}
}