Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit e57f421

Browse files
committed
changed most id values to all zeros
1 parent 420d8da commit e57f421

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ Here is the creation of a DNS entry, followed by a listing of that entry and the
448448
```bash
449449
$ $ cli4 --post name="test" type="A" content="10.0.0.1" /zones/:example.com/dns_records
450450
{
451-
"id": "94e028933c87b4bff3c70a42e6daac4f",
451+
"id": "00000000000000000000000000000000",
452452
"name": "test.example.com",
453453
"type": "A",
454454
"content": "10.0.0.1",
@@ -458,14 +458,14 @@ $
458458

459459
$ cli4 /zones/:example.com/dns_records/:test.example.com | jq '{"id":.id,"name":.name,"type":.type,"content":.content}'
460460
{
461-
"id": "94e028933c87b4bff3c70a42e6daac4f",
461+
"id": "00000000000000000000000000000000",
462462
"name": "test.example.com",
463463
"type": "A",
464464
"content": "10.0.0.1"
465465
}
466466

467467
$ cli4 --delete /zones/:example.com/dns_records/:test.example.com | jq -c .
468-
{"id":"94e028933c87b4bff3c70a42e6daac4f"}
468+
{"id":"00000000000000000000000000000000"}
469469
$
470470
```
471471

@@ -474,24 +474,24 @@ This produces more than one API call within the command.
474474

475475
```
476476
$ cli4 /zones/:example.com/dns_records/:test.example.com | jq -c '.[]|{"id":.id,"name":.name,"type":.type,"content":.content}'
477-
{"id":"bca0c4a5e3691e62841627e4dc3a19ed","name":"test.example.com","type":"A","content":"192.168.0.1"}
478-
{"id":"d94f788e6bf72ba2a54145ad04b34f08","name":"test.example.com","type":"AAAA","content":"2001:d8b::1"}
477+
{"id":"00000000000000000000000000000000","name":"test.example.com","type":"A","content":"192.168.0.1"}
478+
{"id":"00000000000000000000000000000000","name":"test.example.com","type":"AAAA","content":"2001:d8b::1"}
479479
$
480480
```
481481

482482
Here are the cache purging commands.
483483

