| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.ResourceManager.Resources.Models |
| | 9 | | { |
| | 10 | | /// <summary> Deployment operation information. </summary> |
| | 11 | | public partial class DeploymentOperation |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of DeploymentOperation. </summary> |
| 0 | 14 | | internal DeploymentOperation() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of DeploymentOperation. </summary> |
| | 19 | | /// <param name="id"> Full deployment operation ID. </param> |
| | 20 | | /// <param name="operationId"> Deployment operation ID. </param> |
| | 21 | | /// <param name="properties"> Deployment properties. </param> |
| 60 | 22 | | internal DeploymentOperation(string id, string operationId, DeploymentOperationProperties properties) |
| | 23 | | { |
| 60 | 24 | | Id = id; |
| 60 | 25 | | OperationId = operationId; |
| 60 | 26 | | Properties = properties; |
| 60 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> Full deployment operation ID. </summary> |
| 0 | 30 | | public string Id { get; } |
| | 31 | | /// <summary> Deployment operation ID. </summary> |
| 8 | 32 | | public string OperationId { get; } |
| | 33 | | /// <summary> Deployment properties. </summary> |
| 52 | 34 | | public DeploymentOperationProperties Properties { get; } |
| | 35 | | } |
| | 36 | | } |