| | 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.Compute.Models |
| | 9 | | { |
| | 10 | | /// <summary> Summary for an orchestration service of a virtual machine scale set. </summary> |
| | 11 | | public partial class OrchestrationServiceSummary |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of OrchestrationServiceSummary. </summary> |
| 8 | 14 | | internal OrchestrationServiceSummary() |
| | 15 | | { |
| 8 | 16 | | ServiceName = "AutomaticRepairs"; |
| 8 | 17 | | } |
| | 18 | |
|
| | 19 | | /// <summary> Initializes a new instance of OrchestrationServiceSummary. </summary> |
| | 20 | | /// <param name="serviceName"> The name of the service. </param> |
| | 21 | | /// <param name="serviceState"> The current state of the service. </param> |
| 12 | 22 | | internal OrchestrationServiceSummary(string serviceName, OrchestrationServiceState? serviceState) |
| | 23 | | { |
| 12 | 24 | | ServiceName = serviceName; |
| 12 | 25 | | ServiceState = serviceState; |
| 12 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <summary> The name of the service. </summary> |
| 12 | 29 | | public string ServiceName { get; } |
| | 30 | | /// <summary> The current state of the service. </summary> |
| 12 | 31 | | public OrchestrationServiceState? ServiceState { get; } |
| | 32 | | } |
| | 33 | | } |