-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
LinuxSshPublicKey.cs
28 lines (23 loc) · 1.02 KB
/
LinuxSshPublicKey.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
namespace Azure.ResourceManager.HybridContainerService.Models
{
/// <summary> The LinuxSshPublicKey. </summary>
public partial class LinuxSshPublicKey
{
/// <summary> Initializes a new instance of <see cref="LinuxSshPublicKey"/>. </summary>
public LinuxSshPublicKey()
{
}
/// <summary> Initializes a new instance of <see cref="LinuxSshPublicKey"/>. </summary>
/// <param name="keyData"> Certificate public key used to authenticate with VMs through SSH. The certificate must be in PEM format with or without headers. </param>
internal LinuxSshPublicKey(string keyData)
{
KeyData = keyData;
}
/// <summary> Certificate public key used to authenticate with VMs through SSH. The certificate must be in PEM format with or without headers. </summary>
public string KeyData { get; set; }
}
}