Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions dsc/docs-conceptual/dsc-3.0/reference/cli/resource/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,12 +327,12 @@ For more information about the formatting of the output data, see the
[02]: https://jsonlines.org/
[03]: ../../schemas/outputs/resource/list.md
[04]: ../../schemas/definitions/resourceKind.md
[05]: ../../schemas/outputs/resource/list.md#capabilities
[06]: ../../schemas/outputs/resource/list.md#capability-get
[07]: ../../schemas/outputs/resource/list.md#capability-set
[08]: ../../schemas/outputs/resource/list.md#capability-sethandlesexist
[09]: ../../schemas/outputs/resource/list.md#capability-whatif
[10]: ../../schemas/outputs/resource/list.md#capability-test
[11]: ../../schemas/outputs/resource/list.md#capability-delete
[12]: ../../schemas/outputs/resource/list.md#capability-export
[13]: ../../schemas/outputs/resource/list.md#capability-resolve
[05]: ../../schemas/definitions/resourceCapabilities.md
[06]: ../../schemas/definitions/resourceCapabilities.md#get
[07]: ../../schemas/definitions/resourceCapabilities.md#set
[08]: ../../schemas/definitions/resourceCapabilities.md#setHandlesExist
[09]: ../../schemas/definitions/resourceCapabilities.md#whatIf
[10]: ../../schemas/definitions/resourceCapabilities.md#test
[11]: ../../schemas/definitions/resourceCapabilities.md#delete
[12]: ../../schemas/definitions/resourceCapabilities.md#export
[13]: ../../schemas/definitions/resourceCapabilities.md#resolve
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,18 @@ can invoke for a resource and how the resource behaves when invoked.

DSC resources may have the following capabilities:

- `get` - The resource can retrieve the current state of an instance.
- `set` - The resource can enforce the desired state for an instance.
- `setHandlesExist` - The resource handles deleting an instance during a **Set** operation.
- `whatIf` - The resource can report how it would change state for an instance during a **Set**
operation.
- `test` - The resource implements the **Test** operation and doesn't rely on synthetic testing.
- `delete` - The resource can remove an instance.
- `export` - The resource can enumerate every instance.
- `resolve` - The resource can resolve nested instances from an external source.
- `get` - <a id="get"></a> The resource can retrieve the current state of an instance.
- `set` - <a id="set"></a> The resource can enforce the desired state for an instance.
- `setHandlesExist` - <a id="setHandlesExist"></a> The resource handles deleting an instance during
a **Set** operation.
- `whatIf` - <a id="whatIf"></a> The resource can report how it would change state for an instance
during a **Set** operation.
- `test` - <a id="test"></a> The resource implements the **Test** operation and doesn't rely on
synthetic testing.
- `delete` - <a id="delete"></a> The resource can remove an instance.
- `export` - <a id="export"></a> The resource can enumerate every instance.
- `resolve` - <a id="resolve"></a> The resource can resolve nested instances from an external
source.

For more information about resource capabilities, see [DSC resource capabilities][01]. For more
information about the operations you can invoke for a resource, see [DSC resource operations][02].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,6 @@ ValidValues: [state, stateAndDiff]
<!-- Reference link definitions -->
[01]: ../properties/exist.md
[02]: ./root.md#schema-1
[03]: ../../outputs/resource/list.md#capability-sethandlesexist
[04]: ../../outputs/resource/list.md#capabilities
[03]: ../../definitions/resourceCapabilities.md#setHandlesExist
[04]: ../../definitions/resourceCapabilities.md
[05]: ./delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,6 @@ ValidValues: [state, stateAndDiff]
[03]: ./set.md
[04]: ../properties/exist.md
[05]: ./root.md#schema-1
[06]: ../../outputs/resource/list.md#capability-sethandlesexist
[07]: ../../outputs/resource/list.md#capabilities
[06]: ../../definitions/resourceCapabilities.md#setHandlesExist
[07]: ../../definitions/resourceCapabilities.md
[08]: ./delete.md
Loading