Show / Hide Table of Contents

Class UploadPartitionCertificatesDetails

An object that encapsulates the necessary partition certificates.

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

Properties

PartitionCertificate

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

Base64 encoded (StandardCharsets.UTF_8) Partition Certificate, which gets created when the CSR is signed.

Remarks

Required

PartitionOwnerCertificate

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

Base64 encoded (StandardCharsets.UTF_8) Partition Owner Certificate, which is used to help sign the CSR.

Remarks

Required

In this article
Back to top