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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ description: >-
Describes the capabilities of DSC resources, how DSC discovers them, and how
the capabilities affect resource behavior and usage.
ms.date: 03/25/2025
ms.topic: conceptual
title: DSC resource capabilities
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
description: >-
Describes what a DSC resource instance is and how to use them with DSC.
ms.date: 03/25/2025
ms.topic: conceptual
title: DSC resource instances
---

Expand Down Expand Up @@ -270,7 +269,7 @@ resources:
properties: {}
dependsOn:
- "[resourceId('Microsoft.DSC/Group', 'Nested Group')]"

```

#### Example 2 - Invalid reference and dependency on a nested instance
Expand Down
1 change: 0 additions & 1 deletion dsc/docs-conceptual/dsc-3.0/concepts/resources/kinds.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
description: >-
Describes the different kinds of resources that DSC supports.
ms.date: 03/25/2025
ms.topic: conceptual
title: DSC resource kinds
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
description: >-
Describes the operations available for DSC resources and how they're used.
ms.date: 03/25/2025
ms.topic: conceptual
title: DSC resource operations
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ description: >-
Describes what DSC resource properties are, how they behave, and how to use
them.
ms.date: 03/25/2025
ms.topic: conceptual
title: DSC resource properties
---

Expand Down Expand Up @@ -32,12 +31,12 @@ attributes for a property that can change how you use the property:
- If the instance schema defines the `x-dsc-key` keyword for the property subschema as `true`, the
property is a _key resource property_. Key properties uniquely identify a resource instance on
the system to prevent conflicts in configuration documents.

For more information, see the [Key properties](#key-resource-properties) section.
- If the instance schema defines the property name in the `required` keyword, the property is a
_required resource property_. You _must_ define the property in the desired state for the
instance. If you omit the property, DSC raises an error because the instance is invalid.

For more information, see the [Required properties](#required-resource-properties) section.
- If the instance schema defines the `readOnly` keyword for the property subschema as `true`, the
property is a _read-only resource property_. You can't define the property in the desired state
Expand Down
Loading