List jobs#

ジョブを一覧表示します。

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

HTTPステータスコード#

正常時:200

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

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

名前 In Type デフォルト値
/必須指定
Description
project_id path string 必須 プロジェクトID
limit query integer 10
任意
表示するジョブの最大件数
指定可能値:1~100(整数)
※サービス全体の使用状況により、指定された件数よりも少ないジョブが表示される可能性があります。

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

名前 Type Description
jobs array ジョブオブジェクトの配列
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:実行エラー

レスポンス例#

{
    "jobs": [
        {
            "api_name": "Create a storage",
            "created_at": "2018-12-11T04:53:55Z",
            "ended_at": "2018-12-11T04:54:40Z",
            "id": 14473,
            "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:54:00Z",
            "status": "COMPLETED"
        },
        {
            "api_name": "Create a storage",
            "created_at": "2018-12-11T04:50:11Z",
            "ended_at": "2018-12-11T04:51:20Z",
            "id": 14472,
            "project_id": "ff7ea4859b0344afad61f14c04249ee7",
            "request_parameter": {
                "storage": {
                    "initiator_iqns": [
                        "iqn.1994-03.com.fujitsu:server3",
                        "iqn.1994-03.com.fujitsu:server4"
                    ],
                    "ipv4_address_primary": "192.168.11.5",
                    "ipv4_address_secondary": "192.168.11.6",
                    "ipv4_subnet_mask": "255.255.255.0",
                    "name": "my_iscsi_storage2",
                    "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"
        }
    ]
}