Show / Hide Table of Contents

Class InlinePublicKeyVerificationKeySource

Specifies the Inline public key verification source details

Inheritance
object
VerificationKeySource
InlinePublicKeyVerificationKeySource
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class InlinePublicKeyVerificationKeySource : VerificationKeySource

Properties

CurrentPublicKey

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

Current version of Base64 encoding of the public key which is in binary GPG exported format.

Remarks

Required

PreviousPublicKey

Declaration
[JsonProperty(PropertyName = "previousPublicKey")]
public string PreviousPublicKey { get; set; }
Property Value
Type Description
string

Previous version of Base64 encoding of the public key which is in binary GPG exported format. This would be used for key rotation scenarios.

In this article
Back to top