AzureDevOpsDscNative.AzDoProject.dsc.adaptedResource.json
|
{
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json", "type": "AzureDevOpsDscNative/AzDoProject", "kind": "resource", "version": "1.0.0", "capabilities": [ "set", "test", "get" ], "description": "This class represents an Azure DevOps project.", "author": "ZanattaMichael", "requireAdapter": "Microsoft.Adapter/PowerShell", "path": "AzureDevOpsDscNative.psd1", "schema": { "embedded": { "title": "AzureDevOpsDscNative/AzDoProject", "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." }, "ProjectDescription": { "type": "string", "title": "ProjectDescription", "description": "The description of the Azure DevOps project." }, "SourceControlType": { "type": "string", "enum": [ "Git", "Tfvc" ], "title": "SourceControlType", "description": "The type of source control for the project. Valid values are 'Git' and 'Tfvc'." }, "ProcessTemplate": { "type": "string", "enum": [ "Agile", "Scrum", "CMMI", "Basic" ], "title": "ProcessTemplate", "description": "The process template for the project. Valid values are 'Agile', 'Scrum', 'CMMI', and 'Basic'." }, "Visibility": { "type": "string", "enum": [ "Public", "Private" ], "title": "Visibility", "description": "The visibility of the project. Valid values are 'Public' and 'Private'." } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "type": "object", "required": [ "ProjectName" ], "description": "This class represents an Azure DevOps project." } } } |