Show / Hide Table of Contents

Class PublicKeyDetails

Public key details for a bastion session.

Inheritance
object
PublicKeyDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BastionService.Models
Assembly: OCI.DotNetSDK.Bastion.dll
Syntax
public class PublicKeyDetails

Properties

PublicKeyContent

Declaration
[Required(ErrorMessage = "PublicKeyContent is required.")]
[JsonProperty(PropertyName = "publicKeyContent")]
public string PublicKeyContent { get; set; }
Property Value
Type Description
string

The public key in OpenSSH format of the SSH key pair for the session. When you connect to the session, you must provide the private key of the same SSH key pair.

Remarks

Required

In this article
Back to top