File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -228,6 +228,9 @@ pub enum AdapterInputKind {
228
228
/// The adapter accepts full unprocessed configuration.
229
229
#[ serde( rename = "full" ) ]
230
230
Full ,
231
+ /// The adapter accepts configuration as a sequence.
232
+ #[ serde( rename = "sequence" ) ]
233
+ Sequence ,
231
234
/// The adapter accepts a single resource input.
232
235
#[ serde( rename = "single" ) ]
233
236
Single ,
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ pub struct DscResource {
36
36
pub capabilities : Vec < String > ,
37
37
/// The file path to the resource.
38
38
pub path : String ,
39
- // The directory path to the resource.
39
+ /// The directory path to the resource.
40
40
pub directory : String ,
41
41
/// The implementation of the resource.
42
42
#[ serde( rename="implementedAs" ) ]
You can’t perform that action at this time.
0 commit comments