Skip to content

Commit 32ddc7a

Browse files
committed
restore sequence type
1 parent 606e94a commit 32ddc7a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

dsc_lib/src/dscresources/resource_manifest.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,9 @@ pub enum AdapterInputKind {
228228
/// The adapter accepts full unprocessed configuration.
229229
#[serde(rename = "full")]
230230
Full,
231+
/// The adapter accepts configuration as a sequence.
232+
#[serde(rename = "sequence")]
233+
Sequence,
231234
/// The adapter accepts a single resource input.
232235
#[serde(rename = "single")]
233236
Single,

tools/dsctest/src/adapter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub struct DscResource {
3636
pub capabilities: Vec<String>,
3737
/// The file path to the resource.
3838
pub path: String,
39-
// The directory path to the resource.
39+
/// The directory path to the resource.
4040
pub directory: String,
4141
/// The implementation of the resource.
4242
#[serde(rename="implementedAs")]

0 commit comments

Comments
 (0)