We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6bd976 commit f1f5602Copy full SHA for f1f5602
1 file changed
plugin/commands/cdn/origin_remove.go
@@ -21,9 +21,11 @@ func NewOriginRemoveCommand(sl *metadata.SoftlayerCommand) *OriginRemoveCommand
21
CdnManager: managers.NewCdnManager(sl.Session),
22
}
23
cobraCmd := &cobra.Command{
24
- Use: "origin-remove",
+ Use: "origin-remove " + T("IDENTIFIER") + " " + T("PATH"),
25
Short: T("Removes an origin path for an existing CDN mapping."),
26
- Long: T("${COMMAND_NAME} sl cdn origin-remove"),
+ Long: T(`${COMMAND_NAME} sl cdn origin-remove
27
+Example:
28
+${COMMAND_NAME} sl cdn origin-remove 123456789 "/path/*"`),
29
Args: metadata.TwoArgs,
30
RunE: func(cmd *cobra.Command, args []string) error {
31
return thisCmd.Run(args)
0 commit comments