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
        • Get
        • List
        • ListVersions
        • Create
        • Update
        • Delete
        • RequestNew
        • ListOperations
        • ListAccessBindings
        • SetAccessBindings
        • UpdateAccessBindings
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  • FAQ

In this article:

  • gRPC request
  • ListVersionsRequest
  • ListVersionsResponse
  • Version
  1. API reference
  2. gRPC
  3. Certificate
  4. ListVersions

Certificate Manager API, gRPC: CertificateService.ListVersions

Written by
Yandex Cloud
Updated at November 26, 2024
  • gRPC request
  • ListVersionsRequest
  • ListVersionsResponse
  • Version

gRPC request

rpc ListVersions (ListVersionsRequest) returns (ListVersionsResponse)

ListVersionsRequest

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

Field

Description

certificate_id

string

Required field. ID of the certificate to list versions for.

page_size

int64

Page token. To get the next page of results, set page_token to the
ListCertificatesResponse.next_page_token returned by a previous list request.

page_token

string

Page token. To get the next page of results, set page_token to the
ListCertificatesResponse.next_page_token returned by a previous list request.

ListVersionsResponse

{
  "versions": [
    {
      "id": "string",
      "certificate_id": "string",
      "created_at": "google.protobuf.Timestamp"
    }
  ],
  "next_page_token": "string"
}

Field

Description

versions[]

Version

List of versions for the specified certificate.

next_page_token

string

This token allows you to get the next page of results for list requests. If the number
of results is greater than the specified ListCertificatesRequest.page_size, use
the next_page_token as the value for the ListCertificatesRequest.page_token query parameter
in the next list request. Each subsequent list request will have its own
next_page_token to continue paging through the results.

Version

A certificate version

Field

Description

id

string

ID of the version.

certificate_id

string

ID of the certificate that the version belongs to.

created_at

google.protobuf.Timestamp

Time when the version was created.

Was the article helpful?

Previous
List
Next
Create
Yandex project
© 2025 Yandex.Cloud LLC