AzureDevOpsDscNative.AzDoPipelineFolder.dsc.adaptedResource.json

{
  "$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json",
  "type": "AzureDevOpsDscNative/AzDoPipelineFolder",
  "kind": "resource",
  "version": "1.1.0",
  "capabilities": [
    "set",
    "test",
    "get"
  ],
  "description": "DSC resource for managing Azure DevOps pipeline (build) folders.",
  "author": "ZanattaMichael",
  "requireAdapter": "Microsoft.Adapter/PowerShell",
  "path": "AzureDevOpsDscNative.psd1",
  "schema": {
    "embedded": {
      "additionalProperties": false,
      "type": "object",
      "description": "DSC resource for managing Azure DevOps pipeline (build) folders.",
      "title": "AzureDevOpsDscNative/AzDoPipelineFolder",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "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, for example '\\Platform\\Release'."
        },
        "Description": {
          "type": "string",
          "title": "Description",
          "description": "An optional description shown in the Azure DevOps UI."
        },
        "AllowRecursiveDelete": {
          "type": "boolean",
          "title": "AllowRecursiveDelete",
          "description": "Deleting a pipeline folder deletes every pipeline definition beneath it. Removal of a folder that still has contents is refused unless this is set to $true."
        }
      },
      "required": [
        "ProjectName",
        "Path"
      ]
    }
  }
}