| | 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.Collections.Generic; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.Compute.Models |
| | 11 | | { |
| | 12 | | /// <summary> Describes a virtual machine scale set OS profile. </summary> |
| | 13 | | public partial class VirtualMachineScaleSetUpdateOSProfile |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetUpdateOSProfile. </summary> |
| 0 | 16 | | public VirtualMachineScaleSetUpdateOSProfile() |
| | 17 | | { |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetUpdateOSProfile. </summary> |
| | 21 | | /// <param name="customData"> A base-64 encoded string of custom data. </param> |
| | 22 | | /// <param name="windowsConfiguration"> The Windows Configuration of the OS profile. </param> |
| | 23 | | /// <param name="linuxConfiguration"> The Linux Configuration of the OS profile. </param> |
| | 24 | | /// <param name="secrets"> The List of certificates for addition to the VM. </param> |
| 0 | 25 | | internal VirtualMachineScaleSetUpdateOSProfile(string customData, WindowsConfiguration windowsConfiguration, Lin |
| | 26 | | { |
| 0 | 27 | | CustomData = customData; |
| 0 | 28 | | WindowsConfiguration = windowsConfiguration; |
| 0 | 29 | | LinuxConfiguration = linuxConfiguration; |
| 0 | 30 | | Secrets = secrets; |
| 0 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> A base-64 encoded string of custom data. </summary> |
| 0 | 34 | | public string CustomData { get; set; } |
| | 35 | | /// <summary> The Windows Configuration of the OS profile. </summary> |
| 0 | 36 | | public WindowsConfiguration WindowsConfiguration { get; set; } |
| | 37 | | /// <summary> The Linux Configuration of the OS profile. </summary> |
| 0 | 38 | | public LinuxConfiguration LinuxConfiguration { get; set; } |
| | 39 | | /// <summary> The List of certificates for addition to the VM. </summary> |
| 0 | 40 | | public IList<VaultSecretGroup> Secrets { get; set; } |
| | 41 | | } |
| | 42 | | } |