Show / Hide Table of Contents

Class CertificateSummary

Summary of the Certificates.

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

Properties

IsSelfSigned

Declaration
[Required(ErrorMessage = "IsSelfSigned is required.")]
[JsonProperty(PropertyName = "isSelfSigned")]
public bool? IsSelfSigned { get; set; }
Property Value
Type Description
bool?

Indicates if the certificate is self signed.

Remarks

Required

Key

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

The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CertificateLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
CertificateLifecycleState?

Possible certificate lifecycle states.

Remarks

Required

Subject

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

The Certificate subject.

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

Remarks

Required

TimeValidTo

Declaration
[Required(ErrorMessage = "TimeValidTo is required.")]
[JsonProperty(PropertyName = "timeValidTo")]
public DateTime? TimeValidTo { get; set; }
Property Value
Type Description
DateTime?

The time the certificate is valid to. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

Remarks

Required

In this article
Back to top