@@ -175,7 +175,7 @@ pub enum ConfigSubCommand {
175
175
pub enum ExtensionSubCommand {
176
176
#[ clap( name = "list" , about = t!( "args.listExtensionAbout" ) . to_string( ) ) ]
177
177
List {
178
- # [ clap ( short = 'n' , long , help = t! ( "args.extensionName" ) . to_string ( ) ) ]
178
+ /// Optional extension name to filter the list
179
179
extension_name : Option < String > ,
180
180
#[ clap( short = 'o' , long, help = t!( "args.outputFormat" ) . to_string( ) ) ]
181
181
output_format : Option < ListOutputFormat > ,
@@ -186,7 +186,7 @@ pub enum ExtensionSubCommand {
186
186
pub enum FunctionSubCommand {
187
187
#[ clap( name = "list" , about = t!( "args.listFunctionAbout" ) . to_string( ) ) ]
188
188
List {
189
- # [ clap ( short = 'n' , long , help = t! ( "args.functionName" ) . to_string ( ) ) ]
189
+ /// Optional function name to filter the list
190
190
function_name : Option < String > ,
191
191
#[ clap( short = 'o' , long, help = t!( "args.outputFormat" ) . to_string( ) ) ]
192
192
output_format : Option < ListOutputFormat > ,
@@ -197,7 +197,7 @@ pub enum FunctionSubCommand {
197
197
pub enum ResourceSubCommand {
198
198
#[ clap( name = "list" , about = t!( "args.listAbout" ) . to_string( ) ) ]
199
199
List {
200
- # [ clap ( short = 'n' , long , help = t! ( "args.resourceName" ) . to_string ( ) ) ]
200
+ /// Optional resource name to filter the list
201
201
resource_name : Option < String > ,
202
202
/// Optional adapter filter to apply to the list of resources
203
203
#[ clap( short = 'a' , long = "adapter" , help = t!( "args.adapter" ) . to_string( ) ) ]
0 commit comments