AzureDevOpsDscNative.AzDoTeamSettings.dsc.adaptedResource.json

{
  "$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json",
  "type": "AzureDevOpsDscNative/AzDoTeamSettings",
  "kind": "resource",
  "version": "1.1.0",
  "capabilities": [
    "set",
    "test",
    "get"
  ],
  "description": "DSC resource for managing the iteration and area-path configuration of an Azure DevOps team.",
  "author": "ZanattaMichael",
  "requireAdapter": "Microsoft.Adapter/PowerShell",
  "path": "AzureDevOpsDscNative.psd1",
  "schema": {
    "embedded": {
      "description": "DSC resource for managing the iteration and area-path configuration of an Azure DevOps team.",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "title": "AzureDevOpsDscNative/AzDoTeamSettings",
      "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 the key property for the resource."
        },
        "TeamName": {
          "type": "string",
          "title": "TeamName",
          "description": "The name of the team whose settings are managed. This property is mandatory."
        },
        "BacklogIterationPath": {
          "type": "string",
          "title": "BacklogIterationPath",
          "description": "The backlog iteration path for the team."
        },
        "DefaultIterationPath": {
          "type": "string",
          "title": "DefaultIterationPath",
          "description": "The default iteration path for new work items."
        },
        "IterationPaths": {
          "items": {
            "type": "string"
          },
          "type": "array",
          "title": "IterationPaths",
          "description": "The IterationPaths property."
        },
        "DefaultAreaPath": {
          "type": "string",
          "title": "DefaultAreaPath",
          "description": "The default area path for the team."
        },
        "AreaPaths": {
          "items": {
            "type": "string"
          },
          "type": "array",
          "title": "AreaPaths",
          "description": "The AreaPaths property."
        },
        "WorkingDays": {
          "items": {
            "type": "string"
          },
          "type": "array",
          "title": "WorkingDays",
          "description": "The WorkingDays property."
        },
        "BugsBehavior": {
          "type": "string",
          "enum": [
            "",
            "asRequirements",
            "asTasks",
            "off"
          ],
          "title": "BugsBehavior",
          "description": "How bugs are shown on backlogs and boards. Valid values are asRequirements, asTasks and off."
        }
      },
      "required": [
        "ProjectName",
        "TeamName"
      ],
      "type": "object",
      "additionalProperties": false
    }
  }
}