summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReddy A, Penchal (pr8721) <pr8721@att.com>2016-05-05 14:40:15 -0400
committerReddy A, Penchal (pr8721) <pr8721@att.com>2016-05-06 09:39:57 -0400
commit5ac063eba3354f013ad0ade963c6fb31fec3b66c (patch)
tree06b4dd379e53e771c08f84c3f1c784982f480e08 /doc
parent7da72131f0fe3c69041c1ef8313738e3976c34dc (diff)
downloadpython-designateclient-5ac063eba3354f013ad0ade963c6fb31fec3b66c.tar.gz
Update designate cli page with more examples
Closes-Bug: #1578207 Change-Id: I775e12510b0705e8ab797bf34e9b38d4853e65c1
Diffstat (limited to 'doc')
-rw-r--r--doc/source/shell-examples.rst113
1 files changed, 112 insertions, 1 deletions
diff --git a/doc/source/shell-examples.rst b/doc/source/shell-examples.rst
index 509ef62..c322110 100644
--- a/doc/source/shell-examples.rst
+++ b/doc/source/shell-examples.rst
@@ -32,7 +32,7 @@ Typically the designate client talks to Keystone (or a Keystone like service) vi
| name | testing123.net. |
+-------------+--------------------------------------+
- $ designate --os-endpoint http://127.0.0.1:9001/v1 record-create --name myhost.testing123.net. --type A --data 1.2.3.4 f98c3d91-f514-4956-a955-20eefb413a64
+ $ designate --os-endpoint http://127.0.0.1:9001/v1 record-create --name myhost.testing123.net. --type A --data 1.2.3.4 f98c3d91-f514-4956-a955-20eefb413a64 (domain_id)
+-------------+--------------------------------------+
| Field | Value |
+-------------+--------------------------------------+
@@ -48,3 +48,114 @@ Typically the designate client talks to Keystone (or a Keystone like service) vi
| name | myhost.testing123.net. |
+-------------+--------------------------------------+
+ $ designate domain-list
+ +--------------------------------------+-------------+------------+
+ | id | name | serial |
+ +--------------------------------------+-------------+------------+
+ | 88c14ecf-b034-424c-b081-ca42494dcdf9 | sample.com. | 1462372104 |
+ +--------------------------------------+-------------+------------+
+
+ $ designate domain-update --email sample@example.com 88c14ecf-b034-424c-b081-ca42494dcdf9 (domain_id)
+ +-------------+--------------------------------------+
+ | Field | Value |
+ +-------------+--------------------------------------+
+ | description | None |
+ | created_at | 2016-05-04T14:28:24.000000 |
+ | updated_at | 2016-05-04T14:29:48.000000 |
+ | email | sample@example.com |
+ | ttl | 3600 |
+ | serial | 1462372188 |
+ | id | 88c14ecf-b034-424c-b081-ca42494dcdf9 |
+ | name | sample.com. |
+ +-------------+--------------------------------------+
+
+ $ designate domain-delete 88c14ecf-b034-424c-b081-ca42494dcdf9 (domain_id)
+
+ $ designate record-list 66584cdd-f7a6-4f0e-acf0-3dd5ad04830d (domain_id)
+ +--------------------------------------+------+-----------------------+-----------------------------------------------------------------+
+ | id | type | name | data |
+ +--------------------------------------+------+-----------------------+-----------------------------------------------------------------+
+ | fdfab9c3-51c0-42b9-b500-7779ef917915 | SOA | example.com. | ns1.example.org. pr8721.att.com. 1462372695 3600 600 86400 3600 |
+ | 242a16e8-8455-4b4d-af7f-45de1074aa04 | NS | example.com. | xyz.com. |
+ | 8dc14df7-3651-49df-8c83-0d71954c6152 | NS | example.com. | ns1.example.org. |
+ | 7e80531d-bd65-49bc-a316-a6a06cd7fe26 | A | example1.example.com. | 198.51.100.1 |
+ +--------------------------------------+------+-----------------------+-----------------------------------------------------------------+
+
+ $ designate record-update --name example1.example.com. --type A --data 198.5.100.2 --ttl 3600 66584cdd-f7a6-4f0e-acf0-3dd5ad04830d (domain-id) 7e80531d-bd65-49bc-a316-a6a06cd7fe26 (record_id)
+ +-------------+--------------------------------------+
+ | Field | Value |
+ +-------------+--------------------------------------+
+ | description | None |
+ | type | A |
+ | created_at | 2016-05-04T14:38:15.000000 |
+ | updated_at | 2016-05-04T16:12:05.000000 |
+ | domain_id | 66584cdd-f7a6-4f0e-acf0-3dd5ad04830d |
+ | priority | None |
+ | ttl | 3600 |
+ | data | 198.5.100.2 |
+ | id | 7e80531d-bd65-49bc-a316-a6a06cd7fe26 |
+ | name | example1.example.com. |
+ +-------------+--------------------------------------+
+
+ $ designate record-delete 66584cdd-f7a6-4f0e-acf0-3dd5ad04830d (domain-id) 7e80531d-bd65-49bc-a316-a6a06cd7fe26 (record_id)
+
+ $ designate server-update --name abc.org. 3d9d220d-d111-436a-b9bb-e7bc0e275803 (server_id)
+ +------------+--------------------------------------+
+ | Field | Value |
+ +------------+--------------------------------------+
+ | updated_at | None |
+ | created_at | 2016-05-04T16:17:16.000000 |
+ | id | 3d9d220d-d111-436a-b9bb-e7bc0e275803 |
+ | name | abc.org. |
+ +------------+--------------------------------------+
+
+ $ designate server-list
+ +--------------------------------------+------------------+
+ | id | name |
+ +--------------------------------------+------------------+
+ | 4f6f0cbe-ea38-453e-97c5-091617a06b41 | ns1.example.org. |
+ | 326de09b-691e-4e4e-bf1c-5a1bf7e7f44d | xyz.com. |
+ | 3d9d220d-d111-436a-b9bb-e7bc0e275803 | abc.org. |
+ +--------------------------------------+------------------+
+
+ $ designate server-get 3d9d220d-d111-436a-b9bb-e7bc0e275803 (server_id)
+ +------------+--------------------------------------+
+ | Field | Value |
+ +------------+--------------------------------------+
+ | updated_at | 2016-05-04T16:18:06.000000 |
+ | created_at | 2016-05-04T16:17:16.000000 |
+ | id | 3d9d220d-d111-436a-b9bb-e7bc0e275803 |
+ | name | abc.org. |
+ +------------+--------------------------------------+
+
+ $ designate server-delete 3d9d220d-d111-436a-b9bb-e7bc0e275803 (server_id)
+
+ $ designate quota-get 70a4596c9974429db5fb6fe240ab87b9 (tenant_id)
+ +-------------------+-------+
+ | Field | Value |
+ +-------------------+-------+
+ | domains | 10 |
+ | domain_recordsets | 500 |
+ | recordset_records | 20 |
+ | domain_records | 500 |
+ +-------------------+-------+
+
+ $ designate quota-update --domains 50 --domain-recordsets 1000 --recordset-records 40 --domain-records 1000 70a4596c9974429db5fb6fe240ab87b9 (tenant_id)
+ +-------------------+-------+
+ | Field | Value |
+ +-------------------+-------+
+ | domains | 50 |
+ | domain_recordsets | 1000 |
+ | recordset_records | 40 |
+ | domain_records | 1000 |
+ +-------------------+-------+
+
+ $ designate quota-get 70a4596c9974429db5fb6fe240ab87b9 (tenant_id)
+ +-------------------+-------+
+ | Field | Value |
+ +-------------------+-------+
+ | domains | 10 |
+ | domain_recordsets | 500 |
+ | recordset_records | 20 |
+ | domain_records | 500 |
+ +-------------------+-------+