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 Cloud DNS
  • Getting started
    • All guides
      • Creating a private DNS zone
      • Creating a public DNS zone
      • Updating a DNS zone
      • Configuring DNS zone access permissions
      • Viewing operations with DNS zones
      • Deleting a DNS zone
  • 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. Zones
  3. Viewing operations with DNS zones

Viewing operations with zones

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

All Cloud DNS zone activities are logged 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, select the folder containing your DNS zone.

  2. Select Cloud DNS.

  3. Select the zone you need.

  4. Navigate to the Operations panel for the selected zone.

    You will see a list of operations performed on the selected zone and its DNS records.

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 DNS zone operation list, run this command:

yc dns zone list-operations <zone_name_or_ID>

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

yc dns zone list-operations dns3fh7phb04******** --format yaml

Result:

- id: dnsi5gv00kas********
  description: Update DNS RecordSets
  created_at: "2024-02-01T08:46:21.554860158Z"
  created_by: ajego134p5h1********
  modified_at: "2024-02-01T08:46:21.554933861Z"
  done: true
  metadata:
    '@type': type.googleapis.com/yandex.cloud.dns.v1.UpdateRecordSetsMetadata
- id: dnssdag1giqk********
  description: Create DNS Zone
  created_at: "2024-02-01T08:45:40.481514713Z"
  created_by: ajego134p5h1********
  modified_at: "2024-02-01T08:45:40.481608241Z"
  done: true
  metadata:
    '@type': type.googleapis.com/yandex.cloud.dns.v1.CreateDnsZoneMetadata
    dns_zone_id: dns3fh7phb04********

To get a DNS zone operation list, use the listOperations REST API method for the DnsZone resource or the DnsZoneService/ListOperations gRPC API call.

Getting operation detailsGetting operation details

  1. Get a zone operation list.

  2. Copy the ID of the operation you need.

  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: dnsi5gv00kas********
    description: Create DNS Zone
    created_at: "2024-02-01T08:45:40.481Z"
    created_by: ajego134p5h1********
    modified_at: "2024-02-01T08:45:40.481Z"
    done: true
    metadata:
      '@type': type.googleapis.com/yandex.cloud.dns.v1.CreateDnsZoneMetadata
      dns_zone_id: dns3fh7phb04********
    response:
      '@type': type.googleapis.com/yandex.cloud.dns.v1.DnsZone
      id: dnssdag1giqk********
      folder_id: b1gmit33ngp3********
      created_at: "2024-02-01T08:45:40.416Z"
      zone: zonedone.com.
      public_visibility: {}
    

    Use the get REST API method or the OperationService/Get gRPC API call.

See alsoSee also

  • Working with operations

Was the article helpful?

Previous
Configuring DNS zone access permissions
Next
Deleting a DNS zone
© 2025 Direct Cursus Technology L.L.C.