| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.Compute.Models |
| | 11 | | { |
| | 12 | | /// <summary> Profile for Windows VMs in the container service cluster. </summary> |
| | 13 | | public partial class ContainerServiceWindowsProfile |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of ContainerServiceWindowsProfile. </summary> |
| | 16 | | /// <param name="adminUsername"> The administrator username to use for Windows VMs. </param> |
| | 17 | | /// <param name="adminPassword"> The administrator password to use for Windows VMs. </param> |
| 0 | 18 | | public ContainerServiceWindowsProfile(string adminUsername, string adminPassword) |
| | 19 | | { |
| 0 | 20 | | if (adminUsername == null) |
| | 21 | | { |
| 0 | 22 | | throw new ArgumentNullException(nameof(adminUsername)); |
| | 23 | | } |
| 0 | 24 | | if (adminPassword == null) |
| | 25 | | { |
| 0 | 26 | | throw new ArgumentNullException(nameof(adminPassword)); |
| | 27 | | } |
| | 28 | |
|
| 0 | 29 | | AdminUsername = adminUsername; |
| 0 | 30 | | AdminPassword = adminPassword; |
| 0 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> The administrator username to use for Windows VMs. </summary> |
| 0 | 34 | | public string AdminUsername { get; set; } |
| | 35 | | /// <summary> The administrator password to use for Windows VMs. </summary> |
| 0 | 36 | | public string AdminPassword { get; set; } |
| | 37 | | } |
| | 38 | | } |