Show / Hide Table of Contents

Class GetCertificateAuthorityBundleRequest

Inheritance
object
GetCertificateAuthorityBundleRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CertificatesService.Requests
Assembly: OCI.DotNetSDK.Certificates.dll
Syntax
public class GetCertificateAuthorityBundleRequest : IOciRequest
Examples

Click here to see an example of how to use GetCertificateAuthorityBundle request.

Properties

CertificateAuthorityId

Declaration
[Required(ErrorMessage = "CertificateAuthorityId is required.")]
[HttpConverter(TargetEnum.Path, "certificateAuthorityId")]
public string CertificateAuthorityId { get; set; }
Property Value
Type Description
string

The OCID of the certificate authority (CA).

Remarks

Required

CertificateAuthorityVersionName

Declaration
[HttpConverter(TargetEnum.Query, "certificateAuthorityVersionName")]
public string CertificateAuthorityVersionName { get; set; }
Property Value
Type Description
string

The name of the certificate authority (CA). (This might be referred to as the name of the CA version, as every CA consists of at least one version.) Names are unique across versions of a given CA.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Stage

Declaration
[HttpConverter(TargetEnum.Query, "stage")]
public GetCertificateAuthorityBundleRequest.StageEnum? Stage { get; set; }
Property Value
Type Description
GetCertificateAuthorityBundleRequest.StageEnum?

The rotation state of the certificate version.

VersionNumber

Declaration
[HttpConverter(TargetEnum.Query, "versionNumber")]
public long? VersionNumber { get; set; }
Property Value
Type Description
long?

The version number of the certificate authority (CA).

Implements

IOciRequest
In this article
Back to top