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
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Certificate Manager
  • Getting started
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication with the API
      • Overview
        • Overview
          • Overview
          • GenerateCertificateAuthority
          • GenerateCertificateAuthorityByCsr
          • ImportCertificateAuthority
          • GenerateCsrForCertificateAuthority
          • SendSignedCertificateOfCertificateAuthority
          • Delete
          • GetCsrForCertificateAuthority
          • Get
          • List
          • Update
          • ListAccessBindings
          • SetAccessBindings
          • UpdateAccessBindings
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  • FAQ

In this article:

  • gRPC request
  • ListCertificateAuthoritiesRequest
  • ListCertificateAuthoritiesResponse
  • CertificateAuthority
  1. API reference
  2. gRPC
  3. Certificate Manager Private CA API
  4. PrivateCa
  5. List

Certificate Manager Private CA API, gRPC: PrivateCaService.List

Written by
Yandex Cloud
Updated at December 17, 2024
  • gRPC request
  • ListCertificateAuthoritiesRequest
  • ListCertificateAuthoritiesResponse
  • CertificateAuthority

Lists the available Certificate Authorities (CAs).

gRPC requestgRPC request

rpc List (ListCertificateAuthoritiesRequest) returns (ListCertificateAuthoritiesResponse)

ListCertificateAuthoritiesRequestListCertificateAuthoritiesRequest

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

List Certificate Authorities in specified folder.
This supports pagination.

Field

Description

folder_id

string

Required field. The folder in which CA would be listed.

page_size

int64

The maximum number of results to return per page. Couldn't exceed 100, default value is 100

page_token

string

Token to retrieve the next page of results.
This is returned from a previous call to ListCertificateAuthorities.

ListCertificateAuthoritiesResponseListCertificateAuthoritiesResponse

{
  "certificate_authorities": [
    {
      "id": "string",
      "folder_id": "string",
      "name": "string",
      "description": "string",
      "parent_certificate_authority_id": "string",
      "status": "Status",
      "issued_at": "google.protobuf.Timestamp",
      "not_after": "google.protobuf.Timestamp",
      "not_before": "google.protobuf.Timestamp",
      "crl_endpoint": "string",
      "end_entities_ttl_limit_days": "int64",
      "deletion_protection": "bool",
      "created_at": "google.protobuf.Timestamp",
      "updated_at": "google.protobuf.Timestamp"
    }
  ],
  "next_page_token": "string"
}

Response containing the Certificate Authorities list from the ListCertificateAuthorities request.

Field

Description

certificate_authorities[]

CertificateAuthority

List of matching Certificate Authorities.

next_page_token

string

Token to retrieve the next page of results, if they were paginated.

CertificateAuthorityCertificateAuthority

A certificate authority (CA) used to sign certificates.

Field

Description

id

string

ID of the certificate authority.

folder_id

string

ID of the folder that the certificate authority belongs to.

name

string

Name of the certificate authority.

description

string

Description of the certificate authority.

parent_certificate_authority_id

string

ID of the parent certificate authority that signed this certificate authority if any.

status

enum Status

Status of the certificate authority.

  • STATUS_UNSPECIFIED
  • UNSIGNED: The certificate authority is unsigned and pending signing.
  • ACTIVE: The certificate authority is active and can issue certificates.

issued_at

google.protobuf.Timestamp

Time when the certificate authority was issued.

not_after

google.protobuf.Timestamp

Time after which the certificate authority is not valid.

not_before

google.protobuf.Timestamp

Time before which the certificate authority is not valid.

crl_endpoint

string

Endpoint of the certificate revocation list (CRL) for the certificate authority.

end_entities_ttl_limit_days

int64

Maximum allowed TTL (in days) for end-entity certificates issued by this CA.

deletion_protection

bool

Flag that protects deletion of the certificate authority.

created_at

google.protobuf.Timestamp

Time when the certificate authority was created.

updated_at

google.protobuf.Timestamp

Time when the certificate authority was last updated.

Was the article helpful?

Previous
Get
Next
Update
Yandex project
© 2025 Yandex.Cloud LLC