| | | 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> Specifies information about the SSH public key. </summary> |
| | | 13 | | public partial class SshPublicKeyUpdateResource : UpdateResource |
| | | 14 | | { |
| | | 15 | | /// <summary> Initializes a new instance of SshPublicKeyUpdateResource. </summary> |
| | 0 | 16 | | public SshPublicKeyUpdateResource() |
| | | 17 | | { |
| | 0 | 18 | | } |
| | | 19 | | |
| | | 20 | | /// <summary> Initializes a new instance of SshPublicKeyUpdateResource. </summary> |
| | | 21 | | /// <param name="tags"> Resource tags. </param> |
| | | 22 | | /// <param name="publicKey"> SSH public key used to authenticate to a virtual machine through ssh. If this prope |
| | 0 | 23 | | internal SshPublicKeyUpdateResource(IDictionary<string, string> tags, string publicKey) : base(tags) |
| | | 24 | | { |
| | 0 | 25 | | PublicKey = publicKey; |
| | 0 | 26 | | } |
| | | 27 | | |
| | | 28 | | /// <summary> SSH public key used to authenticate to a virtual machine through ssh. If this property is not init |
| | 0 | 29 | | public string PublicKey { get; set; } |
| | | 30 | | } |
| | | 31 | | } |