@@ -14,7 +14,7 @@ use dsc_lib::dscresources::invoke_result::{
14
14
use dsc_lib:: {
15
15
DscManager ,
16
16
dscresources:: invoke_result:: ValidateResult ,
17
- dscresources:: dscresource:: { ImplementedAs , Invoke } ,
17
+ dscresources:: dscresource:: { Capability , ImplementedAs , Invoke } ,
18
18
dscresources:: resource_manifest:: { import_manifest, ResourceManifest } ,
19
19
} ;
20
20
use serde_yaml:: Value ;
@@ -400,13 +400,17 @@ pub fn resource(subcommand: &ResourceSubCommand, stdin: &Option<String>) {
400
400
ResourceSubCommand :: List { resource_name, description, tags, format } => {
401
401
402
402
let mut write_table = false ;
403
- let mut table = Table :: new ( & [ "Type" , "Kind" , "Version" , "Methods " , "Requires" , "Description" ] ) ;
403
+ let mut table = Table :: new ( & [ "Type" , "Kind" , "Version" , "Caps " , "Requires" , "Description" ] ) ;
404
404
if format. is_none ( ) && atty:: is ( Stream :: Stdout ) {
405
405
// write as table if format is not specified and interactive
406
406
write_table = true ;
407
407
}
408
408
for resource in dsc. list_available_resources ( & resource_name. clone ( ) . unwrap_or_default ( ) ) {
409
- let mut methods = "g---" . to_string ( ) ;
409
+ let mut capabilities = "g---" . to_string ( ) ;
410
+ if resource. capabilities . contains ( & Capability :: Set ) { capabilities. replace_range ( 1 ..2 , "s" ) ; }
411
+ if resource. capabilities . contains ( & Capability :: Test ) { capabilities. replace_range ( 2 ..3 , "t" ) ; }
412
+ if resource. capabilities . contains ( & Capability :: Export ) { capabilities. replace_range ( 3 ..4 , "e" ) ; }
413
+
410
414
// if description, tags, or write_table is specified, pull resource manifest if it exists
411
415
if let Some ( ref resource_manifest) = resource. manifest {
412
416
let manifest = match import_manifest ( resource_manifest. clone ( ) ) {
@@ -438,10 +442,6 @@ pub fn resource(subcommand: &ResourceSubCommand, stdin: &Option<String>) {
438
442
}
439
443
if !found { continue ; }
440
444
}
441
-
442
- if manifest. set . is_some ( ) { methods. replace_range ( 1 ..2 , "s" ) ; }
443
- if manifest. test . is_some ( ) { methods. replace_range ( 2 ..3 , "t" ) ; }
444
- if manifest. export . is_some ( ) { methods. replace_range ( 3 ..4 , "e" ) ; }
445
445
} else {
446
446
// resource does not have a manifest but filtering on description or tags was requested - skip such resource
447
447
if description. is_some ( ) || tags. is_some ( ) {
@@ -454,7 +454,7 @@ pub fn resource(subcommand: &ResourceSubCommand, stdin: &Option<String>) {
454
454
resource. type_name,
455
455
format!( "{:?}" , resource. kind) ,
456
456
resource. version,
457
- methods ,
457
+ capabilities ,
458
458
resource. requires. unwrap_or_default( ) ,
459
459
resource. description. unwrap_or_default( )
460
460
] ) ;
0 commit comments