You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
subCmd.AddFlag(command.Flag{Longhand: "--cli-input-json", Usage: "Read arguments from the JSON string provided", Value: true})
189
-
subCmd.AddFlag(command.Flag{Longhand: "--cli-input-yaml", Usage: "Read arguments from the YAML string provided", Value: true})
190
-
subCmd.AddFlag(command.Flag{Longhand: "--generate-cli-skeleton", Usage: "Prints a JSON skeleton to standard output without sending an API request"})
188
+
subCmd.AddFlag(command.Flag{Longhand: "--cli-input-json", Usage: "Read arguments from the JSON string provided.", Value: true})
189
+
subCmd.AddFlag(command.Flag{Longhand: "--cli-input-yaml", Usage: "Read arguments from the YAML string provided.", Value: true})
190
+
subCmd.AddFlag(command.Flag{Longhand: "--generate-cli-skeleton", Usage: "Prints a JSON skeleton to standard output without sending an API request."})
191
+
192
+
subCmd.Documentation.Flag["cli-input-json"] =`Reads arguments from the JSON string provided.
193
+
The JSON string follows the format provided by --generate-cli-skeleton.
194
+
If other arguments are provided on the command line, those values will override the JSON-provided values.
195
+
It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally.
196
+
This may not be specified along with --cli-input-yaml.`
197
+
subCmd.Documentation.Flag["cli-input-yaml"] =`Reads arguments from the JSON string provided.
198
+
The JSON string follows the format provided by --generate-cli-skeleton.
199
+
If other arguments are provided on the command line, those values will override the JSON-provided values.
200
+
It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally.
201
+
This may not be specified along with --cli-input-yaml.`
202
+
subCmd.Documentation.Flag["generate-cli-skeleton"] =`If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally.
203
+
This may not be specified along with --cli-input-yaml.`
0 commit comments