-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
StatusMessage.cs
34 lines (28 loc) · 1.03 KB
/
StatusMessage.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.Resources.Models
{
/// <summary> Operation status message object. </summary>
public partial class StatusMessage
{
/// <summary> Initializes a new instance of StatusMessage. </summary>
internal StatusMessage()
{
}
/// <summary> Initializes a new instance of StatusMessage. </summary>
/// <param name="status"> Status of the deployment operation. </param>
/// <param name="error"> The error reported by the operation. </param>
internal StatusMessage(string status, ResponseError error)
{
Status = status;
Error = error;
}
/// <summary> Status of the deployment operation. </summary>
public string Status { get; }
/// <summary> The error reported by the operation. </summary>
public ResponseError Error { get; }
}
}