ゾーンファイルインポート
Description
DNSにゾーンファイルをインポートします。
Request URL
DNS API POST /v2/zones
Request Json
This operation does not accept a request body.
Request Parameters
Parameter | Value | Style | Description |
---|---|---|---|
X-Auth-Token | トークンID | header | トークンIDを指定します。 |
Content-Type | text/dns | header | データの形式(メディアタイプ)を指定します。 |
Request Zone File
$ORIGIN example.com. $TTL 3600 example.com. IN SOA ns.example.com. postmaster.example.com. 1234567890 10800 1800 604800 86400 example.com. IN NS ns.example.com. example.com. IN MX 10 mail.example.com. ns.example.com. IN A 1.2.3.4 mail.example.com. IN A 1.2.3.4
Response Code
Success
201
Example
Request
curl -i -X POST \ -H "Content-Type: text/dns" \ -H "X-Auth-Token: トークンID" \ https://dns-service.tyo1.conoha.io/v2/zones \ --data-binary @ファイル名
Response
HTTP/1.1 201 Created Content-Type: application/json { "zone": { "email": "[email protected]", "id": "6b78734a-aef1-45cd-9708-8eb3c2d26ff1", "links": { "self": "https://dns-service.tyo1.conoha.io/v2/zones/6b78734a-aef1-45cd-9708-8eb3c2d26ff1" }, "name": "example.com.", "pool_id": "572ba08c-d929-4c70-8e42-03824bb24ca2", "project_id": "d7accc2f8ce343318386886953f2fc6a", "serial": 1404757531, "ttl": "42", "created_at": "2014-07-07T18:25:31.275934", "version": 1 } }
ConoHaにて提供しておりますAPIにつきましては、クラウド基盤として採用しておりますOpenStackの機能にて実装しておりますので、詳細な情報や使い方はOpenStackのドキュメントにてご確認ください。