Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Certificate Manager
  • Getting started
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication with the API
      • Overview
        • Overview
          • Overview
          • IssueCertificate
          • IssueCertificateByCsr
          • Update
          • Delete
          • Get
          • List
          • RevokeCertificate
          • ListAccessBindings
          • SetAccessBindings
          • UpdateAccessBindings
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  • FAQ

In this article:

  • gRPC request
  • ListCertificatesRequest
  • ListCertificatesResponse
  • PrivateCertificate
  1. API reference
  2. gRPC
  3. Certificate Manager Private CA API
  4. PrivateCaCertificate
  5. List

Certificate Manager Private CA API, gRPC: PrivateCaCertificateService.List

Written by
Yandex Cloud
Updated at December 17, 2024
  • gRPC request
  • ListCertificatesRequest
  • ListCertificatesResponse
  • PrivateCertificate

Lists the certificates issued by a given Certificate Authority (CA).

gRPC requestgRPC request

rpc List (ListCertificatesRequest) returns (ListCertificatesResponse)

ListCertificatesRequestListCertificatesRequest

{
  "certificate_authority_id": "string",
  "page_size": "int64",
  "page_token": "string"
}

Request to list certificates issued by a specific Certificate Authority.

Field

Description

certificate_authority_id

string

Required field. The ID of the Certificate Authority issuing the certificates.

page_size

int64

Maximum number of certificates to return per page, optional. Default is 100.

page_token

string

Page token, allows request for the next page of results from a previous list call.

ListCertificatesResponseListCertificatesResponse

{
  "certificates": [
    {
      "id": "string",
      "certificate_authority_id": "string",
      "name": "string",
      "description": "string",
      "issued_at": "google.protobuf.Timestamp",
      "not_after": "google.protobuf.Timestamp",
      "not_before": "google.protobuf.Timestamp",
      "deletion_protection": "bool",
      "created_at": "google.protobuf.Timestamp",
      "updated_at": "google.protobuf.Timestamp"
    }
  ],
  "next_page_token": "string"
}

Response to the ListCertificates request, containing the certificates and pagination information.

Field

Description

certificates[]

PrivateCertificate

The list of certificates issued by the Certificate Authority.

next_page_token

string

Token to use to fetch the next page of results, if there are more results.

PrivateCertificatePrivateCertificate

A private certificate issued by a private certificate authority.

Field

Description

id

string

ID of the private certificate.

certificate_authority_id

string

ID of the certificate authority that issued the private certificate.

name

string

Name of the private certificate.

description

string

Description of the private certificate.

issued_at

google.protobuf.Timestamp

Time when the private certificate was issued.

not_after

google.protobuf.Timestamp

Time after which the private certificate is not valid.

not_before

google.protobuf.Timestamp

Time before which the private certificate is not valid.

deletion_protection

bool

Flag that protects deletion of the private certificate.

created_at

google.protobuf.Timestamp

Time when the private certificate was created.

updated_at

google.protobuf.Timestamp

Time when the private certificate was updated.

Was the article helpful?

Previous
Get
Next
RevokeCertificate
© 2025 Direct Cursus Technology L.L.C.