curl クライアントは curl バージョン 7.34.0 以上を使用する必要があります。一般的な 2 つの CLI ベース HTTP クライアントは、wget および curl です。このセクションでは、curl を使用して RESTful API コールを行う例をいくつか示しますが、wget を使用しても同様の機能を実現できます。
この例では、単純な HTTP GET リクエストを使用して JSON データを取得する方法を示します。
$ curl --user ${USER}:${PASSWORD} -k \ -i https://hostname:215/api/storage/v1/pools/p1 HTTP/1.1 200 OK Date: Tue, 23 Jul 2018 12:57:02 GMT Server: WSGIServer/0.1 Python/2.6.4 Content-Length: 284 Content-Type: application/json X-Zfs-Sa-Nas-Api: 1.0 { "pool": { "profile": "mirror", "name": "p1", "usage": { "available": 895468984832.0, "total": 895500681216.0, "dedupratio": 100, "used": 31696384.0 }, "peer": "00000000-0000-0000-0000-000000000000", "state": "online", "owner": "admin1", "asn": "314d252e-c42b-e844-dab1-a3bca680b563" } }
この例では、新しいリソースを作成するためにリクエストで JSON データを送信する方法を示します。
$ curl --user ${USER}:${PASSWORD} -s -k -i -X POST -d @- \ -H "Content-Type: application/json" \ https://zfs-storage.example.com:215/api/user/v1/users <<JSON > {"logname": "rest_user", > "fullname": "REST User", > "initial_password": "password"} > JSON HTTP/1.1 201 Created Date: Tue, 23 Jul 2018 13:07:37 GMT Server: WSGIServer/0.1 Python/2.6.4 X-Zfs-Sa-Appliance-Api: 1.0 Content-Type: application/json Content-Length: 357 { "user": { "logname": "rest_user", "fullname": "REST User", "initial_password": "password", "require_annotation": false, "kiosk_mode": false, "kiosk_screen": "status/dashboard", "roles": ["basic"], "exceptions": {}, "preferences": { "href": "/api/user/v1/users/admin1/preferences", "locale": "C", "login_screen": "status/dashboard", "session_timeout": 15, "cli_idle_timeout": -1, "advanced_analytics": false, "keys": {} } } }
この例では、ユーザーのセッションタイムアウトを変更します。
$ curl --user admin1:password -3 -s -k -i -X PUT \ -H "Content-Type: application/json" -d @- \ https://zfs-storage.example.com:215/api/appliance/v1/users/admin1/preferences <<JSON > {"session_timeout":60} > JSON HTTP/1.1 202 Accepted Date: Wed, 24 Jul 2018 05:43:17 GMT X-Zfs-Sa-Appliance-Api: 1.0 Content-Type: application/json Content-Length: 0 { "preferences": { "href": "appliance/v1/users/admin1/preferences", "locale": "C", "login_screen": "status/dashboard", "session_timeout": 60, "cli_idle_timeout": -1, "advanced_analytics": false, "keys": {} } }
このコマンドは、システムからユーザーを除去します。
$ curl --user ${USER}:${PASSWORD} -s -k -i -X DELETE \ https://zfs-storage.example.com:215/api/appliance/v1/users/admin1 HTTP/1.1 204 No Content Date: Tue, 23 Jul 2018 13:21:11 GMT Server: WSGIServer/0.1 Python/2.6.4 X-Zfs-Sa-Appliance-Api: 1.0 Content-Length: 0