AzureDevOpsDscNative.AzDoTaskGroup.dsc.adaptedResource.json

{
  "$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json",
  "type": "AzureDevOpsDscNative/AzDoTaskGroup",
  "kind": "resource",
  "version": "1.1.0",
  "capabilities": [
    "set",
    "test",
    "get"
  ],
  "description": "DSC resource for managing Azure DevOps reusable task groups.",
  "author": "ZanattaMichael",
  "requireAdapter": "Microsoft.Adapter/PowerShell",
  "path": "AzureDevOpsDscNative.psd1",
  "schema": {
    "embedded": {
      "additionalProperties": false,
      "type": "object",
      "description": "DSC resource for managing Azure DevOps reusable task groups.",
      "title": "AzureDevOpsDscNative/AzDoTaskGroup",
      "$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. This property is mandatory and serves as a key property for the resource."
        },
        "TaskGroupName": {
          "type": "string",
          "title": "TaskGroupName",
          "description": "The name of the task group. This is a key property."
        },
        "Description": {
          "type": "string",
          "title": "Description",
          "description": "An optional description for the task group."
        },
        "Category": {
          "type": "string",
          "title": "Category",
          "description": "The category of the task group (e.g., Build, Deploy, Test)."
        },
        "Tasks": {
          "items": {
            "type": "object"
          },
          "type": "array",
          "title": "Tasks",
          "description": "The Tasks property."
        },
        "Inputs": {
          "items": {
            "type": "object"
          },
          "type": "array",
          "title": "Inputs",
          "description": "The Inputs property."
        }
      },
      "required": [
        "ProjectName",
        "TaskGroupName"
      ]
    }
  }
}