mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-01 15:51:29 +08:00
cli4: add page (#18788)
This commit is contained in:
committed by
GitHub
parent
8d909f6e28
commit
984e0a2a79
@@ -0,0 +1,32 @@
|
||||
# cli4
|
||||
|
||||
> Python command-line interface for Cloudflare API.
|
||||
> More information: <https://github.com/cloudflare/python-cloudflare>.
|
||||
|
||||
- Display account information:
|
||||
|
||||
`cli4 {{/user}}`
|
||||
|
||||
- List all zones:
|
||||
|
||||
`cli4 {{/zones}}`
|
||||
|
||||
- List DNS records for a specific zone:
|
||||
|
||||
`cli4 {{/zones/:example.com/dns_records}}`
|
||||
|
||||
- Create a new DNS record:
|
||||
|
||||
`cli4 --post {{name=example.com}} {{type=A}} {{content=192.0.2.1}} {{/zones/:example.com/dns_records}}`
|
||||
|
||||
- Update an existing DNS record:
|
||||
|
||||
`cli4 --put {{name=sub.example.com}} {{type=A}} {{content=192.0.2.2}} {{/zones/:example.com/dns_records/:record_id}}`
|
||||
|
||||
- Delete a DNS record:
|
||||
|
||||
`cli4 --delete {{/zones/:example.com/dns_records/:record_id}}`
|
||||
|
||||
- Purge all cache for a zone:
|
||||
|
||||
`cli4 --post {{purge_everything=true}} {{/zones/:example.com/purge_cache}}`
|
||||
Reference in New Issue
Block a user