AzureDevOpsDscNative.AzDoPicklist.dsc.adaptedResource.json
|
{
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json", "type": "AzureDevOpsDscNative/AzDoPicklist", "kind": "resource", "version": "1.1.0", "capabilities": [ "set", "test", "get" ], "description": "DSC resource for managing Azure DevOps picklists.", "author": "ZanattaMichael", "requireAdapter": "Microsoft.Adapter/PowerShell", "path": "AzureDevOpsDscNative.psd1", "schema": { "embedded": { "description": "DSC resource for managing Azure DevOps picklists.", "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "AzureDevOpsDscNative/AzDoPicklist", "properties": { "Ensure": { "type": "string", "enum": [ "Present", "Absent" ], "title": "Ensure", "description": "The Ensure property." }, "LookupResult": { "type": "object", "title": "LookupResult", "readOnly": true, "description": "The LookupResult property." }, "PicklistName": { "type": "string", "title": "PicklistName", "description": "The name of the picklist." }, "Items": { "items": { "type": "string" }, "type": "array", "title": "Items", "description": "The complete set of allowed values, in the order they should appear." }, "PicklistType": { "type": "string", "enum": [ "String", "Integer" ], "title": "PicklistType", "description": "'String' or 'Integer'. Defaults to 'String'. The type is fixed at creation - changing it requires recreating the picklist, which this resource does not do implicitly." }, "IsSuggested": { "type": "boolean", "title": "IsSuggested", "description": "When true the list is a suggestion rather than a closed set, and users may enter values that are not on it." } }, "required": [ "PicklistName" ], "type": "object", "additionalProperties": false } } } |