Show job#

指定したジョブを表示します。

APIエンドポイント#

リージョン APIエンドポイント
西日本リージョン3の場合 https://baremetal.jp-west-3.cloud.global.fujitsu.com
東日本リージョン3の場合 https://baremetal.jp-east-3.cloud.global.fujitsu.com

HTTPメソッドとURI#

GET

/v1/iscsi/{project_id}/jobs/{job_id}

HTTPステータスコード#

正常時:200

エラー時:401, 403, 404, 500

リクエストパラメータの説明#

名前 In Type デフォルト値
/必須指定
Description
project_id path string 必須 プロジェクトID
job_id path integer 必須 表示するジョブのID

レスポンスボディ(正常系)の説明#

名前 Type Description
job object ジョブオブジェクト
api_name string API名称
created_at string ジョブの作成日時
ended_at string ジョブの終了日時
※statusがEXECUTINGの場合は表示されません。
error_message string エラーメッセージ
※statusがFAILED以外の場合は表示されません。
id integer ジョブID
project_id string プロジェクトID
request_parameter object API実行時のリクエストパラメータ
started_at string ジョブの開始日時
※ジョブが作成された直後の場合は表示されません。
status string ステータス情報
- EXECUTING:実行中
- COMPLETED:実行完了
- FAILED:実行エラー

レスポンス例#

{
    "job": {
        "api_name": "Create a storage",
        "created_at": "2018-12-11T04:50:32Z",
        "ended_at": "2018-12-11T04:51:20Z",
        "id": 14472,
        "project_id": "ff7ea4859b0344afad61f14c04249ee7",
        "request_parameter": {
            "storage": {
                "initiator_iqns": [
                    "iqn.1994-03.com.fujitsu:server1",
                    "iqn.1994-03.com.fujitsu:server2"
                ],
                "ipv4_address_primary": "192.168.11.3",
                "ipv4_address_secondary": "192.168.11.4",
                "ipv4_subnet_mask": "255.255.255.0",
                "name": "my_iscsi_storage",
                "os_type": "vmware",
                "size_gb": 1024,
                "snapshot_space_size_gb": 1024,
                "subnet_id": "49c0f1af-2ceb-41d7-9a74-14dcbedce9f8",
                "type": "medium"
            }
        },
        "started_at": "2018-12-11T04:50:40Z",
        "status": "COMPLETED"
    }
}