Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Certificate Manager
  • Getting started
    • All guides
    • Backups
    • Adding alerts for certificates
    • Configuring access to a certificate
    • Viewing operations with a certificate
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  • FAQ

In this article:

  • Getting a list of operations
  • Getting operation details
  1. Step-by-step guides
  2. Viewing operations with a certificate

Viewing operations with a certificate

Written by
Yandex Cloud
Updated at June 11, 2025
  • Getting a list of operations
  • Getting operation details

The system logs all actions with Certificate Manager resources as a list of operations. Each operation gets its own unique ID.

Getting a list of operationsGetting a list of operations

Management console
CLI
API
  1. In the management console, open the folder with the certificate.

  2. Select Certificate Manager.

  3. In the left-hand panel, select Certificates.

  4. Select the certificate you need.

  5. Go to the Operations panel for the selected certificate.

    You will see a list of operations with the selected certificate.

If you do not have the Yandex Cloud CLI installed yet, install and initialize it.

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

To get a list of operations for a certificate, run this command:

yc certificate-manager certificates list-operations <certificate_name_or_ID>

Result:

+----------------------+---------------------+----------------------+---------------------+--------+--------------------+
|          ID          |     CREATED AT      |      CREATED BY      |     MODIFIED AT     | STATUS |    DESCRIPTION     |
+----------------------+---------------------+----------------------+---------------------+--------+--------------------+
| fpq207m67dkq******** | 2024-03-26 16:32:07 | aje9k8luj4qf******** | 2024-03-26 16:32:07 | DONE   | Update certificate |
| fpqolhv1gtl5******** | 2024-03-21 12:32:27 | aje9k8luj4qf******** | 2024-03-21 12:32:27 | DONE   | Create certificate |
+----------------------+---------------------+----------------------+---------------------+--------+--------------------+

By default, operation information is displayed as text. To get more detailed information, specify the yaml or json output data format using the --format parameter:

yc certificate-manager certificates list-operations <certificate_name_or_ID> --format yaml

Result:

- id: fpq207m67dkq********
  description: Update certificate
  created_at: "2024-03-26T16:32:07.034Z"
  created_by: aje9k8luj4qf********
  modified_at: "2024-03-26T16:32:07.047Z"
  done: true
  metadata:
    '@type': type.googleapis.com/yandex.cloud.certificatemanager.v1.UpdateCertificateMetadata
    certificate_id: fpqf446dhkgi********
  response:
    '@type': type.googleapis.com/yandex.cloud.certificatemanager.v1.Certificate
    id: fpqf446dhkgi********
    folder_id: b1g681qpemb4********
    created_at: "2024-03-21T12:32:27.008Z"
    name: cert-alb
    labels:
      key: value
    type: IMPORTED
    domains:
      - cdn.yandexcloud.example
    status: ISSUED
    issuer: CN=cdn.yandexcloud.example
    subject: CN=cdn.yandexcloud.example
    serial: 6e71e5c50a038f96a144397315bd8e93********
    updated_at: "2024-03-26T16:32:07.022219309Z"
    issued_at: "2024-03-21T12:32:27.008Z"
    not_after: "2025-03-21T12:30:49Z"
    not_before: "2024-03-21T12:30:49Z"
    incomplete_chain: true
- id: fpqolhv1gtl5********
  description: Create certificate
  created_at: "2024-03-21T12:32:27.062Z"
  created_by: aje9k8luj4qf********
  modified_at: "2024-03-21T12:32:27.082Z"
  ...
    not_before: "2024-03-21T12:30:49Z"
    incomplete_chain: true

Use the listOperations REST API method for the Certificate resource or the CertificateService/ListOperations gRPC API call.

Getting operation detailsGetting operation details

  1. Get a list of operations for the resource.

  2. Copy the operation ID.

  3. Get operation details:

    CLI
    API

    If you do not have the Yandex Cloud CLI installed yet, install and initialize it.

    By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

    Run this command:

    yc operation get <operation_ID>
    

    Result:

    id: fpq207m67dkq********
    description: Update certificate
    created_at: "2024-03-26T16:32:07.034Z"
    created_by: aje9k8luj4qf********
    modified_at: "2024-03-26T16:32:07.047Z"
    done: true
    metadata:
      '@type': type.googleapis.com/yandex.cloud.certificatemanager.v1.UpdateCertificateMetadata
      certificate_id: fpqf446dhkgi********
    response:
      '@type': type.googleapis.com/yandex.cloud.certificatemanager.v1.Certificate
      id: fpqf446dhkgi********
      folder_id: b1g681qpemb4********
      created_at: "2024-03-21T12:32:27.008Z"
      name: cert-alb
      labels:
        key: value
      type: IMPORTED
      domains:
        - cdn.yandexcloud.example
      status: ISSUED
      issuer: CN=cdn.yandexcloud.example
      subject: CN=cdn.yandexcloud.example
      serial: 6e71e5c50a038f96a144397315bd8e93********
      updated_at: "2024-03-26T16:32:07.022219309Z"
      issued_at: "2024-03-21T12:32:27.008Z"
      not_after: "2025-03-21T12:30:49Z"
      not_before: "2024-03-21T12:30:49Z"
      incomplete_chain: true
    

    Use the OperationService/Get gRPC API call.

See alsoSee also

  • Working with operations

Was the article helpful?

Previous
Configuring access to a certificate
Next
All tutorials
© 2025 Direct Cursus Technology L.L.C.