Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
Cloud DNS mencatat pembaruan zona terkelola yang Anda buat (mengubah deskripsi atau mengonfigurasi status DNSSEC) sebagai operasi. Pembuatan dan penghapusan zona terkelola tidak dicatat; penghapusan zona terkelola juga akan menghapus operasi yang dicatat di zona tersebut.
Operasi ini tidak bergantung pada
perubahan yang Anda buat pada resource
dalam zona terkelola. Anda dapat menggunakan Google Cloud CLI atau REST API untuk melihat histori update ini.
Izin yang diperlukan untuk langkah ini
Untuk menjalankan tugas ini, Anda harus diberi izin berikut
atau peran IAM berikut.
Izin
dns.managedZoneOperations.list
dns.managedZoneOperations.get
Peran
roles/dns.admin
Menampilkan log audit operasi
gcloud
Jalankan perintah berikut:
gcloud dns operations list --zones="ZONE_NAME"
Ganti ZONE_NAME dengan nama zona DNS di project Anda.
Perintah ini mencetak kumpulan data resource berformat JSON untuk
100 data pertama. Anda dapat menentukan parameter tambahan:
--limit: jumlah maksimum operasi yang akan dicantumkan
Python
from apiclient import errors
from apiclient.discovery import build
PROJECT_NAME='PROJECT_NAME'
ZONE_NAME='ZONE_NAME'
try:
service = build('dns', 'v1')
response = service.operations().list(project=PROJECT_NAME,
managedZone=ZONE_NAME).execute()
print(response)
except errors.HttpError, error:
print('An error occurred: %s' % error)
[[["Mudah dipahami","easyToUnderstand","thumb-up"],["Memecahkan masalah saya","solvedMyProblem","thumb-up"],["Lainnya","otherUp","thumb-up"]],[["Sulit dipahami","hardToUnderstand","thumb-down"],["Informasi atau kode contoh salah","incorrectInformationOrSampleCode","thumb-down"],["Informasi/contoh yang saya butuhkan tidak ada","missingTheInformationSamplesINeed","thumb-down"],["Masalah terjemahan","translationIssue","thumb-down"],["Lainnya","otherDown","thumb-down"]],["Terakhir diperbarui pada 2025-04-03 UTC."],[[["Cloud DNS records managed zone updates, such as modifying descriptions or configuring DNSSEC state, are recorded as operations."],["You can use the Google Cloud CLI or the REST API to view the history of managed zone update operations, which are separate from changes to resources within the zone."],["To view these operations, you must have either the `dns.managedZoneOperations.list` and `dns.managedZoneOperations.get` permissions or the `roles/dns.admin` role."],["The `gcloud dns operations list --zones=\"ZONE_NAME\"` command can be used to display a JSON-formatted list of managed zone operations, with an optional `--limit` parameter to specify the number of operations."],["The Python code provided can also be used to programmatically display the managed zone operations."]]],[]]