From 62d3e1f5f90ada738332b98a299cd1d013753949 Mon Sep 17 00:00:00 2001 From: dbrian57 Date: Fri, 29 Mar 2024 16:27:11 -0400 Subject: [PATCH] Updates list CDNs example to have description --- commands/cdns.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/cdns.go b/commands/cdns.go index a675b0695..0bb2ca79b 100644 --- a/commands/cdns.go +++ b/commands/cdns.go @@ -55,7 +55,7 @@ The Time To Live (TTL) value is the length of time in seconds that a file is cac CertIDDesc := "Specify a certificate ID for the custom domain" cmdCDNList := CmdBuilder(cmd, RunCDNList, "list", "List CDNs that have already been created", `Retrieves a list of your existing Content Delivery Networks (CDNs) and their following details:`+CDNDetails, Writer, aliasOpt("ls"), displayerType(&displayers.CDN{})) - cmdCDNList.Example = "doctl compute cdn list" + cmdCDNList.Example = `The following example retrieves a list of CDNs for your account. The command uses the ` + "`" + `--format` + "`" + ` flag to only return each CDN` + "`" + `'` + "`" + `s origin endpoint, CDN endpoint, and certificate ID: doctl compute cdn list --format ID,Origin,Endpoint,CertificateID` cmdCDNCreate := CmdBuilder(cmd, RunCDNCreate, "create ", "Create a CDN", `Creates a Content Delivery Network (CDN) on the origin server you specify and automatically generates an endpoint. You can also use a custom subdomain you own to create an additional endpoint, which must be secured with SSL.`+CDNnotes, Writer, aliasOpt("c"), displayerType(&displayers.CDN{}))