AzureDevOpsDscNative.AzDoProcessPermission.dsc.adaptedResource.json
|
{
"$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json", "type": "AzureDevOpsDscNative/AzDoProcessPermission", "kind": "resource", "version": "1.0.0", "capabilities": [ "set", "test", "get" ], "description": "DSC resource for managing Azure DevOps Process namespace permissions.", "author": "ZanattaMichael", "requireAdapter": "Microsoft.Adapter/PowerShell", "path": "AzureDevOpsDscNative.psd1", "schema": { "embedded": { "title": "AzureDevOpsDscNative/AzDoProcessPermission", "properties": { "Ensure": { "type": "string", "enum": [ "Present", "Absent" ], "title": "Ensure", "description": "The Ensure property." }, "LookupResult": { "type": "object", "title": "LookupResult", "readOnly": true, "description": "The LookupResult property." }, "ProcessName": { "type": "string", "title": "ProcessName", "description": "The process name, or the sentinel 'AllProcesses' for the org-wide root scope." }, "isInherited": { "type": "boolean", "title": "isInherited", "description": "Whether the ACL inherits permissions. Defaults to $true." }, "Permissions": { "type": "array", "items": { "type": "object" }, "title": "Permissions", "description": "An array of hashtables describing the desired ACEs, each with an 'Identity' and a 'Permission' map." } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "type": "object", "required": [ "ProcessName" ], "description": "DSC resource for managing Azure DevOps Process namespace permissions." } } } |