管理タスクのステータスを確認する

このページでは、Cloud Domains の長時間実行オペレーションのステータスを確認する方法について説明します。オペレーションのステータスの確認は、なんらかの理由でオペレーションが中断した場合に役立ちます。

次の表の手順では、長時間実行オペレーションを使用します。

gcloud コマンド API メソッド
register register
update patch
delete delete
configure contacts configureContactSettings
configure dns configureDnsSettings
configure management configureManagementSettings

オペレーションのステータスを確認する

各オペレーションのステータスを確認するには、次の手順を行います。

gcloud

  • プロジェクト内のすべての Cloud Domains オペレーションを一覧表示するには、gcloud domains registrations operations list コマンドを使用します。

    gcloud domains registrations operations list
    
  • プロジェクト内の Cloud Domains オペレーションに関する情報を取得するには、gcloud domains registrations operations describe コマンドを使用します。

    gcloud domains registrations operations describe OPERATION_ID
    

    OPERATION_ID は、情報を取得するオペレーションの ID に置き換えます。

  • 指定した Cloud Domains オペレーションが完了するまで待機するには、gcloud domains registrations operations wait コマンドを使用します。

    gcloud domains registrations operations wait OPERATION_ID
    

    OPERATION_ID は、完了するまで待機するオペレーションの ID または完全修飾識別子に置き換えます。

API

  • プロジェクト内のすべての Cloud Domains オペレーションを一覧表示するには、本文が空の operations.list メソッドを使用します。

    GET https://domains.googleapis.com/v1/projects/PROJECT_ID/locations/global/operations
    

    PROJECT_ID は、実際のプロジェクト名で置き換えます。

  • プロジェクト内の Cloud Domains オペレーションに関する情報を取得するには、本文が空の operations.get メソッドを使用します。

    GET https://domains.googleapis.com/v1/projects/PROJECT_ID/locations/global/operations/OPERATION_ID
    

    次のように置き換えます。

    • PROJECT_ID: プロジェクトの名前
    • OPERATION_ID: 詳細を取得するオペレーションの ID または完全修飾識別子

次のステップ