chocolatey.ChocolateyFeature.dsc.adaptedResource.json
|
{
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json", "type": "chocolatey/ChocolateyFeature", "kind": "resource", "version": "0.11.0", "capabilities": [ "get", "test", "set" ], "description": "The `ChocolateyFeature` DSC resource is used to enable or disable features.", "author": "Gael Colas", "requireAdapter": "Microsoft.Adapter/PowerShell", "path": "chocolatey.psd1", "schema": { "embedded": { "type": "object", "title": "chocolatey/ChocolateyFeature", "description": "The `ChocolateyFeature` DSC resource is used to enable or disable features.", "additionalProperties": false, "properties": { "Ensure": { "type": "string", "enum": [ "Absent", "Present" ], "title": "Ensure", "description": "Indicate whether the Chocolatey feature should be enabled or disabled on the system." }, "Name": { "type": "string", "title": "Name", "description": "Name - the name of the feature." }, "Reasons": { "items": { "type": "string" }, "type": "array", "title": "Reasons", "readOnly": true, "description": "The Reasons property." } }, "required": [ "Name" ], "$schema": "https://json-schema.org/draft/2020-12/schema" } } } |