AzureDevOpsDscNative.AzDoGroupPermission.dsc.adaptedResource.json

{
  "$schema": "https://aka.ms/dsc/schemas/v3/bundled/adaptedresource/manifest.json",
  "type": "AzureDevOpsDscNative/AzDoGroupPermission",
  "kind": "resource",
  "version": "1.0.0",
  "capabilities": [
    "set",
    "test",
    "get"
  ],
  "description": "This class represents a DSC resource for managing Azure DevOps project group permissions.",
  "author": "ZanattaMichael",
  "requireAdapter": "Microsoft.Adapter/PowerShell",
  "path": "AzureDevOpsDscNative.psd1",
  "schema": {
    "embedded": {
      "required": [
        "GroupName"
      ],
      "title": "AzureDevOpsDscNative/AzDoGroupPermission",
      "properties": {
        "Ensure": {
          "type": "string",
          "enum": [
            "Present",
            "Absent"
          ],
          "title": "Ensure",
          "description": "The Ensure property."
        },
        "LookupResult": {
          "type": "object",
          "title": "LookupResult",
          "readOnly": true,
          "description": "The LookupResult property."
        },
        "GroupName": {
          "type": "string",
          "title": "GroupName",
          "description": "The name of the group for which the permissions are being managed."
        },
        "isInherited": {
          "type": "boolean",
          "title": "isInherited",
          "description": "Specifies whether the permissions are inherited from a parent group. Default value is $true."
        },
        "Permissions": {
          "items": {
            "type": "object"
          },
          "type": "array",
          "title": "Permissions",
          "description": "Specifies the permissions to be assigned to the group. This should be an array of hashtables, where each hashtable represents a permission."
        }
      },
      "description": "This class represents a DSC resource for managing Azure DevOps project group permissions.",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "additionalProperties": false,
      "type": "object"
    }
  }
}