Show / Hide Table of Contents

Class ListCertificateBundleVersionsRequest

Inheritance
object
ListCertificateBundleVersionsRequest
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 ListCertificateBundleVersionsRequest : IOciRequest
Examples

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

Properties

CertificateId

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

The OCID of the certificate.

Remarks

Required

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.

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListCertificateBundleVersionsRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListCertificateBundleVersionsRequest.SortByEnum?

The field to sort by. You can specify only one sort order. The default order for VERSION_NUMBER is ascending.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListCertificateBundleVersionsRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListCertificateBundleVersionsRequest.SortOrderEnum?

The sort order to use, either ascending (ASC) or descending (DESC).

Implements

IOciRequest
In this article
Back to top