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

In this article:

  • gRPC request
  • ListTemplateRequest
  • ListTemplateResponse
  • Template
  1. API reference
  2. gRPC
  3. Certificate Manager Private CA API
  4. Template
  5. List

Certificate Manager Private CA API, gRPC: TemplateService.List

Written by
Yandex Cloud
Updated at December 17, 2024
  • gRPC request
  • ListTemplateRequest
  • ListTemplateResponse
  • Template

Lists all certificate templates in a specified folder.

gRPC requestgRPC request

rpc List (ListTemplateRequest) returns (ListTemplateResponse)

ListTemplateRequestListTemplateRequest

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

Request message to list templates in a folder.

Field

Description

folder_id

string

Required field. ID of the folder into which list templates.

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 specific pages of results.
If this is set, the service will return the next page of results based on this token.

ListTemplateResponseListTemplateResponse

{
  "templates": [
    {
      "id": "string",
      "folder_id": "string",
      "name": "string",
      "data": "string",
      "created_at": "google.protobuf.Timestamp",
      "updated_at": "google.protobuf.Timestamp"
    }
  ],
  "next_page_token": "string"
}

Response containing the list of templates.

Field

Description

templates[]

Template

List of certificate templates in the specified folder.

next_page_token

string

Token for obtaining the next page of results.
If the number of results exceeds page_size, this token will be returned and can be passed to
the ListTemplateRequest for the next page.

TemplateTemplate

Json or yaml template for easier certificate issuing. If used while certificate creation, certificate would take all fields from template.

Field

Description

id

string

ID of the template. Generated at creation time.

folder_id

string

ID of the folder that the template belongs to.

name

string

Name of the template.

data

string

Json representation of template.

created_at

google.protobuf.Timestamp

Timestamp when the template was created.

updated_at

google.protobuf.Timestamp

Timestamp when the template was last updated.

Was the article helpful?

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