ForgeRockSettings

pydantic model gafaelfawr.config.ForgeRockSettings

pydantic model of ForgeRock Identity Management configuration.

Parameters:

data (Any)

Show JSON schema
{
   "title": "ForgeRockSettings",
   "description": "pydantic model of ForgeRock Identity Management configuration.",
   "type": "object",
   "properties": {
      "url": {
         "title": "Url",
         "type": "string"
      },
      "username": {
         "title": "Username",
         "type": "string"
      },
      "passwordFile": {
         "format": "path",
         "title": "Passwordfile",
         "type": "string"
      }
   },
   "required": [
      "url",
      "username",
      "passwordFile"
   ]
}

Fields:
field passwordFile: Path [Required] (name 'password_file')

File containing the password for authenticated queries.

field url: str [Required]

Base URL for ForgeRock Identity Management server.

field username: str [Required]

Username for authenticated queries.