From 7f5526699c7ff08e54b5ac5b538482d1a640fad6 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 19 Nov 2025 15:23:12 -0600 Subject: [PATCH] Fix metadata (#385) --- .../dsc-3.0/concepts/resources/capabilities.md | 1 - dsc/docs-conceptual/dsc-3.0/concepts/resources/instances.md | 3 +-- dsc/docs-conceptual/dsc-3.0/concepts/resources/kinds.md | 1 - dsc/docs-conceptual/dsc-3.0/concepts/resources/operations.md | 1 - dsc/docs-conceptual/dsc-3.0/concepts/resources/properties.md | 5 ++--- 5 files changed, 3 insertions(+), 8 deletions(-) diff --git a/dsc/docs-conceptual/dsc-3.0/concepts/resources/capabilities.md b/dsc/docs-conceptual/dsc-3.0/concepts/resources/capabilities.md index 9327015..77d0876 100644 --- a/dsc/docs-conceptual/dsc-3.0/concepts/resources/capabilities.md +++ b/dsc/docs-conceptual/dsc-3.0/concepts/resources/capabilities.md @@ -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 --- diff --git a/dsc/docs-conceptual/dsc-3.0/concepts/resources/instances.md b/dsc/docs-conceptual/dsc-3.0/concepts/resources/instances.md index e01b331..ed364ab 100644 --- a/dsc/docs-conceptual/dsc-3.0/concepts/resources/instances.md +++ b/dsc/docs-conceptual/dsc-3.0/concepts/resources/instances.md @@ -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 --- @@ -270,7 +269,7 @@ resources: properties: {} dependsOn: - "[resourceId('Microsoft.DSC/Group', 'Nested Group')]" - + ``` #### Example 2 - Invalid reference and dependency on a nested instance diff --git a/dsc/docs-conceptual/dsc-3.0/concepts/resources/kinds.md b/dsc/docs-conceptual/dsc-3.0/concepts/resources/kinds.md index 55c4126..d1ff203 100644 --- a/dsc/docs-conceptual/dsc-3.0/concepts/resources/kinds.md +++ b/dsc/docs-conceptual/dsc-3.0/concepts/resources/kinds.md @@ -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 --- diff --git a/dsc/docs-conceptual/dsc-3.0/concepts/resources/operations.md b/dsc/docs-conceptual/dsc-3.0/concepts/resources/operations.md index 8453f38..1c632e0 100644 --- a/dsc/docs-conceptual/dsc-3.0/concepts/resources/operations.md +++ b/dsc/docs-conceptual/dsc-3.0/concepts/resources/operations.md @@ -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 --- diff --git a/dsc/docs-conceptual/dsc-3.0/concepts/resources/properties.md b/dsc/docs-conceptual/dsc-3.0/concepts/resources/properties.md index 449f8f9..d2da3ab 100644 --- a/dsc/docs-conceptual/dsc-3.0/concepts/resources/properties.md +++ b/dsc/docs-conceptual/dsc-3.0/concepts/resources/properties.md @@ -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 --- @@ -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