()
| 48 | } |
| 49 | |
| 50 | func (c *NamespaceCreateCommand) Flags() *FlagSets { |
| 51 | set := c.flagSet(FlagSetHTTP | FlagSetOutputField | FlagSetOutputFormat) |
| 52 | |
| 53 | f := set.NewFlagSet("Command Options") |
| 54 | f.StringMapVar(&StringMapVar{ |
| 55 | Name: "custom-metadata", |
| 56 | Target: &c.flagCustomMetadata, |
| 57 | Default: map[string]string{}, |
| 58 | Usage: "Specifies arbitrary key=value metadata meant to describe a namespace." + |
| 59 | "This can be specified multiple times to add multiple pieces of metadata.", |
| 60 | }) |
| 61 | |
| 62 | return set |
| 63 | } |
| 64 | |
| 65 | func (c *NamespaceCreateCommand) AutocompleteArgs() complete.Predictor { |
| 66 | return complete.PredictNothing |
no test coverage detected