@@ -175,7 +175,7 @@ pub enum ConfigSubCommand {
175175pub enum ExtensionSubCommand {
176176 #[ clap( name = "list" , about = t!( "args.listExtensionAbout" ) . to_string( ) ) ]
177177 List {
178- # [ clap ( short = 'n' , long , help = t! ( "args.extensionName" ) . to_string ( ) ) ]
178+ /// Optional extension name to filter the list
179179 extension_name : Option < String > ,
180180 #[ clap( short = 'o' , long, help = t!( "args.outputFormat" ) . to_string( ) ) ]
181181 output_format : Option < ListOutputFormat > ,
@@ -186,7 +186,7 @@ pub enum ExtensionSubCommand {
186186pub enum FunctionSubCommand {
187187 #[ clap( name = "list" , about = t!( "args.listFunctionAbout" ) . to_string( ) ) ]
188188 List {
189- # [ clap ( short = 'n' , long , help = t! ( "args.functionName" ) . to_string ( ) ) ]
189+ /// Optional function name to filter the list
190190 function_name : Option < String > ,
191191 #[ clap( short = 'o' , long, help = t!( "args.outputFormat" ) . to_string( ) ) ]
192192 output_format : Option < ListOutputFormat > ,
@@ -197,7 +197,7 @@ pub enum FunctionSubCommand {
197197pub enum ResourceSubCommand {
198198 #[ clap( name = "list" , about = t!( "args.listAbout" ) . to_string( ) ) ]
199199 List {
200- # [ clap ( short = 'n' , long , help = t! ( "args.resourceName" ) . to_string ( ) ) ]
200+ /// Optional resource name to filter the list
201201 resource_name : Option < String > ,
202202 /// Optional adapter filter to apply to the list of resources
203203 #[ clap( short = 'a' , long = "adapter" , help = t!( "args.adapter" ) . to_string( ) ) ]
0 commit comments