484484
```bash
485485
$ cli4 --delete purge_everything=true /zones/:example.com/purge_cache | jq -c .
486-
{"id":"d8afaec3dd2b7f8c1b470e594a21a01d"}
486+
{"id":"00000000000000000000000000000000"}
487487
$
488488

489489
$ cli4 --delete files='[http://example.com/css/styles.css]' /zones/:example.com/purge_cache | jq -c .
490-
{"id":"d8afaec3dd2b7f8c1b470e594a21a01d"}
490+
{"id":"00000000000000000000000000000000"}
491491
$
492492

493493
$ cli4 --delete files='[http://example.com/css/styles.css,http://example.com/js/script.js]' /zones/:example.com/purge_cache | jq -c .
494-
{"id":"d8afaec3dd2b7f8c1b470e594a21a01d"}
494+
{"id":"00000000000000000000000000000000"}
495495
$
496496

497497
$ cli4 --delete tags='[tag1,tag2,tag3]' /zones/:example.com/purge_cache | jq -c .
@@ -503,9 +503,9 @@ A somewhat useful listing of available plans for a specific zone.
503503

504504
```bash
505505
$ cli4 /zones/:example.com/available_plans | jq -c '.[]|{"id":.id,"name":.name}'
506-
{"id":"a577b510288e82b26486fd1df47000ec","name":"Pro Website"}
507-
{"id":"1ac039f6c29b691475c3d74fe588d1ae","name":"Business Website"}
508-
{"id":"94f3b7b768b0458b56d2cac4fe5ec0f9","name":"Enterprise Website"}
506+
{"id":"00000000000000000000000000000000","name":"Pro Website"}
507+
{"id":"00000000000000000000000000000000","name":"Business Website"}
508+
{"id":"00000000000000000000000000000000","name":"Enterprise Website"}
509509
{"id":"0feeeeeeeeeeeeeeeeeeeeeeeeeeeeee","name":"Free Website"}
510510
$
511511
```

README.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ and then the deletion of that entry.
503503
504504
$ $ cli4 --post name="test" type="A" content="10.0.0.1" /zones/:example.com/dns_records
505505
{
506-
"id": "94e028933c87b4bff3c70a42e6daac4f",
506+
"id": "00000000000000000000000000000000",
507507
"name": "test.example.com",
508508
"type": "A",
509509
"content": "10.0.0.1",
@@ -513,14 +513,14 @@ and then the deletion of that entry.
513513
514514
$ cli4 /zones/:example.com/dns_records/:test.example.com | jq '{"id":.id,"name":.name,"type":.type,"content":.content}'
515515
{
516-
"id": "94e028933c87b4bff3c70a42e6daac4f",
516+
"id": "00000000000000000000000000000000",
517517
"name": "test.example.com",
518518
"type": "A",
519519
"content": "10.0.0.1"
520520
}
521521
522522
$ cli4 --delete /zones/:example.com/dns_records/:test.example.com | jq -c .
523-
{"id":"94e028933c87b4bff3c70a42e6daac4f"}
523+
{"id":"00000000000000000000000000000000"}
524524
$
525525
526526
There's the ability to handle dns entries with multiple values. This
@@ -529,24 +529,24 @@ produces more than one API call within the command.
529529
::
530530

531531
$ cli4 /zones/:example.com/dns_records/:test.example.com | jq -c '.[]|{"id":.id,"name":.name,"type":.type,"content":.content}'
532-
{"id":"bca0c4a5e3691e62841627e4dc3a19ed","name":"test.example.com","type":"A","content":"192.168.0.1"}
533-
{"id":"d94f788e6bf72ba2a54145ad04b34f08","name":"test.example.com","type":"AAAA","content":"2001:d8b::1"}
532+
{"id":"00000000000000000000000000000000","name":"test.example.com","type":"A","content":"192.168.0.1"}
533+
{"id":"00000000000000000000000000000000","name":"test.example.com","type":"AAAA","content":"2001:d8b::1"}
534534
$
535535

536536
Here are the cache purging commands.
537537

538538
.. code:: bash
539539
540540
$ cli4 --delete purge_everything=true /zones/:example.com/purge_cache | jq -c .
541-
{"id":"d8afaec3dd2b7f8c1b470e594a21a01d"}
541+
{"id":"00000000000000000000000000000000"}
542542
$
543543
544544
$ cli4 --delete files='[http://example.com/css/styles.css]' /zones/:example.com/purge_cache | jq -c .
545-
{"id":"d8afaec3dd2b7f8c1b470e594a21a01d"}
545+
{"id":"00000000000000000000000000000000"}
546546
$
547547
548548
$ cli4 --delete files='[http://example.com/css/styles.css,http://example.com/js/script.js]' /zones/:example.com/purge_cache | jq -c .
549-
{"id":"d8afaec3dd2b7f8c1b470e594a21a01d"}
549+
{"id":"00000000000000000000000000000000"}
550550
$
551551
552552
$ cli4 --delete tags='[tag1,tag2,tag3]' /zones/:example.com/purge_cache | jq -c .
@@ -558,9 +558,9 @@ A somewhat useful listing of available plans for a specific zone.
558558
.. code:: bash
559559
560560
$ cli4 /zones/:example.com/available_plans | jq -c '.[]|{"id":.id,"name":.name}'
561-
{"id":"a577b510288e82b26486fd1df47000ec","name":"Pro Website"}
562-
{"id":"1ac039f6c29b691475c3d74fe588d1ae","name":"Business Website"}
563-
{"id":"94f3b7b768b0458b56d2cac4fe5ec0f9","name":"Enterprise Website"}
561+
{"id":"00000000000000000000000000000000","name":"Pro Website"}
562+
{"id":"00000000000000000000000000000000","name":"Business Website"}
563+
{"id":"00000000000000000000000000000000","name":"Enterprise Website"}
564564
{"id":"0feeeeeeeeeeeeeeeeeeeeeeeeeeeeee","name":"Free Website"}
565565
$
566566

0 commit comments

Comments
 (0)