AzureDevOpsDscNative.AzDoQueryFolder.dsc.adaptedResource.json

{
  "$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json",
  "type": "AzureDevOpsDscNative/AzDoQueryFolder",
  "kind": "resource",
  "version": "1.1.0",
  "capabilities": [
    "set",
    "test",
    "get"
  ],
  "description": "DSC resource for managing Azure DevOps work item query folders.",
  "author": "ZanattaMichael",
  "requireAdapter": "Microsoft.Adapter/PowerShell",
  "path": "AzureDevOpsDscNative.psd1",
  "schema": {
    "embedded": {
      "description": "DSC resource for managing Azure DevOps work item query folders.",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "title": "AzureDevOpsDscNative/AzDoQueryFolder",
      "properties": {
        "Ensure": {
          "type": "string",
          "enum": [
            "Present",
            "Absent"
          ],
          "title": "Ensure",
          "description": "The Ensure property."
        },
        "LookupResult": {
          "type": "object",
          "title": "LookupResult",
          "readOnly": true,
          "description": "The LookupResult property."
        },
        "ProjectName": {
          "type": "string",
          "title": "ProjectName",
          "description": "The name of the Azure DevOps project."
        },
        "Path": {
          "type": "string",
          "title": "Path",
          "description": "The full path of the folder, including the root, for example 'Shared Queries/Platform/Release'. Backslashes are accepted and normalized to forward slashes."
        },
        "AllowRecursiveDelete": {
          "type": "boolean",
          "title": "AllowRecursiveDelete",
          "description": "Deleting a folder deletes everything beneath it. Removal of a folder that still has children is refused unless this is set to $true."
        }
      },
      "required": [
        "ProjectName",
        "Path"
      ],
      "type": "object",
      "additionalProperties": false
    }
  }
}