@@ -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
536536Here 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