AzureDevOpsDscNative.AzDoProcess.dsc.adaptedResource.json
|
{
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json", "type": "AzureDevOpsDscNative/AzDoProcess", "kind": "resource", "version": "1.0.0", "capabilities": [ "set", "test", "get" ], "description": "DSC resource for managing Azure DevOps inherited processes.", "author": "ZanattaMichael", "requireAdapter": "Microsoft.Adapter/PowerShell", "path": "AzureDevOpsDscNative.psd1", "schema": { "embedded": { "title": "AzureDevOpsDscNative/AzDoProcess", "properties": { "Ensure": { "type": "string", "enum": [ "Present", "Absent" ], "title": "Ensure", "description": "The Ensure property." }, "LookupResult": { "type": "object", "title": "LookupResult", "readOnly": true, "description": "The LookupResult property." }, "ProcessName": { "type": "string", "title": "ProcessName", "description": "The name of the inherited process." }, "ParentProcessName": { "type": "string", "title": "ParentProcessName", "description": "The name of the parent (system or custom) process to inherit from, e.g. 'Agile', 'Scrum', 'CMMI', 'Basic'." }, "Description": { "type": "string", "title": "Description", "description": "The description of the inherited process." } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "type": "object", "required": [ "ProcessName", "ParentProcessName" ], "description": "DSC resource for managing Azure DevOps inherited processes." } } } |