AzureDevOpsDscNative.AzDoAgentQueue.dsc.adaptedResource.json

{
  "$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json",
  "type": "AzureDevOpsDscNative/AzDoAgentQueue",
  "kind": "resource",
  "version": "1.1.0",
  "capabilities": [
    "set",
    "test",
    "get"
  ],
  "description": "DSC resource for managing Azure DevOps agent queues.",
  "author": "ZanattaMichael",
  "requireAdapter": "Microsoft.Adapter/PowerShell",
  "path": "AzureDevOpsDscNative.psd1",
  "schema": {
    "embedded": {
      "additionalProperties": false,
      "type": "object",
      "description": "DSC resource for managing Azure DevOps agent queues.",
      "title": "AzureDevOpsDscNative/AzDoAgentQueue",
      "$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."
        },
        "QueueName": {
          "type": "string",
          "title": "QueueName",
          "description": "The name of the agent queue within the project. This is a key property."
        },
        "PoolName": {
          "type": "string",
          "title": "PoolName",
          "description": "The name of the agent pool that backs this queue. This is a mandatory property."
        },
        "AuthorizeAllPipelines": {
          "type": "boolean",
          "title": "AuthorizeAllPipelines",
          "description": "Whether every pipeline in the project is granted access to the queue without an explicit authorization prompt. Defaults to $false."
        }
      },
      "required": [
        "ProjectName",
        "QueueName",
        "PoolName"
      ]
    }
  }
}