diff --git a/src/cli/config-manager/config-manager-pull/config-manager-pull-secrets.ts b/src/cli/config-manager/config-manager-pull/config-manager-pull-secrets.ts index ec4a69658..6da1e5143 100644 --- a/src/cli/config-manager/config-manager-pull/config-manager-pull-secrets.ts +++ b/src/cli/config-manager/config-manager-pull/config-manager-pull-secrets.ts @@ -1,4 +1,5 @@ import { frodo } from '@rockcarver/frodo-lib'; +import { Option } from 'commander'; import { configManagerExportSecrets } from '../../../configManagerOps/FrConfigSecretOps'; import { getTokens } from '../../../ops/AuthenticateOps'; @@ -22,6 +23,12 @@ export default function setup() { program .description('Export secrets.') + .addOption( + new Option( + '-a, --active-only', + 'Exports only active secrets, otherwise exports all secrets and their versions.' + ) + ) .action(async (host, realm, user, password, options, command) => { command.handleDefaultArgsAndOpts( host, @@ -34,7 +41,7 @@ export default function setup() { if (await getTokens(false, true, deploymentTypes)) { verboseMessage('Exporting secrets'); - const outcome = await configManagerExportSecrets(options); + const outcome = await configManagerExportSecrets(options.activeOnly); if (!outcome) process.exitCode = 1; } // unrecognized combination of options or no options diff --git a/src/configManagerOps/FrConfigSecretOps.ts b/src/configManagerOps/FrConfigSecretOps.ts index 231f9fa09..da2132980 100644 --- a/src/configManagerOps/FrConfigSecretOps.ts +++ b/src/configManagerOps/FrConfigSecretOps.ts @@ -8,31 +8,22 @@ import { stopProgressIndicator, updateProgressIndicator, } from '../utils/Console'; +import { esvToEnv } from '../utils/FrConfig'; const { getFilePath, saveJsonToFile } = frodo.utils; -const { readSecrets, exportSecret } = frodo.cloud.secret; +const { readSecrets, exportSecret, readVersionsOfSecret } = frodo.cloud.secret; -/** - * Export all secrets to individual files in fr-config-manager format - * @param {boolean} includeMeta true to include metadata, false otherwise. Default: true - * @param {boolean} includeActiveValues include active value of secret (default: false) - * @param {string} target Host URL of target environment to encrypt secret value for - * @returns {Promise} true if successful, false otherwise - */ type FrConfigSecret = SecretSkeleton & { valueBase64: string; }; -async function getFrConfigSecrets(): Promise { - const originalSecrets = await readSecrets(); - return originalSecrets.map((secret) => ({ - ...secret, - valueBase64: `\${${secret._id.toUpperCase().replace(/-/g, '_')}}`, - })); -} - +/** + * Export all secrets to individual files in fr-config-manager format + * @param {boolean} activeOnly true to export only active secrets, false will export all active or not + * @returns {Promise} true if successful, false otherwise + */ export async function configManagerExportSecrets( - target?: string + activeOnly?: boolean ): Promise { let secrets: FrConfigSecret[] = []; const spinnerId = createProgressIndicator( @@ -41,7 +32,7 @@ export async function configManagerExportSecrets( `Reading secrets...` ); try { - secrets = await getFrConfigSecrets(); + secrets = (await readSecrets()) as FrConfigSecret[]; secrets.sort((a, b) => a._id.localeCompare(b._id)); stopProgressIndicator( spinnerId, @@ -56,18 +47,31 @@ export async function configManagerExportSecrets( for (const secret of secrets) { const exportData: SecretsExportInterface = await exportSecret( secret._id, - false, - target + false ); const [secretKey] = Object.keys(exportData.secret); const fullSecret = exportData.secret[secretKey] as FrConfigSecret; - const cleanSecret = { + const cleanSecret: Partial = { _id: fullSecret._id, description: fullSecret.description, encoding: fullSecret.encoding, useInPlaceholders: fullSecret.useInPlaceholders, - valueBase64: `\${${secret._id.toUpperCase().replace(/-/g, '_')}}`, }; + if (activeOnly) { + cleanSecret.valueBase64 = `\${${esvToEnv(secret._id)}}`; + } else { + const versionsResponse = await readVersionsOfSecret(fullSecret._id); + const versions = versionsResponse.filter( + (version) => version.status !== 'DESTROYED' + ); + const versionInfo = versions.map((version) => ({ + version: version.version, + status: version.status, + valueBase64: `\${${esvToEnv(`${secret._id}_${version.version}`)}}`, + })); + cleanSecret.versions = versionInfo; + } + saveJsonToFile( cleanSecret, getFilePath(`esvs/secrets/${secret._id}.json`, true), diff --git a/test/client_cli/en/__snapshots__/config-manager-export-secrets.test.js.snap b/test/client_cli/en/__snapshots__/config-manager-export-secrets.test.js.snap index 6105598a0..75f004f86 100644 --- a/test/client_cli/en/__snapshots__/config-manager-export-secrets.test.js.snap +++ b/test/client_cli/en/__snapshots__/config-manager-export-secrets.test.js.snap @@ -6,20 +6,22 @@ exports[`CLI help interface for 'config export' should be expected english 1`] = [Experimental] Export secrets. Arguments: - host AM base URL, e.g.: https://cdk.iam.example.com/am. To use a - connection profile, just specify a unique substring or - alias. - realm Realm. Specify realm as '/' for the root realm or 'realm' or - '/parent/child' otherwise. (default: "alpha" for Identity - Cloud tenants, "/" otherwise.) - username Username to login with. Must be an admin user with - appropriate rights to manage authentication journeys/trees. - password Password. + host AM base URL, e.g.: https://cdk.iam.example.com/am. To use a + connection profile, just specify a unique substring or + alias. + realm Realm. Specify realm as '/' for the root realm or 'realm' + or '/parent/child' otherwise. (default: "alpha" for + Identity Cloud tenants, "/" otherwise.) + username Username to login with. Must be an admin user with + appropriate rights to manage authentication journeys/trees. + password Password. Options: - -h, --help Help - -hh, --help-more Help with all options. - -hhh, --help-all Help with all options, environment variables, and usage - examples. + -a, --active-only Exports only active secrets, otherwise exports all secrets + and their versions. + -h, --help Help + -hh, --help-more Help with all options. + -hhh, --help-all Help with all options, environment variables, and usage + examples. " `; diff --git a/test/e2e/__snapshots__/config-manager-export-all.e2e.test.js.snap b/test/e2e/__snapshots__/config-manager-export-all.e2e.test.js.snap index 614bbe74f..b7877cb22 100644 --- a/test/e2e/__snapshots__/config-manager-export-all.e2e.test.js.snap +++ b/test/e2e/__snapshots__/config-manager-export-all.e2e.test.js.snap @@ -1,10 +1,10 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style" 1`] = `0`; +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style" 1`] = `0`; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style" 2`] = `""`; +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style" 2`] = `""`; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/access-config/access.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/access-config/access.json 1`] = ` { "_id": "access", "configs": [ @@ -305,7 +305,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/audit/audit.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/audit/audit.json 1`] = ` { "_id": "audit", "auditServiceConfig": { @@ -408,13 +408,13 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/cookie-domains/cookie-domains.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/cookie-domains/cookie-domains.json 1`] = ` { "domains": [], } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/cors/cors-config.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/cors/cors-config.json 1`] = ` { "corsServiceGlobal": { "_id": "", @@ -444,7 +444,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/email-provider/external.email.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/email-provider/external.email.json 1`] = ` { "_id": "external.email", "auth": { @@ -470,7 +470,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/forgottenUsername/forgottenUsername.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/forgottenUsername/forgottenUsername.json 1`] = ` { "_id": "emailTemplate/forgottenUsername", "defaultLocale": "en", @@ -503,7 +503,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/registration/registration.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/registration/registration.json 1`] = ` { "_id": "emailTemplate/registration", "defaultLocale": "en", @@ -536,7 +536,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/resetPassword/resetPassword.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/resetPassword/resetPassword.json 1`] = ` { "_id": "emailTemplate/resetPassword", "defaultLocale": "en", @@ -558,7 +558,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/updatePassword/updatePassword.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/updatePassword/updatePassword.json 1`] = ` { "_id": "emailTemplate/updatePassword", "defaultLocale": "en", @@ -584,7 +584,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/welcome/welcome.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/email-templates/welcome/welcome.json 1`] = ` { "_id": "emailTemplate/welcome", "defaultLocale": "en", @@ -611,37 +611,81 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/secrets/esv-test-secret.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/secrets/esv-test-secret.json 1`] = ` { "_id": "esv-test-secret", "description": "Test Secret", "encoding": "generic", "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/secrets/esv-test-secret-2.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/secrets/esv-test-secret-2.json 1`] = ` { "_id": "esv-test-secret-2", "description": "Test Secret Two", "encoding": "generic", "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET_2}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_2_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/secrets/esv-test-secret-3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/secrets/esv-test-secret-3.json 1`] = ` { "_id": "esv-test-secret-3", "description": "Test Secret Three", "encoding": "generic", "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET_3}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_3_1}", + "version": "1", + }, + ], +} +`; + +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/secrets/esv-test-secret-4.json 1`] = ` +{ + "_id": "esv-test-secret-4", + "description": "Testing secret using versioning", + "encoding": "generic", + "useInPlaceholders": false, + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_4_3}", + "version": "3", + }, + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_4_2}", + "version": "2", + }, + { + "status": "DISABLED", + "valueBase64": "\${ESV_TEST_SECRET_4_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-blue-piller.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-blue-piller.json 1`] = ` { "_id": "esv-blue-piller", "description": "Zion membership criteria.", @@ -650,7 +694,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-ipv4-cidr-access-rules.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-ipv4-cidr-access-rules.json 1`] = ` { "_id": "esv-ipv4-cidr-access-rules", "description": "IPv4 CIDR access rules: { "allow": [ "address/mask" ] }", @@ -659,7 +703,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-nebuchadnezzar-crew.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-nebuchadnezzar-crew.json 1`] = ` { "_id": "esv-nebuchadnezzar-crew", "description": "The crew of the Nebuchadnezzar hovercraft.", @@ -668,7 +712,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-nebuchadnezzar-crew-structure.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-nebuchadnezzar-crew-structure.json 1`] = ` { "_id": "esv-nebuchadnezzar-crew-structure", "description": "The structure of the crew of the Nebuchadnezzar hovercraft.", @@ -677,7 +721,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-neo-age.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-neo-age.json 1`] = ` { "_id": "esv-neo-age", "description": "Neo's age in the matrix.", @@ -686,7 +730,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-number.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-number.json 1`] = ` { "_id": "esv-number", "description": "test number", @@ -695,7 +739,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test.json 1`] = ` { "_id": "esv-test", "description": "list", @@ -704,7 +748,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test-var.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test-var.json 1`] = ` { "_id": "esv-test-var", "description": "this is a test description", @@ -713,7 +757,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test-var-pi.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test-var-pi.json 1`] = ` { "_id": "esv-test-var-pi", "description": "This is another test variable.", @@ -722,7 +766,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test-var-pi-string.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test-var-pi-string.json 1`] = ` { "_id": "esv-test-var-pi-string", "description": "This is another test variable.", @@ -731,7 +775,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test-variable-light.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-test-variable-light.json 1`] = ` { "_id": "esv-test-variable-light", "description": "Test variable containing the speed of light in meters per second (as an int).", @@ -740,7 +784,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-trinity-phone.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/esvs/variables/esv-trinity-phone.json 1`] = ` { "_id": "esv-trinity-phone", "description": "In the opening of The Matrix (1999), the phone number Trinity is calling from is traced to (312)-555-0690", @@ -749,7 +793,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/kba/selfservice.kba.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/kba/selfservice.kba.json 1`] = ` { "_id": "selfservice.kba", "kbaPropertyName": "kbaInfo", @@ -763,7 +807,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_aiagent/alpha_aiagent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_aiagent/alpha_aiagent.json 1`] = ` { "name": "alpha_aiagent", "onDelete": { @@ -939,12 +983,12 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_aiagent/alpha_aiagent.onDelete.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_aiagent/alpha_aiagent.onDelete.js 1`] = ` "require('ai/aiagentCleanup').deleteOrphanedPrivileges(object, resourceName, request); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_aiagentprivilege/alpha_aiagentprivilege.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_aiagentprivilege/alpha_aiagentprivilege.json 1`] = ` { "name": "alpha_aiagentprivilege", "schema": { @@ -1310,7 +1354,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_application/alpha_application.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_application/alpha_application.json 1`] = ` { "name": "alpha_application", "schema": { @@ -1700,7 +1744,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_assignment/alpha_assignment.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_assignment/alpha_assignment.json 1`] = ` { "attributeEncryption": {}, "name": "alpha_assignment", @@ -1957,7 +2001,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_group/alpha_group.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_group/alpha_group.json 1`] = ` { "name": "alpha_group", "schema": { @@ -2152,7 +2196,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_organization/alpha_organization.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_organization/alpha_organization.json 1`] = ` { "name": "alpha_organization", "schema": { @@ -2550,7 +2594,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_role/alpha_role.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_role/alpha_role.json 1`] = ` { "name": "alpha_role", "schema": { @@ -2800,7 +2844,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_user/alpha_user.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/alpha_user/alpha_user.json 1`] = ` { "lastSync": { "effectiveAssignmentsProperty": "effectiveAssignments", @@ -4618,7 +4662,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_aiagent/bravo_aiagent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_aiagent/bravo_aiagent.json 1`] = ` { "name": "bravo_aiagent", "onDelete": { @@ -4794,12 +4838,12 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_aiagent/bravo_aiagent.onDelete.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_aiagent/bravo_aiagent.onDelete.js 1`] = ` "require('ai/aiagentCleanup').deleteOrphanedPrivileges(object, resourceName, request); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_aiagentprivilege/bravo_aiagentprivilege.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_aiagentprivilege/bravo_aiagentprivilege.json 1`] = ` { "name": "bravo_aiagentprivilege", "schema": { @@ -5165,7 +5209,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_application/bravo_application.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_application/bravo_application.json 1`] = ` { "name": "bravo_application", "schema": { @@ -5552,7 +5596,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_assignment/bravo_assignment.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_assignment/bravo_assignment.json 1`] = ` { "attributeEncryption": {}, "name": "bravo_assignment", @@ -5809,7 +5853,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_group/bravo_group.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_group/bravo_group.json 1`] = ` { "name": "bravo_group", "schema": { @@ -6004,7 +6048,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_organization/bravo_organization.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_organization/bravo_organization.json 1`] = ` { "name": "bravo_organization", "schema": { @@ -6402,7 +6446,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_role/bravo_role.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_role/bravo_role.json 1`] = ` { "name": "bravo_role", "schema": { @@ -6652,7 +6696,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_user/bravo_user.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/bravo_user/bravo_user.json 1`] = ` { "lastSync": { "effectiveAssignmentsProperty": "effectiveAssignments", @@ -8469,25 +8513,25 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.array.onRetrieve.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.array.onRetrieve.js 1`] = ` "// Test Javascript onRetrieve script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.array.onStore.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.array.onStore.js 1`] = ` "// Test Javascript onStore script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.array.onValidate.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.array.onValidate.js 1`] = ` "// Test Javascript onValidate script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.json 1`] = ` { "name": "javascript", "onCreate": { @@ -9158,85 +9202,85 @@ console.log("Hello World!"); } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.object.onRetrieve.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.object.onRetrieve.js 1`] = ` "// Test Javascript onRetrieve script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.object.onStore.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.object.onStore.js 1`] = ` "// Test Javascript onStore script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.object.onValidate.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.object.onValidate.js 1`] = ` "// Test Javascript onValidate script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onDelete.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onDelete.js 1`] = ` "// Test Javascript onDelete script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onRead.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onRead.js 1`] = ` "// Test Javascript onRead script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onRetrieve.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onRetrieve.js 1`] = ` "// Test Javascript onRetrieve script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onStore.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onStore.js 1`] = ` "// Test Javascript onStore script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onSync.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onSync.js 1`] = ` "// Test Javascript onSync script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onUpdate.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onUpdate.js 1`] = ` "// Test Javascript onUpdate script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onValidate.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.onValidate.js 1`] = ` "// Test Javascript onValidate script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.postCreate.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.postCreate.js 1`] = ` "// Test Javascript postCreate script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.postDelete.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.postDelete.js 1`] = ` "// Test Javascript postDelete script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.postUpdate.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/managed-objects/javascript/javascript.postUpdate.js 1`] = ` "// Test Javascript postUpdate script console.log("Hello World!"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/org-privileges/alphaOrgPrivileges.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/org-privileges/alphaOrgPrivileges.json 1`] = ` { "_id": "alphaOrgPrivileges", "privileges": [ @@ -9996,7 +10040,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/org-privileges/bravoOrgPrivileges.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/org-privileges/bravoOrgPrivileges.json 1`] = ` { "_id": "bravoOrgPrivileges", "privileges": [ @@ -10756,7 +10800,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/org-privileges/privilegeAssignments.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/org-privileges/privilegeAssignments.json 1`] = ` { "_id": "privilegeAssignments", "privilegeAssignments": [ @@ -10786,7 +10830,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/EdgePolicySet/EdgePolicySet.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/EdgePolicySet/EdgePolicySet.json 1`] = ` { "_id": "EdgePolicySet", "_rev": "1783482072860", @@ -10845,7 +10889,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/EdgePolicySet/policies/HR-webapp.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/EdgePolicySet/policies/HR-webapp.json 1`] = ` { "_id": "HR-webapp", "_rev": "1783483777393", @@ -10879,7 +10923,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/FeatureStorePolicySet/FeatureStorePolicySet.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/FeatureStorePolicySet/FeatureStorePolicySet.json 1`] = ` { "_id": "FeatureStorePolicySet", "_rev": "1783482073050", @@ -10935,7 +10979,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/data/data.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/data/data.json 1`] = ` { "_id": "data", "_rev": "1783482073246", @@ -10991,7 +11035,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/data/policies/actions.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/data/policies/actions.json 1`] = ` { "_id": "actions", "_rev": "1783483777502", @@ -11016,7 +11060,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/data/policies/activity.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/data/policies/activity.json 1`] = ` { "_id": "activity", "_rev": "1783483777578", @@ -11042,7 +11086,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/data/policies/apply.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/data/policies/apply.json 1`] = ` { "_id": "apply", "_rev": "1783483777684", @@ -11072,7 +11116,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/oauth2Scopes/oauth2Scopes.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/oauth2Scopes/oauth2Scopes.json 1`] = ` { "_id": "oauth2Scopes", "_rev": "1783482073416", @@ -11126,7 +11170,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/test-policy-set/policies/FeatureStorePolicy.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/test-policy-set/policies/FeatureStorePolicy.json 1`] = ` { "_id": "FeatureStorePolicy", "_rev": "1783483777304", @@ -11149,7 +11193,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/test-policy-set/policies/Test Policy.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/test-policy-set/policies/Test Policy.json 1`] = ` { "_id": "Test Policy", "_rev": "1783483760996", @@ -11203,7 +11247,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/test-policy-set/test-policy-set.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/policy-sets/test-policy-set/test-policy-set.json 1`] = ` { "_id": "test-policy-set", "_rev": "1783482537999", @@ -11259,7 +11303,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/resource-types/URL.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/authorization/resource-types/URL.json 1`] = ` { "_id": "76656a38-5f8e-401b-83aa-4ccb74ce88d2", "actions": { @@ -11285,7 +11329,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/Agent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/Agent.json 1`] = ` { "_id": "Agent", "_rev": "-737774734", @@ -11351,7 +11395,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Agent Data Store Decision - 6736a00a-fc65-438e-b4ea-23f66b4a8739.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Agent Data Store Decision - 6736a00a-fc65-438e-b4ea-23f66b4a8739.json 1`] = ` { "_id": "6736a00a-fc65-438e-b4ea-23f66b4a8739", "_outcomes": [ @@ -11374,7 +11418,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Page Node - cbd1f1af-eb0a-4274-a762-adacf04c7080.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Page Node - cbd1f1af-eb0a-4274-a762-adacf04c7080.json 1`] = ` { "_id": "cbd1f1af-eb0a-4274-a762-adacf04c7080", "_outcomes": [ @@ -11409,7 +11453,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Page Node - cbd1f1af-eb0a-4274-a762-adacf04c7080/Platform Password - 6072842f-5f7c-4b62-8ae2-4f18a5701ba4.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Page Node - cbd1f1af-eb0a-4274-a762-adacf04c7080/Platform Password - 6072842f-5f7c-4b62-8ae2-4f18a5701ba4.json 1`] = ` { "_id": "6072842f-5f7c-4b62-8ae2-4f18a5701ba4", "_outcomes": [ @@ -11430,7 +11474,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Page Node - cbd1f1af-eb0a-4274-a762-adacf04c7080/Platform Username - 2eaad2f9-5c4b-405f-bf3f-1e99bdc0d018.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Page Node - cbd1f1af-eb0a-4274-a762-adacf04c7080/Platform Username - 2eaad2f9-5c4b-405f-bf3f-1e99bdc0d018.json 1`] = ` { "_id": "2eaad2f9-5c4b-405f-bf3f-1e99bdc0d018", "_outcomes": [ @@ -11452,7 +11496,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Zero Page Login Collector - 51e2cd24-cf1f-4313-8af0-35ea9e04d2fe.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Agent/nodes/Zero Page Login Collector - 51e2cd24-cf1f-4313-8af0-35ea9e04d2fe.json 1`] = ` { "_id": "51e2cd24-cf1f-4313-8af0-35ea9e04d2fe", "_outcomes": [ @@ -11479,7 +11523,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/ForgottenUsername.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/ForgottenUsername.json 1`] = ` { "_id": "ForgottenUsername", "_rev": "-830414370", @@ -11555,7 +11599,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Email Suspend Node - d9a79f01-2ce3-4be2-a28a-975f35c3c8ca.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Email Suspend Node - d9a79f01-2ce3-4be2-a28a-975f35c3c8ca.json 1`] = ` { "_id": "d9a79f01-2ce3-4be2-a28a-975f35c3c8ca", "_outcomes": [ @@ -11581,7 +11625,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Identify Existing User - bf9ea8d5-9802-4f26-9664-a21840faac23.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Identify Existing User - bf9ea8d5-9802-4f26-9664-a21840faac23.json 1`] = ` { "_id": "bf9ea8d5-9802-4f26-9664-a21840faac23", "_outcomes": [ @@ -11606,7 +11650,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Inner Tree Evaluator - b93ce36e-1976-4610-b24f-8d6760b5463b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Inner Tree Evaluator - b93ce36e-1976-4610-b24f-8d6760b5463b.json 1`] = ` { "_id": "b93ce36e-1976-4610-b24f-8d6760b5463b", "_outcomes": [ @@ -11631,7 +11675,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Page Node - 5e2a7c95-94af-4b23-8724-deb13853726a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Page Node - 5e2a7c95-94af-4b23-8724-deb13853726a.json 1`] = ` { "_id": "5e2a7c95-94af-4b23-8724-deb13853726a", "_outcomes": [ @@ -11664,7 +11708,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Page Node - 5e2a7c95-94af-4b23-8724-deb13853726a/Attribute Collector - 9f1e8d94-4922-481b-9e14-212b66548900.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ForgottenUsername/nodes/Page Node - 5e2a7c95-94af-4b23-8724-deb13853726a/Attribute Collector - 9f1e8d94-4922-481b-9e14-212b66548900.json 1`] = ` { "_id": "9f1e8d94-4922-481b-9e14-212b66548900", "_outcomes": [ @@ -11689,7 +11733,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/FrodoTest.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/FrodoTest.json 1`] = ` { "_id": "FrodoTest", "_rev": "-1175854005", @@ -11803,7 +11847,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Check Username - e2c39477-847a-4df2-9c5d-b449a752638b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Check Username - e2c39477-847a-4df2-9c5d-b449a752638b.json 1`] = ` { "_id": "e2c39477-847a-4df2-9c5d-b449a752638b", "_outcomes": [ @@ -11837,7 +11881,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Email Template Node - bf153f37-83dd-4f39-aa0c-74135430242e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Email Template Node - bf153f37-83dd-4f39-aa0c-74135430242e.json 1`] = ` { "_id": "bf153f37-83dd-4f39-aa0c-74135430242e", "_outcomes": [ @@ -11863,7 +11907,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 278bf084-9eea-46fe-8ce9-2600dde3b046.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 278bf084-9eea-46fe-8ce9-2600dde3b046.json 1`] = ` { "_id": "278bf084-9eea-46fe-8ce9-2600dde3b046", "_outcomes": [ @@ -11908,7 +11952,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 278bf084-9eea-46fe-8ce9-2600dde3b046/Password - 804e6a68-1720-442b-926a-007e90f02782.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 278bf084-9eea-46fe-8ce9-2600dde3b046/Password - 804e6a68-1720-442b-926a-007e90f02782.json 1`] = ` { "_id": "804e6a68-1720-442b-926a-007e90f02782", "_outcomes": [ @@ -11929,7 +11973,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 278bf084-9eea-46fe-8ce9-2600dde3b046/Select IDP - 228a44d5-fd78-4278-8999-fdd470ea7ebf.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 278bf084-9eea-46fe-8ce9-2600dde3b046/Select IDP - 228a44d5-fd78-4278-8999-fdd470ea7ebf.json 1`] = ` { "_id": "228a44d5-fd78-4278-8999-fdd470ea7ebf", "_outcomes": [ @@ -11957,7 +12001,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 278bf084-9eea-46fe-8ce9-2600dde3b046/Username - 7a351800-fb7e-4145-903c-388554747556.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 278bf084-9eea-46fe-8ce9-2600dde3b046/Username - 7a351800-fb7e-4145-903c-388554747556.json 1`] = ` { "_id": "7a351800-fb7e-4145-903c-388554747556", "_outcomes": [ @@ -11979,7 +12023,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 731c5810-020b-45c8-a7fc-3c21903ae2b3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 731c5810-020b-45c8-a7fc-3c21903ae2b3.json 1`] = ` { "_id": "731c5810-020b-45c8-a7fc-3c21903ae2b3", "_outcomes": [ @@ -12018,7 +12062,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 731c5810-020b-45c8-a7fc-3c21903ae2b3/Password - dd16c8d4-baca-4ae0-bcd8-fb98b9040524.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 731c5810-020b-45c8-a7fc-3c21903ae2b3/Password - dd16c8d4-baca-4ae0-bcd8-fb98b9040524.json 1`] = ` { "_id": "dd16c8d4-baca-4ae0-bcd8-fb98b9040524", "_outcomes": [ @@ -12039,7 +12083,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 731c5810-020b-45c8-a7fc-3c21903ae2b3/Select IDP - 038f9b2a-36b2-489b-9e03-386c9a62ea21.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Login Page - 731c5810-020b-45c8-a7fc-3c21903ae2b3/Select IDP - 038f9b2a-36b2-489b-9e03-386c9a62ea21.json 1`] = ` { "_id": "038f9b2a-36b2-489b-9e03-386c9a62ea21", "_outcomes": [ @@ -12067,7 +12111,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/SAML2 Authentication - 64157fca-bd5b-4405-a4c8-64ffd98a5461.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/SAML2 Authentication - 64157fca-bd5b-4405-a4c8-64ffd98a5461.json 1`] = ` { "_id": "64157fca-bd5b-4405-a4c8-64ffd98a5461", "_outcomes": [ @@ -12106,7 +12150,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Social Login - d5cc2d52-6ce4-452d-85ea-3a5b50218b67.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Social Login - d5cc2d52-6ce4-452d-85ea-3a5b50218b67.json 1`] = ` { "_id": "d5cc2d52-6ce4-452d-85ea-3a5b50218b67", "_outcomes": [ @@ -12134,7 +12178,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Validate Creds - fc7e47cd-c679-4211-8e05-a36654f23c67.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTest/nodes/Validate Creds - fc7e47cd-c679-4211-8e05-a36654f23c67.json 1`] = ` { "_id": "fc7e47cd-c679-4211-8e05-a36654f23c67", "_outcomes": [ @@ -12172,7 +12216,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/FrodoTestJourney13.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/FrodoTestJourney13.json 1`] = ` { "_id": "FrodoTestJourney13", "_rev": "1535600290", @@ -12227,7 +12271,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/nodes/Login Page - c847e93b-afa3-4d20-9a15-f75404ec353c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/nodes/Login Page - c847e93b-afa3-4d20-9a15-f75404ec353c.json 1`] = ` { "_id": "c847e93b-afa3-4d20-9a15-f75404ec353c", "_outcomes": [ @@ -12262,7 +12306,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/nodes/Login Page - c847e93b-afa3-4d20-9a15-f75404ec353c/Password - e4c5071f-acc8-47c9-b097-5c4144170742.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/nodes/Login Page - c847e93b-afa3-4d20-9a15-f75404ec353c/Password - e4c5071f-acc8-47c9-b097-5c4144170742.json 1`] = ` { "_id": "e4c5071f-acc8-47c9-b097-5c4144170742", "_outcomes": [ @@ -12283,7 +12327,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/nodes/Login Page - c847e93b-afa3-4d20-9a15-f75404ec353c/Username - 64dceffc-2db4-468b-96d1-491824e037a2.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/nodes/Login Page - c847e93b-afa3-4d20-9a15-f75404ec353c/Username - 64dceffc-2db4-468b-96d1-491824e037a2.json 1`] = ` { "_id": "64dceffc-2db4-468b-96d1-491824e037a2", "_outcomes": [ @@ -12306,7 +12350,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/nodes/Validate Credentials - bdca20b7-ada8-4906-8b3a-e59c313f6491.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/FrodoTestJourney13/nodes/Validate Credentials - bdca20b7-ada8-4906-8b3a-e59c313f6491.json 1`] = ` { "_id": "bdca20b7-ada8-4906-8b3a-e59c313f6491", "_outcomes": [ @@ -12329,7 +12373,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/Login.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/Login.json 1`] = ` { "_id": "Login", "_rev": "384176338", @@ -12429,7 +12473,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Account Lockout - 51e8c4c1-3509-4635-90e6-d2cc31c4a6a5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Account Lockout - 51e8c4c1-3509-4635-90e6-d2cc31c4a6a5.json 1`] = ` { "_id": "51e8c4c1-3509-4635-90e6-d2cc31c4a6a5", "_outcomes": [ @@ -12449,7 +12493,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Identity Store Decision - 7f0c2aee-8c74-4d02-82a6-9d4ed9d11708.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Identity Store Decision - 7f0c2aee-8c74-4d02-82a6-9d4ed9d11708.json 1`] = ` { "_id": "7f0c2aee-8c74-4d02-82a6-9d4ed9d11708", "_outcomes": [ @@ -12487,7 +12531,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Increment Login Count - bba3e0d8-8525-4e82-bf48-ac17f7988917.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Increment Login Count - bba3e0d8-8525-4e82-bf48-ac17f7988917.json 1`] = ` { "_id": "bba3e0d8-8525-4e82-bf48-ac17f7988917", "_outcomes": [ @@ -12507,7 +12551,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Inner Tree Evaluator - 33b24514-3e50-4180-8f08-ab6f4e51b07e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Inner Tree Evaluator - 33b24514-3e50-4180-8f08-ab6f4e51b07e.json 1`] = ` { "_id": "33b24514-3e50-4180-8f08-ab6f4e51b07e", "_outcomes": [ @@ -12532,7 +12576,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8.json 1`] = ` { "_id": "a12bc72f-ad97-4f1e-a789-a1fa3dd566c8", "_outcomes": [ @@ -12571,7 +12615,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8/Platform Password - 0c80c39b-4813-4e67-b4fb-5a0bba85f994.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8/Platform Password - 0c80c39b-4813-4e67-b4fb-5a0bba85f994.json 1`] = ` { "_id": "0c80c39b-4813-4e67-b4fb-5a0bba85f994", "_outcomes": [ @@ -12592,7 +12636,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8/Platform Username - 7354982f-57b6-4b04-9ddc-f1dd1e1e07d0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8/Platform Username - 7354982f-57b6-4b04-9ddc-f1dd1e1e07d0.json 1`] = ` { "_id": "7354982f-57b6-4b04-9ddc-f1dd1e1e07d0", "_outcomes": [ @@ -12614,7 +12658,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Retry Limit Decision - 2119f332-0f69-4088-a7a1-6582bf0f2001.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Login/nodes/Retry Limit Decision - 2119f332-0f69-4088-a7a1-6582bf0f2001.json 1`] = ` { "_id": "2119f332-0f69-4088-a7a1-6582bf0f2001", "_outcomes": [ @@ -12639,7 +12683,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/OrphanedTest/OrphanedTest.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/OrphanedTest/OrphanedTest.json 1`] = ` { "_id": "OrphanedTest", "_rev": "680738111", @@ -12687,7 +12731,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/OrphanedTest/nodes/Identity Store Decision - 343e745f-923a-43c4-8675-649a490fd0a3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/OrphanedTest/nodes/Identity Store Decision - 343e745f-923a-43c4-8675-649a490fd0a3.json 1`] = ` { "_id": "343e745f-923a-43c4-8675-649a490fd0a3", "_outcomes": [ @@ -12725,7 +12769,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/P1P-Test.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/P1P-Test.json 1`] = ` { "_id": "P1P-Test", "_rev": "946402521", @@ -12890,7 +12934,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Exceeds Score Threshold - f1cb199e-9e9a-4761-bacf-bc717ca6c540.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Exceeds Score Threshold - f1cb199e-9e9a-4761-bacf-bc717ca6c540.json 1`] = ` { "_id": "f1cb199e-9e9a-4761-bacf-bc717ca6c540", "_outcomes": [ @@ -12921,7 +12965,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Exceeds Score Threshold - f1cb199e-9e9a-4761-bacf-bc717ca6c540/Debug - de8fa10c-f4cc-44b7-b675-cdc75dcc600f.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Exceeds Score Threshold - f1cb199e-9e9a-4761-bacf-bc717ca6c540/Debug - de8fa10c-f4cc-44b7-b675-cdc75dcc600f.json 1`] = ` { "_id": "de8fa10c-f4cc-44b7-b675-cdc75dcc600f", "_outcomes": [ @@ -12945,7 +12989,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/FAILED - e5f7bd1f-8dbb-4fb2-ae54-1e09047e8ece.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/FAILED - e5f7bd1f-8dbb-4fb2-ae54-1e09047e8ece.json 1`] = ` { "_id": "e5f7bd1f-8dbb-4fb2-ae54-1e09047e8ece", "_outcomes": [ @@ -12965,7 +13009,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/High - 084c3d2d-7d47-4f2e-81d1-57961d496939.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/High - 084c3d2d-7d47-4f2e-81d1-57961d496939.json 1`] = ` { "_id": "084c3d2d-7d47-4f2e-81d1-57961d496939", "_outcomes": [ @@ -12996,7 +13040,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/High - 084c3d2d-7d47-4f2e-81d1-57961d496939/Debug - 2c8f0d12-c373-4a25-9a30-b3184888d163.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/High - 084c3d2d-7d47-4f2e-81d1-57961d496939/Debug - 2c8f0d12-c373-4a25-9a30-b3184888d163.json 1`] = ` { "_id": "2c8f0d12-c373-4a25-9a30-b3184888d163", "_outcomes": [ @@ -13020,7 +13064,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Identity Store Decision - ef1929b1-255e-446e-a597-7d7a3c4bf63f.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Identity Store Decision - ef1929b1-255e-446e-a597-7d7a3c4bf63f.json 1`] = ` { "_id": "ef1929b1-255e-446e-a597-7d7a3c4bf63f", "_outcomes": [ @@ -13058,7 +13102,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Initialize Signals SDK - 6632fe0f-6395-4cc1-88d8-c9ca4a9061b6.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Initialize Signals SDK - 6632fe0f-6395-4cc1-88d8-c9ca4a9061b6.json 1`] = ` { "_id": "6632fe0f-6395-4cc1-88d8-c9ca4a9061b6", "_outcomes": [ @@ -13092,7 +13136,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Login Page - 4fdf4255-0236-4527-ae6d-d10d2c0ee8d5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Login Page - 4fdf4255-0236-4527-ae6d-d10d2c0ee8d5.json 1`] = ` { "_id": "4fdf4255-0236-4527-ae6d-d10d2c0ee8d5", "_outcomes": [ @@ -13127,7 +13171,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Login Page - 4fdf4255-0236-4527-ae6d-d10d2c0ee8d5/Password - 6a428d9f-a221-44f6-a5c6-c6981f90f9fc.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Login Page - 4fdf4255-0236-4527-ae6d-d10d2c0ee8d5/Password - 6a428d9f-a221-44f6-a5c6-c6981f90f9fc.json 1`] = ` { "_id": "6a428d9f-a221-44f6-a5c6-c6981f90f9fc", "_outcomes": [ @@ -13148,7 +13192,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Login Page - 4fdf4255-0236-4527-ae6d-d10d2c0ee8d5/Username - f74e82e2-72ab-4a1a-9188-655622794a37.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Login Page - 4fdf4255-0236-4527-ae6d-d10d2c0ee8d5/Username - f74e82e2-72ab-4a1a-9188-655622794a37.json 1`] = ` { "_id": "f74e82e2-72ab-4a1a-9188-655622794a37", "_outcomes": [ @@ -13171,7 +13215,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Low - 00a4835b-6e99-4938-9bb8-50d5569a68d4.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Low - 00a4835b-6e99-4938-9bb8-50d5569a68d4.json 1`] = ` { "_id": "00a4835b-6e99-4938-9bb8-50d5569a68d4", "_outcomes": [ @@ -13202,7 +13246,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Low - 00a4835b-6e99-4938-9bb8-50d5569a68d4/Debug - 843dd22b-a890-461b-9a16-33d8bd871396.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Low - 00a4835b-6e99-4938-9bb8-50d5569a68d4/Debug - 843dd22b-a890-461b-9a16-33d8bd871396.json 1`] = ` { "_id": "843dd22b-a890-461b-9a16-33d8bd871396", "_outcomes": [ @@ -13226,7 +13270,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Medium - 37f190ea-fa18-4d44-941b-4e5ac325f394.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Medium - 37f190ea-fa18-4d44-941b-4e5ac325f394.json 1`] = ` { "_id": "37f190ea-fa18-4d44-941b-4e5ac325f394", "_outcomes": [ @@ -13257,7 +13301,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Medium - 37f190ea-fa18-4d44-941b-4e5ac325f394/Debug - 8835fe59-3988-4121-8b15-ad16a7049d7a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/Medium - 37f190ea-fa18-4d44-941b-4e5ac325f394/Debug - 8835fe59-3988-4121-8b15-ad16a7049d7a.json 1`] = ` { "_id": "8835fe59-3988-4121-8b15-ad16a7049d7a", "_outcomes": [ @@ -13281,7 +13325,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Client Error - a0059e3b-de04-4f0f-a5ed-49525d1da576.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Client Error - a0059e3b-de04-4f0f-a5ed-49525d1da576.json 1`] = ` { "_id": "a0059e3b-de04-4f0f-a5ed-49525d1da576", "_outcomes": [ @@ -13312,7 +13356,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Client Error - a0059e3b-de04-4f0f-a5ed-49525d1da576/Debug - c1804982-10dc-4668-bd53-909107cc4039.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Client Error - a0059e3b-de04-4f0f-a5ed-49525d1da576/Debug - c1804982-10dc-4668-bd53-909107cc4039.json 1`] = ` { "_id": "c1804982-10dc-4668-bd53-909107cc4039", "_outcomes": [ @@ -13336,7 +13380,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Failure - 8120e613-dee8-42b4-9668-71b8a25c1c92.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Failure - 8120e613-dee8-42b4-9668-71b8a25c1c92.json 1`] = ` { "_id": "8120e613-dee8-42b4-9668-71b8a25c1c92", "_outcomes": [ @@ -13367,7 +13411,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Failure - 8120e613-dee8-42b4-9668-71b8a25c1c92/Debug - 52ab689c-491b-4117-b729-ff590b5d1f61.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Failure - 8120e613-dee8-42b4-9668-71b8a25c1c92/Debug - 52ab689c-491b-4117-b729-ff590b5d1f61.json 1`] = ` { "_id": "52ab689c-491b-4117-b729-ff590b5d1f61", "_outcomes": [ @@ -13391,7 +13435,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Risk Decision - df827cfc-6e2d-4b9f-a8b1-d92c2910eb07.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/P1P Risk Decision - df827cfc-6e2d-4b9f-a8b1-d92c2910eb07.json 1`] = ` { "_id": "df827cfc-6e2d-4b9f-a8b1-d92c2910eb07", "_outcomes": [ @@ -13445,7 +13489,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/SUCCESS - 167b87dd-a97c-4e3b-82ba-581090fd7863.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/P1P-Test/nodes/SUCCESS - 167b87dd-a97c-4e3b-82ba-581090fd7863.json 1`] = ` { "_id": "167b87dd-a97c-4e3b-82ba-581090fd7863", "_outcomes": [ @@ -13465,7 +13509,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/PrestonTest/PrestonTest.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/PrestonTest/PrestonTest.json 1`] = ` { "_id": "PrestonTest", "_rev": "-2075247621", @@ -13485,7 +13529,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/ProgressiveProfile.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/ProgressiveProfile.json 1`] = ` { "_id": "ProgressiveProfile", "_rev": "260694535", @@ -13562,7 +13606,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Login Count Decision - 8afdaec3-275e-4301-bb53-34f03e6a4b29.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Login Count Decision - 8afdaec3-275e-4301-bb53-34f03e6a4b29.json 1`] = ` { "_id": "8afdaec3-275e-4301-bb53-34f03e6a4b29", "_outcomes": [ @@ -13588,7 +13632,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Page Node - a5aecad8-854a-4ed5-b719-ff6c90e858c0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Page Node - a5aecad8-854a-4ed5-b719-ff6c90e858c0.json 1`] = ` { "_id": "a5aecad8-854a-4ed5-b719-ff6c90e858c0", "_outcomes": [ @@ -13619,7 +13663,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Page Node - a5aecad8-854a-4ed5-b719-ff6c90e858c0/Attribute Collector - 0a042e10-b22e-4e02-86c4-65e26e775f7a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Page Node - a5aecad8-854a-4ed5-b719-ff6c90e858c0/Attribute Collector - 0a042e10-b22e-4e02-86c4-65e26e775f7a.json 1`] = ` { "_id": "0a042e10-b22e-4e02-86c4-65e26e775f7a", "_outcomes": [ @@ -13645,7 +13689,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Patch Object - 423a959a-a1b9-498a-b0f7-596b6b6e775a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Patch Object - 423a959a-a1b9-498a-b0f7-596b6b6e775a.json 1`] = ` { "_id": "423a959a-a1b9-498a-b0f7-596b6b6e775a", "_outcomes": [ @@ -13672,7 +13716,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Query Filter Decision - a1f45b44-5bf7-4c57-aa3f-75c619c7db8e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ProgressiveProfile/nodes/Query Filter Decision - a1f45b44-5bf7-4c57-aa3f-75c619c7db8e.json 1`] = ` { "_id": "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e", "_outcomes": [ @@ -13697,7 +13741,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/RadioChoice/RadioChoice.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/RadioChoice/RadioChoice.json 1`] = ` { "_id": "RadioChoice", "_rev": "1819878661", @@ -13742,7 +13786,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/RadioChoice/nodes/Page Node - 5d6cd20e-5074-43de-8832-fddd95fb078e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/RadioChoice/nodes/Page Node - 5d6cd20e-5074-43de-8832-fddd95fb078e.json 1`] = ` { "_id": "5d6cd20e-5074-43de-8832-fddd95fb078e", "_outcomes": [ @@ -13780,7 +13824,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/RadioChoice/nodes/Page Node - 5d6cd20e-5074-43de-8832-fddd95fb078e/Choice Collector - a566e474-99f3-46e4-9e70-682402bfaa84.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/RadioChoice/nodes/Page Node - 5d6cd20e-5074-43de-8832-fddd95fb078e/Choice Collector - a566e474-99f3-46e4-9e70-682402bfaa84.json 1`] = ` { "_id": "a566e474-99f3-46e4-9e70-682402bfaa84", "_outcomes": [ @@ -13814,7 +13858,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/Registration.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/Registration.json 1`] = ` { "_id": "Registration", "_rev": "388671950", @@ -13889,7 +13933,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Create Object - ad5dcbb3-7335-49b7-b3e7-7d850bb88237.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Create Object - ad5dcbb3-7335-49b7-b3e7-7d850bb88237.json 1`] = ` { "_id": "ad5dcbb3-7335-49b7-b3e7-7d850bb88237", "_outcomes": [ @@ -13913,7 +13957,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Email Suspend Node - 466f8b54-07fb-4e31-a11d-a6842618cc37.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Email Suspend Node - 466f8b54-07fb-4e31-a11d-a6842618cc37.json 1`] = ` { "_id": "466f8b54-07fb-4e31-a11d-a6842618cc37", "_outcomes": [ @@ -13939,7 +13983,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Increment Login Count - 97a15eb2-a015-4b6d-81a0-be78c3aa1a3b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Increment Login Count - 97a15eb2-a015-4b6d-81a0-be78c3aa1a3b.json 1`] = ` { "_id": "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b", "_outcomes": [ @@ -13959,7 +14003,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6.json 1`] = ` { "_id": "0c091c49-f3af-48fb-ac6f-07fba0499dd6", "_outcomes": [ @@ -14017,7 +14061,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Accept Terms and Conditions - b4a0e915-c15d-4b83-9c9d-18347d645976.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Accept Terms and Conditions - b4a0e915-c15d-4b83-9c9d-18347d645976.json 1`] = ` { "_id": "b4a0e915-c15d-4b83-9c9d-18347d645976", "_outcomes": [ @@ -14036,7 +14080,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Attribute Collector - d3ce2036-1523-4ce8-b1a2-895a2a036667.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Attribute Collector - d3ce2036-1523-4ce8-b1a2-895a2a036667.json 1`] = ` { "_id": "d3ce2036-1523-4ce8-b1a2-895a2a036667", "_outcomes": [ @@ -14065,7 +14109,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/KBA Definition - 120c69d3-90b4-4ad4-b7af-380e8b119340.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/KBA Definition - 120c69d3-90b4-4ad4-b7af-380e8b119340.json 1`] = ` { "_id": "120c69d3-90b4-4ad4-b7af-380e8b119340", "_outcomes": [ @@ -14088,7 +14132,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Platform Password - 3d8709a1-f09f-4d1f-8094-2850e472c1db.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Platform Password - 3d8709a1-f09f-4d1f-8094-2850e472c1db.json 1`] = ` { "_id": "3d8709a1-f09f-4d1f-8094-2850e472c1db", "_outcomes": [ @@ -14109,7 +14153,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Platform Username - 7fcaf48e-a754-4959-858b-05b2933b825f.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Platform Username - 7fcaf48e-a754-4959-858b-05b2933b825f.json 1`] = ` { "_id": "7fcaf48e-a754-4959-858b-05b2933b825f", "_outcomes": [ @@ -14131,7 +14175,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/ResetPassword.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/ResetPassword.json 1`] = ` { "_id": "ResetPassword", "_rev": "1685804267", @@ -14217,7 +14261,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Email Suspend Node - 06c97be5-7fdd-4739-aea1-ecc7fe082865.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Email Suspend Node - 06c97be5-7fdd-4739-aea1-ecc7fe082865.json 1`] = ` { "_id": "06c97be5-7fdd-4739-aea1-ecc7fe082865", "_outcomes": [ @@ -14243,7 +14287,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Identify Existing User - 21b8ddf3-0203-4ae1-ab05-51cf3a3a707a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Identify Existing User - 21b8ddf3-0203-4ae1-ab05-51cf3a3a707a.json 1`] = ` { "_id": "21b8ddf3-0203-4ae1-ab05-51cf3a3a707a", "_outcomes": [ @@ -14268,7 +14312,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Page Node - cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Page Node - cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b.json 1`] = ` { "_id": "cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b", "_outcomes": [ @@ -14301,7 +14345,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Page Node - cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b/Attribute Collector - 276afa7c-a680-4cf4-a5f6-d6c78191f5c9.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Page Node - cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b/Attribute Collector - 276afa7c-a680-4cf4-a5f6-d6c78191f5c9.json 1`] = ` { "_id": "276afa7c-a680-4cf4-a5f6-d6c78191f5c9", "_outcomes": [ @@ -14326,7 +14370,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Page Node - e4c752f9-c625-48c9-9644-a58802fa9e9c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Page Node - e4c752f9-c625-48c9-9644-a58802fa9e9c.json 1`] = ` { "_id": "e4c752f9-c625-48c9-9644-a58802fa9e9c", "_outcomes": [ @@ -14359,7 +14403,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Page Node - e4c752f9-c625-48c9-9644-a58802fa9e9c/Platform Password - 009c19c8-9572-47bb-adb2-1f092c559a43.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Page Node - e4c752f9-c625-48c9-9644-a58802fa9e9c/Platform Password - 009c19c8-9572-47bb-adb2-1f092c559a43.json 1`] = ` { "_id": "009c19c8-9572-47bb-adb2-1f092c559a43", "_outcomes": [ @@ -14380,7 +14424,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Patch Object - 989f0bf8-a328-4217-b82b-5275d79ca8bd.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/ResetPassword/nodes/Patch Object - 989f0bf8-a328-4217-b82b-5275d79ca8bd.json 1`] = ` { "_id": "989f0bf8-a328-4217-b82b-5275d79ca8bd", "_outcomes": [ @@ -14407,7 +14451,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/SocialProviderHandler/SocialProviderHandler.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/SocialProviderHandler/SocialProviderHandler.json 1`] = ` { "_id": "SocialProviderHandler", "_rev": "-2033719727", @@ -14463,7 +14507,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/SocialProviderHandler/nodes/Legacy Social Provider Handler Node - 3af612be-340e-4dc9-80fb-62319a187b74.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/SocialProviderHandler/nodes/Legacy Social Provider Handler Node - 3af612be-340e-4dc9-80fb-62319a187b74.json 1`] = ` { "_id": "3af612be-340e-4dc9-80fb-62319a187b74", "_outcomes": [ @@ -14491,7 +14535,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/SocialProviderHandler/nodes/Social Provider Handler Node - e15c8efe-b7a7-42bf-845e-861a9419af32.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/SocialProviderHandler/nodes/Social Provider Handler Node - e15c8efe-b7a7-42bf-845e-861a9419af32.json 1`] = ` { "_id": "e15c8efe-b7a7-42bf-845e-861a9419af32", "_outcomes": [ @@ -14524,7 +14568,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/UpdatePassword.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/UpdatePassword.json 1`] = ` { "_id": "UpdatePassword", "_rev": "-1098606408", @@ -14631,7 +14675,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Attribute Present Decision - 0f0904e6-1da3-4cdb-9abf-0d2545016fab.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Attribute Present Decision - 0f0904e6-1da3-4cdb-9abf-0d2545016fab.json 1`] = ` { "_id": "0f0904e6-1da3-4cdb-9abf-0d2545016fab", "_outcomes": [ @@ -14656,7 +14700,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Data Store Decision - 7d1deabe-cd98-49c8-943f-ca12305775f3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Data Store Decision - 7d1deabe-cd98-49c8-943f-ca12305775f3.json 1`] = ` { "_id": "7d1deabe-cd98-49c8-943f-ca12305775f3", "_outcomes": [ @@ -14679,7 +14723,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Email Suspend Node - a3d97b53-e38a-4b24-aed0-a021050eb744.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Email Suspend Node - a3d97b53-e38a-4b24-aed0-a021050eb744.json 1`] = ` { "_id": "a3d97b53-e38a-4b24-aed0-a021050eb744", "_outcomes": [ @@ -14705,7 +14749,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Get Session Data - d1b79744-493a-44fe-bc26-7d324a8caa4e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Get Session Data - d1b79744-493a-44fe-bc26-7d324a8caa4e.json 1`] = ` { "_id": "d1b79744-493a-44fe-bc26-7d324a8caa4e", "_outcomes": [ @@ -14726,7 +14770,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Page Node - 20237b34-26cb-4a0b-958f-abb422290d42.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Page Node - 20237b34-26cb-4a0b-958f-abb422290d42.json 1`] = ` { "_id": "20237b34-26cb-4a0b-958f-abb422290d42", "_outcomes": [ @@ -14759,7 +14803,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Page Node - 20237b34-26cb-4a0b-958f-abb422290d42/Platform Password - fe2962fc-4db3-4066-8624-553649afc438.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Page Node - 20237b34-26cb-4a0b-958f-abb422290d42/Platform Password - fe2962fc-4db3-4066-8624-553649afc438.json 1`] = ` { "_id": "fe2962fc-4db3-4066-8624-553649afc438", "_outcomes": [ @@ -14780,7 +14824,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Page Node - d018fcd1-4e22-4160-8c41-63bee51c9cb3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Page Node - d018fcd1-4e22-4160-8c41-63bee51c9cb3.json 1`] = ` { "_id": "d018fcd1-4e22-4160-8c41-63bee51c9cb3", "_outcomes": [ @@ -14813,7 +14857,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Page Node - d018fcd1-4e22-4160-8c41-63bee51c9cb3/Platform Password - 21a99653-a7a7-47ee-b650-f493a84bba09.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Page Node - d018fcd1-4e22-4160-8c41-63bee51c9cb3/Platform Password - 21a99653-a7a7-47ee-b650-f493a84bba09.json 1`] = ` { "_id": "21a99653-a7a7-47ee-b650-f493a84bba09", "_outcomes": [ @@ -14834,7 +14878,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Patch Object - 3990ce1f-cce6-435b-ae1c-f138e89411c1.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/UpdatePassword/nodes/Patch Object - 3990ce1f-cce6-435b-ae1c-f138e89411c1.json 1`] = ` { "_id": "3990ce1f-cce6-435b-ae1c-f138e89411c1", "_outcomes": [ @@ -14863,7 +14907,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/j00.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/j00.json 1`] = ` { "_id": "j00", "_rev": "2108856917", @@ -14959,7 +15003,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/debug - ba503a1e-633e-4d0d-ba18-c9a9b1105b5b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/debug - ba503a1e-633e-4d0d-ba18-c9a9b1105b5b.json 1`] = ` { "_id": "ba503a1e-633e-4d0d-ba18-c9a9b1105b5b", "_outcomes": [ @@ -14988,7 +15032,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/level - 3c1e8d61-0c48-44ba-86dc-52e9555b6aeb.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/level - 3c1e8d61-0c48-44ba-86dc-52e9555b6aeb.json 1`] = ` { "_id": "3c1e8d61-0c48-44ba-86dc-52e9555b6aeb", "_outcomes": [ @@ -15017,7 +15061,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/level - 39b48197-f4be-42b9-800a-866587b4b9b5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/level - 39b48197-f4be-42b9-800a-866587b4b9b5.json 1`] = ` { "_id": "39b48197-f4be-42b9-800a-866587b4b9b5", "_outcomes": [ @@ -15046,7 +15090,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/mode - 513a2ab4-f0b8-4f94-b840-6fe14796cc84.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/mode - 513a2ab4-f0b8-4f94-b840-6fe14796cc84.json 1`] = ` { "_id": "513a2ab4-f0b8-4f94-b840-6fe14796cc84", "_outcomes": [ @@ -15094,7 +15138,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/shared - 01d3785f-7fb4-44a7-9458-72c380a9818f.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/shared - 01d3785f-7fb4-44a7-9458-72c380a9818f.json 1`] = ` { "_id": "01d3785f-7fb4-44a7-9458-72c380a9818f", "_outcomes": [ @@ -15123,7 +15167,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/shared - d17ffaa1-2c61-4abd-9bb1-2559160d0a5c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j00/nodes/shared - d17ffaa1-2c61-4abd-9bb1-2559160d0a5c.json 1`] = ` { "_id": "d17ffaa1-2c61-4abd-9bb1-2559160d0a5c", "_outcomes": [ @@ -15152,7 +15196,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/j01.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/j01.json 1`] = ` { "_id": "j01", "_rev": "-1240740730", @@ -15249,7 +15293,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/level - bdfbe97c-1ff4-4162-85bc-47f6f14b2c66.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/level - bdfbe97c-1ff4-4162-85bc-47f6f14b2c66.json 1`] = ` { "_id": "bdfbe97c-1ff4-4162-85bc-47f6f14b2c66", "_outcomes": [ @@ -15278,7 +15322,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/level - e92d5139-b8a6-43dc-9b13-95ba1d0dc53c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/level - e92d5139-b8a6-43dc-9b13-95ba1d0dc53c.json 1`] = ` { "_id": "e92d5139-b8a6-43dc-9b13-95ba1d0dc53c", "_outcomes": [ @@ -15307,7 +15351,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/mode - f129f0df-b49e-453b-97fb-db508e3893ce.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/mode - f129f0df-b49e-453b-97fb-db508e3893ce.json 1`] = ` { "_id": "f129f0df-b49e-453b-97fb-db508e3893ce", "_outcomes": [ @@ -15355,7 +15399,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/nest - bb1e96af-f316-4eb0-b1c6-36b3f1af9e35.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/nest - bb1e96af-f316-4eb0-b1c6-36b3f1af9e35.json 1`] = ` { "_id": "bb1e96af-f316-4eb0-b1c6-36b3f1af9e35", "_outcomes": [ @@ -15380,7 +15424,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/shared - 89ce5d57-82fa-4d58-8d15-0329f7dbd7e7.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/shared - 89ce5d57-82fa-4d58-8d15-0329f7dbd7e7.json 1`] = ` { "_id": "89ce5d57-82fa-4d58-8d15-0329f7dbd7e7", "_outcomes": [ @@ -15409,7 +15453,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/shared - 6674b4ac-dd89-4e13-9440-6f81194e3a22.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j01/nodes/shared - 6674b4ac-dd89-4e13-9440-6f81194e3a22.json 1`] = ` { "_id": "6674b4ac-dd89-4e13-9440-6f81194e3a22", "_outcomes": [ @@ -15438,7 +15482,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/j02.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/j02.json 1`] = ` { "_id": "j02", "_rev": "1006720127", @@ -15535,7 +15579,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/level - 2dbd2d37-c659-48cf-8357-c9fc1166e3a7.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/level - 2dbd2d37-c659-48cf-8357-c9fc1166e3a7.json 1`] = ` { "_id": "2dbd2d37-c659-48cf-8357-c9fc1166e3a7", "_outcomes": [ @@ -15564,7 +15608,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/level - 4416aff7-3ebd-47e6-9831-c2f6bbe3ae24.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/level - 4416aff7-3ebd-47e6-9831-c2f6bbe3ae24.json 1`] = ` { "_id": "4416aff7-3ebd-47e6-9831-c2f6bbe3ae24", "_outcomes": [ @@ -15593,7 +15637,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/mode - 59b06306-a886-443d-92df-7a27a60c394e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/mode - 59b06306-a886-443d-92df-7a27a60c394e.json 1`] = ` { "_id": "59b06306-a886-443d-92df-7a27a60c394e", "_outcomes": [ @@ -15641,7 +15685,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/nest - 56899fef-92a1-4f2a-ade3-973c81eb3af1.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/nest - 56899fef-92a1-4f2a-ade3-973c81eb3af1.json 1`] = ` { "_id": "56899fef-92a1-4f2a-ade3-973c81eb3af1", "_outcomes": [ @@ -15666,7 +15710,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/shared - cbb3d506-b267-4b99-9edd-363e90aac997.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/shared - cbb3d506-b267-4b99-9edd-363e90aac997.json 1`] = ` { "_id": "cbb3d506-b267-4b99-9edd-363e90aac997", "_outcomes": [ @@ -15695,7 +15739,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/shared - e0983ead-4918-48f6-858d-9aff0f03759c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j02/nodes/shared - e0983ead-4918-48f6-858d-9aff0f03759c.json 1`] = ` { "_id": "e0983ead-4918-48f6-858d-9aff0f03759c", "_outcomes": [ @@ -15724,7 +15768,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/j03.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/j03.json 1`] = ` { "_id": "j03", "_rev": "1203078238", @@ -15821,7 +15865,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/level - 3a92300d-6d64-451d-8156-30cb51781026.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/level - 3a92300d-6d64-451d-8156-30cb51781026.json 1`] = ` { "_id": "3a92300d-6d64-451d-8156-30cb51781026", "_outcomes": [ @@ -15850,7 +15894,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/level - 35a4f94b-c895-46b9-bc0a-93cf59233759.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/level - 35a4f94b-c895-46b9-bc0a-93cf59233759.json 1`] = ` { "_id": "35a4f94b-c895-46b9-bc0a-93cf59233759", "_outcomes": [ @@ -15879,7 +15923,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/mode - e0cfbd13-6f1e-4924-9d2d-0f7c23507172.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/mode - e0cfbd13-6f1e-4924-9d2d-0f7c23507172.json 1`] = ` { "_id": "e0cfbd13-6f1e-4924-9d2d-0f7c23507172", "_outcomes": [ @@ -15927,7 +15971,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/nest - bcb8c535-5ecd-4d3d-b970-26816de96bf2.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/nest - bcb8c535-5ecd-4d3d-b970-26816de96bf2.json 1`] = ` { "_id": "bcb8c535-5ecd-4d3d-b970-26816de96bf2", "_outcomes": [ @@ -15952,7 +15996,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/shared - 6f9de973-9ed4-41f5-b43d-4036041e2b96.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/shared - 6f9de973-9ed4-41f5-b43d-4036041e2b96.json 1`] = ` { "_id": "6f9de973-9ed4-41f5-b43d-4036041e2b96", "_outcomes": [ @@ -15981,7 +16025,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/shared - fae7424e-13c9-45bd-b3a2-045773671a3f.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j03/nodes/shared - fae7424e-13c9-45bd-b3a2-045773671a3f.json 1`] = ` { "_id": "fae7424e-13c9-45bd-b3a2-045773671a3f", "_outcomes": [ @@ -16010,7 +16054,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/j04.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/j04.json 1`] = ` { "_id": "j04", "_rev": "125884797", @@ -16107,7 +16151,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/level - 69ae8ec1-de43-44ac-98e5-733db80ac176.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/level - 69ae8ec1-de43-44ac-98e5-733db80ac176.json 1`] = ` { "_id": "69ae8ec1-de43-44ac-98e5-733db80ac176", "_outcomes": [ @@ -16136,7 +16180,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/level - d10104e9-1f8d-4da6-a110-28d879d13959.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/level - d10104e9-1f8d-4da6-a110-28d879d13959.json 1`] = ` { "_id": "d10104e9-1f8d-4da6-a110-28d879d13959", "_outcomes": [ @@ -16165,7 +16209,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/mode - 040b6c89-313b-4664-92e0-6732017384b8.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/mode - 040b6c89-313b-4664-92e0-6732017384b8.json 1`] = ` { "_id": "040b6c89-313b-4664-92e0-6732017384b8", "_outcomes": [ @@ -16213,7 +16257,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/nest - 00e75aa0-2f9b-4895-9257-d515286fd64b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/nest - 00e75aa0-2f9b-4895-9257-d515286fd64b.json 1`] = ` { "_id": "00e75aa0-2f9b-4895-9257-d515286fd64b", "_outcomes": [ @@ -16238,7 +16282,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/shared - 9603ef52-30f0-4ddc-b3c0-28dac83c7bdb.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/shared - 9603ef52-30f0-4ddc-b3c0-28dac83c7bdb.json 1`] = ` { "_id": "9603ef52-30f0-4ddc-b3c0-28dac83c7bdb", "_outcomes": [ @@ -16267,7 +16311,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/shared - f5c317ce-fabd-4a10-9907-c71cea037844.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j04/nodes/shared - f5c317ce-fabd-4a10-9907-c71cea037844.json 1`] = ` { "_id": "f5c317ce-fabd-4a10-9907-c71cea037844", "_outcomes": [ @@ -16296,7 +16340,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/j05.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/j05.json 1`] = ` { "_id": "j05", "_rev": "-1683838231", @@ -16393,7 +16437,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/level - 3c106772-ace7-4808-8f3a-9840de8f67f0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/level - 3c106772-ace7-4808-8f3a-9840de8f67f0.json 1`] = ` { "_id": "3c106772-ace7-4808-8f3a-9840de8f67f0", "_outcomes": [ @@ -16422,7 +16466,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/level - e90ae257-c279-46e0-9b43-5ecd89784d77.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/level - e90ae257-c279-46e0-9b43-5ecd89784d77.json 1`] = ` { "_id": "e90ae257-c279-46e0-9b43-5ecd89784d77", "_outcomes": [ @@ -16451,7 +16495,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/mode - 622179cb-98f1-484a-820d-9a0df6e45e95.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/mode - 622179cb-98f1-484a-820d-9a0df6e45e95.json 1`] = ` { "_id": "622179cb-98f1-484a-820d-9a0df6e45e95", "_outcomes": [ @@ -16499,7 +16543,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/nest - f17ecb7c-abc3-4523-9943-4cbdd90305cb.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/nest - f17ecb7c-abc3-4523-9943-4cbdd90305cb.json 1`] = ` { "_id": "f17ecb7c-abc3-4523-9943-4cbdd90305cb", "_outcomes": [ @@ -16524,7 +16568,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/shared - 11f1c31c-50a9-4717-8213-420f6932481f.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/shared - 11f1c31c-50a9-4717-8213-420f6932481f.json 1`] = ` { "_id": "11f1c31c-50a9-4717-8213-420f6932481f", "_outcomes": [ @@ -16553,7 +16597,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/shared - a0782616-84b7-4bf5-87ed-a01fb3018563.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j05/nodes/shared - a0782616-84b7-4bf5-87ed-a01fb3018563.json 1`] = ` { "_id": "a0782616-84b7-4bf5-87ed-a01fb3018563", "_outcomes": [ @@ -16582,7 +16626,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/j06.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/j06.json 1`] = ` { "_id": "j06", "_rev": "-1311195611", @@ -16679,7 +16723,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/level - 2de08e9e-bf7b-4fa1-8265-59a8e4a3f7c3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/level - 2de08e9e-bf7b-4fa1-8265-59a8e4a3f7c3.json 1`] = ` { "_id": "2de08e9e-bf7b-4fa1-8265-59a8e4a3f7c3", "_outcomes": [ @@ -16708,7 +16752,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/level - fe8f27df-8a27-4d88-9196-834ce398b2b7.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/level - fe8f27df-8a27-4d88-9196-834ce398b2b7.json 1`] = ` { "_id": "fe8f27df-8a27-4d88-9196-834ce398b2b7", "_outcomes": [ @@ -16737,7 +16781,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/mode - 44b8651c-7c1e-41f1-b9a6-2e441b0ce05a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/mode - 44b8651c-7c1e-41f1-b9a6-2e441b0ce05a.json 1`] = ` { "_id": "44b8651c-7c1e-41f1-b9a6-2e441b0ce05a", "_outcomes": [ @@ -16785,7 +16829,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/nest - 409c251f-c23b-411d-9009-d3b3d26d1b90.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/nest - 409c251f-c23b-411d-9009-d3b3d26d1b90.json 1`] = ` { "_id": "409c251f-c23b-411d-9009-d3b3d26d1b90", "_outcomes": [ @@ -16810,7 +16854,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/shared - 1d59caff-243c-45bd-b7d0-6dcc563989c5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/shared - 1d59caff-243c-45bd-b7d0-6dcc563989c5.json 1`] = ` { "_id": "1d59caff-243c-45bd-b7d0-6dcc563989c5", "_outcomes": [ @@ -16839,7 +16883,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/shared - da878771-421c-463f-aad7-4d5f2ad5e59a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j06/nodes/shared - da878771-421c-463f-aad7-4d5f2ad5e59a.json 1`] = ` { "_id": "da878771-421c-463f-aad7-4d5f2ad5e59a", "_outcomes": [ @@ -16868,7 +16912,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/j07.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/j07.json 1`] = ` { "_id": "j07", "_rev": "-1925267397", @@ -16965,7 +17009,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/level - d90dd9f8-8b12-4e90-abaf-228ecc0174a7.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/level - d90dd9f8-8b12-4e90-abaf-228ecc0174a7.json 1`] = ` { "_id": "d90dd9f8-8b12-4e90-abaf-228ecc0174a7", "_outcomes": [ @@ -16994,7 +17038,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/level - f2fe740c-cd75-460a-8baa-fe4b52ecc947.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/level - f2fe740c-cd75-460a-8baa-fe4b52ecc947.json 1`] = ` { "_id": "f2fe740c-cd75-460a-8baa-fe4b52ecc947", "_outcomes": [ @@ -17023,7 +17067,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/mode - 13b12fe6-cf53-46a4-a83d-0a3c1fda814f.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/mode - 13b12fe6-cf53-46a4-a83d-0a3c1fda814f.json 1`] = ` { "_id": "13b12fe6-cf53-46a4-a83d-0a3c1fda814f", "_outcomes": [ @@ -17071,7 +17115,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/nest - e62d7a4d-2012-4a2a-a6ef-d6a0e0d552d9.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/nest - e62d7a4d-2012-4a2a-a6ef-d6a0e0d552d9.json 1`] = ` { "_id": "e62d7a4d-2012-4a2a-a6ef-d6a0e0d552d9", "_outcomes": [ @@ -17096,7 +17140,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/shared - ac6ee166-73c0-4f73-b8db-4fe8ff6a25c0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/shared - ac6ee166-73c0-4f73-b8db-4fe8ff6a25c0.json 1`] = ` { "_id": "ac6ee166-73c0-4f73-b8db-4fe8ff6a25c0", "_outcomes": [ @@ -17125,7 +17169,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/shared - d9a06d3a-7e3f-4244-9a32-63ffa0d26e00.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j07/nodes/shared - d9a06d3a-7e3f-4244-9a32-63ffa0d26e00.json 1`] = ` { "_id": "d9a06d3a-7e3f-4244-9a32-63ffa0d26e00", "_outcomes": [ @@ -17154,7 +17198,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/j08.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/j08.json 1`] = ` { "_id": "j08", "_rev": "-282238685", @@ -17251,7 +17295,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/level - 87ced99b-bfa5-40d4-ba07-c8fc31f6cc6d.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/level - 87ced99b-bfa5-40d4-ba07-c8fc31f6cc6d.json 1`] = ` { "_id": "87ced99b-bfa5-40d4-ba07-c8fc31f6cc6d", "_outcomes": [ @@ -17280,7 +17324,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/level - 8096649e-973e-4209-88ce-e1d87ae2bb96.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/level - 8096649e-973e-4209-88ce-e1d87ae2bb96.json 1`] = ` { "_id": "8096649e-973e-4209-88ce-e1d87ae2bb96", "_outcomes": [ @@ -17309,7 +17353,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/mode - d429b2b5-b215-46a5-b239-4994df65cb8b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/mode - d429b2b5-b215-46a5-b239-4994df65cb8b.json 1`] = ` { "_id": "d429b2b5-b215-46a5-b239-4994df65cb8b", "_outcomes": [ @@ -17357,7 +17401,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/nest - 66026170-5088-4fcd-a6c8-ed89d7a5c79d.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/nest - 66026170-5088-4fcd-a6c8-ed89d7a5c79d.json 1`] = ` { "_id": "66026170-5088-4fcd-a6c8-ed89d7a5c79d", "_outcomes": [ @@ -17382,7 +17426,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/shared - 042b600b-71cb-45a8-93ae-a6f57b16a6e5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/shared - 042b600b-71cb-45a8-93ae-a6f57b16a6e5.json 1`] = ` { "_id": "042b600b-71cb-45a8-93ae-a6f57b16a6e5", "_outcomes": [ @@ -17411,7 +17455,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/shared - 948e21f4-c512-450a-9d42-e0d629217834.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j08/nodes/shared - 948e21f4-c512-450a-9d42-e0d629217834.json 1`] = ` { "_id": "948e21f4-c512-450a-9d42-e0d629217834", "_outcomes": [ @@ -17440,7 +17484,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/j09.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/j09.json 1`] = ` { "_id": "j09", "_rev": "-1396884723", @@ -17537,7 +17581,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/level - 56b82371-0c61-4dc3-8d06-c1158415b8f9.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/level - 56b82371-0c61-4dc3-8d06-c1158415b8f9.json 1`] = ` { "_id": "56b82371-0c61-4dc3-8d06-c1158415b8f9", "_outcomes": [ @@ -17566,7 +17610,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/level - bb294e05-6b6b-4478-b46f-b8d9e7711c66.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/level - bb294e05-6b6b-4478-b46f-b8d9e7711c66.json 1`] = ` { "_id": "bb294e05-6b6b-4478-b46f-b8d9e7711c66", "_outcomes": [ @@ -17595,7 +17639,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/mode - 251f35c3-1a32-4520-be10-1f4af9600935.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/mode - 251f35c3-1a32-4520-be10-1f4af9600935.json 1`] = ` { "_id": "251f35c3-1a32-4520-be10-1f4af9600935", "_outcomes": [ @@ -17643,7 +17687,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/nest - 6df24fdd-0b6c-4def-bf42-77af998f28b8.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/nest - 6df24fdd-0b6c-4def-bf42-77af998f28b8.json 1`] = ` { "_id": "6df24fdd-0b6c-4def-bf42-77af998f28b8", "_outcomes": [ @@ -17668,7 +17712,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/shared - 8c5e9cb5-471b-4dd6-b150-ecaaeda98195.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/shared - 8c5e9cb5-471b-4dd6-b150-ecaaeda98195.json 1`] = ` { "_id": "8c5e9cb5-471b-4dd6-b150-ecaaeda98195", "_outcomes": [ @@ -17697,7 +17741,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/shared - f57cf53c-b4c6-48f7-84e8-91f535a2e8f8.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j09/nodes/shared - f57cf53c-b4c6-48f7-84e8-91f535a2e8f8.json 1`] = ` { "_id": "f57cf53c-b4c6-48f7-84e8-91f535a2e8f8", "_outcomes": [ @@ -17726,7 +17770,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/j10.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/j10.json 1`] = ` { "_id": "j10", "_rev": "1630303400", @@ -17823,7 +17867,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/level - 8d7d64ee-da20-461f-a2ca-206b7479dd67.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/level - 8d7d64ee-da20-461f-a2ca-206b7479dd67.json 1`] = ` { "_id": "8d7d64ee-da20-461f-a2ca-206b7479dd67", "_outcomes": [ @@ -17852,7 +17896,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/level - 300feda0-3248-49a9-b60f-01df802b2229.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/level - 300feda0-3248-49a9-b60f-01df802b2229.json 1`] = ` { "_id": "300feda0-3248-49a9-b60f-01df802b2229", "_outcomes": [ @@ -17881,7 +17925,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/mode - c91d626e-1156-41bd-b1fb-d292f640fba6.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/mode - c91d626e-1156-41bd-b1fb-d292f640fba6.json 1`] = ` { "_id": "c91d626e-1156-41bd-b1fb-d292f640fba6", "_outcomes": [ @@ -17929,7 +17973,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/nest - c7fcf7ae-1ab5-474b-b5b0-272e10468fbd.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/nest - c7fcf7ae-1ab5-474b-b5b0-272e10468fbd.json 1`] = ` { "_id": "c7fcf7ae-1ab5-474b-b5b0-272e10468fbd", "_outcomes": [ @@ -17954,7 +17998,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/shared - 40afb384-e9b6-4dcb-acde-04de109474c8.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/shared - 40afb384-e9b6-4dcb-acde-04de109474c8.json 1`] = ` { "_id": "40afb384-e9b6-4dcb-acde-04de109474c8", "_outcomes": [ @@ -17983,7 +18027,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/shared - 97ef9d96-99e7-4d2d-b6c6-4177b5397ead.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/j10/nodes/shared - 97ef9d96-99e7-4d2d-b6c6-4177b5397ead.json 1`] = ` { "_id": "97ef9d96-99e7-4d2d-b6c6-4177b5397ead", "_outcomes": [ @@ -18012,7 +18056,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/test/test.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/journeys/test/test.json 1`] = ` { "_id": "test", "_rev": "1505940492", @@ -18042,7 +18086,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/password-policy/alpha_user-password-policy.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/password-policy/alpha_user-password-policy.json 1`] = ` { "_id": "fieldPolicy/alpha_user", "defaultPasswordStorageScheme": [ @@ -18091,7 +18135,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/2.2_Agent/my-policy-agent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/2.2_Agent/my-policy-agent.json 1`] = ` { "_id": "my-policy-agent", "_rev": "-504717871", @@ -18106,7 +18150,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/IdentityGatewayAgent/cdsso-ig-agent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/IdentityGatewayAgent/cdsso-ig-agent.json 1`] = ` { "_id": "cdsso-ig-agent", "_rev": "-1524382492", @@ -18131,7 +18175,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/IdentityGatewayAgent/frodo-test-ig-agent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/IdentityGatewayAgent/frodo-test-ig-agent.json 1`] = ` { "_id": "frodo-test-ig-agent", "_rev": "-1490423122", @@ -18151,7 +18195,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/IdentityGatewayAgent/frodo-test-ig-agent2.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/IdentityGatewayAgent/frodo-test-ig-agent2.json 1`] = ` { "_id": "frodo-test-ig-agent2", "_rev": "1365023305", @@ -18171,7 +18215,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/IdentityGatewayAgent/ig-agent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/IdentityGatewayAgent/ig-agent.json 1`] = ` { "_id": "ig-agent", "_rev": "-1566320906", @@ -18189,7 +18233,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/J2EEAgent/frodo-test-java-agent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/J2EEAgent/frodo-test-java-agent.json 1`] = ` { "_id": "frodo-test-java-agent", "_rev": "1131793354", @@ -18419,7 +18463,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/J2EEAgent/frodo-test-java-agent2.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/J2EEAgent/frodo-test-java-agent2.json 1`] = ` { "_id": "frodo-test-java-agent2", "_rev": "561894916", @@ -18649,7 +18693,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/RemoteConsentAgent/test.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/RemoteConsentAgent/test.json 1`] = ` { "_id": "test", "_rev": "-1262869401", @@ -18680,7 +18724,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/SoftwarePublisher/test software publisher.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/SoftwarePublisher/test software publisher.json 1`] = ` { "_id": "test software publisher", "_rev": "1510799304", @@ -18700,7 +18744,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/WebAgent/frodo-test-web-agent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/WebAgent/frodo-test-web-agent.json 1`] = ` { "_id": "frodo-test-web-agent", "_rev": "218393939", @@ -18866,7 +18910,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/WebAgent/frodo-test-web-agent2.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/agents/WebAgent/frodo-test-web-agent2.json 1`] = ` { "_id": "frodo-test-web-agent2", "_rev": "930101313", @@ -19032,7 +19076,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/authentication.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/authentication.json 1`] = ` { "_id": "", "_rev": "-858631753", @@ -19103,7 +19147,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/saml/COT/AzureCOT.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/saml/COT/AzureCOT.json 1`] = ` { "_id": "AzureCOT", "_rev": "-954827061", @@ -19123,7 +19167,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/saml/hosted/iSPAzure.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/saml/hosted/iSPAzure.json 1`] = ` { "config": { "_id": "aVNQQXp1cmU", @@ -19320,7 +19364,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/saml/remote/microsoftOnline.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/realm-config/saml/remote/microsoftOnline.json 1`] = ` { "config": { "_id": "dXJuOmZlZGVyYXRpb246TWljcm9zb2Z0T25saW5l", @@ -19718,7 +19762,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/01e1a3c0-038b-4c16-956a-6c9d89328cff.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/01e1a3c0-038b-4c16-956a-6c9d89328cff.json 1`] = ` { "_id": "01e1a3c0-038b-4c16-956a-6c9d89328cff", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -19737,7 +19781,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/05ab4a85-11ec-4a32-94cf-05bbb763c8f3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/05ab4a85-11ec-4a32-94cf-05bbb763c8f3.json 1`] = ` { "_id": "05ab4a85-11ec-4a32-94cf-05bbb763c8f3", "context": "SAML2_SP_ACCOUNT_MAPPER", @@ -19756,7 +19800,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/07ee6240-d106-4e25-a781-5fcabc477d22.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/07ee6240-d106-4e25-a781-5fcabc477d22.json 1`] = ` { "_id": "07ee6240-d106-4e25-a781-5fcabc477d22", "context": "SAML2_SP_ADAPTER", @@ -19775,7 +19819,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/0c1d7319-5a82-4359-8839-094121404832.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/0c1d7319-5a82-4359-8839-094121404832.json 1`] = ` { "_id": "0c1d7319-5a82-4359-8839-094121404832", "context": "SAML2_IDP_ATTRIBUTE_MAPPER_NEXT_GEN", @@ -19794,7 +19838,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/1b52a7e0-4019-40fa-958a-15a49870e901.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/1b52a7e0-4019-40fa-958a-15a49870e901.json 1`] = ` { "_id": "1b52a7e0-4019-40fa-958a-15a49870e901", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -19813,7 +19857,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/1f389a3d-21cf-417c-a6d3-42ea620071f0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/1f389a3d-21cf-417c-a6d3-42ea620071f0.json 1`] = ` { "_id": "1f389a3d-21cf-417c-a6d3-42ea620071f0", "context": "OIDC_CLAIMS", @@ -19832,7 +19876,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/2c38c998-aec0-4e56-8d46-bff6e24a704e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/2c38c998-aec0-4e56-8d46-bff6e24a704e.json 1`] = ` { "_id": "2c38c998-aec0-4e56-8d46-bff6e24a704e", "context": "LIBRARY", @@ -19851,7 +19895,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/3bd13a46-61c4-4974-8efb-1700c80c64e3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/3bd13a46-61c4-4974-8efb-1700c80c64e3.json 1`] = ` { "_id": "3bd13a46-61c4-4974-8efb-1700c80c64e3", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -19870,7 +19914,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/3cb43516-ae69-433a-8787-501d45db14e9.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/3cb43516-ae69-433a-8787-501d45db14e9.json 1`] = ` { "_id": "3cb43516-ae69-433a-8787-501d45db14e9", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -19889,7 +19933,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/3f93ef6e-e54a-4393-aba1-f322656db28a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/3f93ef6e-e54a-4393-aba1-f322656db28a.json 1`] = ` { "_id": "3f93ef6e-e54a-4393-aba1-f322656db28a", "context": "OAUTH2_AUTHORIZE_ENDPOINT_DATA_PROVIDER", @@ -19908,7 +19952,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/4a171d3a-056b-4ab7-a19f-d7e93ddf7ae5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/4a171d3a-056b-4ab7-a19f-d7e93ddf7ae5.json 1`] = ` { "_id": "4a171d3a-056b-4ab7-a19f-d7e93ddf7ae5", "context": "SAML2_NAMEID_MAPPER", @@ -19927,7 +19971,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/4b6b7e8e-cf03-46c8-949f-c5742dbd6bc5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/4b6b7e8e-cf03-46c8-949f-c5742dbd6bc5.json 1`] = ` { "_id": "4b6b7e8e-cf03-46c8-949f-c5742dbd6bc5", "context": "OAUTH2_DYNAMIC_CLIENT_REGISTRATION", @@ -19946,7 +19990,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/4e053815-adde-46ac-9fe2-d3ae93517c14.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/4e053815-adde-46ac-9fe2-d3ae93517c14.json 1`] = ` { "_id": "4e053815-adde-46ac-9fe2-d3ae93517c14", "context": "LIBRARY", @@ -19965,7 +20009,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/5bbdaeff-ddee-44b9-b608-8d413d7d65a6.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/5bbdaeff-ddee-44b9-b608-8d413d7d65a6.json 1`] = ` { "_id": "5bbdaeff-ddee-44b9-b608-8d413d7d65a6", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -19984,7 +20028,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/5e854779-6ec1-4c39-aeba-0477e0986646.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/5e854779-6ec1-4c39-aeba-0477e0986646.json 1`] = ` { "_id": "5e854779-6ec1-4c39-aeba-0477e0986646", "context": "CONFIG_PROVIDER_NODE", @@ -20003,7 +20047,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/6c49bebe-3a62-11ed-a261-0242ac120002.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/6c49bebe-3a62-11ed-a261-0242ac120002.json 1`] = ` { "_id": "6c49bebe-3a62-11ed-a261-0242ac120002", "context": "LIBRARY", @@ -20022,7 +20066,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/7c399b7e-e596-4447-aa7a-071af55e892c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/7c399b7e-e596-4447-aa7a-071af55e892c.json 1`] = ` { "_id": "7c399b7e-e596-4447-aa7a-071af55e892c", "context": "SAML2_IDP_ADAPTER_NEXTGEN", @@ -20041,7 +20085,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/7e3d7067-d50f-4674-8c76-a3e13a810c33.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/7e3d7067-d50f-4674-8c76-a3e13a810c33.json 1`] = ` { "_id": "7e3d7067-d50f-4674-8c76-a3e13a810c33", "context": "AUTHENTICATION_SERVER_SIDE", @@ -20060,7 +20104,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/9de3eb62-f131-4fac-a294-7bd170fd4acb.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/9de3eb62-f131-4fac-a294-7bd170fd4acb.json 1`] = ` { "_id": "9de3eb62-f131-4fac-a294-7bd170fd4acb", "context": "POLICY_CONDITION", @@ -20079,7 +20123,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/11e1a3c0-038b-4c16-956a-6c9d89328cff.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/11e1a3c0-038b-4c16-956a-6c9d89328cff.json 1`] = ` { "_id": "11e1a3c0-038b-4c16-956a-6c9d89328cff", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -20098,7 +20142,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/11e1a3c0-038b-4c16-956a-6c9d89328d00.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/11e1a3c0-038b-4c16-956a-6c9d89328d00.json 1`] = ` { "_id": "11e1a3c0-038b-4c16-956a-6c9d89328d00", "context": "DEVICE_MATCH_NODE", @@ -20117,7 +20161,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/13e3f263-9cd3-4844-8d1c-040fd0dd02eb.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/13e3f263-9cd3-4844-8d1c-040fd0dd02eb.json 1`] = ` { "_id": "13e3f263-9cd3-4844-8d1c-040fd0dd02eb", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -20136,7 +20180,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/24cb761e-0123-4078-a87c-3f1e2b25451b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/24cb761e-0123-4078-a87c-3f1e2b25451b.json 1`] = ` { "_id": "24cb761e-0123-4078-a87c-3f1e2b25451b", "context": "CACHE_LOADER", @@ -20155,7 +20199,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/25e6c06d-cf70-473b-bd28-26931edc476b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/25e6c06d-cf70-473b-bd28-26931edc476b.json 1`] = ` { "_id": "25e6c06d-cf70-473b-bd28-26931edc476b", "context": "OAUTH2_VALIDATE_SCOPE", @@ -20174,7 +20218,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/39c08084-1238-43e8-857f-2e11005eac49.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/39c08084-1238-43e8-857f-2e11005eac49.json 1`] = ` { "_id": "39c08084-1238-43e8-857f-2e11005eac49", "context": "OAUTH2_ACCESS_TOKEN_MODIFICATION", @@ -20193,7 +20237,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/41c24257-d7fc-4654-8b46-c2666dc5b56d.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/41c24257-d7fc-4654-8b46-c2666dc5b56d.json 1`] = ` { "_id": "41c24257-d7fc-4654-8b46-c2666dc5b56d", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -20212,7 +20256,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/69f06e63-128c-4e2f-af52-079a8a6f448b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/69f06e63-128c-4e2f-af52-079a8a6f448b.json 1`] = ` { "_id": "69f06e63-128c-4e2f-af52-079a8a6f448b", "context": "SAML2_SP_ADAPTER", @@ -20231,7 +20275,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/91bd046e-0221-41ed-8890-6858c1efd998.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/91bd046e-0221-41ed-8890-6858c1efd998.json 1`] = ` { "_id": "91bd046e-0221-41ed-8890-6858c1efd998", "context": "SAML2_SP_ADAPTER_NEXTGEN", @@ -20250,7 +20294,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/248b8a56-df81-4b1b-b4ba-45d994f6504c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/248b8a56-df81-4b1b-b4ba-45d994f6504c.json 1`] = ` { "_id": "248b8a56-df81-4b1b-b4ba-45d994f6504c", "context": "SAML2_IDP_ADAPTER", @@ -20269,7 +20313,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/400e48ba-3f13-4144-ac7b-f824ea8e98c5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/400e48ba-3f13-4144-ac7b-f824ea8e98c5.json 1`] = ` { "_id": "400e48ba-3f13-4144-ac7b-f824ea8e98c5", "context": "OAUTH2_SCRIPTED_JWT_ISSUER", @@ -20288,7 +20332,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/703dab1a-1921-4981-98dd-b8e5349d8548.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/703dab1a-1921-4981-98dd-b8e5349d8548.json 1`] = ` { "_id": "703dab1a-1921-4981-98dd-b8e5349d8548", "context": "AUTHENTICATION_SERVER_SIDE", @@ -20307,7 +20351,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/739bdc48-fd24-4c52-b353-88706d75558a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/739bdc48-fd24-4c52-b353-88706d75558a.json 1`] = ` { "_id": "739bdc48-fd24-4c52-b353-88706d75558a", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -20326,7 +20370,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/36863ffb-40ec-48b9-94b1-9a99f71cc3b5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/36863ffb-40ec-48b9-94b1-9a99f71cc3b5.json 1`] = ` { "_id": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5", "context": "OIDC_CLAIMS", @@ -20345,7 +20389,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/85523e71-2d77-4577-b078-6f9674cc54e2.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/85523e71-2d77-4577-b078-6f9674cc54e2.json 1`] = ` { "_id": "85523e71-2d77-4577-b078-6f9674cc54e2", "context": "SAML2_IDP_ADAPTER", @@ -20364,7 +20408,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/157298c0-7d31-4059-a95b-eeb08473b7e5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/157298c0-7d31-4059-a95b-eeb08473b7e5.json 1`] = ` { "_id": "157298c0-7d31-4059-a95b-eeb08473b7e5", "context": "AUTHENTICATION_CLIENT_SIDE", @@ -20383,7 +20427,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/223739f3-9c54-43b7-9572-3c5338786145.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/223739f3-9c54-43b7-9572-3c5338786145.json 1`] = ` { "_id": "223739f3-9c54-43b7-9572-3c5338786145", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -20402,7 +20446,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/9535446c-0ff6-4a76-8576-616599119d64.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/9535446c-0ff6-4a76-8576-616599119d64.json 1`] = ` { "_id": "9535446c-0ff6-4a76-8576-616599119d64", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -20421,7 +20465,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/ac40a394-b3cd-400f-b2aa-b6b2e4a8be8e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/ac40a394-b3cd-400f-b2aa-b6b2e4a8be8e.json 1`] = ` { "_id": "ac40a394-b3cd-400f-b2aa-b6b2e4a8be8e", "context": "CACHE_LOADER", @@ -20440,7 +20484,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/bb393d07-a121-47e2-9d24-1a1066f39ec0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/bb393d07-a121-47e2-9d24-1a1066f39ec0.json 1`] = ` { "_id": "bb393d07-a121-47e2-9d24-1a1066f39ec0", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -20459,7 +20503,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/c4f22465-2368-4e27-8013-e6399974fd48.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/c4f22465-2368-4e27-8013-e6399974fd48.json 1`] = ` { "_id": "c4f22465-2368-4e27-8013-e6399974fd48", "context": "SAML2_IDP_ATTRIBUTE_MAPPER", @@ -20478,7 +20522,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/c234ba0b-58a1-4cfd-9567-09edde980745.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/c234ba0b-58a1-4cfd-9567-09edde980745.json 1`] = ` { "_id": "c234ba0b-58a1-4cfd-9567-09edde980745", "context": "OAUTH2_ACCESS_TOKEN_MODIFICATION", @@ -20497,7 +20541,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/c827d2b4-3608-4693-868e-bbcf86bd87c7.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/c827d2b4-3608-4693-868e-bbcf86bd87c7.json 1`] = ` { "_id": "c827d2b4-3608-4693-868e-bbcf86bd87c7", "context": "AUTHENTICATION_CLIENT_SIDE", @@ -20516,7 +20560,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/cf3515f0-8278-4ee3-a530-1bad7424c416.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/cf3515f0-8278-4ee3-a530-1bad7424c416.json 1`] = ` { "_id": "cf3515f0-8278-4ee3-a530-1bad7424c416", "context": "OIDC_CLAIMS", @@ -20535,7 +20579,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/d22f9a0c-426a-4466-b95e-d0f125b0d5fa.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/d22f9a0c-426a-4466-b95e-d0f125b0d5fa.json 1`] = ` { "_id": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa", "context": "OAUTH2_ACCESS_TOKEN_MODIFICATION", @@ -20554,7 +20598,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/d58977ed-0542-4147-8197-973ef7300191.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/d58977ed-0542-4147-8197-973ef7300191.json 1`] = ` { "_id": "d58977ed-0542-4147-8197-973ef7300191", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -20573,7 +20617,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/da7a96a8-7969-4dab-9c6e-a812938cc76d.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/da7a96a8-7969-4dab-9c6e-a812938cc76d.json 1`] = ` { "_id": "da7a96a8-7969-4dab-9c6e-a812938cc76d", "context": "LIBRARY", @@ -20592,7 +20636,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/da56fe60-8b38-4c46-a405-d6b306d4b336.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/da56fe60-8b38-4c46-a405-d6b306d4b336.json 1`] = ` { "_id": "da56fe60-8b38-4c46-a405-d6b306d4b336", "context": "OAUTH2_EVALUATE_SCOPE", @@ -20611,7 +20655,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/dbe0bf9a-72aa-49d5-8483-9db147985a47.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/dbe0bf9a-72aa-49d5-8483-9db147985a47.json 1`] = ` { "_id": "dbe0bf9a-72aa-49d5-8483-9db147985a47", "context": "SOCIAL_IDP_PROFILE_TRANSFORMATION", @@ -20630,7 +20674,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/e1db8a0a-0329-4962-a5bf-ecffaca376ae.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/e1db8a0a-0329-4962-a5bf-ecffaca376ae.json 1`] = ` { "_id": "e1db8a0a-0329-4962-a5bf-ecffaca376ae", "context": "OIDC_CLAIMS", @@ -20649,7 +20693,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/e5c302c8-f838-4698-87cc-d7225fc82454.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/e5c302c8-f838-4698-87cc-d7225fc82454.json 1`] = ` { "_id": "e5c302c8-f838-4698-87cc-d7225fc82454", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -20668,7 +20712,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/e232cff3-2460-47cd-80b2-36c86c0d0f06.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-config/e232cff3-2460-47cd-80b2-36c86c0d0f06.json 1`] = ` { "_id": "e232cff3-2460-47cd-80b2-36c86c0d0f06", "context": "OAUTH2_ACCESS_TOKEN_MODIFICATION", @@ -20687,7 +20731,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_CLIENT_SIDE/Device Id (Match) - Client Side.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_CLIENT_SIDE/Device Id (Match) - Client Side.js 1`] = ` "/* * Copyright 2023-2025 Ping Identity Corporation. All Rights Reserved * @@ -20945,7 +20989,7 @@ collectGeolocationInfo(function(geolocationInfo) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_CLIENT_SIDE/Scripted Module - Client Side.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_CLIENT_SIDE/Scripted Module - Client Side.js 1`] = ` "/* * Copyright 2016-2025 Ping Identity Corporation. All Rights Reserved * @@ -20958,7 +21002,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_SERVER_SIDE/Device Id (Match) - Server Side.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_SERVER_SIDE/Device Id (Match) - Server Side.js 1`] = ` "/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -21793,7 +21837,7 @@ matchDevicePrint(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_SERVER_SIDE/Scripted Module - Server Side.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_SERVER_SIDE/Scripted Module - Server Side.js 1`] = ` "/* * Copyright 2015-2025 Ping Identity Corporation. All Rights Reserved * @@ -21883,7 +21927,7 @@ function logResponse(response) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Authentication Tree Decision Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Authentication Tree Decision Node Script.js 1`] = ` "/* - Data made available by nodes that have already executed are available in the sharedState variable. - The script should set outcome to either "true" or "false". @@ -21893,7 +21937,7 @@ outcome = "true"; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Check Username.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Check Username.js 1`] = ` "/* Check Username * * Author: volker.scheuber@forgerock.com @@ -21918,7 +21962,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Custom Device Match Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Custom Device Match Script.js 1`] = ` "/* * Custom Device Match Script */ @@ -21927,7 +21971,7 @@ outcome = "true"; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Device Profile Match Template - Decision Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Device Profile Match Template - Decision Node Script.js 1`] = ` "/* * Copyright 2020-2025 Ping Identity Corporation. All Rights Reserved * @@ -22013,7 +22057,7 @@ if (storedProfiles) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/EmailAsUsername.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/EmailAsUsername.js 1`] = ` "objectAttributes = sharedState.get("objectAttributes") userName = objectAttributes.get("userName") @@ -22033,7 +22077,7 @@ outcome = "true"; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Format Username.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Format Username.js 1`] = ` "var username = sharedState.get("username"); sharedState.put("displayName", username); @@ -22041,7 +22085,7 @@ outcome = "continue"; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Inactive Device Match Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Inactive Device Match Script.js 1`] = ` "/* * Inactive Device Match Script */ @@ -22050,7 +22094,7 @@ outcome = "true"; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/My Example Script Using Libraries.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/My Example Script Using Libraries.js 1`] = ` "/** * Testing library scripts */ @@ -22066,7 +22110,7 @@ outcome = 'true'; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Next Generation Scripted Decision Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Next Generation Scripted Decision Node Script.js 1`] = ` "/* * Copyright 2024-2025 Ping Identity Corporation. All Rights Reserved * @@ -22084,7 +22128,7 @@ action.goTo("true"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Remove Button.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Remove Button.js 1`] = ` "/* Remove Button * * Author: volker.scheuber@forgerock.com @@ -22117,7 +22161,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/debug.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/debug.js 1`] = ` "/* debug * * Author: volker.scheuber@forgerock.com @@ -22182,7 +22226,7 @@ function generateNumericToken(format) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/level.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/level.js 1`] = ` "(function () { outcome = 'true'; var level = nodeState.get('level').asInteger(); @@ -22191,7 +22235,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/mode.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/mode.js 1`] = ` "/* mode * * Author: volker.scheuber@forgerock.com @@ -22237,7 +22281,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/shared.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/shared.js 1`] = ` "(function () { outcome = 'true'; var level = nodeState.get('level').asInteger(); @@ -22246,7 +22290,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/CACHE_LOADER/Cache Loader Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/CACHE_LOADER/Cache Loader Script.js 1`] = ` "/* * Copyright 2025 Ping Identity Corporation. All Rights Reserved * @@ -22282,7 +22326,7 @@ function reload(key, oldValue) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/CACHE_LOADER/OAuth2 Client Credentials Default.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/CACHE_LOADER/OAuth2 Client Credentials Default.js 1`] = ` "/* * Copyright 2025 Ping Identity Corporation. All Rights Reserved * @@ -22342,7 +22386,7 @@ function load(key) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/CONFIG_PROVIDER_NODE/Config Provider Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/CONFIG_PROVIDER_NODE/Config Provider Node Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * @@ -22413,7 +22457,7 @@ config = { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/DEVICE_MATCH_NODE/Next Generation Device Match Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/DEVICE_MATCH_NODE/Next Generation Device Match Node Script.js 1`] = ` "/* * Copyright 2024-2025 Ping Identity Corporation. All Rights Reserved * @@ -22431,7 +22475,7 @@ action.goTo("true"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/LIBRARY/Library Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/LIBRARY/Library Script.js 1`] = ` "/* * Copyright 2022-2025 Ping Identity Corporation. All Rights Reserved * @@ -22469,7 +22513,7 @@ exports.logDebug = (log, debugMessage) => log.debug(debugMessage); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/LIBRARY/My Example Library.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/LIBRARY/My Example Library.js 1`] = ` "var i = 0; function add(j) {i += j}; @@ -22487,12 +22531,12 @@ exports.logTotalWithMessage = (log, message) => log.info(message + ": " + i); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/LIBRARY/My Other Example Library Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/LIBRARY/My Other Example Library Script.js 1`] = ` "console.log("hi there"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/LIBRARY/test-script-with-secrets-and-variables.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/LIBRARY/test-script-with-secrets-and-variables.js 1`] = ` "console.log(\`pi: \${systemEnv.getProperty("esv.test.var.pi")}\`); console.log(\`pi secret: \${systemEnv.getProperty("esv.test.secret.pi")}\`); console.log(\`speed of light: \${systemEnv.getProperty("esv.test.variable.light")}\`); @@ -22502,7 +22546,7 @@ console.log(\`Volume of sphere with radius 7: \${4 * 7 * 7 * 7 * systemEnv.getPr " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/Alpha OAuth2 Access Token Modification Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/Alpha OAuth2 Access Token Modification Script.js 1`] = ` "/* * Copyright 2019-2021 ForgeRock AS. All Rights Reserved. * @@ -22641,7 +22685,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/Alpha endUserUIClient OAuth2 Access Token Modification Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/Alpha endUserUIClient OAuth2 Access Token Modification Script.js 1`] = ` "(function () { if (scopes.contains('fr:autoaccess:*') || scopes.contains('fr:iga:*') || scopes.contains('fr:idc:analytics:*')) { var fr = JavaImporter( @@ -22657,7 +22701,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/ForgeRock Internal%3A OAuth2 Access Token Modification Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/ForgeRock Internal%3A OAuth2 Access Token Modification Script.js 1`] = ` "/* * Copyright 2023-2025 Ping Identity Corporation. All Rights Reserved * @@ -22670,7 +22714,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/OAuth2 Access Token Modification Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/OAuth2 Access Token Modification Script.js 1`] = ` "/* * Copyright 2019-2023 ForgeRock AS. All Rights Reserved. * @@ -22809,7 +22853,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_AUTHORIZE_ENDPOINT_DATA_PROVIDER/OAuth2 Authorize Endpoint Data Provider Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_AUTHORIZE_ENDPOINT_DATA_PROVIDER/OAuth2 Authorize Endpoint Data Provider Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * This code is to be used exclusively in connection with Ping Identity @@ -22904,7 +22948,7 @@ addAdditionalData(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_DYNAMIC_CLIENT_REGISTRATION/OAuth2 Dynamic Client Registration Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_DYNAMIC_CLIENT_REGISTRATION/OAuth2 Dynamic Client Registration Script.js 1`] = ` "/* * Copyright 2025 Ping Identity Corporation. All Rights Reserved * @@ -22984,7 +23028,7 @@ if (operation === "UPDATE") { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_EVALUATE_SCOPE/OAuth2 Evaluate Scope Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_EVALUATE_SCOPE/OAuth2 Evaluate Scope Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * This code is to be used exclusively in connection with Ping Identity @@ -23041,7 +23085,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_SCRIPTED_JWT_ISSUER/OAuth2 JWT Issuer Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_SCRIPTED_JWT_ISSUER/OAuth2 JWT Issuer Script.js 1`] = ` "/* * Copyright 2022-2025 Ping Identity Corporation. All Rights Reserved * @@ -23121,7 +23165,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_VALIDATE_SCOPE/OAuth2 Validate Scope Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OAUTH2_VALIDATE_SCOPE/OAuth2 Validate Scope Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * This code is to be used exclusively in connection with Ping Identity @@ -23211,7 +23255,7 @@ function validateBackChannelAuthorizationScope () { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OIDC_CLAIMS/Alpha OIDC Claims Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OIDC_CLAIMS/Alpha OIDC Claims Script.js 1`] = ` "/* * Copyright 2014-2021 ForgeRock AS. All Rights Reserved * @@ -23835,7 +23879,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OIDC_CLAIMS/Alpha endUserUIClient OIDC Claims Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OIDC_CLAIMS/Alpha endUserUIClient OIDC Claims Script.js 1`] = ` "/* * Copyright 2014-2021 ForgeRock AS. All Rights Reserved * @@ -24459,7 +24503,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OIDC_CLAIMS/ForgeRock Internal%3A OIDC Claims Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OIDC_CLAIMS/ForgeRock Internal%3A OIDC Claims Script.js 1`] = ` "/* * Copyright 2014-2025 Ping Identity Corporation. All Rights Reserved * @@ -25084,7 +25128,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OIDC_CLAIMS/OIDC Claims Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/OIDC_CLAIMS/OIDC Claims Script.js 1`] = ` "/* * Copyright 2014-2023 ForgeRock AS. All Rights Reserved * @@ -25708,7 +25752,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/POLICY_CONDITION/Scripted Policy Condition.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/POLICY_CONDITION/Scripted Policy Condition.js 1`] = ` "/* * Copyright 2015-2025 Ping Identity Corporation. All Rights Reserved * @@ -25855,7 +25899,7 @@ function logResponse(response) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ADAPTER/SAML2 IDP Adapter Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ADAPTER/SAML2 IDP Adapter Script.js 1`] = ` "/* * Copyright 2021-2023 ForgeRock AS. All Rights Reserved * @@ -26009,7 +26053,7 @@ function preSendFailureResponse () { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ADAPTER/Saml2 IDP Adapter Always Auth.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ADAPTER/Saml2 IDP Adapter Always Auth.js 1`] = ` "/* * Copyright 2021-2022 ForgeRock AS. All Rights Reserved * @@ -26170,7 +26214,7 @@ function preSendFailureResponse () { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ADAPTER_NEXTGEN/SAML2 IDP Adapter Script (Next Gen).js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ADAPTER_NEXTGEN/SAML2 IDP Adapter Script (Next Gen).js 1`] = ` "/* * Copyright 2026 Ping Identity Corporation. All Rights Reserved * @@ -26345,7 +26389,7 @@ function preSendFailureResponse() { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ATTRIBUTE_MAPPER/SAML2 IDP Attribute Mapper Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ATTRIBUTE_MAPPER/SAML2 IDP Attribute Mapper Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * @@ -26510,7 +26554,7 @@ getAttributes(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ATTRIBUTE_MAPPER_NEXT_GEN/SAML IDP Attribute Mapper Script (Next Gen).js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_IDP_ATTRIBUTE_MAPPER_NEXT_GEN/SAML IDP Attribute Mapper Script (Next Gen).js 1`] = ` "/* * Copyright 2026 Ping Identity Corporation. All Rights Reserved * @@ -26558,7 +26602,7 @@ attributes // this must be the last line of the script " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_NAMEID_MAPPER/SAML2 NameID Mapper Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_NAMEID_MAPPER/SAML2 NameID Mapper Script.js 1`] = ` "/* * Copyright 2024-2025 Ping Identity Corporation. All Rights Reserved * @@ -26577,7 +26621,7 @@ nameIDScriptHelper.getNameIDValue(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_SP_ACCOUNT_MAPPER/SAML2 SP Account Mapper Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_SP_ACCOUNT_MAPPER/SAML2 SP Account Mapper Script.js 1`] = ` "/* * Copyright 2025 Ping Identity Corporation. All Rights Reserved * @@ -26648,7 +26692,7 @@ getIdentity(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_SP_ADAPTER/FrodoSPAdapter.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_SP_ADAPTER/FrodoSPAdapter.js 1`] = ` "/* * Copyright 2023 ForgeRock AS. All Rights Reserved * @@ -26879,7 +26923,7 @@ function postSingleLogoutSuccess() { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_SP_ADAPTER/SAML2 SP Adapter Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_SP_ADAPTER/SAML2 SP Adapter Script.js 1`] = ` "/* * Copyright 2023-2025 Ping Identity Corporation. All Rights Reserved * @@ -27111,7 +27155,7 @@ function postSingleLogoutSuccess() { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_SP_ADAPTER_NEXTGEN/SAML2 SP Adapter Script (Next Gen).js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SAML2_SP_ADAPTER_NEXTGEN/SAML2 SP Adapter Script (Next Gen).js 1`] = ` "/* * Copyright 2026 Ping Identity Corporation. All Rights Reserved * @@ -27408,7 +27452,7 @@ function postSingleLogoutSuccess() { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SOCIAL_IDP_PROFILE_TRANSFORMATION/ADFS Profile Normalization (JS).js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/scripts/scripts-content/SOCIAL_IDP_PROFILE_TRANSFORMATION/ADFS Profile Normalization (JS).js 1`] = ` "/* * Copyright 2022 ForgeRock AS. All Rights Reserved * @@ -27501,7 +27545,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders.json 1`] = ` { "_id": "", "_rev": "1077208638", @@ -27514,7 +27558,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/adfs.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/adfs.json 1`] = ` { "_id": "adfs", "_type": { @@ -27569,7 +27613,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/apple_web.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/apple_web.json 1`] = ` { "_id": "apple_web", "_type": { @@ -27625,7 +27669,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/apple-stoyan.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/apple-stoyan.json 1`] = ` { "_id": "apple-stoyan", "_type": { @@ -27681,7 +27725,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/azure.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/azure.json 1`] = ` { "_id": "azure", "_type": { @@ -27725,7 +27769,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/facebook.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/facebook.json 1`] = ` { "_id": "facebook", "_type": { @@ -27768,7 +27812,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/github.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/github.json 1`] = ` { "_id": "github", "_type": { @@ -27809,7 +27853,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/google.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/google.json 1`] = ` { "_id": "google", "_type": { @@ -27864,7 +27908,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/okta-trial-5735851.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/SocialIdentityProviders/okta-trial-5735851.json 1`] = ` { "_id": "okta-trial-5735851", "_type": { @@ -27912,7 +27956,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/baseurl.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/baseurl.json 1`] = ` { "_id": "", "_rev": "-1889820858", @@ -27927,7 +27971,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/oauth-oidc.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/oauth-oidc.json 1`] = ` { "_id": "", "_rev": "1641978850", @@ -28365,7 +28409,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/pingOneWorkerService.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/pingOneWorkerService.json 1`] = ` { "_id": "", "_rev": "-945038405", @@ -28378,7 +28422,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/pingOneWorkerService/Encore.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/pingOneWorkerService/Encore.json 1`] = ` { "_id": "Encore", "_type": { @@ -28395,7 +28439,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/pingOneWorkerService/volker-pingone.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/pingOneWorkerService/volker-pingone.json 1`] = ` { "_id": "volker-pingone", "_type": { @@ -28412,7 +28456,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/policyconfiguration.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/policyconfiguration.json 1`] = ` { "_id": "", "_rev": "-247595145", @@ -28451,7 +28495,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/selfServiceTrees.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/selfServiceTrees.json 1`] = ` { "_id": "", "_rev": "-948959244", @@ -28470,7 +28514,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/validation.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/services/validation.json 1`] = ` { "_id": "", "_rev": "896681690", @@ -28485,7 +28529,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Contrast/Contrast.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Contrast/Contrast.json 1`] = ` { "_id": "cd6c93e2-52e2-4340-9770-66a588343841", "accountFooter": { @@ -28578,7 +28622,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Copy of Zardoz/Copy of Zardoz.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Copy of Zardoz/Copy of Zardoz.json 1`] = ` { "_id": "e47838b5-48c9-4dea-8a84-43f4b4ea8e04", "accountCardBackgroundColor": "#ffffff", @@ -28724,7 +28768,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Highlander/Highlander.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Highlander/Highlander.json 1`] = ` { "_id": "00203891-dde0-4114-b27a-219ae0b43a61", "accountFooter": { @@ -28817,7 +28861,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/NoAccess/NoAccess.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/NoAccess/NoAccess.json 1`] = ` { "_id": "63e19668-909f-479e-83d7-be7a01cd8187", "accountCardBackgroundColor": "#ffffff", @@ -28946,7 +28990,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Robroy/Robroy.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Robroy/Robroy.json 1`] = ` { "_id": "b82755e8-fe9a-4d27-b66b-45e37ae12345", "accountFooter": { @@ -29041,7 +29085,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Starter Theme/Starter Theme.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Starter Theme/Starter Theme.json 1`] = ` { "_id": "86ce2f64-586d-44fe-8593-b12a85aac68d", "accountFooter": { @@ -29133,7 +29177,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Zardoz/Zardoz.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/alpha/themes/Zardoz/Zardoz.json 1`] = ` { "_id": "4ded6d91-ceea-400a-ae3f-42209f1b0e06", "accountFooter": { @@ -29228,7 +29272,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/authorization/policy-sets/oauth2Scopes/oauth2Scopes.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/authorization/policy-sets/oauth2Scopes/oauth2Scopes.json 1`] = ` { "_id": "oauth2Scopes", "_rev": "1595479030629", @@ -29282,7 +29326,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/Agent.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/Agent.json 1`] = ` { "_id": "Agent", "_rev": "-995271915", @@ -29348,7 +29392,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Agent Data Store Decision - a02fa1ec-2752-42bc-a98f-e41e08f225e7.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Agent Data Store Decision - a02fa1ec-2752-42bc-a98f-e41e08f225e7.json 1`] = ` { "_id": "a02fa1ec-2752-42bc-a98f-e41e08f225e7", "_outcomes": [ @@ -29371,7 +29415,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Page Node - 0fde84fa-bf2f-4322-a040-fc700bd9b8f2.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Page Node - 0fde84fa-bf2f-4322-a040-fc700bd9b8f2.json 1`] = ` { "_id": "0fde84fa-bf2f-4322-a040-fc700bd9b8f2", "_outcomes": [ @@ -29406,7 +29450,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Page Node - 0fde84fa-bf2f-4322-a040-fc700bd9b8f2/Platform Password - 52db314b-2eda-41a9-8dda-8d0b8b8e5876.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Page Node - 0fde84fa-bf2f-4322-a040-fc700bd9b8f2/Platform Password - 52db314b-2eda-41a9-8dda-8d0b8b8e5876.json 1`] = ` { "_id": "52db314b-2eda-41a9-8dda-8d0b8b8e5876", "_outcomes": [ @@ -29427,7 +29471,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Page Node - 0fde84fa-bf2f-4322-a040-fc700bd9b8f2/Platform Username - 16ac997e-4d48-4c19-b6b9-98086845131a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Page Node - 0fde84fa-bf2f-4322-a040-fc700bd9b8f2/Platform Username - 16ac997e-4d48-4c19-b6b9-98086845131a.json 1`] = ` { "_id": "16ac997e-4d48-4c19-b6b9-98086845131a", "_outcomes": [ @@ -29449,7 +29493,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Zero Page Login Collector - 53fc9e71-93b1-4329-a0ee-0493c6b4fcd6.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Agent/nodes/Zero Page Login Collector - 53fc9e71-93b1-4329-a0ee-0493c6b4fcd6.json 1`] = ` { "_id": "53fc9e71-93b1-4329-a0ee-0493c6b4fcd6", "_outcomes": [ @@ -29476,7 +29520,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/ForgottenUsername.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/ForgottenUsername.json 1`] = ` { "_id": "ForgottenUsername", "_rev": "1922908182", @@ -29552,7 +29596,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Email Suspend Node - d9a79f01-2ce3-4be2-a28a-975f35c3c8ca.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Email Suspend Node - d9a79f01-2ce3-4be2-a28a-975f35c3c8ca.json 1`] = ` { "_id": "d9a79f01-2ce3-4be2-a28a-975f35c3c8ca", "_outcomes": [ @@ -29578,7 +29622,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Identify Existing User - bf9ea8d5-9802-4f26-9664-a21840faac23.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Identify Existing User - bf9ea8d5-9802-4f26-9664-a21840faac23.json 1`] = ` { "_id": "bf9ea8d5-9802-4f26-9664-a21840faac23", "_outcomes": [ @@ -29603,7 +29647,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Inner Tree Evaluator - b93ce36e-1976-4610-b24f-8d6760b5463b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Inner Tree Evaluator - b93ce36e-1976-4610-b24f-8d6760b5463b.json 1`] = ` { "_id": "b93ce36e-1976-4610-b24f-8d6760b5463b", "_outcomes": [ @@ -29628,7 +29672,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Page Node - 5e2a7c95-94af-4b23-8724-deb13853726a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Page Node - 5e2a7c95-94af-4b23-8724-deb13853726a.json 1`] = ` { "_id": "5e2a7c95-94af-4b23-8724-deb13853726a", "_outcomes": [ @@ -29661,7 +29705,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Page Node - 5e2a7c95-94af-4b23-8724-deb13853726a/Attribute Collector - 9f1e8d94-4922-481b-9e14-212b66548900.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ForgottenUsername/nodes/Page Node - 5e2a7c95-94af-4b23-8724-deb13853726a/Attribute Collector - 9f1e8d94-4922-481b-9e14-212b66548900.json 1`] = ` { "_id": "9f1e8d94-4922-481b-9e14-212b66548900", "_outcomes": [ @@ -29686,7 +29730,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/Login.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/Login.json 1`] = ` { "_id": "Login", "_rev": "1447343562", @@ -29786,7 +29830,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Account Lockout - 76b5e15c-493c-47dc-b813-01cbc74c5a85.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Account Lockout - 76b5e15c-493c-47dc-b813-01cbc74c5a85.json 1`] = ` { "_id": "76b5e15c-493c-47dc-b813-01cbc74c5a85", "_outcomes": [ @@ -29806,7 +29850,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Identity Store Decision - a30b1258-4c35-4ebe-90f3-c11fced9b1e4.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Identity Store Decision - a30b1258-4c35-4ebe-90f3-c11fced9b1e4.json 1`] = ` { "_id": "a30b1258-4c35-4ebe-90f3-c11fced9b1e4", "_outcomes": [ @@ -29844,7 +29888,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Increment Login Count - bba3e0d8-8525-4e82-bf48-ac17f7988917.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Increment Login Count - bba3e0d8-8525-4e82-bf48-ac17f7988917.json 1`] = ` { "_id": "bba3e0d8-8525-4e82-bf48-ac17f7988917", "_outcomes": [ @@ -29864,7 +29908,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Inner Tree Evaluator - 33b24514-3e50-4180-8f08-ab6f4e51b07e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Inner Tree Evaluator - 33b24514-3e50-4180-8f08-ab6f4e51b07e.json 1`] = ` { "_id": "33b24514-3e50-4180-8f08-ab6f4e51b07e", "_outcomes": [ @@ -29889,7 +29933,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8.json 1`] = ` { "_id": "a12bc72f-ad97-4f1e-a789-a1fa3dd566c8", "_outcomes": [ @@ -29928,7 +29972,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8/Platform Password - 0c80c39b-4813-4e67-b4fb-5a0bba85f994.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8/Platform Password - 0c80c39b-4813-4e67-b4fb-5a0bba85f994.json 1`] = ` { "_id": "0c80c39b-4813-4e67-b4fb-5a0bba85f994", "_outcomes": [ @@ -29949,7 +29993,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8/Platform Username - 7354982f-57b6-4b04-9ddc-f1dd1e1e07d0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Page Node - a12bc72f-ad97-4f1e-a789-a1fa3dd566c8/Platform Username - 7354982f-57b6-4b04-9ddc-f1dd1e1e07d0.json 1`] = ` { "_id": "7354982f-57b6-4b04-9ddc-f1dd1e1e07d0", "_outcomes": [ @@ -29971,7 +30015,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Retry Limit Decision - feecdfb1-386c-423f-b4a0-05cf6b05f783.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Login/nodes/Retry Limit Decision - feecdfb1-386c-423f-b4a0-05cf6b05f783.json 1`] = ` { "_id": "feecdfb1-386c-423f-b4a0-05cf6b05f783", "_outcomes": [ @@ -29996,7 +30040,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/ProgressiveProfile.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/ProgressiveProfile.json 1`] = ` { "_id": "ProgressiveProfile", "_rev": "-1280941645", @@ -30073,7 +30117,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Login Count Decision - 8afdaec3-275e-4301-bb53-34f03e6a4b29.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Login Count Decision - 8afdaec3-275e-4301-bb53-34f03e6a4b29.json 1`] = ` { "_id": "8afdaec3-275e-4301-bb53-34f03e6a4b29", "_outcomes": [ @@ -30099,7 +30143,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Page Node - a5aecad8-854a-4ed5-b719-ff6c90e858c0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Page Node - a5aecad8-854a-4ed5-b719-ff6c90e858c0.json 1`] = ` { "_id": "a5aecad8-854a-4ed5-b719-ff6c90e858c0", "_outcomes": [ @@ -30130,7 +30174,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Page Node - a5aecad8-854a-4ed5-b719-ff6c90e858c0/Attribute Collector - 0a042e10-b22e-4e02-86c4-65e26e775f7a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Page Node - a5aecad8-854a-4ed5-b719-ff6c90e858c0/Attribute Collector - 0a042e10-b22e-4e02-86c4-65e26e775f7a.json 1`] = ` { "_id": "0a042e10-b22e-4e02-86c4-65e26e775f7a", "_outcomes": [ @@ -30156,7 +30200,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Patch Object - 423a959a-a1b9-498a-b0f7-596b6b6e775a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Patch Object - 423a959a-a1b9-498a-b0f7-596b6b6e775a.json 1`] = ` { "_id": "423a959a-a1b9-498a-b0f7-596b6b6e775a", "_outcomes": [ @@ -30183,7 +30227,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Query Filter Decision - a1f45b44-5bf7-4c57-aa3f-75c619c7db8e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ProgressiveProfile/nodes/Query Filter Decision - a1f45b44-5bf7-4c57-aa3f-75c619c7db8e.json 1`] = ` { "_id": "a1f45b44-5bf7-4c57-aa3f-75c619c7db8e", "_outcomes": [ @@ -30208,7 +30252,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/Registration.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/Registration.json 1`] = ` { "_id": "Registration", "_rev": "2125060565", @@ -30283,7 +30327,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Create Object - ad5dcbb3-7335-49b7-b3e7-7d850bb88237.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Create Object - ad5dcbb3-7335-49b7-b3e7-7d850bb88237.json 1`] = ` { "_id": "ad5dcbb3-7335-49b7-b3e7-7d850bb88237", "_outcomes": [ @@ -30307,7 +30351,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Email Suspend Node - 6b70de2f-a625-4957-93d9-37005e33e6e1.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Email Suspend Node - 6b70de2f-a625-4957-93d9-37005e33e6e1.json 1`] = ` { "_id": "6b70de2f-a625-4957-93d9-37005e33e6e1", "_outcomes": [ @@ -30333,7 +30377,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Increment Login Count - 97a15eb2-a015-4b6d-81a0-be78c3aa1a3b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Increment Login Count - 97a15eb2-a015-4b6d-81a0-be78c3aa1a3b.json 1`] = ` { "_id": "97a15eb2-a015-4b6d-81a0-be78c3aa1a3b", "_outcomes": [ @@ -30353,7 +30397,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6.json 1`] = ` { "_id": "0c091c49-f3af-48fb-ac6f-07fba0499dd6", "_outcomes": [ @@ -30410,7 +30454,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Accept Terms and Conditions - b4a0e915-c15d-4b83-9c9d-18347d645976.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Accept Terms and Conditions - b4a0e915-c15d-4b83-9c9d-18347d645976.json 1`] = ` { "_id": "b4a0e915-c15d-4b83-9c9d-18347d645976", "_outcomes": [ @@ -30429,7 +30473,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Attribute Collector - d3ce2036-1523-4ce8-b1a2-895a2a036667.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Attribute Collector - d3ce2036-1523-4ce8-b1a2-895a2a036667.json 1`] = ` { "_id": "d3ce2036-1523-4ce8-b1a2-895a2a036667", "_outcomes": [ @@ -30458,7 +30502,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/KBA Definition - 120c69d3-90b4-4ad4-b7af-380e8b119340.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/KBA Definition - 120c69d3-90b4-4ad4-b7af-380e8b119340.json 1`] = ` { "_id": "120c69d3-90b4-4ad4-b7af-380e8b119340", "_outcomes": [ @@ -30481,7 +30525,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Platform Password - 3d8709a1-f09f-4d1f-8094-2850e472c1db.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Platform Password - 3d8709a1-f09f-4d1f-8094-2850e472c1db.json 1`] = ` { "_id": "3d8709a1-f09f-4d1f-8094-2850e472c1db", "_outcomes": [ @@ -30502,7 +30546,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Platform Username - 7fcaf48e-a754-4959-858b-05b2933b825f.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/Registration/nodes/Page Node - 0c091c49-f3af-48fb-ac6f-07fba0499dd6/Platform Username - 7fcaf48e-a754-4959-858b-05b2933b825f.json 1`] = ` { "_id": "7fcaf48e-a754-4959-858b-05b2933b825f", "_outcomes": [ @@ -30524,7 +30568,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/ResetPassword.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/ResetPassword.json 1`] = ` { "_id": "ResetPassword", "_rev": "144168087", @@ -30610,7 +30654,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Email Suspend Node - 06c97be5-7fdd-4739-aea1-ecc7fe082865.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Email Suspend Node - 06c97be5-7fdd-4739-aea1-ecc7fe082865.json 1`] = ` { "_id": "06c97be5-7fdd-4739-aea1-ecc7fe082865", "_outcomes": [ @@ -30636,7 +30680,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Identify Existing User - 21b8ddf3-0203-4ae1-ab05-51cf3a3a707a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Identify Existing User - 21b8ddf3-0203-4ae1-ab05-51cf3a3a707a.json 1`] = ` { "_id": "21b8ddf3-0203-4ae1-ab05-51cf3a3a707a", "_outcomes": [ @@ -30661,7 +30705,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Page Node - cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Page Node - cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b.json 1`] = ` { "_id": "cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b", "_outcomes": [ @@ -30694,7 +30738,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Page Node - cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b/Attribute Collector - 276afa7c-a680-4cf4-a5f6-d6c78191f5c9.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Page Node - cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b/Attribute Collector - 276afa7c-a680-4cf4-a5f6-d6c78191f5c9.json 1`] = ` { "_id": "276afa7c-a680-4cf4-a5f6-d6c78191f5c9", "_outcomes": [ @@ -30719,7 +30763,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Page Node - e4c752f9-c625-48c9-9644-a58802fa9e9c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Page Node - e4c752f9-c625-48c9-9644-a58802fa9e9c.json 1`] = ` { "_id": "e4c752f9-c625-48c9-9644-a58802fa9e9c", "_outcomes": [ @@ -30752,7 +30796,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Page Node - e4c752f9-c625-48c9-9644-a58802fa9e9c/Platform Password - 009c19c8-9572-47bb-adb2-1f092c559a43.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Page Node - e4c752f9-c625-48c9-9644-a58802fa9e9c/Platform Password - 009c19c8-9572-47bb-adb2-1f092c559a43.json 1`] = ` { "_id": "009c19c8-9572-47bb-adb2-1f092c559a43", "_outcomes": [ @@ -30773,7 +30817,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Patch Object - 989f0bf8-a328-4217-b82b-5275d79ca8bd.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/ResetPassword/nodes/Patch Object - 989f0bf8-a328-4217-b82b-5275d79ca8bd.json 1`] = ` { "_id": "989f0bf8-a328-4217-b82b-5275d79ca8bd", "_outcomes": [ @@ -30800,7 +30844,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/UpdatePassword.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/UpdatePassword.json 1`] = ` { "_id": "UpdatePassword", "_rev": "1654724708", @@ -30907,7 +30951,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Attribute Present Decision - 0f0904e6-1da3-4cdb-9abf-0d2545016fab.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Attribute Present Decision - 0f0904e6-1da3-4cdb-9abf-0d2545016fab.json 1`] = ` { "_id": "0f0904e6-1da3-4cdb-9abf-0d2545016fab", "_outcomes": [ @@ -30932,7 +30976,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Data Store Decision - 7d1deabe-cd98-49c8-943f-ca12305775f3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Data Store Decision - 7d1deabe-cd98-49c8-943f-ca12305775f3.json 1`] = ` { "_id": "7d1deabe-cd98-49c8-943f-ca12305775f3", "_outcomes": [ @@ -30955,7 +30999,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Email Suspend Node - a3d97b53-e38a-4b24-aed0-a021050eb744.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Email Suspend Node - a3d97b53-e38a-4b24-aed0-a021050eb744.json 1`] = ` { "_id": "a3d97b53-e38a-4b24-aed0-a021050eb744", "_outcomes": [ @@ -30981,7 +31025,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Get Session Data - d1b79744-493a-44fe-bc26-7d324a8caa4e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Get Session Data - d1b79744-493a-44fe-bc26-7d324a8caa4e.json 1`] = ` { "_id": "d1b79744-493a-44fe-bc26-7d324a8caa4e", "_outcomes": [ @@ -31002,7 +31046,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Page Node - 20237b34-26cb-4a0b-958f-abb422290d42.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Page Node - 20237b34-26cb-4a0b-958f-abb422290d42.json 1`] = ` { "_id": "20237b34-26cb-4a0b-958f-abb422290d42", "_outcomes": [ @@ -31035,7 +31079,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Page Node - 20237b34-26cb-4a0b-958f-abb422290d42/Platform Password - fe2962fc-4db3-4066-8624-553649afc438.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Page Node - 20237b34-26cb-4a0b-958f-abb422290d42/Platform Password - fe2962fc-4db3-4066-8624-553649afc438.json 1`] = ` { "_id": "fe2962fc-4db3-4066-8624-553649afc438", "_outcomes": [ @@ -31056,7 +31100,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Page Node - d018fcd1-4e22-4160-8c41-63bee51c9cb3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Page Node - d018fcd1-4e22-4160-8c41-63bee51c9cb3.json 1`] = ` { "_id": "d018fcd1-4e22-4160-8c41-63bee51c9cb3", "_outcomes": [ @@ -31089,7 +31133,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Page Node - d018fcd1-4e22-4160-8c41-63bee51c9cb3/Platform Password - 21a99653-a7a7-47ee-b650-f493a84bba09.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Page Node - d018fcd1-4e22-4160-8c41-63bee51c9cb3/Platform Password - 21a99653-a7a7-47ee-b650-f493a84bba09.json 1`] = ` { "_id": "21a99653-a7a7-47ee-b650-f493a84bba09", "_outcomes": [ @@ -31110,7 +31154,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Patch Object - 3990ce1f-cce6-435b-ae1c-f138e89411c1.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/journeys/UpdatePassword/nodes/Patch Object - 3990ce1f-cce6-435b-ae1c-f138e89411c1.json 1`] = ` { "_id": "3990ce1f-cce6-435b-ae1c-f138e89411c1", "_outcomes": [ @@ -31139,7 +31183,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/password-policy/bravo_user-password-policy.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/password-policy/bravo_user-password-policy.json 1`] = ` { "_id": "fieldPolicy/bravo_user", "defaultPasswordStorageScheme": [ @@ -31188,7 +31232,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/realm-config/authentication.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/realm-config/authentication.json 1`] = ` { "_id": "", "_rev": "-861745581", @@ -31259,7 +31303,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/01e1a3c0-038b-4c16-956a-6c9d89328cff.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/01e1a3c0-038b-4c16-956a-6c9d89328cff.json 1`] = ` { "_id": "01e1a3c0-038b-4c16-956a-6c9d89328cff", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -31278,7 +31322,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/05ab4a85-11ec-4a32-94cf-05bbb763c8f3.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/05ab4a85-11ec-4a32-94cf-05bbb763c8f3.json 1`] = ` { "_id": "05ab4a85-11ec-4a32-94cf-05bbb763c8f3", "context": "SAML2_SP_ACCOUNT_MAPPER", @@ -31297,7 +31341,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/0c1d7319-5a82-4359-8839-094121404832.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/0c1d7319-5a82-4359-8839-094121404832.json 1`] = ` { "_id": "0c1d7319-5a82-4359-8839-094121404832", "context": "SAML2_IDP_ATTRIBUTE_MAPPER_NEXT_GEN", @@ -31316,7 +31360,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/1f389a3d-21cf-417c-a6d3-42ea620071f0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/1f389a3d-21cf-417c-a6d3-42ea620071f0.json 1`] = ` { "_id": "1f389a3d-21cf-417c-a6d3-42ea620071f0", "context": "OIDC_CLAIMS", @@ -31335,7 +31379,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/3e31996b-4522-44a2-b360-0851cece3854.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/3e31996b-4522-44a2-b360-0851cece3854.json 1`] = ` { "_id": "3e31996b-4522-44a2-b360-0851cece3854", "context": "OIDC_CLAIMS", @@ -31354,7 +31398,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/3f93ef6e-e54a-4393-aba1-f322656db28a.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/3f93ef6e-e54a-4393-aba1-f322656db28a.json 1`] = ` { "_id": "3f93ef6e-e54a-4393-aba1-f322656db28a", "context": "OAUTH2_AUTHORIZE_ENDPOINT_DATA_PROVIDER", @@ -31373,7 +31417,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/4a171d3a-056b-4ab7-a19f-d7e93ddf7ae5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/4a171d3a-056b-4ab7-a19f-d7e93ddf7ae5.json 1`] = ` { "_id": "4a171d3a-056b-4ab7-a19f-d7e93ddf7ae5", "context": "SAML2_NAMEID_MAPPER", @@ -31392,7 +31436,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/4b6b7e8e-cf03-46c8-949f-c5742dbd6bc5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/4b6b7e8e-cf03-46c8-949f-c5742dbd6bc5.json 1`] = ` { "_id": "4b6b7e8e-cf03-46c8-949f-c5742dbd6bc5", "context": "OAUTH2_DYNAMIC_CLIENT_REGISTRATION", @@ -31411,7 +31455,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/5e854779-6ec1-4c39-aeba-0477e0986646.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/5e854779-6ec1-4c39-aeba-0477e0986646.json 1`] = ` { "_id": "5e854779-6ec1-4c39-aeba-0477e0986646", "context": "CONFIG_PROVIDER_NODE", @@ -31430,7 +31474,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/6c49bebe-3a62-11ed-a261-0242ac120002.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/6c49bebe-3a62-11ed-a261-0242ac120002.json 1`] = ` { "_id": "6c49bebe-3a62-11ed-a261-0242ac120002", "context": "LIBRARY", @@ -31449,7 +31493,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/7c399b7e-e596-4447-aa7a-071af55e892c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/7c399b7e-e596-4447-aa7a-071af55e892c.json 1`] = ` { "_id": "7c399b7e-e596-4447-aa7a-071af55e892c", "context": "SAML2_IDP_ADAPTER_NEXTGEN", @@ -31468,7 +31512,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/7e3d7067-d50f-4674-8c76-a3e13a810c33.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/7e3d7067-d50f-4674-8c76-a3e13a810c33.json 1`] = ` { "_id": "7e3d7067-d50f-4674-8c76-a3e13a810c33", "context": "AUTHENTICATION_SERVER_SIDE", @@ -31487,7 +31531,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/9de3eb62-f131-4fac-a294-7bd170fd4acb.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/9de3eb62-f131-4fac-a294-7bd170fd4acb.json 1`] = ` { "_id": "9de3eb62-f131-4fac-a294-7bd170fd4acb", "context": "POLICY_CONDITION", @@ -31506,7 +31550,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/11e1a3c0-038b-4c16-956a-6c9d89328cff.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/11e1a3c0-038b-4c16-956a-6c9d89328cff.json 1`] = ` { "_id": "11e1a3c0-038b-4c16-956a-6c9d89328cff", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -31525,7 +31569,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/11e1a3c0-038b-4c16-956a-6c9d89328d00.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/11e1a3c0-038b-4c16-956a-6c9d89328d00.json 1`] = ` { "_id": "11e1a3c0-038b-4c16-956a-6c9d89328d00", "context": "DEVICE_MATCH_NODE", @@ -31544,7 +31588,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/13e3f263-9cd3-4844-8d1c-040fd0dd02eb.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/13e3f263-9cd3-4844-8d1c-040fd0dd02eb.json 1`] = ` { "_id": "13e3f263-9cd3-4844-8d1c-040fd0dd02eb", "context": "AUTHENTICATION_TREE_DECISION_NODE", @@ -31563,7 +31607,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/24cb761e-0123-4078-a87c-3f1e2b25451b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/24cb761e-0123-4078-a87c-3f1e2b25451b.json 1`] = ` { "_id": "24cb761e-0123-4078-a87c-3f1e2b25451b", "context": "CACHE_LOADER", @@ -31582,7 +31626,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/25e6c06d-cf70-473b-bd28-26931edc476b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/25e6c06d-cf70-473b-bd28-26931edc476b.json 1`] = ` { "_id": "25e6c06d-cf70-473b-bd28-26931edc476b", "context": "OAUTH2_VALIDATE_SCOPE", @@ -31601,7 +31645,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/69f06e63-128c-4e2f-af52-079a8a6f448b.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/69f06e63-128c-4e2f-af52-079a8a6f448b.json 1`] = ` { "_id": "69f06e63-128c-4e2f-af52-079a8a6f448b", "context": "SAML2_SP_ADAPTER", @@ -31620,7 +31664,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/91bd046e-0221-41ed-8890-6858c1efd998.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/91bd046e-0221-41ed-8890-6858c1efd998.json 1`] = ` { "_id": "91bd046e-0221-41ed-8890-6858c1efd998", "context": "SAML2_SP_ADAPTER_NEXTGEN", @@ -31639,7 +31683,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/248b8a56-df81-4b1b-b4ba-45d994f6504c.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/248b8a56-df81-4b1b-b4ba-45d994f6504c.json 1`] = ` { "_id": "248b8a56-df81-4b1b-b4ba-45d994f6504c", "context": "SAML2_IDP_ADAPTER", @@ -31658,7 +31702,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/400e48ba-3f13-4144-ac7b-f824ea8e98c5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/400e48ba-3f13-4144-ac7b-f824ea8e98c5.json 1`] = ` { "_id": "400e48ba-3f13-4144-ac7b-f824ea8e98c5", "context": "OAUTH2_SCRIPTED_JWT_ISSUER", @@ -31677,7 +31721,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/449ef739-828e-42b4-92d6-0456d378671e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/449ef739-828e-42b4-92d6-0456d378671e.json 1`] = ` { "_id": "449ef739-828e-42b4-92d6-0456d378671e", "context": "OAUTH2_ACCESS_TOKEN_MODIFICATION", @@ -31696,7 +31740,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/703dab1a-1921-4981-98dd-b8e5349d8548.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/703dab1a-1921-4981-98dd-b8e5349d8548.json 1`] = ` { "_id": "703dab1a-1921-4981-98dd-b8e5349d8548", "context": "AUTHENTICATION_SERVER_SIDE", @@ -31715,7 +31759,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/21138ab1-0621-4466-b18f-670bfcbabca7.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/21138ab1-0621-4466-b18f-670bfcbabca7.json 1`] = ` { "_id": "21138ab1-0621-4466-b18f-670bfcbabca7", "context": "OAUTH2_ACCESS_TOKEN_MODIFICATION", @@ -31734,7 +31778,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/36863ffb-40ec-48b9-94b1-9a99f71cc3b5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/36863ffb-40ec-48b9-94b1-9a99f71cc3b5.json 1`] = ` { "_id": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5", "context": "OIDC_CLAIMS", @@ -31753,7 +31797,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/157298c0-7d31-4059-a95b-eeb08473b7e5.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/157298c0-7d31-4059-a95b-eeb08473b7e5.json 1`] = ` { "_id": "157298c0-7d31-4059-a95b-eeb08473b7e5", "context": "AUTHENTICATION_CLIENT_SIDE", @@ -31772,7 +31816,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/ac40a394-b3cd-400f-b2aa-b6b2e4a8be8e.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/ac40a394-b3cd-400f-b2aa-b6b2e4a8be8e.json 1`] = ` { "_id": "ac40a394-b3cd-400f-b2aa-b6b2e4a8be8e", "context": "CACHE_LOADER", @@ -31791,7 +31835,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/c4f22465-2368-4e27-8013-e6399974fd48.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/c4f22465-2368-4e27-8013-e6399974fd48.json 1`] = ` { "_id": "c4f22465-2368-4e27-8013-e6399974fd48", "context": "SAML2_IDP_ATTRIBUTE_MAPPER", @@ -31810,7 +31854,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/c234ba0b-58a1-4cfd-9567-09edde980745.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/c234ba0b-58a1-4cfd-9567-09edde980745.json 1`] = ` { "_id": "c234ba0b-58a1-4cfd-9567-09edde980745", "context": "OAUTH2_ACCESS_TOKEN_MODIFICATION", @@ -31829,7 +31873,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/c827d2b4-3608-4693-868e-bbcf86bd87c7.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/c827d2b4-3608-4693-868e-bbcf86bd87c7.json 1`] = ` { "_id": "c827d2b4-3608-4693-868e-bbcf86bd87c7", "context": "AUTHENTICATION_CLIENT_SIDE", @@ -31848,7 +31892,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/d3ced49b-50cd-4ee9-bd8b-33a46f367fb1.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/d3ced49b-50cd-4ee9-bd8b-33a46f367fb1.json 1`] = ` { "_id": "d3ced49b-50cd-4ee9-bd8b-33a46f367fb1", "context": "OIDC_CLAIMS", @@ -31867,7 +31911,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/d22f9a0c-426a-4466-b95e-d0f125b0d5fa.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/d22f9a0c-426a-4466-b95e-d0f125b0d5fa.json 1`] = ` { "_id": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa", "context": "OAUTH2_ACCESS_TOKEN_MODIFICATION", @@ -31886,7 +31930,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/da56fe60-8b38-4c46-a405-d6b306d4b336.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-config/da56fe60-8b38-4c46-a405-d6b306d4b336.json 1`] = ` { "_id": "da56fe60-8b38-4c46-a405-d6b306d4b336", "context": "OAUTH2_EVALUATE_SCOPE", @@ -31905,7 +31949,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_CLIENT_SIDE/Device Id (Match) - Client Side.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_CLIENT_SIDE/Device Id (Match) - Client Side.js 1`] = ` "/* * Copyright 2023-2025 Ping Identity Corporation. All Rights Reserved * @@ -32163,7 +32207,7 @@ collectGeolocationInfo(function(geolocationInfo) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_CLIENT_SIDE/Scripted Module - Client Side.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_CLIENT_SIDE/Scripted Module - Client Side.js 1`] = ` "/* * Copyright 2016-2025 Ping Identity Corporation. All Rights Reserved * @@ -32176,7 +32220,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_SERVER_SIDE/Device Id (Match) - Server Side.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_SERVER_SIDE/Device Id (Match) - Server Side.js 1`] = ` "/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -33011,7 +33055,7 @@ matchDevicePrint(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_SERVER_SIDE/Scripted Module - Server Side.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_SERVER_SIDE/Scripted Module - Server Side.js 1`] = ` "/* * Copyright 2015-2025 Ping Identity Corporation. All Rights Reserved * @@ -33101,7 +33145,7 @@ function logResponse(response) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Authentication Tree Decision Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Authentication Tree Decision Node Script.js 1`] = ` "/* - Data made available by nodes that have already executed are available in the sharedState variable. - The script should set outcome to either "true" or "false". @@ -33111,7 +33155,7 @@ outcome = "true"; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Device Profile Match Template - Decision Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Device Profile Match Template - Decision Node Script.js 1`] = ` "/* * Copyright 2020-2025 Ping Identity Corporation. All Rights Reserved * @@ -33197,7 +33241,7 @@ if (storedProfiles) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Next Generation Scripted Decision Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/AUTHENTICATION_TREE_DECISION_NODE/Next Generation Scripted Decision Node Script.js 1`] = ` "/* * Copyright 2024-2025 Ping Identity Corporation. All Rights Reserved * @@ -33215,7 +33259,7 @@ action.goTo("true"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/CACHE_LOADER/Cache Loader Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/CACHE_LOADER/Cache Loader Script.js 1`] = ` "/* * Copyright 2025 Ping Identity Corporation. All Rights Reserved * @@ -33251,7 +33295,7 @@ function reload(key, oldValue) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/CACHE_LOADER/OAuth2 Client Credentials Default.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/CACHE_LOADER/OAuth2 Client Credentials Default.js 1`] = ` "/* * Copyright 2025 Ping Identity Corporation. All Rights Reserved * @@ -33311,7 +33355,7 @@ function load(key) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/CONFIG_PROVIDER_NODE/Config Provider Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/CONFIG_PROVIDER_NODE/Config Provider Node Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * @@ -33382,7 +33426,7 @@ config = { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/DEVICE_MATCH_NODE/Next Generation Device Match Node Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/DEVICE_MATCH_NODE/Next Generation Device Match Node Script.js 1`] = ` "/* * Copyright 2024-2025 Ping Identity Corporation. All Rights Reserved * @@ -33400,7 +33444,7 @@ action.goTo("true"); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/LIBRARY/Library Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/LIBRARY/Library Script.js 1`] = ` "/* * Copyright 2022-2025 Ping Identity Corporation. All Rights Reserved * @@ -33438,7 +33482,7 @@ exports.logDebug = (log, debugMessage) => log.debug(debugMessage); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/Bravo OAuth2 Access Token Modification Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/Bravo OAuth2 Access Token Modification Script.js 1`] = ` "/* * Copyright 2019-2021 ForgeRock AS. All Rights Reserved. * @@ -33577,7 +33621,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/Bravo endUserUIClient OAuth2 Access Token Modification Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/Bravo endUserUIClient OAuth2 Access Token Modification Script.js 1`] = ` "(function () { if (scopes.contains('fr:autoaccess:*') || scopes.contains('fr:iga:*') || scopes.contains('fr:idc:analytics:*')) { var fr = JavaImporter( @@ -33593,7 +33637,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/ForgeRock Internal%3A OAuth2 Access Token Modification Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/ForgeRock Internal%3A OAuth2 Access Token Modification Script.js 1`] = ` "/* * Copyright 2023-2025 Ping Identity Corporation. All Rights Reserved * @@ -33606,7 +33650,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/OAuth2 Access Token Modification Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_ACCESS_TOKEN_MODIFICATION/OAuth2 Access Token Modification Script.js 1`] = ` "/* * Copyright 2019-2023 ForgeRock AS. All Rights Reserved. * @@ -33745,7 +33789,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_AUTHORIZE_ENDPOINT_DATA_PROVIDER/OAuth2 Authorize Endpoint Data Provider Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_AUTHORIZE_ENDPOINT_DATA_PROVIDER/OAuth2 Authorize Endpoint Data Provider Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * This code is to be used exclusively in connection with Ping Identity @@ -33840,7 +33884,7 @@ addAdditionalData(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_DYNAMIC_CLIENT_REGISTRATION/OAuth2 Dynamic Client Registration Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_DYNAMIC_CLIENT_REGISTRATION/OAuth2 Dynamic Client Registration Script.js 1`] = ` "/* * Copyright 2025 Ping Identity Corporation. All Rights Reserved * @@ -33920,7 +33964,7 @@ if (operation === "UPDATE") { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_EVALUATE_SCOPE/OAuth2 Evaluate Scope Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_EVALUATE_SCOPE/OAuth2 Evaluate Scope Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * This code is to be used exclusively in connection with Ping Identity @@ -33977,7 +34021,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_SCRIPTED_JWT_ISSUER/OAuth2 JWT Issuer Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_SCRIPTED_JWT_ISSUER/OAuth2 JWT Issuer Script.js 1`] = ` "/* * Copyright 2022-2025 Ping Identity Corporation. All Rights Reserved * @@ -34057,7 +34101,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_VALIDATE_SCOPE/OAuth2 Validate Scope Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OAUTH2_VALIDATE_SCOPE/OAuth2 Validate Scope Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * This code is to be used exclusively in connection with Ping Identity @@ -34147,7 +34191,7 @@ function validateBackChannelAuthorizationScope () { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OIDC_CLAIMS/Bravo OIDC Claims Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OIDC_CLAIMS/Bravo OIDC Claims Script.js 1`] = ` "/* * Copyright 2014-2021 ForgeRock AS. All Rights Reserved * @@ -34771,7 +34815,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OIDC_CLAIMS/Bravo endUserUIClient OIDC Claims Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OIDC_CLAIMS/Bravo endUserUIClient OIDC Claims Script.js 1`] = ` "/* * Copyright 2014-2025 Ping Identity Corporation. All Rights Reserved * @@ -35396,7 +35440,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OIDC_CLAIMS/ForgeRock Internal%3A OIDC Claims Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OIDC_CLAIMS/ForgeRock Internal%3A OIDC Claims Script.js 1`] = ` "/* * Copyright 2014-2025 Ping Identity Corporation. All Rights Reserved * @@ -36021,7 +36065,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OIDC_CLAIMS/OIDC Claims Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/OIDC_CLAIMS/OIDC Claims Script.js 1`] = ` "/* * Copyright 2014-2023 ForgeRock AS. All Rights Reserved * @@ -36645,7 +36689,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/POLICY_CONDITION/Scripted Policy Condition.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/POLICY_CONDITION/Scripted Policy Condition.js 1`] = ` "/* * Copyright 2015-2025 Ping Identity Corporation. All Rights Reserved * @@ -36792,7 +36836,7 @@ function logResponse(response) { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_IDP_ADAPTER/SAML2 IDP Adapter Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_IDP_ADAPTER/SAML2 IDP Adapter Script.js 1`] = ` "/* * Copyright 2021-2023 ForgeRock AS. All Rights Reserved * @@ -36946,7 +36990,7 @@ function preSendFailureResponse () { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_IDP_ADAPTER_NEXTGEN/SAML2 IDP Adapter Script (Next Gen).js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_IDP_ADAPTER_NEXTGEN/SAML2 IDP Adapter Script (Next Gen).js 1`] = ` "/* * Copyright 2026 Ping Identity Corporation. All Rights Reserved * @@ -37121,7 +37165,7 @@ function preSendFailureResponse() { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_IDP_ATTRIBUTE_MAPPER/SAML2 IDP Attribute Mapper Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_IDP_ATTRIBUTE_MAPPER/SAML2 IDP Attribute Mapper Script.js 1`] = ` "/* * Copyright 2021-2025 Ping Identity Corporation. All Rights Reserved * @@ -37286,7 +37330,7 @@ getAttributes(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_IDP_ATTRIBUTE_MAPPER_NEXT_GEN/SAML IDP Attribute Mapper Script (Next Gen).js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_IDP_ATTRIBUTE_MAPPER_NEXT_GEN/SAML IDP Attribute Mapper Script (Next Gen).js 1`] = ` "/* * Copyright 2026 Ping Identity Corporation. All Rights Reserved * @@ -37334,7 +37378,7 @@ attributes // this must be the last line of the script " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_NAMEID_MAPPER/SAML2 NameID Mapper Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_NAMEID_MAPPER/SAML2 NameID Mapper Script.js 1`] = ` "/* * Copyright 2024-2025 Ping Identity Corporation. All Rights Reserved * @@ -37353,7 +37397,7 @@ nameIDScriptHelper.getNameIDValue(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_SP_ACCOUNT_MAPPER/SAML2 SP Account Mapper Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_SP_ACCOUNT_MAPPER/SAML2 SP Account Mapper Script.js 1`] = ` "/* * Copyright 2025 Ping Identity Corporation. All Rights Reserved * @@ -37424,7 +37468,7 @@ getIdentity(); " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_SP_ADAPTER/SAML2 SP Adapter Script.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_SP_ADAPTER/SAML2 SP Adapter Script.js 1`] = ` "/* * Copyright 2023-2025 Ping Identity Corporation. All Rights Reserved * @@ -37656,7 +37700,7 @@ function postSingleLogoutSuccess() { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_SP_ADAPTER_NEXTGEN/SAML2 SP Adapter Script (Next Gen).js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/scripts/scripts-content/SAML2_SP_ADAPTER_NEXTGEN/SAML2 SP Adapter Script (Next Gen).js 1`] = ` "/* * Copyright 2026 Ping Identity Corporation. All Rights Reserved * @@ -37953,7 +37997,7 @@ function postSingleLogoutSuccess() { " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/SocialIdentityProviders.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/SocialIdentityProviders.json 1`] = ` { "_id": "", "_rev": "1077208638", @@ -37966,7 +38010,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/baseurl.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/baseurl.json 1`] = ` { "_id": "", "_rev": "-1889820858", @@ -37981,7 +38025,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/oauth-oidc.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/oauth-oidc.json 1`] = ` { "_id": "", "_rev": "1278558564", @@ -38419,7 +38463,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/policyconfiguration.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/policyconfiguration.json 1`] = ` { "_id": "", "_rev": "-247595145", @@ -38458,7 +38502,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/selfServiceTrees.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/selfServiceTrees.json 1`] = ` { "_id": "", "_rev": "-948959244", @@ -38477,7 +38521,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/validation.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/services/validation.json 1`] = ` { "_id": "", "_rev": "896681690", @@ -38492,7 +38536,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Contrast/Contrast.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Contrast/Contrast.json 1`] = ` { "_id": "bf4828bd-6e24-41ba-8773-0a4a349399d3", "accountFooter": { @@ -38585,7 +38629,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Highlander/Highlander.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Highlander/Highlander.json 1`] = ` { "_id": "f2bdd040-2e46-4602-a0ab-24ed52103cdc", "accountFooter": { @@ -38678,7 +38722,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Robroy/Robroy.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Robroy/Robroy.json 1`] = ` { "_id": "62ac2a64-9db9-4f0a-a7e4-74f3d662bc42", "accountFooter": { @@ -38773,7 +38817,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Starter Theme/Starter Theme.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Starter Theme/Starter Theme.json 1`] = ` { "_id": "b7d8de5a-f788-4ac8-b80a-3220a5f977ec", "accountFooter": { @@ -38865,7 +38909,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Zardoz/Zardoz.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/realms/bravo/themes/Zardoz/Zardoz.json 1`] = ` { "_id": "8dfd6c93-972a-4786-950d-79904f66af4b", "accountFooter": { @@ -38960,7 +39004,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/connectors/Azure.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/connectors/Azure.json 1`] = ` { "_id": "provisioner.openicf/Azure", "configurationProperties": { @@ -39694,7 +39738,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/AlphaUser2GoogleApps/AlphaUser2GoogleApps.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/AlphaUser2GoogleApps/AlphaUser2GoogleApps.json 1`] = ` { "_id": "sync/AlphaUser2GoogleApps", "consentRequired": false, @@ -39889,12 +39933,12 @@ resultingAction; } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/AlphaUser2GoogleApps/AlphaUser2GoogleApps.onCreate.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/AlphaUser2GoogleApps/AlphaUser2GoogleApps.onCreate.js 1`] = ` "target.orgUnitPath = "/NewAccounts"; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/AlphaUser2GoogleApps/AlphaUser2GoogleApps.onUpdate.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/AlphaUser2GoogleApps/AlphaUser2GoogleApps.onUpdate.js 1`] = ` "//testing1234 target.givenName = oldTarget.givenName; target.familyName = oldTarget.familyName; @@ -39902,7 +39946,7 @@ target.__NAME__ = oldTarget.__NAME__; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/AlphaUser2GoogleApps/AlphaUser2GoogleApps.validSource.js 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/AlphaUser2GoogleApps/AlphaUser2GoogleApps.validSource.js 1`] = ` "var isGoogleEligible = true; //var logMsg = "idmlog: ---AplhaUser2GAC (username: " + source.userName + " - userType: " + source.frIndexedInteger1 + " cn: " + source.cn + ") -"; var logMsg = "idmlog: ---AplhaUser2GAC (username: " + source.userName + " - userType: " + source.frIndexedInteger1 + ") -"; @@ -39939,7 +39983,7 @@ isGoogleEligible; " `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedAlpha_application_managedBravo_application/managedAlpha_application_managedBravo_application.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedAlpha_application_managedBravo_application/managedAlpha_application_managedBravo_application.json 1`] = ` { "_id": "sync/managedAlpha_application_managedBravo_application", "consentRequired": true, @@ -40025,7 +40069,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedAlpha_assignment_managedBravo_assignment/managedAlpha_assignment_managedBravo_assignment.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedAlpha_assignment_managedBravo_assignment/managedAlpha_assignment_managedBravo_assignment.json 1`] = ` { "_id": "sync/managedAlpha_assignment_managedBravo_assignment", "consentRequired": false, @@ -40101,7 +40145,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedAlpha_user_managedBravo_user/managedAlpha_user_managedBravo_user.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedAlpha_user_managedBravo_user/managedAlpha_user_managedBravo_user.json 1`] = ` { "_id": "sync/managedAlpha_user_managedBravo_user", "consentRequired": true, @@ -40190,7 +40234,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedAlpha_user_systemAzureUser/managedAlpha_user_systemAzureUser.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedAlpha_user_systemAzureUser/managedAlpha_user_systemAzureUser.json 1`] = ` { "_id": "sync/managedAlpha_user_systemAzureUser", "consentRequired": false, @@ -40346,7 +40390,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedBravo_group_managedBravo_group/managedBravo_group_managedBravo_group.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedBravo_group_managedBravo_group/managedBravo_group_managedBravo_group.json 1`] = ` { "_id": "sync/managedBravo_group_managedBravo_group", "consentRequired": false, @@ -40420,7 +40464,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedBravo_user_managedAlpha_user/managedBravo_user_managedAlpha_user.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedBravo_user_managedAlpha_user/managedBravo_user_managedAlpha_user.json 1`] = ` { "_id": "sync/managedBravo_user_managedAlpha_user", "consentRequired": false, @@ -40492,7 +40536,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedBravo_user_managedBravo_user/managedBravo_user_managedBravo_user.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedBravo_user_managedBravo_user/managedBravo_user_managedBravo_user.json 1`] = ` { "_id": "sync/managedBravo_user_managedBravo_user", "consentRequired": false, @@ -40562,7 +40606,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedBravo_user_managedBravo_user0/managedBravo_user_managedBravo_user0.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/managedBravo_user_managedBravo_user0/managedBravo_user_managedBravo_user0.json 1`] = ` { "_id": "sync/managedBravo_user_managedBravo_user0", "consentRequired": false, @@ -40640,7 +40684,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/mapping12/mapping12.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/mapping12/mapping12.json 1`] = ` { "_id": "sync/mapping12", "consentRequired": false, @@ -40670,7 +40714,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/systemAzure__group___managedAlpha_assignment/systemAzure__group___managedAlpha_assignment.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/systemAzure__group___managedAlpha_assignment/systemAzure__group___managedAlpha_assignment.json 1`] = ` { "_id": "sync/systemAzure__group___managedAlpha_assignment", "consentRequired": false, @@ -40804,7 +40848,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/systemAzureDirectoryrole_managedAlpha_assignment/systemAzureDirectoryrole_managedAlpha_assignment.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/systemAzureDirectoryrole_managedAlpha_assignment/systemAzureDirectoryrole_managedAlpha_assignment.json 1`] = ` { "_id": "sync/systemAzureDirectoryrole_managedAlpha_assignment", "consentRequired": false, @@ -40939,7 +40983,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/systemAzureServiceplan_managedAlpha_assignment/systemAzureServiceplan_managedAlpha_assignment.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/systemAzureServiceplan_managedAlpha_assignment/systemAzureServiceplan_managedAlpha_assignment.json 1`] = ` { "_id": "sync/systemAzureServiceplan_managedAlpha_assignment", "consentRequired": false, @@ -41075,7 +41119,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/systemAzureUser_managedAlpha_user/systemAzureUser_managedAlpha_user.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/systemAzureUser_managedAlpha_user/systemAzureUser_managedAlpha_user.json 1`] = ` { "_id": "sync/systemAzureUser_managedAlpha_user", "consentRequired": false, @@ -41199,7 +41243,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/test_mapping/test_mapping.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/sync/mappings/test_mapping/test_mapping.json 1`] = ` { "_id": "sync/test_mapping", "consentRequired": false, @@ -41267,7 +41311,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/terms-conditions/terms-conditions.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/terms-conditions/terms-conditions.json 1`] = ` { "_id": "selfservice.terms", "active": "0.0", @@ -41290,7 +41334,7 @@ exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": } `; -exports[`frodo config-manager pulls "frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style": allDir1/ui/ui-configuration.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style": allDir1/ui/ui-configuration.json 1`] = ` { "_id": "ui/configuration", "configuration": { diff --git a/test/e2e/__snapshots__/config-manager-export-secrets.e2e.test.js.snap b/test/e2e/__snapshots__/config-manager-export-secrets.e2e.test.js.snap index f6e4d765a..3545c0b69 100644 --- a/test/e2e/__snapshots__/config-manager-export-secrets.e2e.test.js.snap +++ b/test/e2e/__snapshots__/config-manager-export-secrets.e2e.test.js.snap @@ -1,155 +1,157 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style" 1`] = `0`; +exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir1": should export all secrets and their versions in fr-config-manager style" 1`] = `0`; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style" 2`] = `""`; +exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir1": should export all secrets and their versions in fr-config-manager style" 2`] = `""`; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-admin-token.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir1": should export all secrets and their versions in fr-config-manager style": secretTestDir1/esvs/secrets/esv-test-secret.json 1`] = ` { - "_id": "esv-admin-token", - "description": "Long-lived admin token", - "encoding": "generic", - "useInPlaceholders": true, - "valueBase64": "\${ESV_ADMIN_TOKEN}", -} -`; - -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-brando-pingone.json 1`] = ` -{ - "_id": "esv-brando-pingone", - "description": "This is to show the connection between PingOne and AIC. ", + "_id": "esv-test-secret", + "description": "Test Secret", "encoding": "generic", "useInPlaceholders": true, - "valueBase64": "\${ESV_BRANDO_PINGONE}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-sean-test.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir1": should export all secrets and their versions in fr-config-manager style": secretTestDir1/esvs/secrets/esv-test-secret-2.json 1`] = ` { - "_id": "esv-sean-test", - "description": "", + "_id": "esv-test-secret-2", + "description": "Test Secret Two", "encoding": "generic", "useInPlaceholders": true, - "valueBase64": "\${ESV_SEAN_TEST}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_2_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-secret-import-test1.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir1": should export all secrets and their versions in fr-config-manager style": secretTestDir1/esvs/secrets/esv-test-secret-3.json 1`] = ` { - "_id": "esv-secret-import-test1", - "description": "Secret Import Test 1", + "_id": "esv-test-secret-3", + "description": "Test Secret Three", "encoding": "generic", "useInPlaceholders": true, - "valueBase64": "\${ESV_SECRET_IMPORT_TEST1}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_3_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-secret-import-test2.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir1": should export all secrets and their versions in fr-config-manager style": secretTestDir1/esvs/secrets/esv-test-secret-4.json 1`] = ` { - "_id": "esv-secret-import-test2", - "description": "Secret Import Test 2", + "_id": "esv-test-secret-4", + "description": "Testing secret using versioning", "encoding": "generic", - "useInPlaceholders": true, - "valueBase64": "\${ESV_SECRET_IMPORT_TEST2}", -} -`; - -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-test-client-cert.json 1`] = ` -{ - "_id": "esv-test-client-cert", - "description": "Test HTTP Client client cert", - "encoding": "pem", "useInPlaceholders": false, - "valueBase64": "\${ESV_TEST_CLIENT_CERT}", -} -`; - -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-test-secret.json 1`] = ` -{ - "_id": "esv-test-secret", - "description": "This is a test secret containing a simple string value.", - "encoding": "generic", - "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_4_3}", + "version": "3", + }, + { + "status": "DISABLED", + "valueBase64": "\${ESV_TEST_SECRET_4_2}", + "version": "2", + }, + { + "status": "DISABLED", + "valueBase64": "\${ESV_TEST_SECRET_4_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-test-secret-cert-pem.json 1`] = ` -{ - "_id": "esv-test-secret-cert-pem", - "description": "This is a test secret from a pem encoded cert file.", - "encoding": "pem", - "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET_CERT_PEM}", -} -`; +exports[`frodo config-manager pulls "frodo config-manager pull secrets -aD secretTestDir2": should export all the active only secrets in fr-config-manager style" 1`] = `0`; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-test-secret-cert-pem-raw.json 1`] = ` -{ - "_id": "esv-test-secret-cert-pem-raw", - "description": "This is a test secret from a pem encoded cert file (raw).", - "encoding": "pem", - "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET_CERT_PEM_RAW}", -} -`; +exports[`frodo config-manager pulls "frodo config-manager pull secrets -aD secretTestDir2": should export all the active only secrets in fr-config-manager style" 2`] = `""`; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-test-secret-euler.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull secrets -aD secretTestDir2": should export all the active only secrets in fr-config-manager style": secretTestDir2/esvs/secrets/esv-test-secret.json 1`] = ` { - "_id": "esv-test-secret-euler", - "description": "A test secret containing the value of Euler's number", + "_id": "esv-test-secret", + "description": "Test Secret", "encoding": "generic", "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET_EULER}", -} -`; - -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-test-secret-file-base64hmac.json 1`] = ` -{ - "_id": "esv-test-secret-file-base64hmac", - "description": "This is a test secret from base64 encoded hmac key file.", - "encoding": "base64hmac", - "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET_FILE_BASE64HMAC}", -} -`; - -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-test-secret-file-base64hmac-raw.json 1`] = ` -{ - "_id": "esv-test-secret-file-base64hmac-raw", - "description": "This is a test secret from base64 encoded hmac key file (raw).", - "encoding": "base64hmac", - "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET_FILE_BASE64HMAC_RAW}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-test-secret-pi.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull secrets -aD secretTestDir2": should export all the active only secrets in fr-config-manager style": secretTestDir2/esvs/secrets/esv-test-secret-2.json 1`] = ` { - "_id": "esv-test-secret-pi", - "description": "Secret that contains the value of pi", + "_id": "esv-test-secret-2", + "description": "Test Secret Two", "encoding": "generic", "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET_PI}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_2_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-test-secret-pi-generic.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull secrets -aD secretTestDir2": should export all the active only secrets in fr-config-manager style": secretTestDir2/esvs/secrets/esv-test-secret-3.json 1`] = ` { - "_id": "esv-test-secret-pi-generic", - "description": "", + "_id": "esv-test-secret-3", + "description": "Test Secret Three", "encoding": "generic", "useInPlaceholders": true, - "valueBase64": "\${ESV_TEST_SECRET_PI_GENERIC}", + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_3_1}", + "version": "1", + }, + ], } `; -exports[`frodo config-manager pulls "frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style": secretTestDir/esvs/secrets/esv-volkers-test-secret.json 1`] = ` +exports[`frodo config-manager pulls "frodo config-manager pull secrets -aD secretTestDir2": should export all the active only secrets in fr-config-manager style": secretTestDir2/esvs/secrets/esv-test-secret-4.json 1`] = ` { - "_id": "esv-volkers-test-secret", - "description": "Volker's test secret", + "_id": "esv-test-secret-4", + "description": "Testing secret using versioning", "encoding": "generic", - "useInPlaceholders": true, - "valueBase64": "\${ESV_VOLKERS_TEST_SECRET}", + "useInPlaceholders": false, + "versions": [ + { + "status": "ENABLED", + "valueBase64": "\${ESV_TEST_SECRET_4_3}", + "version": "3", + }, + { + "status": "DISABLED", + "valueBase64": "\${ESV_TEST_SECRET_4_2}", + "version": "2", + }, + { + "status": "DISABLED", + "valueBase64": "\${ESV_TEST_SECRET_4_1}", + "version": "1", + }, + ], } `; diff --git a/test/e2e/config-manager-export-all.e2e.test.js b/test/e2e/config-manager-export-all.e2e.test.js index 062b3dd00..8ca9265f7 100644 --- a/test/e2e/config-manager-export-all.e2e.test.js +++ b/test/e2e/config-manager-export-all.e2e.test.js @@ -61,9 +61,10 @@ process.env['FRODO_CONNECTION_PROFILES_PATH'] = const env = getEnv(c); describe('frodo config-manager pulls', () => { - test('"frodo config-manager pull all -D allDir1": should export all config in fr-config-manager style"', async () => { + test('"frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D allDir1": should export all config in fr-config-manager style"', async () => { const dirName = 'allDir1'; - const CMD = `frodo config-manager pull all -F test/e2e/fr-config-manager-pull-config -D ${dirName}`; + const fileName= 'test/e2e/fr-config-manager-pull-config'; + const CMD = `frodo config-manager pull all -F ${fileName} -D ${dirName}`; await testExport(CMD, env, undefined, undefined, dirName, false); }); diff --git a/test/e2e/config-manager-export-secrets.e2e.test.js b/test/e2e/config-manager-export-secrets.e2e.test.js index ad045584a..992af0db7 100644 --- a/test/e2e/config-manager-export-secrets.e2e.test.js +++ b/test/e2e/config-manager-export-secrets.e2e.test.js @@ -47,7 +47,8 @@ */ /* -FRODO_MOCK=record FRODO_NO_CACHE=1 FRODO_HOST=https://openam-frodo-dev.forgeblocks.com/am frodo config-manager pull secrets -D secretTestDir +FRODO_MOCK=record FRODO_NO_CACHE=1 FRODO_HOST=https://openam-frodo-dev.forgeblocks.com/am frodo config-manager pull secrets -D secretTestDir1 +FRODO_MOCK=record FRODO_NO_CACHE=1 FRODO_HOST=https://openam-frodo-dev.forgeblocks.com/am frodo config-manager pull secrets -aD secretTestDir2 */ @@ -61,8 +62,13 @@ process.env['FRODO_CONNECTION_PROFILES_PATH'] = const env = getEnv(c); describe('frodo config-manager pulls', () => { - test('"frodo config-manager pull secrets -D secretTestDir": should export the secrets in fr-config-manager style"', async () => { - const dirName = 'secretTestDir'; + test('"frodo config-manager pull secrets -D secretTestDir1": should export all secrets and their versions in fr-config-manager style"', async () => { + const dirName = 'secretTestDir1'; + const CMD = `frodo config-manager pull secrets -D ${dirName}`; + await testExport(CMD, env, undefined, undefined, dirName, false); + }); + test('"frodo config-manager pull secrets -aD secretTestDir2": should export all the active only secrets in fr-config-manager style"', async () => { + const dirName = 'secretTestDir2'; const CMD = `frodo config-manager pull secrets -D ${dirName}`; await testExport(CMD, env, undefined, undefined, dirName, false); }); diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/am_1076162899/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/am_1076162899/recording.har index 7f3ee0f51..69fc19725 100644 --- a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/am_1076162899/recording.har +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/am_1076162899/recording.har @@ -142,8 +142,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T16:59:59.634Z", - "time": 192, + "startedDateTime": "2026-07-14T21:32:36.178Z", + "time": 211, "timings": { "blocked": -1, "connect": -1, @@ -151,7 +151,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 192 + "wait": 211 } }, { @@ -287,14 +287,14 @@ "value": "" } ], - "headersSize": 781, + "headersSize": 806, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T16:59:59.989Z", - "time": 90, + "startedDateTime": "2026-07-14T21:32:36.535Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -302,7 +302,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 79 } }, { @@ -439,14 +439,14 @@ "value": "chunked" } ], - "headersSize": 793, + "headersSize": 818, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:00.409Z", - "time": 215, + "startedDateTime": "2026-07-14T21:32:37.015Z", + "time": 160, "timings": { "blocked": -1, "connect": -1, @@ -454,7 +454,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 215 + "wait": 160 } }, { @@ -586,14 +586,14 @@ "value": "" } ], - "headersSize": 745, + "headersSize": 770, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:00.628Z", - "time": 147, + "startedDateTime": "2026-07-14T21:32:37.182Z", + "time": 132, "timings": { "blocked": -1, "connect": -1, @@ -601,7 +601,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 147 + "wait": 132 } }, { @@ -739,8 +739,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:00.780Z", - "time": 133, + "startedDateTime": "2026-07-14T21:32:37.322Z", + "time": 109, "timings": { "blocked": -1, "connect": -1, @@ -748,7 +748,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 133 + "wait": 109 } }, { @@ -803,7 +803,7 @@ "content": { "mimeType": "application/json;charset=UTF-8", "size": 933, - "text": "{\"name\":\"oauth2Scopes\",\"displayName\":\"Default OAuth2 Scopes Policy Set\",\"resourceTypeUuids\":[\"d60b7a71-1dc6-44a5-8e48-e4b9d92dee8b\"],\"conditions\":[\"Script\",\"AMIdentityMembership\",\"IPv6\",\"SimpleTime\",\"IPv4\",\"LEAuthLevel\",\"LDAPFilter\",\"AuthScheme\",\"Session\",\"AND\",\"AuthenticateToRealm\",\"ResourceEnvIP\",\"SessionProperty\",\"OAuth2Scope\",\"OR\",\"Transaction\",\"NOT\",\"AuthLevel\",\"AuthenticateToService\"],\"description\":\"The built-in Application used by the OAuth2 scope authorization process.\",\"attributeNames\":[],\"createdBy\":\"id=dsameuser,ou=user,ou=am-config\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"creationDate\":1578580064992,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482073416,\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"subjects\":[\"AuthenticatedUsers\",\"NOT\",\"Identity\",\"OR\",\"AND\",\"NONE\",\"JwtClaim\"],\"entitlementCombiner\":\"DenyOverride\"}" + "text": "{\"name\":\"oauth2Scopes\",\"displayName\":\"Default OAuth2 Scopes Policy Set\",\"conditions\":[\"Script\",\"AMIdentityMembership\",\"IPv6\",\"SimpleTime\",\"IPv4\",\"LEAuthLevel\",\"LDAPFilter\",\"AuthScheme\",\"Session\",\"AND\",\"AuthenticateToRealm\",\"ResourceEnvIP\",\"SessionProperty\",\"OAuth2Scope\",\"OR\",\"Transaction\",\"NOT\",\"AuthLevel\",\"AuthenticateToService\"],\"description\":\"The built-in Application used by the OAuth2 scope authorization process.\",\"attributeNames\":[],\"createdBy\":\"id=dsameuser,ou=user,ou=am-config\",\"creationDate\":1578580064992,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482073416,\"resourceTypeUuids\":[\"d60b7a71-1dc6-44a5-8e48-e4b9d92dee8b\"],\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"subjects\":[\"AuthenticatedUsers\",\"NOT\",\"Identity\",\"OR\",\"AND\",\"NONE\",\"JwtClaim\"],\"entitlementCombiner\":\"DenyOverride\"}" }, "cookies": [], "headers": [ @@ -884,14 +884,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:00.920Z", - "time": 154, + "startedDateTime": "2026-07-14T21:32:37.437Z", + "time": 132, "timings": { "blocked": -1, "connect": -1, @@ -899,7 +899,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 154 + "wait": 132 } }, { @@ -1036,14 +1036,14 @@ "value": "" } ], - "headersSize": 759, + "headersSize": 784, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:01.078Z", - "time": 108, + "startedDateTime": "2026-07-14T21:32:37.575Z", + "time": 131, "timings": { "blocked": -1, "connect": -1, @@ -1051,7 +1051,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 131 } }, { @@ -1106,7 +1106,7 @@ "content": { "mimeType": "application/json;charset=UTF-8", "size": 904, - "text": "{\"name\":\"EdgePolicySet\",\"displayName\":null,\"resourceTypeUuids\":[\"76656a38-5f8e-401b-83aa-4ccb74ce88d2\"],\"conditions\":[\"Script\",\"ClientId\",\"AMIdentityMembership\",\"IPv6\",\"SimpleTime\",\"IPv4\",\"LEAuthLevel\",\"LDAPFilter\",\"AuthScheme\",\"Session\",\"AND\",\"Expiration\",\"AuthenticateToRealm\",\"ResourceEnvIP\",\"Policy\",\"SessionProperty\",\"OAuth2Scope\",\"OR\",\"Transaction\",\"NOT\",\"AuthLevel\",\"AuthenticateToService\"],\"description\":\"Policy Set EdgePolicySet\",\"attributeNames\":[],\"createdBy\":\"id=dsameuser,ou=user,ou=am-config\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"creationDate\":1669672555404,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482072860,\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"subjects\":[\"AuthenticatedUsers\",\"NOT\",\"Identity\",\"Uma\",\"OR\",\"AND\",\"NONE\",\"Policy\",\"JwtClaim\"],\"entitlementCombiner\":\"DenyOverride\"}" + "text": "{\"name\":\"EdgePolicySet\",\"displayName\":null,\"conditions\":[\"Script\",\"ClientId\",\"AMIdentityMembership\",\"IPv6\",\"SimpleTime\",\"IPv4\",\"LEAuthLevel\",\"LDAPFilter\",\"AuthScheme\",\"Session\",\"AND\",\"Expiration\",\"AuthenticateToRealm\",\"ResourceEnvIP\",\"Policy\",\"SessionProperty\",\"OAuth2Scope\",\"OR\",\"Transaction\",\"NOT\",\"AuthLevel\",\"AuthenticateToService\"],\"description\":\"Policy Set EdgePolicySet\",\"attributeNames\":[],\"createdBy\":\"id=dsameuser,ou=user,ou=am-config\",\"creationDate\":1669672555404,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482072860,\"resourceTypeUuids\":[\"76656a38-5f8e-401b-83aa-4ccb74ce88d2\"],\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"subjects\":[\"AuthenticatedUsers\",\"NOT\",\"Identity\",\"Uma\",\"OR\",\"AND\",\"NONE\",\"Policy\",\"JwtClaim\"],\"entitlementCombiner\":\"DenyOverride\"}" }, "cookies": [], "headers": [ @@ -1187,14 +1187,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:01.189Z", - "time": 89, + "startedDateTime": "2026-07-14T21:32:37.710Z", + "time": 128, "timings": { "blocked": -1, "connect": -1, @@ -1202,7 +1202,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 128 } }, { @@ -1339,14 +1339,14 @@ "value": "" } ], - "headersSize": 786, + "headersSize": 811, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:01.281Z", - "time": 213, + "startedDateTime": "2026-07-14T21:32:37.847Z", + "time": 139, "timings": { "blocked": -1, "connect": -1, @@ -1354,7 +1354,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 213 + "wait": 139 } }, { @@ -1490,14 +1490,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:01.498Z", - "time": 144, + "startedDateTime": "2026-07-14T21:32:37.997Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -1505,7 +1505,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 144 + "wait": 99 } }, { @@ -1560,7 +1560,7 @@ "content": { "mimeType": "application/json;charset=UTF-8", "size": 906, - "text": "{\"name\":\"FeatureStorePolicySet\",\"displayName\":\"FeatureStorePolicySet\",\"resourceTypeUuids\":[\"76656a38-5f8e-401b-83aa-4ccb74ce88d2\"],\"conditions\":[\"AMIdentityMembership\",\"AND\",\"AuthLevel\",\"AuthScheme\",\"AuthenticateToRealm\",\"AuthenticateToService\",\"IPv4\",\"IPv6\",\"LDAPFilter\",\"LEAuthLevel\",\"NOT\",\"OAuth2Scope\",\"OR\",\"Policy\",\"ResourceEnvIP\",\"Script\",\"Session\",\"SessionProperty\",\"SimpleTime\",\"Transaction\"],\"description\":null,\"attributeNames\":[],\"createdBy\":\"id=8efaa5b6-8c98-4489-9b21-ee41f5589ab7,ou=user,ou=am-config\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"creationDate\":1695912757709,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482073050,\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"subjects\":[\"AND\",\"AuthenticatedUsers\",\"Identity\",\"JwtClaim\",\"NONE\",\"NOT\",\"OR\",\"Policy\"],\"entitlementCombiner\":\"DenyOverride\"}" + "text": "{\"name\":\"FeatureStorePolicySet\",\"displayName\":\"FeatureStorePolicySet\",\"conditions\":[\"AMIdentityMembership\",\"AND\",\"AuthLevel\",\"AuthScheme\",\"AuthenticateToRealm\",\"AuthenticateToService\",\"IPv4\",\"IPv6\",\"LDAPFilter\",\"LEAuthLevel\",\"NOT\",\"OAuth2Scope\",\"OR\",\"Policy\",\"ResourceEnvIP\",\"Script\",\"Session\",\"SessionProperty\",\"SimpleTime\",\"Transaction\"],\"description\":null,\"attributeNames\":[],\"createdBy\":\"id=8efaa5b6-8c98-4489-9b21-ee41f5589ab7,ou=user,ou=am-config\",\"creationDate\":1695912757709,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482073050,\"resourceTypeUuids\":[\"76656a38-5f8e-401b-83aa-4ccb74ce88d2\"],\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"subjects\":[\"AND\",\"AuthenticatedUsers\",\"Identity\",\"JwtClaim\",\"NONE\",\"NOT\",\"OR\",\"Policy\"],\"entitlementCombiner\":\"DenyOverride\"}" }, "cookies": [], "headers": [ @@ -1641,14 +1641,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:01.646Z", - "time": 72, + "startedDateTime": "2026-07-14T21:32:38.103Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -1656,7 +1656,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 72 + "wait": 74 } }, { @@ -1793,14 +1793,14 @@ "value": "" } ], - "headersSize": 759, + "headersSize": 784, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:01.722Z", - "time": 80, + "startedDateTime": "2026-07-14T21:32:38.183Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -1808,7 +1808,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 80 + "wait": 71 } }, { @@ -1863,7 +1863,7 @@ "content": { "mimeType": "application/json;charset=UTF-8", "size": 881, - "text": "{\"name\":\"data\",\"displayName\":\"Baseline Demo\",\"resourceTypeUuids\":[\"76656a38-5f8e-401b-83aa-4ccb74ce88d2\"],\"conditions\":[\"Script\",\"AMIdentityMembership\",\"IPv6\",\"IPv4\",\"SimpleTime\",\"LEAuthLevel\",\"LDAPFilter\",\"AuthScheme\",\"Session\",\"AND\",\"AuthenticateToRealm\",\"ResourceEnvIP\",\"Policy\",\"OAuth2Scope\",\"SessionProperty\",\"OR\",\"Transaction\",\"NOT\",\"AuthLevel\",\"AuthenticateToService\"],\"description\":null,\"attributeNames\":[],\"createdBy\":\"id=df492700-ba67-4345-83a9-58305850596c,ou=user,ou=am-config\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"creationDate\":1610648242757,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482073246,\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"subjects\":[\"AuthenticatedUsers\",\"NOT\",\"Identity\",\"OR\",\"AND\",\"NONE\",\"Policy\",\"JwtClaim\"],\"entitlementCombiner\":\"DenyOverride\"}" + "text": "{\"name\":\"data\",\"displayName\":\"Baseline Demo\",\"conditions\":[\"Script\",\"AMIdentityMembership\",\"IPv6\",\"IPv4\",\"SimpleTime\",\"LEAuthLevel\",\"LDAPFilter\",\"AuthScheme\",\"Session\",\"AND\",\"AuthenticateToRealm\",\"ResourceEnvIP\",\"Policy\",\"OAuth2Scope\",\"SessionProperty\",\"OR\",\"Transaction\",\"NOT\",\"AuthLevel\",\"AuthenticateToService\"],\"description\":null,\"attributeNames\":[],\"createdBy\":\"id=df492700-ba67-4345-83a9-58305850596c,ou=user,ou=am-config\",\"creationDate\":1610648242757,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482073246,\"resourceTypeUuids\":[\"76656a38-5f8e-401b-83aa-4ccb74ce88d2\"],\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"subjects\":[\"AuthenticatedUsers\",\"NOT\",\"Identity\",\"OR\",\"AND\",\"NONE\",\"Policy\",\"JwtClaim\"],\"entitlementCombiner\":\"DenyOverride\"}" }, "cookies": [], "headers": [ @@ -1944,14 +1944,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:01.804Z", - "time": 114, + "startedDateTime": "2026-07-14T21:32:38.262Z", + "time": 72, "timings": { "blocked": -1, "connect": -1, @@ -1959,7 +1959,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 114 + "wait": 72 } }, { @@ -2096,14 +2096,14 @@ "value": "" } ], - "headersSize": 787, + "headersSize": 812, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:01.923Z", - "time": 111, + "startedDateTime": "2026-07-14T21:32:38.341Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -2111,7 +2111,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 73 } }, { @@ -2247,14 +2247,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.042Z", - "time": 73, + "startedDateTime": "2026-07-14T21:32:38.422Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -2262,7 +2262,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 73 + "wait": 71 } }, { @@ -2398,14 +2398,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.123Z", - "time": 76, + "startedDateTime": "2026-07-14T21:32:38.505Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -2413,7 +2413,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 76 + "wait": 73 } }, { @@ -2549,14 +2549,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.201Z", - "time": 77, + "startedDateTime": "2026-07-14T21:32:38.583Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -2564,7 +2564,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 77 + "wait": 75 } }, { @@ -2619,7 +2619,7 @@ "content": { "mimeType": "application/json;charset=UTF-8", "size": 919, - "text": "{\"name\":\"test-policy-set\",\"displayName\":\"Test Policy Set\",\"resourceTypeUuids\":[\"76656a38-5f8e-401b-83aa-4ccb74ce88d2\"],\"conditions\":[\"AMIdentityMembership\",\"AND\",\"AuthLevel\",\"AuthScheme\",\"AuthenticateToRealm\",\"AuthenticateToService\",\"IPv4\",\"IPv6\",\"LDAPFilter\",\"LEAuthLevel\",\"NOT\",\"OAuth2Scope\",\"OR\",\"Policy\",\"ResourceEnvIP\",\"Script\",\"Session\",\"SessionProperty\",\"SimpleTime\",\"Transaction\"],\"description\":\"Test Policy Set Description\",\"attributeNames\":[],\"createdBy\":\"id=fbdeb2a9-beb6-4a14-ae66-e35f16ce421d,ou=user,ou=am-config\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"creationDate\":1693494279401,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482537999,\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"subjects\":[\"AND\",\"AuthenticatedUsers\",\"Identity\",\"JwtClaim\",\"NONE\",\"NOT\",\"OR\",\"Policy\"],\"entitlementCombiner\":\"DenyOverride\"}" + "text": "{\"name\":\"test-policy-set\",\"displayName\":\"Test Policy Set\",\"conditions\":[\"AMIdentityMembership\",\"AND\",\"AuthLevel\",\"AuthScheme\",\"AuthenticateToRealm\",\"AuthenticateToService\",\"IPv4\",\"IPv6\",\"LDAPFilter\",\"LEAuthLevel\",\"NOT\",\"OAuth2Scope\",\"OR\",\"Policy\",\"ResourceEnvIP\",\"Script\",\"Session\",\"SessionProperty\",\"SimpleTime\",\"Transaction\"],\"description\":\"Test Policy Set Description\",\"attributeNames\":[],\"createdBy\":\"id=fbdeb2a9-beb6-4a14-ae66-e35f16ce421d,ou=user,ou=am-config\",\"creationDate\":1693494279401,\"lastModifiedBy\":\"id=8a4fce63-e7f1-452c-a984-086150f83be0,ou=user,ou=am-config\",\"lastModifiedDate\":1783482537999,\"resourceTypeUuids\":[\"76656a38-5f8e-401b-83aa-4ccb74ce88d2\"],\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"subjects\":[\"AND\",\"AuthenticatedUsers\",\"Identity\",\"JwtClaim\",\"NONE\",\"NOT\",\"OR\",\"Policy\"],\"entitlementCombiner\":\"DenyOverride\"}" }, "cookies": [], "headers": [ @@ -2706,8 +2706,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.282Z", - "time": 80, + "startedDateTime": "2026-07-14T21:32:38.669Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -2715,7 +2715,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 80 + "wait": 79 } }, { @@ -2858,8 +2858,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.366Z", - "time": 136, + "startedDateTime": "2026-07-14T21:32:38.754Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -2867,7 +2867,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 136 + "wait": 77 } }, { @@ -3009,8 +3009,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.506Z", - "time": 69, + "startedDateTime": "2026-07-14T21:32:38.836Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -3018,7 +3018,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 69 + "wait": 75 } }, { @@ -3154,14 +3154,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.578Z", - "time": 76, + "startedDateTime": "2026-07-14T21:32:38.916Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -3169,7 +3169,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 76 + "wait": 73 } }, { @@ -3224,7 +3224,7 @@ "content": { "mimeType": "application/json;charset=UTF-8", "size": 906, - "text": "{\"name\":\"oauth2Scopes\",\"displayName\":\"Default OAuth2 Scopes Policy Set\",\"resourceTypeUuids\":[\"d60b7a71-1dc6-44a5-8e48-e4b9d92dee8b\"],\"conditions\":[\"Script\",\"AMIdentityMembership\",\"IPv6\",\"SimpleTime\",\"IPv4\",\"LEAuthLevel\",\"LDAPFilter\",\"AuthScheme\",\"Session\",\"AND\",\"AuthenticateToRealm\",\"ResourceEnvIP\",\"SessionProperty\",\"OAuth2Scope\",\"OR\",\"Transaction\",\"NOT\",\"AuthLevel\",\"AuthenticateToService\"],\"description\":\"The built-in Application used by the OAuth2 scope authorization process.\",\"attributeNames\":[],\"createdBy\":\"id=dsameuser,ou=user,ou=am-config\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"creationDate\":1578580064992,\"lastModifiedBy\":\"id=dsameuser,ou=user,ou=am-config\",\"lastModifiedDate\":1595479030629,\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"subjects\":[\"AuthenticatedUsers\",\"NOT\",\"Identity\",\"OR\",\"AND\",\"NONE\",\"JwtClaim\"],\"entitlementCombiner\":\"DenyOverride\"}" + "text": "{\"name\":\"oauth2Scopes\",\"displayName\":\"Default OAuth2 Scopes Policy Set\",\"conditions\":[\"Script\",\"AMIdentityMembership\",\"IPv6\",\"SimpleTime\",\"IPv4\",\"LEAuthLevel\",\"LDAPFilter\",\"AuthScheme\",\"Session\",\"AND\",\"AuthenticateToRealm\",\"ResourceEnvIP\",\"SessionProperty\",\"OAuth2Scope\",\"OR\",\"Transaction\",\"NOT\",\"AuthLevel\",\"AuthenticateToService\"],\"description\":\"The built-in Application used by the OAuth2 scope authorization process.\",\"attributeNames\":[],\"createdBy\":\"id=dsameuser,ou=user,ou=am-config\",\"creationDate\":1578580064992,\"lastModifiedBy\":\"id=dsameuser,ou=user,ou=am-config\",\"lastModifiedDate\":1595479030629,\"resourceTypeUuids\":[\"d60b7a71-1dc6-44a5-8e48-e4b9d92dee8b\"],\"editable\":true,\"applicationType\":\"iPlanetAMWebAgentService\",\"saveIndex\":null,\"searchIndex\":null,\"resourceComparator\":null,\"subjects\":[\"AuthenticatedUsers\",\"NOT\",\"Identity\",\"OR\",\"AND\",\"NONE\",\"JwtClaim\"],\"entitlementCombiner\":\"DenyOverride\"}" }, "cookies": [], "headers": [ @@ -3305,14 +3305,14 @@ "value": "" } ], - "headersSize": 782, + "headersSize": 807, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.657Z", - "time": 109, + "startedDateTime": "2026-07-14T21:32:38.996Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -3320,7 +3320,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 109 + "wait": 96 } }, { @@ -3457,14 +3457,14 @@ "value": "" } ], - "headersSize": 759, + "headersSize": 784, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.770Z", - "time": 80, + "startedDateTime": "2026-07-14T21:32:39.096Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -3472,7 +3472,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 80 + "wait": 76 } }, { @@ -3604,14 +3604,14 @@ "value": "" } ], - "headersSize": 758, + "headersSize": 783, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 404, "statusText": "Not Found" }, - "startedDateTime": "2026-07-13T17:00:02.853Z", - "time": 90, + "startedDateTime": "2026-07-14T21:32:39.177Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -3619,7 +3619,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 71 } }, { @@ -3712,14 +3712,14 @@ "value": "chunked" } ], - "headersSize": 258, + "headersSize": 283, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.374Z", - "time": 48, + "startedDateTime": "2026-07-14T21:32:39.599Z", + "time": 60, "timings": { "blocked": -1, "connect": -1, @@ -3727,7 +3727,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 48 + "wait": 60 } }, { @@ -3863,14 +3863,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.425Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:39.667Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -3878,7 +3878,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 79 } }, { @@ -4015,14 +4015,14 @@ "value": "" } ], - "headersSize": 758, + "headersSize": 783, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.426Z", - "time": 84, + "startedDateTime": "2026-07-14T21:32:39.668Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -4030,7 +4030,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 81 } }, { @@ -4166,14 +4166,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.426Z", - "time": 217, + "startedDateTime": "2026-07-14T21:32:39.669Z", + "time": 147, "timings": { "blocked": -1, "connect": -1, @@ -4181,7 +4181,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 217 + "wait": 147 } }, { @@ -4324,8 +4324,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.427Z", - "time": 220, + "startedDateTime": "2026-07-14T21:32:39.671Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -4333,7 +4333,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 220 + "wait": 150 } }, { @@ -4476,8 +4476,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.942Z", - "time": 204, + "startedDateTime": "2026-07-14T21:32:40.124Z", + "time": 168, "timings": { "blocked": -1, "connect": -1, @@ -4485,7 +4485,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 204 + "wait": 168 } }, { @@ -4624,8 +4624,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:04.150Z", - "time": 207, + "startedDateTime": "2026-07-14T21:32:40.298Z", + "time": 109, "timings": { "blocked": -1, "connect": -1, @@ -4633,7 +4633,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 207 + "wait": 109 } }, { @@ -4771,8 +4771,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:04.377Z", - "time": 78, + "startedDateTime": "2026-07-14T21:32:40.413Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -4780,11 +4780,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 78 + "wait": 71 } }, { - "_id": "6a34688ad6e97421ce5b6a2499093807", + "_id": "b24370e4ad5f88ea8ed82dca908ff6cb", "_order": 0, "cache": {}, "request": { @@ -4824,18 +4824,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2057, + "headersSize": 2048, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/AgentDataStoreDecisionNode/1.0/6736a00a-fc65-438e-b4ea-23f66b4a8739" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ZeroPageLoginNode/1.0/51e2cd24-cf1f-4313-8af0-35ea9e04d2fe" }, "response": { - "bodySize": 265, + "bodySize": 401, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 265, - "text": "{\"_id\":\"6736a00a-fc65-438e-b4ea-23f66b4a8739\",\"_rev\":\"350116613\",\"_type\":{\"_id\":\"AgentDataStoreDecisionNode\",\"name\":\"Agent Data Store Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" + "size": 401, + "text": "{\"_id\":\"51e2cd24-cf1f-4313-8af0-35ea9e04d2fe\",\"_rev\":\"2087906987\",\"passwordHeader\":\"X-OpenAM-Password\",\"referrerWhiteList\":[],\"allowWithoutReferer\":true,\"usernameHeader\":\"X-OpenAM-Username\",\"_type\":{\"_id\":\"ZeroPageLoginNode\",\"name\":\"Zero Page Login Collector\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"Has Credentials\"},{\"id\":\"false\",\"displayName\":\"No Credentials\"}]}" }, "cookies": [], "headers": [ @@ -4889,7 +4889,7 @@ }, { "name": "content-length", - "value": "265" + "value": "401" }, { "name": "date", @@ -4916,14 +4916,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:04.459Z", - "time": 119, + "startedDateTime": "2026-07-14T21:32:40.490Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -4931,11 +4931,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 82 } }, { - "_id": "b24370e4ad5f88ea8ed82dca908ff6cb", + "_id": "6a34688ad6e97421ce5b6a2499093807", "_order": 0, "cache": {}, "request": { @@ -4975,18 +4975,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2048, + "headersSize": 2057, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ZeroPageLoginNode/1.0/51e2cd24-cf1f-4313-8af0-35ea9e04d2fe" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/AgentDataStoreDecisionNode/1.0/6736a00a-fc65-438e-b4ea-23f66b4a8739" }, "response": { - "bodySize": 401, + "bodySize": 265, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 401, - "text": "{\"_id\":\"51e2cd24-cf1f-4313-8af0-35ea9e04d2fe\",\"_rev\":\"2087906987\",\"passwordHeader\":\"X-OpenAM-Password\",\"referrerWhiteList\":[],\"allowWithoutReferer\":true,\"usernameHeader\":\"X-OpenAM-Username\",\"_type\":{\"_id\":\"ZeroPageLoginNode\",\"name\":\"Zero Page Login Collector\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"Has Credentials\"},{\"id\":\"false\",\"displayName\":\"No Credentials\"}]}" + "size": 265, + "text": "{\"_id\":\"6736a00a-fc65-438e-b4ea-23f66b4a8739\",\"_rev\":\"350116613\",\"_type\":{\"_id\":\"AgentDataStoreDecisionNode\",\"name\":\"Agent Data Store Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" }, "cookies": [], "headers": [ @@ -5040,7 +5040,7 @@ }, { "name": "content-length", - "value": "401" + "value": "265" }, { "name": "date", @@ -5067,14 +5067,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:04.459Z", - "time": 123, + "startedDateTime": "2026-07-14T21:32:40.491Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -5082,7 +5082,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 76 } }, { @@ -5218,14 +5218,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:04.459Z", - "time": 464, + "startedDateTime": "2026-07-14T21:32:40.492Z", + "time": 155, "timings": { "blocked": -1, "connect": -1, @@ -5233,7 +5233,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 464 + "wait": 155 } }, { @@ -5369,14 +5369,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:04.925Z", - "time": 182, + "startedDateTime": "2026-07-14T21:32:40.652Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -5384,7 +5384,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 182 + "wait": 105 } }, { @@ -5526,8 +5526,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:04.926Z", - "time": 212, + "startedDateTime": "2026-07-14T21:32:40.653Z", + "time": 135, "timings": { "blocked": -1, "connect": -1, @@ -5535,7 +5535,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 212 + "wait": 135 } }, { @@ -5673,8 +5673,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.142Z", - "time": 76, + "startedDateTime": "2026-07-14T21:32:40.794Z", + "time": 106, "timings": { "blocked": -1, "connect": -1, @@ -5682,7 +5682,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 76 + "wait": 106 } }, { @@ -5824,8 +5824,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.222Z", - "time": 112, + "startedDateTime": "2026-07-14T21:32:40.904Z", + "time": 779, "timings": { "blocked": -1, "connect": -1, @@ -5833,7 +5833,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 779 } }, { @@ -5969,14 +5969,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.222Z", - "time": 306, + "startedDateTime": "2026-07-14T21:32:40.905Z", + "time": 163, "timings": { "blocked": -1, "connect": -1, @@ -5984,7 +5984,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 306 + "wait": 163 } }, { @@ -6126,8 +6126,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.223Z", - "time": 151, + "startedDateTime": "2026-07-14T21:32:40.906Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -6135,7 +6135,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 151 + "wait": 94 } }, { @@ -6271,14 +6271,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.223Z", - "time": 196, + "startedDateTime": "2026-07-14T21:32:40.907Z", + "time": 497, "timings": { "blocked": -1, "connect": -1, @@ -6286,7 +6286,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 196 + "wait": 497 } }, { @@ -6428,8 +6428,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.530Z", - "time": 184, + "startedDateTime": "2026-07-14T21:32:41.688Z", + "time": 387, "timings": { "blocked": -1, "connect": -1, @@ -6437,7 +6437,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 184 + "wait": 387 } }, { @@ -6575,8 +6575,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.718Z", - "time": 77, + "startedDateTime": "2026-07-14T21:32:42.081Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -6584,11 +6584,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 77 + "wait": 73 } }, { - "_id": "30db528ea41dcdc7c60acbec4b2f70a2", + "_id": "eacb767439d07c2f36ca40041567d774", "_order": 0, "cache": {}, "request": { @@ -6632,14 +6632,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/731c5810-020b-45c8-a7fc-3c21903ae2b3" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/278bf084-9eea-46fe-8ce9-2600dde3b046" }, "response": { - "bodySize": 589, + "bodySize": 716, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 589, - "text": "{\"_id\":\"731c5810-020b-45c8-a7fc-3c21903ae2b3\",\"_rev\":\"-117216928\",\"nodes\":[{\"_id\":\"dd16c8d4-baca-4ae0-bcd8-fb98b9040524\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Password\"},{\"_id\":\"038f9b2a-36b2-489b-9e03-386c9a62ea21\",\"nodeType\":\"SelectIdPNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Select IDP\"}],\"pageDescription\":{},\"pageHeader\":{},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"socialAuthentication\",\"displayName\":\"Social Authentication\"},{\"id\":\"localAuthentication\",\"displayName\":\"Local Authentication\"}]}" + "size": 716, + "text": "{\"_id\":\"278bf084-9eea-46fe-8ce9-2600dde3b046\",\"_rev\":\"-897353993\",\"nodes\":[{\"_id\":\"7a351800-fb7e-4145-903c-388554747556\",\"nodeType\":\"ValidatedUsernameNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Username\"},{\"_id\":\"804e6a68-1720-442b-926a-007e90f02782\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Password\"},{\"_id\":\"228a44d5-fd78-4278-8999-fdd470ea7ebf\",\"nodeType\":\"SelectIdPNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Select IDP\"}],\"pageDescription\":{},\"pageHeader\":{},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"socialAuthentication\",\"displayName\":\"Social Authentication\"},{\"id\":\"localAuthentication\",\"displayName\":\"Local Authentication\"}]}" }, "cookies": [], "headers": [ @@ -6693,7 +6693,7 @@ }, { "name": "content-length", - "value": "589" + "value": "716" }, { "name": "date", @@ -6720,14 +6720,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.799Z", - "time": 122, + "startedDateTime": "2026-07-14T21:32:42.167Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -6735,11 +6735,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 122 + "wait": 77 } }, { - "_id": "eacb767439d07c2f36ca40041567d774", + "_id": "c8b657c4e009cfb8709aaca7967e038e", "_order": 0, "cache": {}, "request": { @@ -6779,18 +6779,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2039, + "headersSize": 2048, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/278bf084-9eea-46fe-8ce9-2600dde3b046" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/product-Saml2Node/1.0/64157fca-bd5b-4405-a4c8-64ffd98a5461" }, "response": { - "bodySize": 716, + "bodySize": 694, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 716, - "text": "{\"_id\":\"278bf084-9eea-46fe-8ce9-2600dde3b046\",\"_rev\":\"-897353993\",\"nodes\":[{\"_id\":\"7a351800-fb7e-4145-903c-388554747556\",\"nodeType\":\"ValidatedUsernameNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Username\"},{\"_id\":\"804e6a68-1720-442b-926a-007e90f02782\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Password\"},{\"_id\":\"228a44d5-fd78-4278-8999-fdd470ea7ebf\",\"nodeType\":\"SelectIdPNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Select IDP\"}],\"pageDescription\":{},\"pageHeader\":{},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"socialAuthentication\",\"displayName\":\"Social Authentication\"},{\"id\":\"localAuthentication\",\"displayName\":\"Local Authentication\"}]}" + "size": 694, + "text": "{\"_id\":\"64157fca-bd5b-4405-a4c8-64ffd98a5461\",\"_rev\":\"-1299087016\",\"metaAlias\":\"/alpha/iSPAzure\",\"allowCreate\":true,\"authnContextClassRef\":[],\"authnContextDeclRef\":[],\"authComparison\":\"MINIMUM\",\"nameIdFormat\":\"urn:oasis:names:tc:SAML:2.0:nameid-format:persistent\",\"requestBinding\":\"HTTP_REDIRECT\",\"binding\":\"HTTP_ARTIFACT\",\"forceAuthn\":false,\"idpEntityId\":\"urn:federation:MicrosoftOnline\",\"isPassive\":false,\"validateIdpEntityId\":true,\"_type\":{\"_id\":\"product-Saml2Node\",\"name\":\"SAML2 Authentication\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"ACCOUNT_EXISTS\",\"displayName\":\"Account exists\"},{\"id\":\"NO_ACCOUNT\",\"displayName\":\"No account exists\"},{\"id\":\"ERROR\",\"displayName\":\"Error\"}]}" }, "cookies": [], "headers": [ @@ -6844,7 +6844,7 @@ }, { "name": "content-length", - "value": "716" + "value": "694" }, { "name": "date", @@ -6871,14 +6871,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.799Z", - "time": 122, + "startedDateTime": "2026-07-14T21:32:42.168Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -6886,11 +6886,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 122 + "wait": 85 } }, { - "_id": "c8b657c4e009cfb8709aaca7967e038e", + "_id": "30db528ea41dcdc7c60acbec4b2f70a2", "_order": 0, "cache": {}, "request": { @@ -6930,18 +6930,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2048, + "headersSize": 2039, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/product-Saml2Node/1.0/64157fca-bd5b-4405-a4c8-64ffd98a5461" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/731c5810-020b-45c8-a7fc-3c21903ae2b3" }, "response": { - "bodySize": 694, + "bodySize": 589, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 694, - "text": "{\"_id\":\"64157fca-bd5b-4405-a4c8-64ffd98a5461\",\"_rev\":\"-1299087016\",\"metaAlias\":\"/alpha/iSPAzure\",\"allowCreate\":true,\"authnContextClassRef\":[],\"authnContextDeclRef\":[],\"authComparison\":\"MINIMUM\",\"nameIdFormat\":\"urn:oasis:names:tc:SAML:2.0:nameid-format:persistent\",\"requestBinding\":\"HTTP_REDIRECT\",\"binding\":\"HTTP_ARTIFACT\",\"forceAuthn\":false,\"idpEntityId\":\"urn:federation:MicrosoftOnline\",\"isPassive\":false,\"validateIdpEntityId\":true,\"_type\":{\"_id\":\"product-Saml2Node\",\"name\":\"SAML2 Authentication\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"ACCOUNT_EXISTS\",\"displayName\":\"Account exists\"},{\"id\":\"NO_ACCOUNT\",\"displayName\":\"No account exists\"},{\"id\":\"ERROR\",\"displayName\":\"Error\"}]}" + "size": 589, + "text": "{\"_id\":\"731c5810-020b-45c8-a7fc-3c21903ae2b3\",\"_rev\":\"-117216928\",\"nodes\":[{\"_id\":\"dd16c8d4-baca-4ae0-bcd8-fb98b9040524\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Password\"},{\"_id\":\"038f9b2a-36b2-489b-9e03-386c9a62ea21\",\"nodeType\":\"SelectIdPNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Select IDP\"}],\"pageDescription\":{},\"pageHeader\":{},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"socialAuthentication\",\"displayName\":\"Social Authentication\"},{\"id\":\"localAuthentication\",\"displayName\":\"Local Authentication\"}]}" }, "cookies": [], "headers": [ @@ -6995,7 +6995,7 @@ }, { "name": "content-length", - "value": "694" + "value": "589" }, { "name": "date", @@ -7022,14 +7022,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.799Z", - "time": 209, + "startedDateTime": "2026-07-14T21:32:42.169Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -7037,7 +7037,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 209 + "wait": 74 } }, { @@ -7179,8 +7179,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.800Z", - "time": 135, + "startedDateTime": "2026-07-14T21:32:42.170Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -7188,7 +7188,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 135 + "wait": 81 } }, { @@ -7324,14 +7324,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.800Z", - "time": 223, + "startedDateTime": "2026-07-14T21:32:42.171Z", + "time": 166, "timings": { "blocked": -1, "connect": -1, @@ -7339,11 +7339,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 223 + "wait": 166 } }, { - "_id": "b5ed981147f64faccb7a0ac09f8bf1e5", + "_id": "f694f4a0162be9f94ee33a63869988d2", "_order": 0, "cache": {}, "request": { @@ -7383,18 +7383,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2056, + "headersSize": 2051, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/IdentityStoreDecisionNode/1.0/fc7e47cd-c679-4211-8e05-a36654f23c67" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/e2c39477-847a-4df2-9c5d-b449a752638b" }, "response": { - "bodySize": 490, + "bodySize": 368, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 490, - "text": "{\"_id\":\"fc7e47cd-c679-4211-8e05-a36654f23c67\",\"_rev\":\"-960733200\",\"useUniversalIdForUsername\":true,\"minimumPasswordLength\":8,\"mixedCaseForPasswordChangeMessages\":false,\"_type\":{\"_id\":\"IdentityStoreDecisionNode\",\"name\":\"Identity Store Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"TRUE\",\"displayName\":\"True\"},{\"id\":\"FALSE\",\"displayName\":\"False\"},{\"id\":\"LOCKED\",\"displayName\":\"Locked\"},{\"id\":\"CANCELLED\",\"displayName\":\"Cancelled\"},{\"id\":\"EXPIRED\",\"displayName\":\"Expired\"}]}" + "size": 368, + "text": "{\"_id\":\"e2c39477-847a-4df2-9c5d-b449a752638b\",\"_rev\":\"-109913998\",\"script\":\"739bdc48-fd24-4c52-b353-88706d75558a\",\"outcomes\":[\"known\",\"unknown\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"known\",\"displayName\":\"known\"},{\"id\":\"unknown\",\"displayName\":\"unknown\"}]}" }, "cookies": [], "headers": [ @@ -7448,7 +7448,7 @@ }, { "name": "content-length", - "value": "490" + "value": "368" }, { "name": "date", @@ -7481,8 +7481,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.801Z", - "time": 286, + "startedDateTime": "2026-07-14T21:32:42.173Z", + "time": 552, "timings": { "blocked": -1, "connect": -1, @@ -7490,11 +7490,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 286 + "wait": 552 } }, { - "_id": "f694f4a0162be9f94ee33a63869988d2", + "_id": "b5ed981147f64faccb7a0ac09f8bf1e5", "_order": 0, "cache": {}, "request": { @@ -7534,18 +7534,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2051, + "headersSize": 2056, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/e2c39477-847a-4df2-9c5d-b449a752638b" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/IdentityStoreDecisionNode/1.0/fc7e47cd-c679-4211-8e05-a36654f23c67" }, "response": { - "bodySize": 368, + "bodySize": 490, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 368, - "text": "{\"_id\":\"e2c39477-847a-4df2-9c5d-b449a752638b\",\"_rev\":\"-109913998\",\"script\":\"739bdc48-fd24-4c52-b353-88706d75558a\",\"outcomes\":[\"known\",\"unknown\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"known\",\"displayName\":\"known\"},{\"id\":\"unknown\",\"displayName\":\"unknown\"}]}" + "size": 490, + "text": "{\"_id\":\"fc7e47cd-c679-4211-8e05-a36654f23c67\",\"_rev\":\"-960733200\",\"useUniversalIdForUsername\":true,\"minimumPasswordLength\":8,\"mixedCaseForPasswordChangeMessages\":false,\"_type\":{\"_id\":\"IdentityStoreDecisionNode\",\"name\":\"Identity Store Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"TRUE\",\"displayName\":\"True\"},{\"id\":\"FALSE\",\"displayName\":\"False\"},{\"id\":\"LOCKED\",\"displayName\":\"Locked\"},{\"id\":\"CANCELLED\",\"displayName\":\"Cancelled\"},{\"id\":\"EXPIRED\",\"displayName\":\"Expired\"}]}" }, "cookies": [], "headers": [ @@ -7599,7 +7599,7 @@ }, { "name": "content-length", - "value": "368" + "value": "490" }, { "name": "date", @@ -7626,14 +7626,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:05.801Z", - "time": 1213, + "startedDateTime": "2026-07-14T21:32:42.174Z", + "time": 178, "timings": { "blocked": -1, "connect": -1, @@ -7641,7 +7641,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1213 + "wait": 178 } }, { @@ -7777,14 +7777,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.021Z", - "time": 99, + "startedDateTime": "2026-07-14T21:32:42.732Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -7792,7 +7792,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 99 + "wait": 92 } }, { @@ -7934,8 +7934,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.023Z", - "time": 96, + "startedDateTime": "2026-07-14T21:32:42.733Z", + "time": 127, "timings": { "blocked": -1, "connect": -1, @@ -7943,7 +7943,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 127 } }, { @@ -8079,14 +8079,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.024Z", - "time": 124, + "startedDateTime": "2026-07-14T21:32:42.735Z", + "time": 141, "timings": { "blocked": -1, "connect": -1, @@ -8094,7 +8094,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 124 + "wait": 141 } }, { @@ -8236,8 +8236,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.026Z", - "time": 93, + "startedDateTime": "2026-07-14T21:32:42.736Z", + "time": 127, "timings": { "blocked": -1, "connect": -1, @@ -8245,7 +8245,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 127 } }, { @@ -8387,8 +8387,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.028Z", - "time": 115, + "startedDateTime": "2026-07-14T21:32:42.737Z", + "time": 142, "timings": { "blocked": -1, "connect": -1, @@ -8396,7 +8396,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 115 + "wait": 142 } }, { @@ -8534,8 +8534,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.151Z", - "time": 80, + "startedDateTime": "2026-07-14T21:32:42.883Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -8543,7 +8543,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 80 + "wait": 81 } }, { @@ -8685,8 +8685,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.237Z", - "time": 123, + "startedDateTime": "2026-07-14T21:32:42.969Z", + "time": 113, "timings": { "blocked": -1, "connect": -1, @@ -8694,7 +8694,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 113 } }, { @@ -8830,14 +8830,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.238Z", - "time": 157, + "startedDateTime": "2026-07-14T21:32:42.970Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -8845,7 +8845,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 157 + "wait": 146 } }, { @@ -8981,14 +8981,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.404Z", - "time": 94, + "startedDateTime": "2026-07-14T21:32:43.123Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -8996,7 +8996,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 94 + "wait": 150 } }, { @@ -9138,8 +9138,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.406Z", - "time": 76, + "startedDateTime": "2026-07-14T21:32:43.124Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -9147,7 +9147,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 76 + "wait": 150 } }, { @@ -9285,8 +9285,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.502Z", - "time": 77, + "startedDateTime": "2026-07-14T21:32:43.279Z", + "time": 175, "timings": { "blocked": -1, "connect": -1, @@ -9294,7 +9294,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 77 + "wait": 175 } }, { @@ -9436,8 +9436,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.585Z", - "time": 103, + "startedDateTime": "2026-07-14T21:32:43.459Z", + "time": 190, "timings": { "blocked": -1, "connect": -1, @@ -9445,7 +9445,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 103 + "wait": 190 } }, { @@ -9581,14 +9581,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.587Z", - "time": 101, + "startedDateTime": "2026-07-14T21:32:43.460Z", + "time": 176, "timings": { "blocked": -1, "connect": -1, @@ -9596,7 +9596,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 176 } }, { @@ -9738,8 +9738,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.588Z", - "time": 105, + "startedDateTime": "2026-07-14T21:32:43.461Z", + "time": 190, "timings": { "blocked": -1, "connect": -1, @@ -9747,11 +9747,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 105 + "wait": 190 } }, { - "_id": "a4dd5f455e2c5a51290a8d862b85b7f1", + "_id": "89af8f81ccb29474b992f01ea4f66409", "_order": 0, "cache": {}, "request": { @@ -9795,14 +9795,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/513a2ab4-f0b8-4f94-b840-6fe14796cc84" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/ba503a1e-633e-4d0d-ba18-c9a9b1105b5b" }, "response": { - "bodySize": 543, + "bodySize": 314, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 543, - "text": "{\"_id\":\"513a2ab4-f0b8-4f94-b840-6fe14796cc84\",\"_rev\":\"67180736\",\"script\":\"5bbdaeff-ddee-44b9-b608-8d413d7d65a6\",\"outcomes\":[\"shared and level\",\"shared only\",\"level only\",\"none\"],\"outputs\":[\"*\",\"mode\",\"level\"],\"inputs\":[\"*\",\"mode\",\"level\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"shared and level\",\"displayName\":\"shared and level\"},{\"id\":\"shared only\",\"displayName\":\"shared only\"},{\"id\":\"level only\",\"displayName\":\"level only\"},{\"id\":\"none\",\"displayName\":\"none\"}]}" + "size": 314, + "text": "{\"_id\":\"ba503a1e-633e-4d0d-ba18-c9a9b1105b5b\",\"_rev\":\"1356158942\",\"script\":\"3cb43516-ae69-433a-8787-501d45db14e9\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" }, "cookies": [], "headers": [ @@ -9856,7 +9856,7 @@ }, { "name": "content-length", - "value": "543" + "value": "314" }, { "name": "date", @@ -9883,14 +9883,14 @@ "value": "" } ], - "headersSize": 777, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.589Z", - "time": 91, + "startedDateTime": "2026-07-14T21:32:43.462Z", + "time": 140, "timings": { "blocked": -1, "connect": -1, @@ -9898,11 +9898,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 140 } }, { - "_id": "89af8f81ccb29474b992f01ea4f66409", + "_id": "a4dd5f455e2c5a51290a8d862b85b7f1", "_order": 0, "cache": {}, "request": { @@ -9946,14 +9946,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/ba503a1e-633e-4d0d-ba18-c9a9b1105b5b" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/513a2ab4-f0b8-4f94-b840-6fe14796cc84" }, "response": { - "bodySize": 314, + "bodySize": 543, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 314, - "text": "{\"_id\":\"ba503a1e-633e-4d0d-ba18-c9a9b1105b5b\",\"_rev\":\"1356158942\",\"script\":\"3cb43516-ae69-433a-8787-501d45db14e9\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" + "size": 543, + "text": "{\"_id\":\"513a2ab4-f0b8-4f94-b840-6fe14796cc84\",\"_rev\":\"67180736\",\"script\":\"5bbdaeff-ddee-44b9-b608-8d413d7d65a6\",\"outcomes\":[\"shared and level\",\"shared only\",\"level only\",\"none\"],\"outputs\":[\"*\",\"mode\",\"level\"],\"inputs\":[\"*\",\"mode\",\"level\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"shared and level\",\"displayName\":\"shared and level\"},{\"id\":\"shared only\",\"displayName\":\"shared only\"},{\"id\":\"level only\",\"displayName\":\"level only\"},{\"id\":\"none\",\"displayName\":\"none\"}]}" }, "cookies": [], "headers": [ @@ -10007,7 +10007,7 @@ }, { "name": "content-length", - "value": "314" + "value": "543" }, { "name": "date", @@ -10034,14 +10034,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 777, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.591Z", - "time": 102, + "startedDateTime": "2026-07-14T21:32:43.462Z", + "time": 151, "timings": { "blocked": -1, "connect": -1, @@ -10049,7 +10049,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 151 } }, { @@ -10191,8 +10191,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.592Z", - "time": 88, + "startedDateTime": "2026-07-14T21:32:43.463Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -10200,7 +10200,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 88 + "wait": 117 } }, { @@ -10338,8 +10338,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.697Z", - "time": 74, + "startedDateTime": "2026-07-14T21:32:43.656Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -10347,7 +10347,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 74 + "wait": 77 } }, { @@ -10489,8 +10489,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.775Z", - "time": 96, + "startedDateTime": "2026-07-14T21:32:43.738Z", + "time": 109, "timings": { "blocked": -1, "connect": -1, @@ -10498,7 +10498,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 109 } }, { @@ -10634,14 +10634,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.777Z", - "time": 86, + "startedDateTime": "2026-07-14T21:32:43.739Z", + "time": 109, "timings": { "blocked": -1, "connect": -1, @@ -10649,7 +10649,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 109 } }, { @@ -10785,14 +10785,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.777Z", - "time": 97, + "startedDateTime": "2026-07-14T21:32:43.740Z", + "time": 113, "timings": { "blocked": -1, "connect": -1, @@ -10800,11 +10800,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 113 } }, { - "_id": "32e104a9616e53936c01ffad8e6b3343", + "_id": "2b968c9a71f5efc2ce71173073a8524b", "_order": 0, "cache": {}, "request": { @@ -10848,14 +10848,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/bdfbe97c-1ff4-4162-85bc-47f6f14b2c66" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/e92d5139-b8a6-43dc-9b13-95ba1d0dc53c" }, "response": { - "bodySize": 314, + "bodySize": 313, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 314, - "text": "{\"_id\":\"bdfbe97c-1ff4-4162-85bc-47f6f14b2c66\",\"_rev\":\"-554422920\",\"script\":\"41c24257-d7fc-4654-8b46-c2666dc5b56d\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" + "size": 313, + "text": "{\"_id\":\"e92d5139-b8a6-43dc-9b13-95ba1d0dc53c\",\"_rev\":\"674045277\",\"script\":\"41c24257-d7fc-4654-8b46-c2666dc5b56d\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" }, "cookies": [], "headers": [ @@ -10909,7 +10909,7 @@ }, { "name": "content-length", - "value": "314" + "value": "313" }, { "name": "date", @@ -10936,14 +10936,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.778Z", - "time": 90, + "startedDateTime": "2026-07-14T21:32:43.741Z", + "time": 87, "timings": { "blocked": -1, "connect": -1, @@ -10951,11 +10951,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 87 } }, { - "_id": "2b968c9a71f5efc2ce71173073a8524b", + "_id": "32e104a9616e53936c01ffad8e6b3343", "_order": 0, "cache": {}, "request": { @@ -10999,14 +10999,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/e92d5139-b8a6-43dc-9b13-95ba1d0dc53c" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/bdfbe97c-1ff4-4162-85bc-47f6f14b2c66" }, "response": { - "bodySize": 313, + "bodySize": 314, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 313, - "text": "{\"_id\":\"e92d5139-b8a6-43dc-9b13-95ba1d0dc53c\",\"_rev\":\"674045277\",\"script\":\"41c24257-d7fc-4654-8b46-c2666dc5b56d\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" + "size": 314, + "text": "{\"_id\":\"bdfbe97c-1ff4-4162-85bc-47f6f14b2c66\",\"_rev\":\"-554422920\",\"script\":\"41c24257-d7fc-4654-8b46-c2666dc5b56d\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" }, "cookies": [], "headers": [ @@ -11060,7 +11060,7 @@ }, { "name": "content-length", - "value": "313" + "value": "314" }, { "name": "date", @@ -11087,14 +11087,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.779Z", - "time": 88, + "startedDateTime": "2026-07-14T21:32:43.741Z", + "time": 108, "timings": { "blocked": -1, "connect": -1, @@ -11102,7 +11102,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 88 + "wait": 108 } }, { @@ -11244,8 +11244,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.781Z", - "time": 86, + "startedDateTime": "2026-07-14T21:32:43.742Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -11253,7 +11253,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 111 } }, { @@ -11385,14 +11385,14 @@ "value": "" } ], - "headersSize": 745, + "headersSize": 770, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.878Z", - "time": 78, + "startedDateTime": "2026-07-14T21:32:43.858Z", + "time": 84, "timings": { "blocked": -1, "connect": -1, @@ -11400,7 +11400,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 78 + "wait": 84 } }, { @@ -11536,14 +11536,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.966Z", - "time": 92, + "startedDateTime": "2026-07-14T21:32:43.950Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -11551,7 +11551,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 92 + "wait": 91 } }, { @@ -11687,14 +11687,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.967Z", - "time": 91, + "startedDateTime": "2026-07-14T21:32:43.951Z", + "time": 86, "timings": { "blocked": -1, "connect": -1, @@ -11702,7 +11702,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 86 } }, { @@ -11844,8 +11844,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.968Z", - "time": 86, + "startedDateTime": "2026-07-14T21:32:43.952Z", + "time": 88, "timings": { "blocked": -1, "connect": -1, @@ -11853,11 +11853,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 88 } }, { - "_id": "c5ac0ee2e5f3ec870ab9f21b41a36177", + "_id": "307f6c88d38e5f3178069198a77738df", "_order": 0, "cache": {}, "request": { @@ -11901,14 +11901,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/cbb3d506-b267-4b99-9edd-363e90aac997" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/59b06306-a886-443d-92df-7a27a60c394e" }, "response": { - "bodySize": 315, + "bodySize": 544, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 315, - "text": "{\"_id\":\"cbb3d506-b267-4b99-9edd-363e90aac997\",\"_rev\":\"-1612235951\",\"script\":\"1b52a7e0-4019-40fa-958a-15a49870e901\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" + "size": 544, + "text": "{\"_id\":\"59b06306-a886-443d-92df-7a27a60c394e\",\"_rev\":\"434784858\",\"script\":\"5bbdaeff-ddee-44b9-b608-8d413d7d65a6\",\"outcomes\":[\"shared and level\",\"shared only\",\"level only\",\"none\"],\"outputs\":[\"*\",\"mode\",\"level\"],\"inputs\":[\"*\",\"mode\",\"level\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"shared and level\",\"displayName\":\"shared and level\"},{\"id\":\"shared only\",\"displayName\":\"shared only\"},{\"id\":\"level only\",\"displayName\":\"level only\"},{\"id\":\"none\",\"displayName\":\"none\"}]}" }, "cookies": [], "headers": [ @@ -11962,7 +11962,7 @@ }, { "name": "content-length", - "value": "315" + "value": "544" }, { "name": "date", @@ -11989,14 +11989,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.969Z", - "time": 82, + "startedDateTime": "2026-07-14T21:32:43.953Z", + "time": 86, "timings": { "blocked": -1, "connect": -1, @@ -12004,11 +12004,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 82 + "wait": 86 } }, { - "_id": "307f6c88d38e5f3178069198a77738df", + "_id": "c5ac0ee2e5f3ec870ab9f21b41a36177", "_order": 0, "cache": {}, "request": { @@ -12052,14 +12052,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/59b06306-a886-443d-92df-7a27a60c394e" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/cbb3d506-b267-4b99-9edd-363e90aac997" }, "response": { - "bodySize": 544, + "bodySize": 315, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 544, - "text": "{\"_id\":\"59b06306-a886-443d-92df-7a27a60c394e\",\"_rev\":\"434784858\",\"script\":\"5bbdaeff-ddee-44b9-b608-8d413d7d65a6\",\"outcomes\":[\"shared and level\",\"shared only\",\"level only\",\"none\"],\"outputs\":[\"*\",\"mode\",\"level\"],\"inputs\":[\"*\",\"mode\",\"level\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"shared and level\",\"displayName\":\"shared and level\"},{\"id\":\"shared only\",\"displayName\":\"shared only\"},{\"id\":\"level only\",\"displayName\":\"level only\"},{\"id\":\"none\",\"displayName\":\"none\"}]}" + "size": 315, + "text": "{\"_id\":\"cbb3d506-b267-4b99-9edd-363e90aac997\",\"_rev\":\"-1612235951\",\"script\":\"1b52a7e0-4019-40fa-958a-15a49870e901\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" }, "cookies": [], "headers": [ @@ -12113,7 +12113,7 @@ }, { "name": "content-length", - "value": "544" + "value": "315" }, { "name": "date", @@ -12140,14 +12140,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.969Z", - "time": 82, + "startedDateTime": "2026-07-14T21:32:43.954Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -12155,7 +12155,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 82 + "wait": 85 } }, { @@ -12291,14 +12291,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:07.970Z", - "time": 84, + "startedDateTime": "2026-07-14T21:32:43.955Z", + "time": 83, "timings": { "blocked": -1, "connect": -1, @@ -12306,7 +12306,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 83 } }, { @@ -12444,8 +12444,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.062Z", - "time": 74, + "startedDateTime": "2026-07-14T21:32:44.047Z", + "time": 69, "timings": { "blocked": -1, "connect": -1, @@ -12453,7 +12453,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 74 + "wait": 69 } }, { @@ -12589,14 +12589,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.143Z", - "time": 87, + "startedDateTime": "2026-07-14T21:32:44.124Z", + "time": 137, "timings": { "blocked": -1, "connect": -1, @@ -12604,7 +12604,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 87 + "wait": 137 } }, { @@ -12746,8 +12746,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.145Z", - "time": 91, + "startedDateTime": "2026-07-14T21:32:44.128Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -12755,7 +12755,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 93 } }, { @@ -12891,14 +12891,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.147Z", - "time": 89, + "startedDateTime": "2026-07-14T21:32:44.130Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -12906,7 +12906,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 105 } }, { @@ -13042,14 +13042,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.148Z", - "time": 88, + "startedDateTime": "2026-07-14T21:32:44.132Z", + "time": 130, "timings": { "blocked": -1, "connect": -1, @@ -13057,7 +13057,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 88 + "wait": 130 } }, { @@ -13199,8 +13199,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.150Z", - "time": 86, + "startedDateTime": "2026-07-14T21:32:44.133Z", + "time": 87, "timings": { "blocked": -1, "connect": -1, @@ -13208,7 +13208,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 87 } }, { @@ -13350,8 +13350,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.151Z", - "time": 87, + "startedDateTime": "2026-07-14T21:32:44.134Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -13359,7 +13359,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 87 + "wait": 82 } }, { @@ -13491,14 +13491,14 @@ "value": "" } ], - "headersSize": 744, + "headersSize": 769, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.242Z", - "time": 81, + "startedDateTime": "2026-07-14T21:32:44.268Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -13506,7 +13506,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 81 + "wait": 73 } }, { @@ -13642,14 +13642,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.329Z", - "time": 90, + "startedDateTime": "2026-07-14T21:32:44.348Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -13657,7 +13657,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 79 } }, { @@ -13793,14 +13793,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.331Z", - "time": 87, + "startedDateTime": "2026-07-14T21:32:44.349Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -13808,7 +13808,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 87 + "wait": 78 } }, { @@ -13944,14 +13944,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.332Z", - "time": 90, + "startedDateTime": "2026-07-14T21:32:44.351Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -13959,7 +13959,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 75 } }, { @@ -14095,14 +14095,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.333Z", - "time": 90, + "startedDateTime": "2026-07-14T21:32:44.352Z", + "time": 72, "timings": { "blocked": -1, "connect": -1, @@ -14110,11 +14110,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 72 } }, { - "_id": "490fa616bb66da9caf5f7fa6b9bce5f2", + "_id": "9addb9bd9666461b19dc338871fbe52e", "_order": 0, "cache": {}, "request": { @@ -14158,14 +14158,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/d10104e9-1f8d-4da6-a110-28d879d13959" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/f5c317ce-fabd-4a10-9907-c71cea037844" }, "response": { - "bodySize": 313, + "bodySize": 315, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 313, - "text": "{\"_id\":\"d10104e9-1f8d-4da6-a110-28d879d13959\",\"_rev\":\"165353347\",\"script\":\"41c24257-d7fc-4654-8b46-c2666dc5b56d\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" + "size": 315, + "text": "{\"_id\":\"f5c317ce-fabd-4a10-9907-c71cea037844\",\"_rev\":\"-2113102850\",\"script\":\"1b52a7e0-4019-40fa-958a-15a49870e901\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" }, "cookies": [], "headers": [ @@ -14219,7 +14219,7 @@ }, { "name": "content-length", - "value": "313" + "value": "315" }, { "name": "date", @@ -14246,14 +14246,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.335Z", - "time": 83, + "startedDateTime": "2026-07-14T21:32:44.353Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -14261,11 +14261,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 83 + "wait": 73 } }, { - "_id": "9addb9bd9666461b19dc338871fbe52e", + "_id": "490fa616bb66da9caf5f7fa6b9bce5f2", "_order": 0, "cache": {}, "request": { @@ -14309,14 +14309,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/f5c317ce-fabd-4a10-9907-c71cea037844" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/d10104e9-1f8d-4da6-a110-28d879d13959" }, "response": { - "bodySize": 315, + "bodySize": 313, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 315, - "text": "{\"_id\":\"f5c317ce-fabd-4a10-9907-c71cea037844\",\"_rev\":\"-2113102850\",\"script\":\"1b52a7e0-4019-40fa-958a-15a49870e901\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" + "size": 313, + "text": "{\"_id\":\"d10104e9-1f8d-4da6-a110-28d879d13959\",\"_rev\":\"165353347\",\"script\":\"41c24257-d7fc-4654-8b46-c2666dc5b56d\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" }, "cookies": [], "headers": [ @@ -14370,7 +14370,7 @@ }, { "name": "content-length", - "value": "315" + "value": "313" }, { "name": "date", @@ -14397,14 +14397,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.336Z", - "time": 86, + "startedDateTime": "2026-07-14T21:32:44.353Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -14412,7 +14412,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 82 } }, { @@ -14550,8 +14550,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.426Z", - "time": 68, + "startedDateTime": "2026-07-14T21:32:44.440Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -14559,7 +14559,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 68 + "wait": 91 } }, { @@ -14701,8 +14701,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.500Z", - "time": 97, + "startedDateTime": "2026-07-14T21:32:44.539Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -14710,7 +14710,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 78 } }, { @@ -14846,14 +14846,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.502Z", - "time": 95, + "startedDateTime": "2026-07-14T21:32:44.540Z", + "time": 115, "timings": { "blocked": -1, "connect": -1, @@ -14861,7 +14861,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 115 } }, { @@ -15003,7 +15003,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.503Z", + "startedDateTime": "2026-07-14T21:32:44.542Z", "time": 94, "timings": { "blocked": -1, @@ -15154,8 +15154,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.505Z", - "time": 91, + "startedDateTime": "2026-07-14T21:32:44.542Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -15163,7 +15163,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 105 } }, { @@ -15305,8 +15305,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.506Z", - "time": 85, + "startedDateTime": "2026-07-14T21:32:44.543Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -15314,7 +15314,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 85 + "wait": 73 } }, { @@ -15456,8 +15456,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.507Z", - "time": 84, + "startedDateTime": "2026-07-14T21:32:44.544Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -15465,7 +15465,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 91 } }, { @@ -15603,8 +15603,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.601Z", - "time": 74, + "startedDateTime": "2026-07-14T21:32:44.662Z", + "time": 70, "timings": { "blocked": -1, "connect": -1, @@ -15612,7 +15612,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 74 + "wait": 70 } }, { @@ -15748,14 +15748,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.684Z", - "time": 94, + "startedDateTime": "2026-07-14T21:32:44.742Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -15763,7 +15763,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 94 + "wait": 100 } }, { @@ -15899,14 +15899,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.685Z", - "time": 93, + "startedDateTime": "2026-07-14T21:32:44.745Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -15914,7 +15914,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 76 } }, { @@ -16050,14 +16050,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.687Z", - "time": 90, + "startedDateTime": "2026-07-14T21:32:44.746Z", + "time": 87, "timings": { "blocked": -1, "connect": -1, @@ -16065,7 +16065,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 87 } }, { @@ -16201,13 +16201,13 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.688Z", + "startedDateTime": "2026-07-14T21:32:44.747Z", "time": 91, "timings": { "blocked": -1, @@ -16358,8 +16358,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.690Z", - "time": 89, + "startedDateTime": "2026-07-14T21:32:44.748Z", + "time": 121, "timings": { "blocked": -1, "connect": -1, @@ -16367,7 +16367,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 121 } }, { @@ -16503,14 +16503,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.691Z", - "time": 85, + "startedDateTime": "2026-07-14T21:32:44.749Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -16518,7 +16518,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 85 + "wait": 74 } }, { @@ -16656,8 +16656,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.785Z", - "time": 79, + "startedDateTime": "2026-07-14T21:32:44.875Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -16665,7 +16665,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 79 + "wait": 82 } }, { @@ -16807,8 +16807,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.871Z", - "time": 100, + "startedDateTime": "2026-07-14T21:32:44.965Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -16816,7 +16816,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 78 } }, { @@ -16952,14 +16952,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.874Z", - "time": 90, + "startedDateTime": "2026-07-14T21:32:44.966Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -16967,7 +16967,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 78 } }, { @@ -17103,14 +17103,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.876Z", - "time": 88, + "startedDateTime": "2026-07-14T21:32:44.968Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -17118,7 +17118,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 88 + "wait": 76 } }, { @@ -17260,8 +17260,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.877Z", - "time": 86, + "startedDateTime": "2026-07-14T21:32:44.968Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -17269,7 +17269,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 76 } }, { @@ -17411,8 +17411,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.878Z", - "time": 89, + "startedDateTime": "2026-07-14T21:32:44.969Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -17420,7 +17420,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 76 } }, { @@ -17556,14 +17556,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.879Z", - "time": 92, + "startedDateTime": "2026-07-14T21:32:44.970Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -17571,7 +17571,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 92 + "wait": 74 } }, { @@ -17709,7 +17709,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:08.975Z", + "startedDateTime": "2026-07-14T21:32:45.050Z", "time": 72, "timings": { "blocked": -1, @@ -17860,8 +17860,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.054Z", - "time": 124, + "startedDateTime": "2026-07-14T21:32:45.129Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -17869,7 +17869,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 124 + "wait": 80 } }, { @@ -18005,14 +18005,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.058Z", - "time": 108, + "startedDateTime": "2026-07-14T21:32:45.130Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -18020,7 +18020,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 80 } }, { @@ -18156,14 +18156,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.060Z", - "time": 114, + "startedDateTime": "2026-07-14T21:32:45.132Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -18171,7 +18171,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 114 + "wait": 76 } }, { @@ -18307,14 +18307,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.061Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:45.133Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -18322,11 +18322,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 78 } }, { - "_id": "360840395d524be521d3e3f57f9b7d60", + "_id": "a6721fa7502dc4ec6f2ff865fded8437", "_order": 0, "cache": {}, "request": { @@ -18370,14 +18370,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/d429b2b5-b215-46a5-b239-4994df65cb8b" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/948e21f4-c512-450a-9d42-e0d629217834" }, "response": { - "bodySize": 543, + "bodySize": 314, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 543, - "text": "{\"_id\":\"d429b2b5-b215-46a5-b239-4994df65cb8b\",\"_rev\":\"30374950\",\"script\":\"5bbdaeff-ddee-44b9-b608-8d413d7d65a6\",\"outcomes\":[\"shared and level\",\"shared only\",\"level only\",\"none\"],\"outputs\":[\"*\",\"mode\",\"level\"],\"inputs\":[\"*\",\"mode\",\"level\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"shared and level\",\"displayName\":\"shared and level\"},{\"id\":\"shared only\",\"displayName\":\"shared only\"},{\"id\":\"level only\",\"displayName\":\"level only\"},{\"id\":\"none\",\"displayName\":\"none\"}]}" + "size": 314, + "text": "{\"_id\":\"948e21f4-c512-450a-9d42-e0d629217834\",\"_rev\":\"1879004537\",\"script\":\"1b52a7e0-4019-40fa-958a-15a49870e901\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" }, "cookies": [], "headers": [ @@ -18431,7 +18431,7 @@ }, { "name": "content-length", - "value": "543" + "value": "314" }, { "name": "date", @@ -18458,14 +18458,14 @@ "value": "" } ], - "headersSize": 802, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.062Z", - "time": 97, + "startedDateTime": "2026-07-14T21:32:45.134Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -18473,11 +18473,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 78 } }, { - "_id": "a6721fa7502dc4ec6f2ff865fded8437", + "_id": "360840395d524be521d3e3f57f9b7d60", "_order": 0, "cache": {}, "request": { @@ -18521,14 +18521,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/948e21f4-c512-450a-9d42-e0d629217834" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/ScriptedDecisionNode/1.0/d429b2b5-b215-46a5-b239-4994df65cb8b" }, "response": { - "bodySize": 314, + "bodySize": 543, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 314, - "text": "{\"_id\":\"948e21f4-c512-450a-9d42-e0d629217834\",\"_rev\":\"1879004537\",\"script\":\"1b52a7e0-4019-40fa-958a-15a49870e901\",\"outcomes\":[\"true\"],\"outputs\":[\"*\"],\"inputs\":[\"*\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"true\"}]}" + "size": 543, + "text": "{\"_id\":\"d429b2b5-b215-46a5-b239-4994df65cb8b\",\"_rev\":\"30374950\",\"script\":\"5bbdaeff-ddee-44b9-b608-8d413d7d65a6\",\"outcomes\":[\"shared and level\",\"shared only\",\"level only\",\"none\"],\"outputs\":[\"*\",\"mode\",\"level\"],\"inputs\":[\"*\",\"mode\",\"level\"],\"_type\":{\"_id\":\"ScriptedDecisionNode\",\"name\":\"Scripted Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"shared and level\",\"displayName\":\"shared and level\"},{\"id\":\"shared only\",\"displayName\":\"shared only\"},{\"id\":\"level only\",\"displayName\":\"level only\"},{\"id\":\"none\",\"displayName\":\"none\"}]}" }, "cookies": [], "headers": [ @@ -18582,7 +18582,7 @@ }, { "name": "content-length", - "value": "314" + "value": "543" }, { "name": "date", @@ -18609,14 +18609,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 777, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.062Z", - "time": 105, + "startedDateTime": "2026-07-14T21:32:45.135Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -18624,7 +18624,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 105 + "wait": 78 } }, { @@ -18762,8 +18762,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.182Z", - "time": 78, + "startedDateTime": "2026-07-14T21:32:45.218Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -18771,7 +18771,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 78 + "wait": 71 } }, { @@ -18913,8 +18913,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.268Z", - "time": 122, + "startedDateTime": "2026-07-14T21:32:45.294Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -18922,7 +18922,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 122 + "wait": 82 } }, { @@ -19058,14 +19058,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.269Z", - "time": 142, + "startedDateTime": "2026-07-14T21:32:45.295Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -19073,7 +19073,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 142 + "wait": 77 } }, { @@ -19215,8 +19215,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.271Z", - "time": 112, + "startedDateTime": "2026-07-14T21:32:45.296Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -19224,7 +19224,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 74 } }, { @@ -19366,8 +19366,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.273Z", - "time": 142, + "startedDateTime": "2026-07-14T21:32:45.297Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -19375,7 +19375,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 142 + "wait": 73 } }, { @@ -19511,14 +19511,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.274Z", - "time": 140, + "startedDateTime": "2026-07-14T21:32:45.298Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -19526,7 +19526,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 75 } }, { @@ -19668,8 +19668,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.275Z", - "time": 115, + "startedDateTime": "2026-07-14T21:32:45.299Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -19677,7 +19677,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 115 + "wait": 71 } }, { @@ -19815,8 +19815,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.419Z", - "time": 81, + "startedDateTime": "2026-07-14T21:32:45.382Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -19824,7 +19824,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 81 + "wait": 74 } }, { @@ -19966,8 +19966,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.506Z", - "time": 109, + "startedDateTime": "2026-07-14T21:32:45.462Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -19975,7 +19975,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 109 + "wait": 81 } }, { @@ -20111,14 +20111,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.508Z", - "time": 107, + "startedDateTime": "2026-07-14T21:32:45.463Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -20126,7 +20126,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 76 } }, { @@ -20262,14 +20262,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.510Z", - "time": 85, + "startedDateTime": "2026-07-14T21:32:45.464Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -20277,7 +20277,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 85 + "wait": 75 } }, { @@ -20419,8 +20419,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.511Z", - "time": 92, + "startedDateTime": "2026-07-14T21:32:45.464Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -20428,7 +20428,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 92 + "wait": 77 } }, { @@ -20570,8 +20570,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.512Z", - "time": 98, + "startedDateTime": "2026-07-14T21:32:45.465Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -20579,7 +20579,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 76 } }, { @@ -20715,14 +20715,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.513Z", - "time": 98, + "startedDateTime": "2026-07-14T21:32:45.466Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -20730,7 +20730,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 75 } }, { @@ -20868,8 +20868,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.619Z", - "time": 81, + "startedDateTime": "2026-07-14T21:32:45.549Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -20877,7 +20877,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 81 + "wait": 80 } }, { @@ -21019,8 +21019,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.707Z", - "time": 356, + "startedDateTime": "2026-07-14T21:32:45.635Z", + "time": 86, "timings": { "blocked": -1, "connect": -1, @@ -21028,7 +21028,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 356 + "wait": 86 } }, { @@ -21170,8 +21170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.708Z", - "time": 107, + "startedDateTime": "2026-07-14T21:32:45.636Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -21179,11 +21179,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 80 } }, { - "_id": "c6ccfe05f185b0da5d034172d8f04884", + "_id": "0027ea31578b2d610725ef52a8e8e727", "_order": 0, "cache": {}, "request": { @@ -21223,18 +21223,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2049, + "headersSize": 2056, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/AccountLockoutNode/1.0/51e8c4c1-3509-4635-90e6-d2cc31c4a6a5" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/IdentityStoreDecisionNode/1.0/7f0c2aee-8c74-4d02-82a6-9d4ed9d11708" }, "response": { - "bodySize": 238, + "bodySize": 491, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 238, - "text": "{\"_id\":\"51e8c4c1-3509-4635-90e6-d2cc31c4a6a5\",\"_rev\":\"-1292704137\",\"lockAction\":\"LOCK\",\"_type\":{\"_id\":\"AccountLockoutNode\",\"name\":\"Account Lockout\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 491, + "text": "{\"_id\":\"7f0c2aee-8c74-4d02-82a6-9d4ed9d11708\",\"_rev\":\"2134532618\",\"useUniversalIdForUsername\":false,\"minimumPasswordLength\":8,\"mixedCaseForPasswordChangeMessages\":false,\"_type\":{\"_id\":\"IdentityStoreDecisionNode\",\"name\":\"Identity Store Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"TRUE\",\"displayName\":\"True\"},{\"id\":\"FALSE\",\"displayName\":\"False\"},{\"id\":\"LOCKED\",\"displayName\":\"Locked\"},{\"id\":\"CANCELLED\",\"displayName\":\"Cancelled\"},{\"id\":\"EXPIRED\",\"displayName\":\"Expired\"}]}" }, "cookies": [], "headers": [ @@ -21288,7 +21288,7 @@ }, { "name": "content-length", - "value": "238" + "value": "491" }, { "name": "date", @@ -21315,14 +21315,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.709Z", - "time": 274, + "startedDateTime": "2026-07-14T21:32:45.637Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -21330,11 +21330,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 274 + "wait": 80 } }, { - "_id": "0027ea31578b2d610725ef52a8e8e727", + "_id": "c6ccfe05f185b0da5d034172d8f04884", "_order": 0, "cache": {}, "request": { @@ -21374,18 +21374,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2056, + "headersSize": 2049, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/IdentityStoreDecisionNode/1.0/7f0c2aee-8c74-4d02-82a6-9d4ed9d11708" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/AccountLockoutNode/1.0/51e8c4c1-3509-4635-90e6-d2cc31c4a6a5" }, "response": { - "bodySize": 491, + "bodySize": 238, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 491, - "text": "{\"_id\":\"7f0c2aee-8c74-4d02-82a6-9d4ed9d11708\",\"_rev\":\"2134532618\",\"useUniversalIdForUsername\":false,\"minimumPasswordLength\":8,\"mixedCaseForPasswordChangeMessages\":false,\"_type\":{\"_id\":\"IdentityStoreDecisionNode\",\"name\":\"Identity Store Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"TRUE\",\"displayName\":\"True\"},{\"id\":\"FALSE\",\"displayName\":\"False\"},{\"id\":\"LOCKED\",\"displayName\":\"Locked\"},{\"id\":\"CANCELLED\",\"displayName\":\"Cancelled\"},{\"id\":\"EXPIRED\",\"displayName\":\"Expired\"}]}" + "size": 238, + "text": "{\"_id\":\"51e8c4c1-3509-4635-90e6-d2cc31c4a6a5\",\"_rev\":\"-1292704137\",\"lockAction\":\"LOCK\",\"_type\":{\"_id\":\"AccountLockoutNode\",\"name\":\"Account Lockout\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -21439,7 +21439,7 @@ }, { "name": "content-length", - "value": "491" + "value": "238" }, { "name": "date", @@ -21466,14 +21466,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.710Z", - "time": 104, + "startedDateTime": "2026-07-14T21:32:45.637Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -21481,7 +21481,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 104 + "wait": 80 } }, { @@ -21617,14 +21617,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.711Z", - "time": 95, + "startedDateTime": "2026-07-14T21:32:45.638Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -21632,7 +21632,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 82 } }, { @@ -21774,8 +21774,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:09.712Z", - "time": 323, + "startedDateTime": "2026-07-14T21:32:45.639Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -21783,7 +21783,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 323 + "wait": 98 } }, { @@ -21925,8 +21925,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.070Z", - "time": 123, + "startedDateTime": "2026-07-14T21:32:45.743Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -21934,7 +21934,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 79 } }, { @@ -22076,8 +22076,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.074Z", - "time": 118, + "startedDateTime": "2026-07-14T21:32:45.743Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -22085,7 +22085,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 91 } }, { @@ -22223,8 +22223,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.198Z", - "time": 81, + "startedDateTime": "2026-07-14T21:32:45.842Z", + "time": 69, "timings": { "blocked": -1, "connect": -1, @@ -22232,7 +22232,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 81 + "wait": 69 } }, { @@ -22374,8 +22374,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.285Z", - "time": 86, + "startedDateTime": "2026-07-14T21:32:45.916Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -22383,7 +22383,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 82 } }, { @@ -22521,8 +22521,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.378Z", - "time": 73, + "startedDateTime": "2026-07-14T21:32:46.002Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -22530,7 +22530,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 73 + "wait": 76 } }, { @@ -22672,8 +22672,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.462Z", - "time": 176, + "startedDateTime": "2026-07-14T21:32:46.086Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -22681,7 +22681,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 176 + "wait": 81 } }, { @@ -22823,8 +22823,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.464Z", - "time": 179, + "startedDateTime": "2026-07-14T21:32:46.087Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -22832,7 +22832,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 179 + "wait": 81 } }, { @@ -22968,14 +22968,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.466Z", - "time": 212, + "startedDateTime": "2026-07-14T21:32:46.088Z", + "time": 84, "timings": { "blocked": -1, "connect": -1, @@ -22983,11 +22983,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 212 + "wait": 84 } }, { - "_id": "b02c1f3a0baf007c1ae60a41fcab9344", + "_id": "f9d84058b8ecbc8cf1c28c83373e7e92", "_order": 0, "cache": {}, "request": { @@ -23031,14 +23031,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/2.0/37f190ea-fa18-4d44-941b-4e5ac325f394" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/2.0/4fdf4255-0236-4527-ae6d-d10d2c0ee8d5" }, "response": { - "bodySize": 443, + "bodySize": 539, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 443, - "text": "{\"_id\":\"37f190ea-fa18-4d44-941b-4e5ac325f394\",\"_rev\":\"-1221766302\",\"nodes\":[{\"_id\":\"8835fe59-3988-4121-8b15-ad16a7049d7a\",\"nodeType\":\"designer-4b76e2122a0541498f380072cd115683\",\"nodeVersion\":\"1.0\",\"displayName\":\"Debug\"}],\"pageDescription\":{},\"pageHeader\":{\"en\":\"MEDIUM\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"2.0\"},\"_outcomes\":[{\"id\":\"8835fe59-3988-4121-8b15-ad16a7049d7a-outcome\",\"displayName\":\"outcome\"}]}" + "size": 539, + "text": "{\"_id\":\"4fdf4255-0236-4527-ae6d-d10d2c0ee8d5\",\"_rev\":\"-506663009\",\"nodes\":[{\"_id\":\"f74e82e2-72ab-4a1a-9188-655622794a37\",\"nodeType\":\"ValidatedUsernameNode\",\"nodeVersion\":\"2.0\",\"displayName\":\"Username\"},{\"_id\":\"6a428d9f-a221-44f6-a5c6-c6981f90f9fc\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Password\"}],\"pageDescription\":{},\"pageHeader\":{},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"2.0\"},\"_outcomes\":[{\"id\":\"6a428d9f-a221-44f6-a5c6-c6981f90f9fc-outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -23092,7 +23092,7 @@ }, { "name": "content-length", - "value": "443" + "value": "539" }, { "name": "date", @@ -23119,14 +23119,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.467Z", - "time": 167, + "startedDateTime": "2026-07-14T21:32:46.089Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -23134,11 +23134,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 167 + "wait": 78 } }, { - "_id": "f9d84058b8ecbc8cf1c28c83373e7e92", + "_id": "b02c1f3a0baf007c1ae60a41fcab9344", "_order": 0, "cache": {}, "request": { @@ -23182,14 +23182,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/2.0/4fdf4255-0236-4527-ae6d-d10d2c0ee8d5" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/2.0/37f190ea-fa18-4d44-941b-4e5ac325f394" }, "response": { - "bodySize": 539, + "bodySize": 443, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 539, - "text": "{\"_id\":\"4fdf4255-0236-4527-ae6d-d10d2c0ee8d5\",\"_rev\":\"-506663009\",\"nodes\":[{\"_id\":\"f74e82e2-72ab-4a1a-9188-655622794a37\",\"nodeType\":\"ValidatedUsernameNode\",\"nodeVersion\":\"2.0\",\"displayName\":\"Username\"},{\"_id\":\"6a428d9f-a221-44f6-a5c6-c6981f90f9fc\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Password\"}],\"pageDescription\":{},\"pageHeader\":{},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"2.0\"},\"_outcomes\":[{\"id\":\"6a428d9f-a221-44f6-a5c6-c6981f90f9fc-outcome\",\"displayName\":\"Outcome\"}]}" + "size": 443, + "text": "{\"_id\":\"37f190ea-fa18-4d44-941b-4e5ac325f394\",\"_rev\":\"-1221766302\",\"nodes\":[{\"_id\":\"8835fe59-3988-4121-8b15-ad16a7049d7a\",\"nodeType\":\"designer-4b76e2122a0541498f380072cd115683\",\"nodeVersion\":\"1.0\",\"displayName\":\"Debug\"}],\"pageDescription\":{},\"pageHeader\":{\"en\":\"MEDIUM\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"2.0\"},\"_outcomes\":[{\"id\":\"8835fe59-3988-4121-8b15-ad16a7049d7a-outcome\",\"displayName\":\"outcome\"}]}" }, "cookies": [], "headers": [ @@ -23243,7 +23243,7 @@ }, { "name": "content-length", - "value": "539" + "value": "443" }, { "name": "date", @@ -23270,14 +23270,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.468Z", - "time": 146, + "startedDateTime": "2026-07-14T21:32:46.089Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -23285,7 +23285,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 146 + "wait": 81 } }, { @@ -23421,14 +23421,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.469Z", - "time": 205, + "startedDateTime": "2026-07-14T21:32:46.090Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -23436,7 +23436,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 205 + "wait": 81 } }, { @@ -23578,8 +23578,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.470Z", - "time": 173, + "startedDateTime": "2026-07-14T21:32:46.091Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -23587,7 +23587,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 173 + "wait": 74 } }, { @@ -23729,8 +23729,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.470Z", - "time": 214, + "startedDateTime": "2026-07-14T21:32:46.091Z", + "time": 165, "timings": { "blocked": -1, "connect": -1, @@ -23738,7 +23738,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 214 + "wait": 165 } }, { @@ -23880,8 +23880,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.472Z", - "time": 283, + "startedDateTime": "2026-07-14T21:32:46.093Z", + "time": 159, "timings": { "blocked": -1, "connect": -1, @@ -23889,7 +23889,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 283 + "wait": 159 } }, { @@ -24025,14 +24025,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.473Z", - "time": 205, + "startedDateTime": "2026-07-14T21:32:46.094Z", + "time": 147, "timings": { "blocked": -1, "connect": -1, @@ -24040,7 +24040,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 205 + "wait": 147 } }, { @@ -24182,8 +24182,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.474Z", - "time": 211, + "startedDateTime": "2026-07-14T21:32:46.096Z", + "time": 159, "timings": { "blocked": -1, "connect": -1, @@ -24191,7 +24191,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 211 + "wait": 159 } }, { @@ -24327,14 +24327,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.475Z", - "time": 228, + "startedDateTime": "2026-07-14T21:32:46.097Z", + "time": 166, "timings": { "blocked": -1, "connect": -1, @@ -24342,11 +24342,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 228 + "wait": 166 } }, { - "_id": "1e5af10328ee10d2b8b2a600926876a4", + "_id": "aaab9e2e632a5fd9e8b05f2859e35eda", "_order": 0, "cache": {}, "request": { @@ -24390,14 +24390,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/designer-4b76e2122a0541498f380072cd115683/1.0/843dd22b-a890-461b-9a16-33d8bd871396" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/designer-4b76e2122a0541498f380072cd115683/1.0/2c8f0d12-c373-4a25-9a30-b3184888d163" }, "response": { - "bodySize": 357, + "bodySize": 356, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 357, - "text": "{\"_id\":\"843dd22b-a890-461b-9a16-33d8bd871396\",\"_rev\":\"1816992992\",\"showObjectAttributes\":false,\"showNodeState\":true,\"showRequestHeaders\":false,\"showRequestParams\":false,\"showUserProfile\":false,\"_type\":{\"_id\":\"designer-4b76e2122a0541498f380072cd115683\",\"name\":\"Debug\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"outcome\"}]}" + "size": 356, + "text": "{\"_id\":\"2c8f0d12-c373-4a25-9a30-b3184888d163\",\"_rev\":\"116387958\",\"showObjectAttributes\":false,\"showNodeState\":true,\"showRequestHeaders\":false,\"showRequestParams\":false,\"showUserProfile\":false,\"_type\":{\"_id\":\"designer-4b76e2122a0541498f380072cd115683\",\"name\":\"Debug\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"outcome\"}]}" }, "cookies": [], "headers": [ @@ -24451,7 +24451,7 @@ }, { "name": "content-length", - "value": "357" + "value": "356" }, { "name": "date", @@ -24478,14 +24478,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.760Z", - "time": 123, + "startedDateTime": "2026-07-14T21:32:46.270Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -24493,11 +24493,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 96 } }, { - "_id": "0234eae5878a2b6670c291d7d476f2be", + "_id": "1e5af10328ee10d2b8b2a600926876a4", "_order": 0, "cache": {}, "request": { @@ -24541,14 +24541,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/designer-4b76e2122a0541498f380072cd115683/1.0/8835fe59-3988-4121-8b15-ad16a7049d7a" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/designer-4b76e2122a0541498f380072cd115683/1.0/843dd22b-a890-461b-9a16-33d8bd871396" }, "response": { "bodySize": 357, "content": { "mimeType": "application/json;charset=UTF-8", "size": 357, - "text": "{\"_id\":\"8835fe59-3988-4121-8b15-ad16a7049d7a\",\"_rev\":\"-475690447\",\"showObjectAttributes\":false,\"showNodeState\":true,\"showRequestHeaders\":false,\"showRequestParams\":false,\"showUserProfile\":false,\"_type\":{\"_id\":\"designer-4b76e2122a0541498f380072cd115683\",\"name\":\"Debug\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"outcome\"}]}" + "text": "{\"_id\":\"843dd22b-a890-461b-9a16-33d8bd871396\",\"_rev\":\"1816992992\",\"showObjectAttributes\":false,\"showNodeState\":true,\"showRequestHeaders\":false,\"showRequestParams\":false,\"showUserProfile\":false,\"_type\":{\"_id\":\"designer-4b76e2122a0541498f380072cd115683\",\"name\":\"Debug\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"outcome\"}]}" }, "cookies": [], "headers": [ @@ -24629,14 +24629,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.761Z", - "time": 123, + "startedDateTime": "2026-07-14T21:32:46.270Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -24644,11 +24644,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 97 } }, { - "_id": "aaab9e2e632a5fd9e8b05f2859e35eda", + "_id": "0234eae5878a2b6670c291d7d476f2be", "_order": 0, "cache": {}, "request": { @@ -24692,14 +24692,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/designer-4b76e2122a0541498f380072cd115683/1.0/2c8f0d12-c373-4a25-9a30-b3184888d163" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/designer-4b76e2122a0541498f380072cd115683/1.0/8835fe59-3988-4121-8b15-ad16a7049d7a" }, "response": { - "bodySize": 356, + "bodySize": 357, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 356, - "text": "{\"_id\":\"2c8f0d12-c373-4a25-9a30-b3184888d163\",\"_rev\":\"116387958\",\"showObjectAttributes\":false,\"showNodeState\":true,\"showRequestHeaders\":false,\"showRequestParams\":false,\"showUserProfile\":false,\"_type\":{\"_id\":\"designer-4b76e2122a0541498f380072cd115683\",\"name\":\"Debug\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"outcome\"}]}" + "size": 357, + "text": "{\"_id\":\"8835fe59-3988-4121-8b15-ad16a7049d7a\",\"_rev\":\"-475690447\",\"showObjectAttributes\":false,\"showNodeState\":true,\"showRequestHeaders\":false,\"showRequestParams\":false,\"showUserProfile\":false,\"_type\":{\"_id\":\"designer-4b76e2122a0541498f380072cd115683\",\"name\":\"Debug\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"outcome\"}]}" }, "cookies": [], "headers": [ @@ -24753,7 +24753,7 @@ }, { "name": "content-length", - "value": "356" + "value": "357" }, { "name": "date", @@ -24780,14 +24780,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.761Z", - "time": 124, + "startedDateTime": "2026-07-14T21:32:46.271Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -24795,7 +24795,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 124 + "wait": 96 } }, { @@ -24931,14 +24931,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.762Z", - "time": 93, + "startedDateTime": "2026-07-14T21:32:46.272Z", + "time": 86, "timings": { "blocked": -1, "connect": -1, @@ -24946,7 +24946,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 86 } }, { @@ -25082,14 +25082,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.762Z", - "time": 96, + "startedDateTime": "2026-07-14T21:32:46.273Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -25097,7 +25097,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 85 } }, { @@ -25233,14 +25233,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.763Z", - "time": 122, + "startedDateTime": "2026-07-14T21:32:46.273Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -25248,7 +25248,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 122 + "wait": 94 } }, { @@ -25384,14 +25384,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.763Z", - "time": 123, + "startedDateTime": "2026-07-14T21:32:46.274Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -25399,7 +25399,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 93 } }, { @@ -25541,8 +25541,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.764Z", - "time": 123, + "startedDateTime": "2026-07-14T21:32:46.275Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -25550,7 +25550,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 91 } }, { @@ -25688,8 +25688,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.891Z", - "time": 76, + "startedDateTime": "2026-07-14T21:32:46.372Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -25697,7 +25697,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 76 + "wait": 74 } }, { @@ -25835,8 +25835,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:10.974Z", - "time": 77, + "startedDateTime": "2026-07-14T21:32:46.452Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -25844,7 +25844,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 77 + "wait": 76 } }, { @@ -25986,8 +25986,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.058Z", - "time": 149, + "startedDateTime": "2026-07-14T21:32:46.534Z", + "time": 142, "timings": { "blocked": -1, "connect": -1, @@ -25995,7 +25995,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 149 + "wait": 142 } }, { @@ -26131,14 +26131,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.060Z", - "time": 106, + "startedDateTime": "2026-07-14T21:32:46.535Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -26146,7 +26146,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 106 + "wait": 97 } }, { @@ -26282,14 +26282,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.061Z", - "time": 109, + "startedDateTime": "2026-07-14T21:32:46.535Z", + "time": 134, "timings": { "blocked": -1, "connect": -1, @@ -26297,7 +26297,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 109 + "wait": 134 } }, { @@ -26439,8 +26439,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.063Z", - "time": 93, + "startedDateTime": "2026-07-14T21:32:46.536Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -26448,7 +26448,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 98 } }, { @@ -26590,7 +26590,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.211Z", + "startedDateTime": "2026-07-14T21:32:46.681Z", "time": 81, "timings": { "blocked": -1, @@ -26737,8 +26737,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.297Z", - "time": 75, + "startedDateTime": "2026-07-14T21:32:46.768Z", + "time": 199, "timings": { "blocked": -1, "connect": -1, @@ -26746,7 +26746,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 75 + "wait": 199 } }, { @@ -26888,8 +26888,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.376Z", - "time": 91, + "startedDateTime": "2026-07-14T21:32:46.973Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -26897,7 +26897,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 97 } }, { @@ -27039,8 +27039,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.473Z", - "time": 102, + "startedDateTime": "2026-07-14T21:32:47.076Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -27048,7 +27048,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 82 } }, { @@ -27186,7 +27186,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.581Z", + "startedDateTime": "2026-07-14T21:32:47.164Z", "time": 78, "timings": { "blocked": -1, @@ -27337,8 +27337,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.667Z", - "time": 92, + "startedDateTime": "2026-07-14T21:32:47.249Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -27346,7 +27346,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 92 + "wait": 85 } }, { @@ -27482,14 +27482,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.668Z", - "time": 87, + "startedDateTime": "2026-07-14T21:32:47.250Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -27497,7 +27497,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 87 + "wait": 78 } }, { @@ -27639,8 +27639,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.670Z", - "time": 89, + "startedDateTime": "2026-07-14T21:32:47.251Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -27648,7 +27648,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 77 } }, { @@ -27784,14 +27784,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.672Z", - "time": 111, + "startedDateTime": "2026-07-14T21:32:47.252Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -27799,7 +27799,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 81 } }, { @@ -27935,14 +27935,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.788Z", - "time": 87, + "startedDateTime": "2026-07-14T21:32:47.339Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -27950,7 +27950,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 87 + "wait": 75 } }, { @@ -28086,14 +28086,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.789Z", - "time": 79, + "startedDateTime": "2026-07-14T21:32:47.341Z", + "time": 70, "timings": { "blocked": -1, "connect": -1, @@ -28101,7 +28101,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 79 + "wait": 70 } }, { @@ -28243,8 +28243,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.789Z", - "time": 82, + "startedDateTime": "2026-07-14T21:32:47.342Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -28252,7 +28252,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 82 + "wait": 79 } }, { @@ -28394,8 +28394,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.790Z", - "time": 147, + "startedDateTime": "2026-07-14T21:32:47.343Z", + "time": 83, "timings": { "blocked": -1, "connect": -1, @@ -28403,7 +28403,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 147 + "wait": 83 } }, { @@ -28539,14 +28539,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.791Z", - "time": 100, + "startedDateTime": "2026-07-14T21:32:47.344Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -28554,7 +28554,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 80 } }, { @@ -28692,8 +28692,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:11.943Z", - "time": 91, + "startedDateTime": "2026-07-14T21:32:47.431Z", + "time": 72, "timings": { "blocked": -1, "connect": -1, @@ -28701,7 +28701,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 72 } }, { @@ -28843,8 +28843,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.045Z", - "time": 178, + "startedDateTime": "2026-07-14T21:32:47.511Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -28852,7 +28852,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 178 + "wait": 76 } }, { @@ -28988,14 +28988,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.046Z", - "time": 104, + "startedDateTime": "2026-07-14T21:32:47.512Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -29003,7 +29003,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 104 + "wait": 71 } }, { @@ -29139,14 +29139,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.047Z", - "time": 99, + "startedDateTime": "2026-07-14T21:32:47.514Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -29154,11 +29154,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 99 + "wait": 73 } }, { - "_id": "85dd6ff9b56759ac78499f734aa3609e", + "_id": "a36846503cffacfc49f67f1eeaac8b2c", "_order": 0, "cache": {}, "request": { @@ -29202,14 +29202,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/e4c752f9-c625-48c9-9644-a58802fa9e9c" }, "response": { - "bodySize": 482, + "bodySize": 428, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 482, - "text": "{\"_id\":\"cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b\",\"_rev\":\"1224278369\",\"nodes\":[{\"_id\":\"276afa7c-a680-4cf4-a5f6-d6c78191f5c9\",\"nodeType\":\"AttributeCollectorNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Attribute Collector\"}],\"pageDescription\":{\"en\":\"Enter your email address or Sign in\"},\"pageHeader\":{\"en\":\"Reset Password\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 428, + "text": "{\"_id\":\"e4c752f9-c625-48c9-9644-a58802fa9e9c\",\"_rev\":\"-1303847056\",\"nodes\":[{\"_id\":\"009c19c8-9572-47bb-adb2-1f092c559a43\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Password\"}],\"pageDescription\":{\"en\":\"Change password\"},\"pageHeader\":{\"en\":\"Reset Password\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -29263,7 +29263,7 @@ }, { "name": "content-length", - "value": "482" + "value": "428" }, { "name": "date", @@ -29290,14 +29290,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.048Z", - "time": 99, + "startedDateTime": "2026-07-14T21:32:47.515Z", + "time": 69, "timings": { "blocked": -1, "connect": -1, @@ -29305,11 +29305,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 99 + "wait": 69 } }, { - "_id": "a36846503cffacfc49f67f1eeaac8b2c", + "_id": "85dd6ff9b56759ac78499f734aa3609e", "_order": 0, "cache": {}, "request": { @@ -29353,14 +29353,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/e4c752f9-c625-48c9-9644-a58802fa9e9c" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b" }, "response": { - "bodySize": 428, + "bodySize": 482, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 428, - "text": "{\"_id\":\"e4c752f9-c625-48c9-9644-a58802fa9e9c\",\"_rev\":\"-1303847056\",\"nodes\":[{\"_id\":\"009c19c8-9572-47bb-adb2-1f092c559a43\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Password\"}],\"pageDescription\":{\"en\":\"Change password\"},\"pageHeader\":{\"en\":\"Reset Password\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 482, + "text": "{\"_id\":\"cc3e1ed2-25f1-47bf-83c6-17084f8b2b2b\",\"_rev\":\"1224278369\",\"nodes\":[{\"_id\":\"276afa7c-a680-4cf4-a5f6-d6c78191f5c9\",\"nodeType\":\"AttributeCollectorNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Attribute Collector\"}],\"pageDescription\":{\"en\":\"Enter your email address or Sign in\"},\"pageHeader\":{\"en\":\"Reset Password\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -29414,7 +29414,7 @@ }, { "name": "content-length", - "value": "428" + "value": "482" }, { "name": "date", @@ -29441,14 +29441,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.048Z", - "time": 103, + "startedDateTime": "2026-07-14T21:32:47.515Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -29456,7 +29456,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 103 + "wait": 73 } }, { @@ -29592,14 +29592,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.230Z", - "time": 107, + "startedDateTime": "2026-07-14T21:32:47.596Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -29607,7 +29607,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 71 } }, { @@ -29749,8 +29749,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.232Z", - "time": 105, + "startedDateTime": "2026-07-14T21:32:47.597Z", + "time": 69, "timings": { "blocked": -1, "connect": -1, @@ -29758,7 +29758,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 105 + "wait": 69 } }, { @@ -29890,14 +29890,14 @@ "value": "" } ], - "headersSize": 746, + "headersSize": 771, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.341Z", - "time": 98, + "startedDateTime": "2026-07-14T21:32:47.672Z", + "time": 69, "timings": { "blocked": -1, "connect": -1, @@ -29905,7 +29905,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 69 } }, { @@ -30041,14 +30041,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.445Z", - "time": 100, + "startedDateTime": "2026-07-14T21:32:47.747Z", + "time": 89, "timings": { "blocked": -1, "connect": -1, @@ -30056,7 +30056,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 89 } }, { @@ -30198,8 +30198,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.448Z", - "time": 119, + "startedDateTime": "2026-07-14T21:32:47.748Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -30207,7 +30207,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 78 } }, { @@ -30339,14 +30339,14 @@ "value": "" } ], - "headersSize": 744, + "headersSize": 769, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.574Z", - "time": 94, + "startedDateTime": "2026-07-14T21:32:47.840Z", + "time": 72, "timings": { "blocked": -1, "connect": -1, @@ -30354,7 +30354,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 94 + "wait": 72 } }, { @@ -30486,14 +30486,14 @@ "value": "" } ], - "headersSize": 746, + "headersSize": 771, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.675Z", - "time": 84, + "startedDateTime": "2026-07-14T21:32:47.918Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -30501,7 +30501,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 71 } }, { @@ -30643,8 +30643,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.767Z", - "time": 142, + "startedDateTime": "2026-07-14T21:32:47.997Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -30652,7 +30652,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 142 + "wait": 91 } }, { @@ -30794,8 +30794,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.769Z", - "time": 120, + "startedDateTime": "2026-07-14T21:32:47.998Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -30803,7 +30803,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 120 + "wait": 85 } }, { @@ -30945,8 +30945,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.770Z", - "time": 118, + "startedDateTime": "2026-07-14T21:32:48.000Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -30954,7 +30954,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 82 } }, { @@ -31096,8 +31096,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.771Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:48.001Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -31105,7 +31105,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 80 } }, { @@ -31247,8 +31247,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.773Z", - "time": 116, + "startedDateTime": "2026-07-14T21:32:48.002Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -31256,7 +31256,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 116 + "wait": 81 } }, { @@ -31392,14 +31392,14 @@ "value": "" } ], - "headersSize": 777, + "headersSize": 802, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.774Z", - "time": 101, + "startedDateTime": "2026-07-14T21:32:48.003Z", + "time": 83, "timings": { "blocked": -1, "connect": -1, @@ -31407,7 +31407,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 83 } }, { @@ -31543,14 +31543,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.775Z", - "time": 133, + "startedDateTime": "2026-07-14T21:32:48.004Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -31558,7 +31558,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 133 + "wait": 94 } }, { @@ -31700,8 +31700,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.917Z", - "time": 103, + "startedDateTime": "2026-07-14T21:32:48.102Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -31709,7 +31709,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 103 + "wait": 74 } }, { @@ -31845,14 +31845,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:12.918Z", - "time": 113, + "startedDateTime": "2026-07-14T21:32:48.103Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -31860,7 +31860,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 113 + "wait": 74 } }, { @@ -31999,8 +31999,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.089Z", - "time": 176, + "startedDateTime": "2026-07-14T21:32:48.190Z", + "time": 83, "timings": { "blocked": -1, "connect": -1, @@ -32008,7 +32008,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 176 + "wait": 83 } }, { @@ -32146,8 +32146,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.267Z", - "time": 88, + "startedDateTime": "2026-07-14T21:32:48.282Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -32155,7 +32155,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 88 + "wait": 77 } }, { @@ -32297,8 +32297,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.358Z", - "time": 169, + "startedDateTime": "2026-07-14T21:32:48.364Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -32306,7 +32306,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 169 + "wait": 97 } }, { @@ -32448,8 +32448,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.359Z", - "time": 109, + "startedDateTime": "2026-07-14T21:32:48.365Z", + "time": 84, "timings": { "blocked": -1, "connect": -1, @@ -32457,7 +32457,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 109 + "wait": 84 } }, { @@ -32593,14 +32593,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.359Z", - "time": 109, + "startedDateTime": "2026-07-14T21:32:48.366Z", + "time": 137, "timings": { "blocked": -1, "connect": -1, @@ -32608,7 +32608,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 109 + "wait": 137 } }, { @@ -32744,14 +32744,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.531Z", - "time": 118, + "startedDateTime": "2026-07-14T21:32:48.509Z", + "time": 87, "timings": { "blocked": -1, "connect": -1, @@ -32759,7 +32759,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 87 } }, { @@ -32901,8 +32901,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.531Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:48.510Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -32910,7 +32910,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 91 } }, { @@ -33048,8 +33048,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.663Z", - "time": 82, + "startedDateTime": "2026-07-14T21:32:48.607Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -33057,7 +33057,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 82 + "wait": 76 } }, { @@ -33199,8 +33199,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.748Z", - "time": 99, + "startedDateTime": "2026-07-14T21:32:48.688Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -33208,11 +33208,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 99 + "wait": 73 } }, { - "_id": "8c5a5caee42d72100059320674a2efd7", + "_id": "13226a0f534c12367ba9d3900d5c1dea", "_order": 0, "cache": {}, "request": { @@ -33252,18 +33252,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2055, + "headersSize": 2053, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/IdentifyExistingUserNode/1.0/bf9ea8d5-9802-4f26-9664-a21840faac23" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/InnerTreeEvaluatorNode/1.0/b93ce36e-1976-4610-b24f-8d6760b5463b" }, "response": { - "bodySize": 312, + "bodySize": 300, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 312, - "text": "{\"_id\":\"bf9ea8d5-9802-4f26-9664-a21840faac23\",\"_rev\":\"-174222356\",\"identityAttribute\":\"mail\",\"identifier\":\"userName\",\"_type\":{\"_id\":\"IdentifyExistingUserNode\",\"name\":\"Identify Existing User\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" + "size": 300, + "text": "{\"_id\":\"b93ce36e-1976-4610-b24f-8d6760b5463b\",\"_rev\":\"1620753749\",\"displayErrorOutcome\":false,\"tree\":\"Login\",\"_type\":{\"_id\":\"InnerTreeEvaluatorNode\",\"name\":\"Inner Tree Evaluator\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" }, "cookies": [], "headers": [ @@ -33317,7 +33317,7 @@ }, { "name": "content-length", - "value": "312" + "value": "300" }, { "name": "date", @@ -33344,14 +33344,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.749Z", - "time": 102, + "startedDateTime": "2026-07-14T21:32:48.689Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -33359,11 +33359,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 78 } }, { - "_id": "13226a0f534c12367ba9d3900d5c1dea", + "_id": "8c5a5caee42d72100059320674a2efd7", "_order": 0, "cache": {}, "request": { @@ -33403,18 +33403,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2053, + "headersSize": 2055, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/InnerTreeEvaluatorNode/1.0/b93ce36e-1976-4610-b24f-8d6760b5463b" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/IdentifyExistingUserNode/1.0/bf9ea8d5-9802-4f26-9664-a21840faac23" }, "response": { - "bodySize": 300, + "bodySize": 312, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 300, - "text": "{\"_id\":\"b93ce36e-1976-4610-b24f-8d6760b5463b\",\"_rev\":\"1620753749\",\"displayErrorOutcome\":false,\"tree\":\"Login\",\"_type\":{\"_id\":\"InnerTreeEvaluatorNode\",\"name\":\"Inner Tree Evaluator\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" + "size": 312, + "text": "{\"_id\":\"bf9ea8d5-9802-4f26-9664-a21840faac23\",\"_rev\":\"-174222356\",\"identityAttribute\":\"mail\",\"identifier\":\"userName\",\"_type\":{\"_id\":\"IdentifyExistingUserNode\",\"name\":\"Identify Existing User\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" }, "cookies": [], "headers": [ @@ -33468,7 +33468,7 @@ }, { "name": "content-length", - "value": "300" + "value": "312" }, { "name": "date", @@ -33495,14 +33495,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.749Z", - "time": 118, + "startedDateTime": "2026-07-14T21:32:48.690Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -33510,7 +33510,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 82 } }, { @@ -33652,8 +33652,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.750Z", - "time": 122, + "startedDateTime": "2026-07-14T21:32:48.691Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -33661,7 +33661,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 122 + "wait": 79 } }, { @@ -33803,8 +33803,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:13.876Z", - "time": 120, + "startedDateTime": "2026-07-14T21:32:48.776Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -33812,7 +33812,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 120 + "wait": 85 } }, { @@ -33950,8 +33950,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.000Z", - "time": 102, + "startedDateTime": "2026-07-14T21:32:48.866Z", + "time": 67, "timings": { "blocked": -1, "connect": -1, @@ -33959,7 +33959,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 67 } }, { @@ -34101,8 +34101,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.105Z", - "time": 114, + "startedDateTime": "2026-07-14T21:32:48.940Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -34110,11 +34110,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 114 + "wait": 71 } }, { - "_id": "e97817458d93712803b07dac6669c5e8", + "_id": "284bc6deea461e75b134bf78796692f1", "_order": 0, "cache": {}, "request": { @@ -34154,18 +34154,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2039, + "headersSize": 2049, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/a12bc72f-ad97-4f1e-a789-a1fa3dd566c8" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/AccountLockoutNode/1.0/76b5e15c-493c-47dc-b813-01cbc74c5a85" }, "response": { - "bodySize": 729, + "bodySize": 237, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 729, - "text": "{\"_id\":\"a12bc72f-ad97-4f1e-a789-a1fa3dd566c8\",\"_rev\":\"-1369655509\",\"nodes\":[{\"_id\":\"7354982f-57b6-4b04-9ddc-f1dd1e1e07d0\",\"nodeType\":\"ValidatedUsernameNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Username\"},{\"_id\":\"0c80c39b-4813-4e67-b4fb-5a0bba85f994\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Password\"}],\"pageDescription\":{\"en\":\"New here? Create an account
Forgot username? Forgot password?\"},\"pageHeader\":{\"en\":\"Sign In\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 237, + "text": "{\"_id\":\"76b5e15c-493c-47dc-b813-01cbc74c5a85\",\"_rev\":\"1879126927\",\"lockAction\":\"LOCK\",\"_type\":{\"_id\":\"AccountLockoutNode\",\"name\":\"Account Lockout\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -34219,7 +34219,7 @@ }, { "name": "content-length", - "value": "729" + "value": "237" }, { "name": "date", @@ -34246,14 +34246,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.106Z", - "time": 113, + "startedDateTime": "2026-07-14T21:32:48.941Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -34261,11 +34261,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 113 + "wait": 79 } }, { - "_id": "284bc6deea461e75b134bf78796692f1", + "_id": "e97817458d93712803b07dac6669c5e8", "_order": 0, "cache": {}, "request": { @@ -34305,18 +34305,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2049, + "headersSize": 2039, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/AccountLockoutNode/1.0/76b5e15c-493c-47dc-b813-01cbc74c5a85" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/a12bc72f-ad97-4f1e-a789-a1fa3dd566c8" }, "response": { - "bodySize": 237, + "bodySize": 729, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 237, - "text": "{\"_id\":\"76b5e15c-493c-47dc-b813-01cbc74c5a85\",\"_rev\":\"1879126927\",\"lockAction\":\"LOCK\",\"_type\":{\"_id\":\"AccountLockoutNode\",\"name\":\"Account Lockout\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 729, + "text": "{\"_id\":\"a12bc72f-ad97-4f1e-a789-a1fa3dd566c8\",\"_rev\":\"-1369655509\",\"nodes\":[{\"_id\":\"7354982f-57b6-4b04-9ddc-f1dd1e1e07d0\",\"nodeType\":\"ValidatedUsernameNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Username\"},{\"_id\":\"0c80c39b-4813-4e67-b4fb-5a0bba85f994\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Password\"}],\"pageDescription\":{\"en\":\"New here? Create an account
Forgot username? Forgot password?\"},\"pageHeader\":{\"en\":\"Sign In\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -34370,7 +34370,7 @@ }, { "name": "content-length", - "value": "237" + "value": "729" }, { "name": "date", @@ -34397,14 +34397,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.106Z", - "time": 130, + "startedDateTime": "2026-07-14T21:32:48.942Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -34412,11 +34412,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 130 + "wait": 76 } }, { - "_id": "4ba699b9ba3761047ffc1fea984030f9", + "_id": "e24d593650d328bcc4b5e2620a198a15", "_order": 0, "cache": {}, "request": { @@ -34456,18 +34456,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2054, + "headersSize": 2056, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/IncrementLoginCountNode/1.0/bba3e0d8-8525-4e82-bf48-ac17f7988917" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/IdentityStoreDecisionNode/1.0/a30b1258-4c35-4ebe-90f3-c11fced9b1e4" }, "response": { - "bodySize": 260, + "bodySize": 491, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 260, - "text": "{\"_id\":\"bba3e0d8-8525-4e82-bf48-ac17f7988917\",\"_rev\":\"-1742156045\",\"identityAttribute\":\"userName\",\"_type\":{\"_id\":\"IncrementLoginCountNode\",\"name\":\"Increment Login Count\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 491, + "text": "{\"_id\":\"a30b1258-4c35-4ebe-90f3-c11fced9b1e4\",\"_rev\":\"-943216883\",\"useUniversalIdForUsername\":false,\"minimumPasswordLength\":8,\"mixedCaseForPasswordChangeMessages\":false,\"_type\":{\"_id\":\"IdentityStoreDecisionNode\",\"name\":\"Identity Store Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"TRUE\",\"displayName\":\"True\"},{\"id\":\"FALSE\",\"displayName\":\"False\"},{\"id\":\"LOCKED\",\"displayName\":\"Locked\"},{\"id\":\"CANCELLED\",\"displayName\":\"Cancelled\"},{\"id\":\"EXPIRED\",\"displayName\":\"Expired\"}]}" }, "cookies": [], "headers": [ @@ -34521,7 +34521,7 @@ }, { "name": "content-length", - "value": "260" + "value": "491" }, { "name": "date", @@ -34548,14 +34548,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.107Z", - "time": 129, + "startedDateTime": "2026-07-14T21:32:48.943Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -34563,11 +34563,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 76 } }, { - "_id": "e24d593650d328bcc4b5e2620a198a15", + "_id": "4ba699b9ba3761047ffc1fea984030f9", "_order": 0, "cache": {}, "request": { @@ -34607,18 +34607,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2056, + "headersSize": 2054, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/IdentityStoreDecisionNode/1.0/a30b1258-4c35-4ebe-90f3-c11fced9b1e4" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/IncrementLoginCountNode/1.0/bba3e0d8-8525-4e82-bf48-ac17f7988917" }, "response": { - "bodySize": 491, + "bodySize": 260, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 491, - "text": "{\"_id\":\"a30b1258-4c35-4ebe-90f3-c11fced9b1e4\",\"_rev\":\"-943216883\",\"useUniversalIdForUsername\":false,\"minimumPasswordLength\":8,\"mixedCaseForPasswordChangeMessages\":false,\"_type\":{\"_id\":\"IdentityStoreDecisionNode\",\"name\":\"Identity Store Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"TRUE\",\"displayName\":\"True\"},{\"id\":\"FALSE\",\"displayName\":\"False\"},{\"id\":\"LOCKED\",\"displayName\":\"Locked\"},{\"id\":\"CANCELLED\",\"displayName\":\"Cancelled\"},{\"id\":\"EXPIRED\",\"displayName\":\"Expired\"}]}" + "size": 260, + "text": "{\"_id\":\"bba3e0d8-8525-4e82-bf48-ac17f7988917\",\"_rev\":\"-1742156045\",\"identityAttribute\":\"userName\",\"_type\":{\"_id\":\"IncrementLoginCountNode\",\"name\":\"Increment Login Count\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -34672,7 +34672,7 @@ }, { "name": "content-length", - "value": "491" + "value": "260" }, { "name": "date", @@ -34699,14 +34699,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.107Z", - "time": 139, + "startedDateTime": "2026-07-14T21:32:48.943Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -34714,7 +34714,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 139 + "wait": 82 } }, { @@ -34856,8 +34856,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.108Z", - "time": 127, + "startedDateTime": "2026-07-14T21:32:48.944Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -34865,7 +34865,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 127 + "wait": 82 } }, { @@ -35001,14 +35001,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.249Z", - "time": 104, + "startedDateTime": "2026-07-14T21:32:49.033Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -35016,7 +35016,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 104 + "wait": 75 } }, { @@ -35152,14 +35152,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.250Z", - "time": 119, + "startedDateTime": "2026-07-14T21:32:49.035Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -35167,7 +35167,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 76 } }, { @@ -35299,14 +35299,14 @@ "value": "" } ], - "headersSize": 771, + "headersSize": 746, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.372Z", - "time": 93, + "startedDateTime": "2026-07-14T21:32:49.117Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -35314,11 +35314,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 80 } }, { - "_id": "45c43c22d5f29ace998c8da6f9bae5cf", + "_id": "85bfd979b7e00f270ab53f95207caffc", "_order": 0, "cache": {}, "request": { @@ -35358,18 +35358,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2053, + "headersSize": 2046, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/LoginCountDecisionNode/1.0/8afdaec3-275e-4301-bb53-34f03e6a4b29" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/PatchObjectNode/1.0/423a959a-a1b9-498a-b0f7-596b6b6e775a" }, "response": { - "bodySize": 316, + "bodySize": 362, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 316, - "text": "{\"_id\":\"8afdaec3-275e-4301-bb53-34f03e6a4b29\",\"_rev\":\"-1493211554\",\"interval\":\"AT\",\"identityAttribute\":\"userName\",\"amount\":3,\"_type\":{\"_id\":\"LoginCountDecisionNode\",\"name\":\"Login Count Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" + "size": 362, + "text": "{\"_id\":\"423a959a-a1b9-498a-b0f7-596b6b6e775a\",\"_rev\":\"201116398\",\"identityResource\":\"managed/bravo_user\",\"patchAsObject\":false,\"ignoredFields\":[],\"identityAttribute\":\"userName\",\"_type\":{\"_id\":\"PatchObjectNode\",\"name\":\"Patch Object\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"PATCHED\",\"displayName\":\"Patched\"},{\"id\":\"FAILURE\",\"displayName\":\"Failed\"}]}" }, "cookies": [], "headers": [ @@ -35423,7 +35423,7 @@ }, { "name": "content-length", - "value": "316" + "value": "362" }, { "name": "date", @@ -35450,14 +35450,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.469Z", - "time": 114, + "startedDateTime": "2026-07-14T21:32:49.203Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -35465,11 +35465,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 114 + "wait": 82 } }, { - "_id": "85bfd979b7e00f270ab53f95207caffc", + "_id": "45c43c22d5f29ace998c8da6f9bae5cf", "_order": 0, "cache": {}, "request": { @@ -35509,18 +35509,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2046, + "headersSize": 2053, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/PatchObjectNode/1.0/423a959a-a1b9-498a-b0f7-596b6b6e775a" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/LoginCountDecisionNode/1.0/8afdaec3-275e-4301-bb53-34f03e6a4b29" }, "response": { - "bodySize": 362, + "bodySize": 316, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 362, - "text": "{\"_id\":\"423a959a-a1b9-498a-b0f7-596b6b6e775a\",\"_rev\":\"201116398\",\"identityResource\":\"managed/bravo_user\",\"patchAsObject\":false,\"ignoredFields\":[],\"identityAttribute\":\"userName\",\"_type\":{\"_id\":\"PatchObjectNode\",\"name\":\"Patch Object\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"PATCHED\",\"displayName\":\"Patched\"},{\"id\":\"FAILURE\",\"displayName\":\"Failed\"}]}" + "size": 316, + "text": "{\"_id\":\"8afdaec3-275e-4301-bb53-34f03e6a4b29\",\"_rev\":\"-1493211554\",\"interval\":\"AT\",\"identityAttribute\":\"userName\",\"amount\":3,\"_type\":{\"_id\":\"LoginCountDecisionNode\",\"name\":\"Login Count Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" }, "cookies": [], "headers": [ @@ -35574,7 +35574,7 @@ }, { "name": "content-length", - "value": "362" + "value": "316" }, { "name": "date", @@ -35601,14 +35601,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.469Z", - "time": 129, + "startedDateTime": "2026-07-14T21:32:49.207Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -35616,11 +35616,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 80 } }, { - "_id": "3179c6a26bc53a204512b451e383d3da", + "_id": "71428344516e1f9fb39b007f612343e6", "_order": 0, "cache": {}, "request": { @@ -35660,18 +35660,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2039, + "headersSize": 2054, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/a5aecad8-854a-4ed5-b719-ff6c90e858c0" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/QueryFilterDecisionNode/1.0/a1f45b44-5bf7-4c57-aa3f-75c619c7db8e" }, "response": { - "bodySize": 424, + "bodySize": 394, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 424, - "text": "{\"_id\":\"a5aecad8-854a-4ed5-b719-ff6c90e858c0\",\"_rev\":\"1517800905\",\"nodes\":[{\"_id\":\"0a042e10-b22e-4e02-86c4-65e26e775f7a\",\"nodeType\":\"AttributeCollectorNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Attribute Collector\"}],\"pageDescription\":{},\"pageHeader\":{\"en\":\"Please select your preferences\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 394, + "text": "{\"_id\":\"a1f45b44-5bf7-4c57-aa3f-75c619c7db8e\",\"_rev\":\"-1398255236\",\"identityAttribute\":\"userName\",\"queryFilter\":\"!(/preferences pr) or /preferences/marketing eq false or /preferences/updates eq false\",\"_type\":{\"_id\":\"QueryFilterDecisionNode\",\"name\":\"Query Filter Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" }, "cookies": [], "headers": [ @@ -35725,7 +35725,7 @@ }, { "name": "content-length", - "value": "424" + "value": "394" }, { "name": "date", @@ -35752,14 +35752,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.470Z", - "time": 112, + "startedDateTime": "2026-07-14T21:32:49.208Z", + "time": 169, "timings": { "blocked": -1, "connect": -1, @@ -35767,11 +35767,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 169 } }, { - "_id": "71428344516e1f9fb39b007f612343e6", + "_id": "3179c6a26bc53a204512b451e383d3da", "_order": 0, "cache": {}, "request": { @@ -35811,18 +35811,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2054, + "headersSize": 2039, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/QueryFilterDecisionNode/1.0/a1f45b44-5bf7-4c57-aa3f-75c619c7db8e" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/a5aecad8-854a-4ed5-b719-ff6c90e858c0" }, "response": { - "bodySize": 394, + "bodySize": 424, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 394, - "text": "{\"_id\":\"a1f45b44-5bf7-4c57-aa3f-75c619c7db8e\",\"_rev\":\"-1398255236\",\"identityAttribute\":\"userName\",\"queryFilter\":\"!(/preferences pr) or /preferences/marketing eq false or /preferences/updates eq false\",\"_type\":{\"_id\":\"QueryFilterDecisionNode\",\"name\":\"Query Filter Decision\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"true\",\"displayName\":\"True\"},{\"id\":\"false\",\"displayName\":\"False\"}]}" + "size": 424, + "text": "{\"_id\":\"a5aecad8-854a-4ed5-b719-ff6c90e858c0\",\"_rev\":\"1517800905\",\"nodes\":[{\"_id\":\"0a042e10-b22e-4e02-86c4-65e26e775f7a\",\"nodeType\":\"AttributeCollectorNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Attribute Collector\"}],\"pageDescription\":{},\"pageHeader\":{\"en\":\"Please select your preferences\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -35876,7 +35876,7 @@ }, { "name": "content-length", - "value": "394" + "value": "424" }, { "name": "date", @@ -35903,14 +35903,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.470Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:49.209Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -35918,7 +35918,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 77 } }, { @@ -36054,14 +36054,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.601Z", - "time": 99, + "startedDateTime": "2026-07-14T21:32:49.382Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -36069,7 +36069,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 99 + "wait": 105 } }, { @@ -36201,14 +36201,14 @@ "value": "" } ], - "headersSize": 770, + "headersSize": 745, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.703Z", - "time": 93, + "startedDateTime": "2026-07-14T21:32:49.494Z", + "time": 135, "timings": { "blocked": -1, "connect": -1, @@ -36216,11 +36216,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 135 } }, { - "_id": "febfb94e9e2ae4f87cef3ff68f94c28a", + "_id": "059e70e3f0bcb05aac2e83baa981ecfb", "_order": 0, "cache": {}, "request": { @@ -36260,18 +36260,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2047, + "headersSize": 2039, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/EmailSuspendNode/1.0/6b70de2f-a625-4957-93d9-37005e33e6e1" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/0c091c49-f3af-48fb-ac6f-07fba0499dd6" }, "response": { - "bodySize": 452, + "bodySize": 1053, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 452, - "text": "{\"_id\":\"6b70de2f-a625-4957-93d9-37005e33e6e1\",\"_rev\":\"-475990379\",\"emailSuspendMessage\":{\"en\":\"An email has been sent to the address you entered. Click the link in that email to proceed.\"},\"emailTemplateName\":\"registration\",\"identityAttribute\":\"userName\",\"emailAttribute\":\"mail\",\"objectLookup\":false,\"_type\":{\"_id\":\"EmailSuspendNode\",\"name\":\"Email Suspend Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 1053, + "text": "{\"_id\":\"0c091c49-f3af-48fb-ac6f-07fba0499dd6\",\"_rev\":\"-1136264609\",\"nodes\":[{\"_id\":\"7fcaf48e-a754-4959-858b-05b2933b825f\",\"nodeType\":\"ValidatedUsernameNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Username\"},{\"_id\":\"d3ce2036-1523-4ce8-b1a2-895a2a036667\",\"nodeType\":\"AttributeCollectorNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Attribute Collector\"},{\"_id\":\"3d8709a1-f09f-4d1f-8094-2850e472c1db\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Password\"},{\"_id\":\"120c69d3-90b4-4ad4-b7af-380e8b119340\",\"nodeType\":\"KbaCreateNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"KBA Definition\"},{\"_id\":\"b4a0e915-c15d-4b83-9c9d-18347d645976\",\"nodeType\":\"AcceptTermsAndConditionsNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Accept Terms and Conditions\"}],\"pageDescription\":{\"en\":\"Signing up is fast and easy.
Already have an account? Sign In\"},\"pageHeader\":{\"en\":\"Sign Up\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -36325,7 +36325,7 @@ }, { "name": "content-length", - "value": "452" + "value": "1053" }, { "name": "date", @@ -36352,14 +36352,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 781, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.800Z", - "time": 108, + "startedDateTime": "2026-07-14T21:32:49.639Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -36367,11 +36367,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 73 } }, { - "_id": "059e70e3f0bcb05aac2e83baa981ecfb", + "_id": "febfb94e9e2ae4f87cef3ff68f94c28a", "_order": 0, "cache": {}, "request": { @@ -36411,18 +36411,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2039, + "headersSize": 2047, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/PageNode/1.0/0c091c49-f3af-48fb-ac6f-07fba0499dd6" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/EmailSuspendNode/1.0/6b70de2f-a625-4957-93d9-37005e33e6e1" }, "response": { - "bodySize": 1053, + "bodySize": 452, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 1053, - "text": "{\"_id\":\"0c091c49-f3af-48fb-ac6f-07fba0499dd6\",\"_rev\":\"-1136264609\",\"nodes\":[{\"_id\":\"7fcaf48e-a754-4959-858b-05b2933b825f\",\"nodeType\":\"ValidatedUsernameNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Username\"},{\"_id\":\"d3ce2036-1523-4ce8-b1a2-895a2a036667\",\"nodeType\":\"AttributeCollectorNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Attribute Collector\"},{\"_id\":\"3d8709a1-f09f-4d1f-8094-2850e472c1db\",\"nodeType\":\"ValidatedPasswordNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Platform Password\"},{\"_id\":\"120c69d3-90b4-4ad4-b7af-380e8b119340\",\"nodeType\":\"KbaCreateNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"KBA Definition\"},{\"_id\":\"b4a0e915-c15d-4b83-9c9d-18347d645976\",\"nodeType\":\"AcceptTermsAndConditionsNode\",\"nodeVersion\":\"1.0\",\"displayName\":\"Accept Terms and Conditions\"}],\"pageDescription\":{\"en\":\"Signing up is fast and easy.
Already have an account? Sign In\"},\"pageHeader\":{\"en\":\"Sign Up\"},\"_type\":{\"_id\":\"PageNode\",\"name\":\"Page Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 452, + "text": "{\"_id\":\"6b70de2f-a625-4957-93d9-37005e33e6e1\",\"_rev\":\"-475990379\",\"emailSuspendMessage\":{\"en\":\"An email has been sent to the address you entered. Click the link in that email to proceed.\"},\"emailTemplateName\":\"registration\",\"identityAttribute\":\"userName\",\"emailAttribute\":\"mail\",\"objectLookup\":false,\"_type\":{\"_id\":\"EmailSuspendNode\",\"name\":\"Email Suspend Node\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -36476,7 +36476,7 @@ }, { "name": "content-length", - "value": "1053" + "value": "452" }, { "name": "date", @@ -36503,14 +36503,14 @@ "value": "" } ], - "headersSize": 806, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.800Z", - "time": 157, + "startedDateTime": "2026-07-14T21:32:49.640Z", + "time": 169, "timings": { "blocked": -1, "connect": -1, @@ -36518,11 +36518,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 157 + "wait": 169 } }, { - "_id": "ba317ddb47c2607e4a36a4078a9ac1eb", + "_id": "ab34017ceefa4925bcd0f7007e490202", "_order": 0, "cache": {}, "request": { @@ -36562,18 +36562,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2047, + "headersSize": 2054, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/CreateObjectNode/1.0/ad5dcbb3-7335-49b7-b3e7-7d850bb88237" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/IncrementLoginCountNode/1.0/97a15eb2-a015-4b6d-81a0-be78c3aa1a3b" }, "response": { - "bodySize": 294, + "bodySize": 259, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 294, - "text": "{\"_id\":\"ad5dcbb3-7335-49b7-b3e7-7d850bb88237\",\"_rev\":\"-1699422976\",\"identityResource\":\"managed/bravo_user\",\"_type\":{\"_id\":\"CreateObjectNode\",\"name\":\"Create Object\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"CREATED\",\"displayName\":\"Created\"},{\"id\":\"FAILURE\",\"displayName\":\"Failed\"}]}" + "size": 259, + "text": "{\"_id\":\"97a15eb2-a015-4b6d-81a0-be78c3aa1a3b\",\"_rev\":\"-386946462\",\"identityAttribute\":\"userName\",\"_type\":{\"_id\":\"IncrementLoginCountNode\",\"name\":\"Increment Login Count\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -36627,7 +36627,7 @@ }, { "name": "content-length", - "value": "294" + "value": "259" }, { "name": "date", @@ -36654,14 +36654,14 @@ "value": "" } ], - "headersSize": 805, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.801Z", - "time": 107, + "startedDateTime": "2026-07-14T21:32:49.641Z", + "time": 168, "timings": { "blocked": -1, "connect": -1, @@ -36669,11 +36669,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 168 } }, { - "_id": "ab34017ceefa4925bcd0f7007e490202", + "_id": "ba317ddb47c2607e4a36a4078a9ac1eb", "_order": 0, "cache": {}, "request": { @@ -36713,18 +36713,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2054, + "headersSize": 2047, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/IncrementLoginCountNode/1.0/97a15eb2-a015-4b6d-81a0-be78c3aa1a3b" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/CreateObjectNode/1.0/ad5dcbb3-7335-49b7-b3e7-7d850bb88237" }, "response": { - "bodySize": 259, + "bodySize": 294, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 259, - "text": "{\"_id\":\"97a15eb2-a015-4b6d-81a0-be78c3aa1a3b\",\"_rev\":\"-386946462\",\"identityAttribute\":\"userName\",\"_type\":{\"_id\":\"IncrementLoginCountNode\",\"name\":\"Increment Login Count\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 294, + "text": "{\"_id\":\"ad5dcbb3-7335-49b7-b3e7-7d850bb88237\",\"_rev\":\"-1699422976\",\"identityResource\":\"managed/bravo_user\",\"_type\":{\"_id\":\"CreateObjectNode\",\"name\":\"Create Object\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"CREATED\",\"displayName\":\"Created\"},{\"id\":\"FAILURE\",\"displayName\":\"Failed\"}]}" }, "cookies": [], "headers": [ @@ -36778,7 +36778,7 @@ }, { "name": "content-length", - "value": "259" + "value": "294" }, { "name": "date", @@ -36805,14 +36805,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 780, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.801Z", - "time": 107, + "startedDateTime": "2026-07-14T21:32:49.642Z", + "time": 183, "timings": { "blocked": -1, "connect": -1, @@ -36820,7 +36820,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 183 } }, { @@ -36956,14 +36956,14 @@ "value": "" } ], - "headersSize": 804, + "headersSize": 779, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.959Z", - "time": 121, + "startedDateTime": "2026-07-14T21:32:49.831Z", + "time": 142, "timings": { "blocked": -1, "connect": -1, @@ -36971,11 +36971,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 142 } }, { - "_id": "265301aae76ccd4285a9556c20485439", + "_id": "16a8357cd7a86e933e1728d5393ddf9e", "_order": 0, "cache": {}, "request": { @@ -37015,18 +37015,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2052, + "headersSize": 2053, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/ValidatedPasswordNode/1.0/3d8709a1-f09f-4d1f-8094-2850e472c1db" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/AttributeCollectorNode/1.0/d3ce2036-1523-4ce8-b1a2-895a2a036667" }, "response": { - "bodySize": 275, + "bodySize": 388, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 275, - "text": "{\"_id\":\"3d8709a1-f09f-4d1f-8094-2850e472c1db\",\"_rev\":\"-1286221928\",\"passwordAttribute\":\"password\",\"validateInput\":true,\"_type\":{\"_id\":\"ValidatedPasswordNode\",\"name\":\"Platform Password\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 388, + "text": "{\"_id\":\"d3ce2036-1523-4ce8-b1a2-895a2a036667\",\"_rev\":\"-907823556\",\"attributesToCollect\":[\"givenName\",\"sn\",\"mail\",\"preferences/marketing\",\"preferences/updates\"],\"identityAttribute\":\"userName\",\"validateInputs\":true,\"required\":true,\"_type\":{\"_id\":\"AttributeCollectorNode\",\"name\":\"Attribute Collector\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -37080,7 +37080,7 @@ }, { "name": "content-length", - "value": "275" + "value": "388" }, { "name": "date", @@ -37107,14 +37107,14 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.960Z", - "time": 109, + "startedDateTime": "2026-07-14T21:32:49.832Z", + "time": 119, "timings": { "blocked": -1, "connect": -1, @@ -37122,11 +37122,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 109 + "wait": 119 } }, { - "_id": "16a8357cd7a86e933e1728d5393ddf9e", + "_id": "265301aae76ccd4285a9556c20485439", "_order": 0, "cache": {}, "request": { @@ -37166,18 +37166,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2053, + "headersSize": 2052, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/AttributeCollectorNode/1.0/d3ce2036-1523-4ce8-b1a2-895a2a036667" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/authentication/authenticationtrees/nodes/ValidatedPasswordNode/1.0/3d8709a1-f09f-4d1f-8094-2850e472c1db" }, "response": { - "bodySize": 388, + "bodySize": 275, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 388, - "text": "{\"_id\":\"d3ce2036-1523-4ce8-b1a2-895a2a036667\",\"_rev\":\"-907823556\",\"attributesToCollect\":[\"givenName\",\"sn\",\"mail\",\"preferences/marketing\",\"preferences/updates\"],\"identityAttribute\":\"userName\",\"validateInputs\":true,\"required\":true,\"_type\":{\"_id\":\"AttributeCollectorNode\",\"name\":\"Attribute Collector\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" + "size": 275, + "text": "{\"_id\":\"3d8709a1-f09f-4d1f-8094-2850e472c1db\",\"_rev\":\"-1286221928\",\"passwordAttribute\":\"password\",\"validateInput\":true,\"_type\":{\"_id\":\"ValidatedPasswordNode\",\"name\":\"Platform Password\",\"collection\":true,\"version\":\"1.0\"},\"_outcomes\":[{\"id\":\"outcome\",\"displayName\":\"Outcome\"}]}" }, "cookies": [], "headers": [ @@ -37231,7 +37231,7 @@ }, { "name": "content-length", - "value": "388" + "value": "275" }, { "name": "date", @@ -37258,14 +37258,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.960Z", - "time": 120, + "startedDateTime": "2026-07-14T21:32:49.833Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -37273,7 +37273,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 120 + "wait": 117 } }, { @@ -37409,14 +37409,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.961Z", - "time": 118, + "startedDateTime": "2026-07-14T21:32:49.833Z", + "time": 145, "timings": { "blocked": -1, "connect": -1, @@ -37424,7 +37424,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 145 } }, { @@ -37560,14 +37560,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:14.961Z", - "time": 119, + "startedDateTime": "2026-07-14T21:32:49.835Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -37575,7 +37575,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 75 } }, { @@ -37713,8 +37713,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.084Z", - "time": 96, + "startedDateTime": "2026-07-14T21:32:49.983Z", + "time": 115, "timings": { "blocked": -1, "connect": -1, @@ -37722,7 +37722,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 115 } }, { @@ -37864,8 +37864,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.184Z", - "time": 102, + "startedDateTime": "2026-07-14T21:32:50.105Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -37873,7 +37873,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 95 } }, { @@ -38009,13 +38009,13 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.185Z", + "startedDateTime": "2026-07-14T21:32:50.106Z", "time": 102, "timings": { "blocked": -1, @@ -38166,8 +38166,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.186Z", - "time": 90, + "startedDateTime": "2026-07-14T21:32:50.107Z", + "time": 87, "timings": { "blocked": -1, "connect": -1, @@ -38175,7 +38175,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 87 } }, { @@ -38317,8 +38317,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.186Z", - "time": 100, + "startedDateTime": "2026-07-14T21:32:50.107Z", + "time": 87, "timings": { "blocked": -1, "connect": -1, @@ -38326,7 +38326,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 87 } }, { @@ -38462,13 +38462,13 @@ "value": "" } ], - "headersSize": 780, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.187Z", + "startedDateTime": "2026-07-14T21:32:50.108Z", "time": 100, "timings": { "blocked": -1, @@ -38619,8 +38619,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.289Z", - "time": 101, + "startedDateTime": "2026-07-14T21:32:50.213Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -38628,7 +38628,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 103 } }, { @@ -38764,14 +38764,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.290Z", - "time": 109, + "startedDateTime": "2026-07-14T21:32:50.213Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -38779,7 +38779,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 109 + "wait": 103 } }, { @@ -38911,14 +38911,14 @@ "value": "" } ], - "headersSize": 745, + "headersSize": 770, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.405Z", - "time": 94, + "startedDateTime": "2026-07-14T21:32:50.322Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -38926,7 +38926,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 94 + "wait": 92 } }, { @@ -39062,14 +39062,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.505Z", - "time": 133, + "startedDateTime": "2026-07-14T21:32:50.421Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -39077,7 +39077,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 133 + "wait": 103 } }, { @@ -39219,8 +39219,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.507Z", - "time": 110, + "startedDateTime": "2026-07-14T21:32:50.422Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -39228,7 +39228,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 110 + "wait": 99 } }, { @@ -39370,8 +39370,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.509Z", - "time": 119, + "startedDateTime": "2026-07-14T21:32:50.423Z", + "time": 121, "timings": { "blocked": -1, "connect": -1, @@ -39379,7 +39379,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 121 } }, { @@ -39521,8 +39521,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.510Z", - "time": 118, + "startedDateTime": "2026-07-14T21:32:50.424Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -39530,7 +39530,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 93 } }, { @@ -39672,8 +39672,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.511Z", - "time": 106, + "startedDateTime": "2026-07-14T21:32:50.425Z", + "time": 90, "timings": { "blocked": -1, "connect": -1, @@ -39681,7 +39681,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 106 + "wait": 90 } }, { @@ -39823,8 +39823,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.513Z", - "time": 104, + "startedDateTime": "2026-07-14T21:32:50.425Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -39832,7 +39832,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 104 + "wait": 91 } }, { @@ -39968,14 +39968,14 @@ "value": "" } ], - "headersSize": 779, + "headersSize": 804, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.514Z", - "time": 124, + "startedDateTime": "2026-07-14T21:32:50.426Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -39983,7 +39983,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 124 + "wait": 100 } }, { @@ -40119,14 +40119,14 @@ "value": "" } ], - "headersSize": 778, + "headersSize": 803, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.642Z", - "time": 92, + "startedDateTime": "2026-07-14T21:32:50.548Z", + "time": 88, "timings": { "blocked": -1, "connect": -1, @@ -40134,7 +40134,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 92 + "wait": 88 } }, { @@ -40276,8 +40276,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.642Z", - "time": 103, + "startedDateTime": "2026-07-14T21:32:50.548Z", + "time": 143, "timings": { "blocked": -1, "connect": -1, @@ -40285,7 +40285,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 103 + "wait": 143 } }, { @@ -40433,8 +40433,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:16.333Z", - "time": 154, + "startedDateTime": "2026-07-14T21:32:51.049Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -40442,7 +40442,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 154 + "wait": 93 } }, { @@ -40581,8 +40581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:16.490Z", - "time": 132, + "startedDateTime": "2026-07-14T21:32:51.150Z", + "time": 133, "timings": { "blocked": -1, "connect": -1, @@ -40590,7 +40590,155 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 132 + "wait": 133 + } + }, + { + "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=2.1,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1983, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "_queryFilter", + "value": "true" + } + ], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + }, + "response": { + "bodySize": 307, + "content": { + "mimeType": "application/json;charset=UTF-8", + "size": 307, + "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + }, + "cookies": [], + "headers": [ + { + "name": "x-frame-options", + "value": "DENY" + }, + { + "name": "content-security-policy", + "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" + }, + { + "name": "content-security-policy-report-only", + "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "cache-control", + "value": "private" + }, + { + "name": "cross-origin-opener-policy", + "value": "same-origin" + }, + { + "name": "cross-origin-resource-policy", + "value": "same-origin" + }, + { + "name": "expires", + "value": "0" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-type", + "value": "application/json;charset=UTF-8" + }, + { + "name": "content-length", + "value": "307" + }, + { + "name": "date", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 749, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:32:51.152Z", + "time": 122, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 122 } }, { @@ -40723,14 +40871,14 @@ "value": "chunked" } ], - "headersSize": 731, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:16.491Z", - "time": 141, + "startedDateTime": "2026-07-14T21:32:51.152Z", + "time": 133, "timings": { "blocked": -1, "connect": -1, @@ -40738,11 +40886,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 141 + "wait": 133 } }, { - "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_id": "47eb718be76e00df79a1b4012fe144a4", "_order": 0, "cache": {}, "request": { @@ -40782,7 +40930,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1983, + "headersSize": 1985, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -40791,14 +40939,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" }, "response": { - "bodySize": 307, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 307, - "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -40844,7 +40992,7 @@ }, { "name": "content-length", - "value": "307" + "value": "138" }, { "name": "date", @@ -40877,155 +41025,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:16.492Z", - "time": 122, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 122 - } - }, - { - "_id": "47eb718be76e00df79a1b4012fe144a4", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "" - }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "accept-api-version", - "value": "protocol=2.1,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1985, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "_queryFilter", - "value": "true" - } - ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" - }, - "response": { - "bodySize": 138, - "content": { - "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" - }, - "cookies": [], - "headers": [ - { - "name": "x-frame-options", - "value": "DENY" - }, - { - "name": "content-security-policy", - "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" - }, - { - "name": "content-security-policy-report-only", - "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "cross-origin-opener-policy", - "value": "same-origin" - }, - { - "name": "cross-origin-resource-policy", - "value": "same-origin" - }, - { - "name": "expires", - "value": "0" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "content-type", - "value": "application/json;charset=UTF-8" - }, - { - "name": "content-length", - "value": "138" - }, - { - "name": "date", - "value": "" - }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "" - }, - { - "name": "alt-svc", - "value": "" - } - ], - "headersSize": 749, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2026-07-13T17:00:16.492Z", + "startedDateTime": "2026-07-14T21:32:51.153Z", "time": 129, "timings": { "blocked": -1, @@ -41173,8 +41173,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:16.492Z", - "time": 129, + "startedDateTime": "2026-07-14T21:32:51.154Z", + "time": 118, "timings": { "blocked": -1, "connect": -1, @@ -41182,7 +41182,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 118 } }, { @@ -41315,14 +41315,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:16.493Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:51.155Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -41330,7 +41330,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 126 } }, { @@ -41469,8 +41469,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:16.493Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:51.156Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -41478,7 +41478,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 117 } }, { @@ -41611,14 +41611,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:16.494Z", - "time": 253, + "startedDateTime": "2026-07-14T21:32:51.156Z", + "time": 125, "timings": { "blocked": -1, "connect": -1, @@ -41626,7 +41626,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 253 + "wait": 125 } }, { @@ -41759,14 +41759,14 @@ "value": "chunked" } ], - "headersSize": 756, + "headersSize": 731, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:16.495Z", - "time": 606, + "startedDateTime": "2026-07-14T21:32:51.157Z", + "time": 212, "timings": { "blocked": -1, "connect": -1, @@ -41774,7 +41774,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 606 + "wait": 212 } }, { @@ -41907,14 +41907,14 @@ "value": "" } ], - "headersSize": 750, + "headersSize": 725, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.105Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:51.376Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -41922,11 +41922,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 99 } }, { - "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_id": "f41259a4eadb375c91e01113418a4d25", "_order": 1, "cache": {}, "request": { @@ -41975,14 +41975,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" }, "response": { - "bodySize": 307, + "bodySize": 10677, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 307, - "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 10677, + "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -42026,10 +42026,6 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, - { - "name": "content-length", - "value": "307" - }, { "name": "date", "value": "" @@ -42053,16 +42049,20 @@ { "name": "alt-svc", "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 724, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.106Z", - "time": 102, + "startedDateTime": "2026-07-14T21:32:51.377Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -42070,11 +42070,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 103 } }, { - "_id": "47eb718be76e00df79a1b4012fe144a4", + "_id": "eb20bd8db70d15d88f0c766b62946af3", "_order": 1, "cache": {}, "request": { @@ -42114,7 +42114,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1985, + "headersSize": 1983, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -42123,14 +42123,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 307, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 307, + "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -42176,7 +42176,7 @@ }, { "name": "content-length", - "value": "138" + "value": "307" }, { "name": "date", @@ -42209,8 +42209,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.106Z", - "time": 111, + "startedDateTime": "2026-07-14T21:32:51.378Z", + "time": 86, "timings": { "blocked": -1, "connect": -1, @@ -42218,11 +42218,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 86 } }, { - "_id": "f41259a4eadb375c91e01113418a4d25", + "_id": "47eb718be76e00df79a1b4012fe144a4", "_order": 1, "cache": {}, "request": { @@ -42262,7 +42262,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1983, + "headersSize": 1985, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -42271,14 +42271,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" }, "response": { - "bodySize": 10677, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 10677, - "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -42322,6 +42322,10 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, + { + "name": "content-length", + "value": "138" + }, { "name": "date", "value": "" @@ -42345,20 +42349,16 @@ { "name": "alt-svc", "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" } ], - "headersSize": 756, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.106Z", - "time": 112, + "startedDateTime": "2026-07-14T21:32:51.379Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -42366,7 +42366,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 96 } }, { @@ -42505,8 +42505,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.107Z", - "time": 101, + "startedDateTime": "2026-07-14T21:32:51.380Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -42514,7 +42514,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 91 } }, { @@ -42647,14 +42647,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.107Z", - "time": 105, + "startedDateTime": "2026-07-14T21:32:51.380Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -42662,7 +42662,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 105 + "wait": 92 } }, { @@ -42801,8 +42801,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.107Z", - "time": 110, + "startedDateTime": "2026-07-14T21:32:51.381Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -42810,7 +42810,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 110 + "wait": 100 } }, { @@ -42949,8 +42949,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.108Z", - "time": 100, + "startedDateTime": "2026-07-14T21:32:51.382Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -42958,7 +42958,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 97 } }, { @@ -43091,14 +43091,14 @@ "value": "chunked" } ], - "headersSize": 731, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.108Z", - "time": 189, + "startedDateTime": "2026-07-14T21:32:51.383Z", + "time": 204, "timings": { "blocked": -1, "connect": -1, @@ -43106,11 +43106,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 189 + "wait": 204 } }, { - "_id": "f41259a4eadb375c91e01113418a4d25", + "_id": "a3eb0ad597450c61df00537b21750233", "_order": 2, "cache": {}, "request": { @@ -43150,7 +43150,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1983, + "headersSize": 1982, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -43159,14 +43159,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/WebAgent?_queryFilter=true" }, "response": { - "bodySize": 10677, + "bodySize": 7320, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 10677, - "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 7320, + "text": "{\"result\":[{\"_id\":\"frodo-test-web-agent2\",\"_rev\":\"930101313\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}},{\"_id\":\"frodo-test-web-agent\",\"_rev\":\"218393939\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -43210,6 +43210,10 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, + { + "name": "content-length", + "value": "7320" + }, { "name": "date", "value": "" @@ -43233,20 +43237,16 @@ { "name": "alt-svc", "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" } ], - "headersSize": 756, + "headersSize": 750, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.301Z", - "time": 148, + "startedDateTime": "2026-07-14T21:32:51.593Z", + "time": 107, "timings": { "blocked": -1, "connect": -1, @@ -43254,11 +43254,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 148 + "wait": 107 } }, { - "_id": "a3eb0ad597450c61df00537b21750233", + "_id": "f41259a4eadb375c91e01113418a4d25", "_order": 2, "cache": {}, "request": { @@ -43298,7 +43298,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1982, + "headersSize": 1983, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -43307,14 +43307,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/WebAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" }, "response": { - "bodySize": 7320, + "bodySize": 10677, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 7320, - "text": "{\"result\":[{\"_id\":\"frodo-test-web-agent2\",\"_rev\":\"930101313\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}},{\"_id\":\"frodo-test-web-agent\",\"_rev\":\"218393939\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 10677, + "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -43358,10 +43358,6 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, - { - "name": "content-length", - "value": "7320" - }, { "name": "date", "value": "" @@ -43385,16 +43381,20 @@ { "name": "alt-svc", "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 725, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.301Z", - "time": 157, + "startedDateTime": "2026-07-14T21:32:51.598Z", + "time": 108, "timings": { "blocked": -1, "connect": -1, @@ -43402,11 +43402,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 157 + "wait": 108 } }, { - "_id": "47eb718be76e00df79a1b4012fe144a4", + "_id": "eb20bd8db70d15d88f0c766b62946af3", "_order": 2, "cache": {}, "request": { @@ -43446,7 +43446,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1985, + "headersSize": 1983, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -43455,14 +43455,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 307, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 307, + "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -43508,7 +43508,7 @@ }, { "name": "content-length", - "value": "138" + "value": "307" }, { "name": "date", @@ -43541,8 +43541,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.302Z", - "time": 136, + "startedDateTime": "2026-07-14T21:32:51.599Z", + "time": 104, "timings": { "blocked": -1, "connect": -1, @@ -43550,11 +43550,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 136 + "wait": 104 } }, { - "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_id": "47eb718be76e00df79a1b4012fe144a4", "_order": 2, "cache": {}, "request": { @@ -43594,7 +43594,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1983, + "headersSize": 1985, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -43603,14 +43603,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" }, "response": { - "bodySize": 307, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 307, - "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -43656,7 +43656,7 @@ }, { "name": "content-length", - "value": "307" + "value": "138" }, { "name": "date", @@ -43689,8 +43689,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.302Z", - "time": 146, + "startedDateTime": "2026-07-14T21:32:51.600Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -43698,11 +43698,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 146 + "wait": 94 } }, { - "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", + "_id": "01252ebc30a8b343d9a2708c3b2c93c2", "_order": 2, "cache": {}, "request": { @@ -43742,7 +43742,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1991, + "headersSize": 1992, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -43751,14 +43751,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" }, "response": { - "bodySize": 478, + "bodySize": 939, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 478, - "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 939, + "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -43804,7 +43804,7 @@ }, { "name": "content-length", - "value": "478" + "value": "939" }, { "name": "date", @@ -43831,14 +43831,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.303Z", - "time": 133, + "startedDateTime": "2026-07-14T21:32:51.600Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -43846,11 +43846,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 133 + "wait": 103 } }, { - "_id": "9362a24f93ec5ea8e622101901b28a83", + "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", "_order": 2, "cache": {}, "request": { @@ -43890,7 +43890,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1994, + "headersSize": 1991, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -43899,14 +43899,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" }, "response": { - "bodySize": 1847, + "bodySize": 478, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 1847, - "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" + "size": 478, + "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -43952,7 +43952,7 @@ }, { "name": "content-length", - "value": "1847" + "value": "478" }, { "name": "date", @@ -43979,14 +43979,14 @@ "value": "" } ], - "headersSize": 725, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.303Z", - "time": 135, + "startedDateTime": "2026-07-14T21:32:51.601Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -43994,11 +43994,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 135 + "wait": 91 } }, { - "_id": "01252ebc30a8b343d9a2708c3b2c93c2", + "_id": "9362a24f93ec5ea8e622101901b28a83", "_order": 2, "cache": {}, "request": { @@ -44038,7 +44038,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1992, + "headersSize": 1994, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -44047,14 +44047,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" }, "response": { - "bodySize": 939, + "bodySize": 1847, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 939, - "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 1847, + "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -44100,7 +44100,7 @@ }, { "name": "content-length", - "value": "939" + "value": "1847" }, { "name": "date", @@ -44127,14 +44127,14 @@ "value": "" } ], - "headersSize": 724, + "headersSize": 725, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.303Z", - "time": 146, + "startedDateTime": "2026-07-14T21:32:51.602Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -44142,7 +44142,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 146 + "wait": 96 } }, { @@ -44281,8 +44281,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.304Z", - "time": 121, + "startedDateTime": "2026-07-14T21:32:51.602Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -44290,7 +44290,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 100 } }, { @@ -44429,8 +44429,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.304Z", - "time": 233, + "startedDateTime": "2026-07-14T21:32:51.603Z", + "time": 145, "timings": { "blocked": -1, "connect": -1, @@ -44438,7 +44438,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 233 + "wait": 145 } }, { @@ -44577,8 +44577,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.541Z", - "time": 137, + "startedDateTime": "2026-07-14T21:32:51.754Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -44586,11 +44586,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 137 + "wait": 97 } }, { - "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_id": "f41259a4eadb375c91e01113418a4d25", "_order": 3, "cache": {}, "request": { @@ -44639,14 +44639,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" }, "response": { - "bodySize": 307, + "bodySize": 10677, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 307, - "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 10677, + "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -44690,10 +44690,6 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, - { - "name": "content-length", - "value": "307" - }, { "name": "date", "value": "" @@ -44717,16 +44713,20 @@ { "name": "alt-svc", "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 724, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.542Z", - "time": 129, + "startedDateTime": "2026-07-14T21:32:51.755Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -44734,11 +44734,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 105 } }, { - "_id": "f41259a4eadb375c91e01113418a4d25", + "_id": "eb20bd8db70d15d88f0c766b62946af3", "_order": 3, "cache": {}, "request": { @@ -44787,14 +44787,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" }, "response": { - "bodySize": 10677, + "bodySize": 307, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 10677, - "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 307, + "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -44838,6 +44838,10 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, + { + "name": "content-length", + "value": "307" + }, { "name": "date", "value": "" @@ -44861,20 +44865,16 @@ { "name": "alt-svc", "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" } ], - "headersSize": 731, + "headersSize": 749, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.542Z", - "time": 139, + "startedDateTime": "2026-07-14T21:32:51.756Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -44882,11 +44882,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 139 + "wait": 97 } }, { - "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", + "_id": "47eb718be76e00df79a1b4012fe144a4", "_order": 3, "cache": {}, "request": { @@ -44926,7 +44926,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1991, + "headersSize": 1985, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -44935,14 +44935,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" }, "response": { - "bodySize": 478, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 478, - "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -44988,7 +44988,7 @@ }, { "name": "content-length", - "value": "478" + "value": "138" }, { "name": "date", @@ -45015,14 +45015,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.543Z", - "time": 124, + "startedDateTime": "2026-07-14T21:32:51.757Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -45030,11 +45030,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 124 + "wait": 95 } }, { - "_id": "47eb718be76e00df79a1b4012fe144a4", + "_id": "01252ebc30a8b343d9a2708c3b2c93c2", "_order": 3, "cache": {}, "request": { @@ -45074,7 +45074,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1985, + "headersSize": 1992, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -45083,14 +45083,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 939, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 939, + "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -45136,7 +45136,7 @@ }, { "name": "content-length", - "value": "138" + "value": "939" }, { "name": "date", @@ -45163,14 +45163,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.543Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:51.758Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -45178,11 +45178,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 94 } }, { - "_id": "01252ebc30a8b343d9a2708c3b2c93c2", + "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", "_order": 3, "cache": {}, "request": { @@ -45222,7 +45222,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1992, + "headersSize": 1991, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -45231,14 +45231,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" }, "response": { - "bodySize": 939, + "bodySize": 478, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 939, - "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 478, + "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -45284,7 +45284,7 @@ }, { "name": "content-length", - "value": "939" + "value": "478" }, { "name": "date", @@ -45317,8 +45317,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.543Z", - "time": 135, + "startedDateTime": "2026-07-14T21:32:51.758Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -45326,7 +45326,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 135 + "wait": 94 } }, { @@ -45459,14 +45459,14 @@ "value": "" } ], - "headersSize": 750, + "headersSize": 725, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.543Z", - "time": 135, + "startedDateTime": "2026-07-14T21:32:51.759Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -45474,7 +45474,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 135 + "wait": 97 } }, { @@ -45613,8 +45613,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.544Z", - "time": 127, + "startedDateTime": "2026-07-14T21:32:51.760Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -45622,7 +45622,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 127 + "wait": 94 } }, { @@ -45761,8 +45761,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.544Z", - "time": 200, + "startedDateTime": "2026-07-14T21:32:51.760Z", + "time": 138, "timings": { "blocked": -1, "connect": -1, @@ -45770,7 +45770,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 200 + "wait": 138 } }, { @@ -45909,8 +45909,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.748Z", - "time": 132, + "startedDateTime": "2026-07-14T21:32:51.904Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -45918,7 +45918,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 132 + "wait": 85 } }, { @@ -46051,14 +46051,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.749Z", - "time": 130, + "startedDateTime": "2026-07-14T21:32:51.905Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -46066,7 +46066,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 130 + "wait": 81 } }, { @@ -46205,8 +46205,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.749Z", - "time": 140, + "startedDateTime": "2026-07-14T21:32:51.905Z", + "time": 89, "timings": { "blocked": -1, "connect": -1, @@ -46214,7 +46214,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 89 } }, { @@ -46353,8 +46353,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.750Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:51.906Z", + "time": 84, "timings": { "blocked": -1, "connect": -1, @@ -46362,11 +46362,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 84 } }, { - "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", + "_id": "01252ebc30a8b343d9a2708c3b2c93c2", "_order": 4, "cache": {}, "request": { @@ -46406,7 +46406,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1991, + "headersSize": 1992, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -46415,14 +46415,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" }, "response": { - "bodySize": 478, + "bodySize": 939, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 478, - "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 939, + "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -46468,7 +46468,7 @@ }, { "name": "content-length", - "value": "478" + "value": "939" }, { "name": "date", @@ -46495,14 +46495,14 @@ "value": "" } ], - "headersSize": 724, + "headersSize": 749, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.750Z", - "time": 129, + "startedDateTime": "2026-07-14T21:32:51.907Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -46510,11 +46510,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 79 } }, { - "_id": "01252ebc30a8b343d9a2708c3b2c93c2", + "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", "_order": 4, "cache": {}, "request": { @@ -46554,7 +46554,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1992, + "headersSize": 1991, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -46563,14 +46563,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" }, "response": { - "bodySize": 939, + "bodySize": 478, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 939, - "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 478, + "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -46616,7 +46616,7 @@ }, { "name": "content-length", - "value": "939" + "value": "478" }, { "name": "date", @@ -46643,14 +46643,14 @@ "value": "" } ], - "headersSize": 724, + "headersSize": 749, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.750Z", - "time": 130, + "startedDateTime": "2026-07-14T21:32:51.908Z", + "time": 89, "timings": { "blocked": -1, "connect": -1, @@ -46658,7 +46658,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 130 + "wait": 89 } }, { @@ -46797,8 +46797,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.750Z", - "time": 131, + "startedDateTime": "2026-07-14T21:32:51.909Z", + "time": 88, "timings": { "blocked": -1, "connect": -1, @@ -46806,7 +46806,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 131 + "wait": 88 } }, { @@ -46939,14 +46939,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.751Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:51.911Z", + "time": 88, "timings": { "blocked": -1, "connect": -1, @@ -46954,7 +46954,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 88 } }, { @@ -47087,14 +47087,14 @@ "value": "chunked" } ], - "headersSize": 756, + "headersSize": 731, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.751Z", - "time": 193, + "startedDateTime": "2026-07-14T21:32:51.911Z", + "time": 129, "timings": { "blocked": -1, "connect": -1, @@ -47102,11 +47102,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 193 + "wait": 129 } }, { - "_id": "f41259a4eadb375c91e01113418a4d25", + "_id": "a3eb0ad597450c61df00537b21750233", "_order": 5, "cache": {}, "request": { @@ -47146,7 +47146,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1983, + "headersSize": 1982, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -47155,14 +47155,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/WebAgent?_queryFilter=true" }, "response": { - "bodySize": 10677, + "bodySize": 7320, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 10677, - "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 7320, + "text": "{\"result\":[{\"_id\":\"frodo-test-web-agent2\",\"_rev\":\"930101313\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}},{\"_id\":\"frodo-test-web-agent\",\"_rev\":\"218393939\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -47206,6 +47206,10 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, + { + "name": "content-length", + "value": "7320" + }, { "name": "date", "value": "" @@ -47229,20 +47233,16 @@ { "name": "alt-svc", "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" } ], - "headersSize": 731, + "headersSize": 725, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.948Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:52.046Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -47250,11 +47250,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 94 } }, { - "_id": "a3eb0ad597450c61df00537b21750233", + "_id": "eb20bd8db70d15d88f0c766b62946af3", "_order": 5, "cache": {}, "request": { @@ -47294,7 +47294,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1982, + "headersSize": 1983, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -47303,14 +47303,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/WebAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" }, "response": { - "bodySize": 7320, + "bodySize": 307, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 7320, - "text": "{\"result\":[{\"_id\":\"frodo-test-web-agent2\",\"_rev\":\"930101313\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}},{\"_id\":\"frodo-test-web-agent\",\"_rev\":\"218393939\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 307, + "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -47356,7 +47356,7 @@ }, { "name": "content-length", - "value": "7320" + "value": "307" }, { "name": "date", @@ -47383,14 +47383,14 @@ "value": "" } ], - "headersSize": 725, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.948Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:52.047Z", + "time": 88, "timings": { "blocked": -1, "connect": -1, @@ -47398,11 +47398,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 88 } }, { - "_id": "47eb718be76e00df79a1b4012fe144a4", + "_id": "f41259a4eadb375c91e01113418a4d25", "_order": 5, "cache": {}, "request": { @@ -47442,7 +47442,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1985, + "headersSize": 1983, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -47451,14 +47451,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 10677, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 10677, + "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -47502,10 +47502,6 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, - { - "name": "content-length", - "value": "138" - }, { "name": "date", "value": "" @@ -47529,16 +47525,20 @@ { "name": "alt-svc", "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 724, + "headersSize": 731, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.949Z", - "time": 95, + "startedDateTime": "2026-07-14T21:32:52.047Z", + "time": 104, "timings": { "blocked": -1, "connect": -1, @@ -47546,11 +47546,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 104 } }, { - "_id": "01252ebc30a8b343d9a2708c3b2c93c2", + "_id": "47eb718be76e00df79a1b4012fe144a4", "_order": 5, "cache": {}, "request": { @@ -47590,7 +47590,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1992, + "headersSize": 1985, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -47599,14 +47599,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" }, "response": { - "bodySize": 939, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 939, - "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -47652,7 +47652,7 @@ }, { "name": "content-length", - "value": "939" + "value": "138" }, { "name": "date", @@ -47679,14 +47679,14 @@ "value": "" } ], - "headersSize": 724, + "headersSize": 749, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.949Z", - "time": 100, + "startedDateTime": "2026-07-14T21:32:52.048Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -47694,11 +47694,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 94 } }, { - "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_id": "01252ebc30a8b343d9a2708c3b2c93c2", "_order": 5, "cache": {}, "request": { @@ -47738,7 +47738,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1983, + "headersSize": 1992, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -47747,14 +47747,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" }, "response": { - "bodySize": 307, + "bodySize": 939, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 307, - "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 939, + "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -47800,7 +47800,7 @@ }, { "name": "content-length", - "value": "307" + "value": "939" }, { "name": "date", @@ -47827,14 +47827,14 @@ "value": "" } ], - "headersSize": 724, + "headersSize": 749, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.949Z", - "time": 111, + "startedDateTime": "2026-07-14T21:32:52.049Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -47842,11 +47842,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 99 } }, { - "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", + "_id": "9362a24f93ec5ea8e622101901b28a83", "_order": 5, "cache": {}, "request": { @@ -47886,7 +47886,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1991, + "headersSize": 1994, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -47895,14 +47895,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" }, "response": { - "bodySize": 478, + "bodySize": 1847, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 478, - "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 1847, + "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -47948,7 +47948,7 @@ }, { "name": "content-length", - "value": "478" + "value": "1847" }, { "name": "date", @@ -47975,14 +47975,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 725, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.950Z", - "time": 126, + "startedDateTime": "2026-07-14T21:32:52.050Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -47990,11 +47990,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 126 + "wait": 100 } }, { - "_id": "9362a24f93ec5ea8e622101901b28a83", + "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", "_order": 5, "cache": {}, "request": { @@ -48034,7 +48034,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1994, + "headersSize": 1991, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -48043,14 +48043,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" }, "response": { - "bodySize": 1847, + "bodySize": 478, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 1847, - "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" + "size": 478, + "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -48096,7 +48096,7 @@ }, { "name": "content-length", - "value": "1847" + "value": "478" }, { "name": "date", @@ -48123,14 +48123,14 @@ "value": "" } ], - "headersSize": 750, + "headersSize": 749, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.950Z", - "time": 126, + "startedDateTime": "2026-07-14T21:32:52.050Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -48138,7 +48138,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 126 + "wait": 103 } }, { @@ -48271,14 +48271,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.951Z", - "time": 125, + "startedDateTime": "2026-07-14T21:32:52.051Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -48286,7 +48286,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 125 + "wait": 94 } }, { @@ -48425,8 +48425,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:17.951Z", - "time": 188, + "startedDateTime": "2026-07-14T21:32:52.052Z", + "time": 152, "timings": { "blocked": -1, "connect": -1, @@ -48434,7 +48434,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 188 + "wait": 152 } }, { @@ -48573,8 +48573,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.143Z", - "time": 143, + "startedDateTime": "2026-07-14T21:32:52.216Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -48582,11 +48582,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 143 + "wait": 94 } }, { - "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_id": "f41259a4eadb375c91e01113418a4d25", "_order": 6, "cache": {}, "request": { @@ -48635,14 +48635,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" }, "response": { - "bodySize": 307, + "bodySize": 10677, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 307, - "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 10677, + "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -48686,10 +48686,6 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, - { - "name": "content-length", - "value": "307" - }, { "name": "date", "value": "" @@ -48713,16 +48709,20 @@ { "name": "alt-svc", "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 724, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.144Z", - "time": 129, + "startedDateTime": "2026-07-14T21:32:52.217Z", + "time": 101, "timings": { "blocked": -1, "connect": -1, @@ -48730,11 +48730,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 101 } }, { - "_id": "f41259a4eadb375c91e01113418a4d25", + "_id": "eb20bd8db70d15d88f0c766b62946af3", "_order": 6, "cache": {}, "request": { @@ -48783,14 +48783,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" }, "response": { - "bodySize": 10677, + "bodySize": 307, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 10677, - "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 307, + "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -48834,6 +48834,10 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, + { + "name": "content-length", + "value": "307" + }, { "name": "date", "value": "" @@ -48857,20 +48861,16 @@ { "name": "alt-svc", "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" } ], - "headersSize": 756, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.144Z", - "time": 142, + "startedDateTime": "2026-07-14T21:32:52.218Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -48878,7 +48878,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 142 + "wait": 99 } }, { @@ -49011,14 +49011,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.145Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:52.222Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -49026,7 +49026,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 94 } }, { @@ -49165,8 +49165,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.145Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:52.223Z", + "time": 90, "timings": { "blocked": -1, "connect": -1, @@ -49174,11 +49174,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 90 } }, { - "_id": "e8e4fb44f886063f60da0ddb195b97c1", + "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", "_order": 6, "cache": {}, "request": { @@ -49218,7 +49218,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1990, + "headersSize": 1991, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -49227,14 +49227,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/TrustedJwtIssuer?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 478, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 478, + "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -49280,7 +49280,7 @@ }, { "name": "content-length", - "value": "138" + "value": "478" }, { "name": "date", @@ -49313,8 +49313,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.146Z", - "time": 110, + "startedDateTime": "2026-07-14T21:32:52.223Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -49322,11 +49322,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 110 + "wait": 93 } }, { - "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", + "_id": "9362a24f93ec5ea8e622101901b28a83", "_order": 6, "cache": {}, "request": { @@ -49366,7 +49366,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1991, + "headersSize": 1994, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -49375,14 +49375,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" }, "response": { - "bodySize": 478, + "bodySize": 1847, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 478, - "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 1847, + "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -49428,7 +49428,7 @@ }, { "name": "content-length", - "value": "478" + "value": "1847" }, { "name": "date", @@ -49455,14 +49455,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 750, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.146Z", - "time": 121, + "startedDateTime": "2026-07-14T21:32:52.224Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -49470,11 +49470,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 98 } }, { - "_id": "9362a24f93ec5ea8e622101901b28a83", + "_id": "e8e4fb44f886063f60da0ddb195b97c1", "_order": 6, "cache": {}, "request": { @@ -49514,7 +49514,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1994, + "headersSize": 1990, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -49523,14 +49523,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/TrustedJwtIssuer?_queryFilter=true" }, "response": { - "bodySize": 1847, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 1847, - "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -49576,7 +49576,7 @@ }, { "name": "content-length", - "value": "1847" + "value": "138" }, { "name": "date", @@ -49603,14 +49603,14 @@ "value": "" } ], - "headersSize": 725, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.146Z", - "time": 127, + "startedDateTime": "2026-07-14T21:32:52.225Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -49618,7 +49618,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 127 + "wait": 93 } }, { @@ -49757,8 +49757,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.146Z", - "time": 207, + "startedDateTime": "2026-07-14T21:32:52.226Z", + "time": 143, "timings": { "blocked": -1, "connect": -1, @@ -49766,7 +49766,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 207 + "wait": 143 } }, { @@ -49905,7 +49905,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.357Z", + "startedDateTime": "2026-07-14T21:32:52.380Z", "time": 113, "timings": { "blocked": -1, @@ -50041,168 +50041,20 @@ { "name": "alt-svc", "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" - } - ], - "headersSize": 756, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2026-07-13T17:00:18.357Z", - "time": 129, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 129 - } - }, - { - "_id": "47eb718be76e00df79a1b4012fe144a4", - "_order": 7, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "" - }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "accept-api-version", - "value": "protocol=2.1,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1985, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "_queryFilter", - "value": "true" - } - ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" - }, - "response": { - "bodySize": 138, - "content": { - "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" - }, - "cookies": [], - "headers": [ - { - "name": "x-frame-options", - "value": "DENY" - }, - { - "name": "content-security-policy", - "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" - }, - { - "name": "content-security-policy-report-only", - "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "cross-origin-opener-policy", - "value": "same-origin" - }, - { - "name": "cross-origin-resource-policy", - "value": "same-origin" - }, - { - "name": "expires", - "value": "0" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "content-type", - "value": "application/json;charset=UTF-8" - }, - { - "name": "content-length", - "value": "138" - }, - { - "name": "date", - "value": "" - }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "" - }, - { - "name": "alt-svc", - "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 724, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.358Z", - "time": 113, + "startedDateTime": "2026-07-14T21:32:52.383Z", + "time": 108, "timings": { "blocked": -1, "connect": -1, @@ -50210,7 +50062,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 113 + "wait": 108 } }, { @@ -50349,8 +50201,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.358Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:52.384Z", + "time": 106, "timings": { "blocked": -1, "connect": -1, @@ -50358,11 +50210,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 106 } }, { - "_id": "01252ebc30a8b343d9a2708c3b2c93c2", + "_id": "47eb718be76e00df79a1b4012fe144a4", "_order": 7, "cache": {}, "request": { @@ -50402,7 +50254,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1992, + "headersSize": 1985, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -50411,14 +50263,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" }, "response": { - "bodySize": 939, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 939, - "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -50464,7 +50316,7 @@ }, { "name": "content-length", - "value": "939" + "value": "138" }, { "name": "date", @@ -50491,14 +50343,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.358Z", - "time": 119, + "startedDateTime": "2026-07-14T21:32:52.385Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -50506,11 +50358,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 96 } }, { - "_id": "e8e4fb44f886063f60da0ddb195b97c1", + "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", "_order": 7, "cache": {}, "request": { @@ -50550,7 +50402,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1990, + "headersSize": 1991, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -50559,14 +50411,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/TrustedJwtIssuer?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 478, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 478, + "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -50612,7 +50464,7 @@ }, { "name": "content-length", - "value": "138" + "value": "478" }, { "name": "date", @@ -50639,14 +50491,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.359Z", - "time": 112, + "startedDateTime": "2026-07-14T21:32:52.386Z", + "time": 86, "timings": { "blocked": -1, "connect": -1, @@ -50654,11 +50506,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 86 } }, { - "_id": "b5ab9b3fe24ef70e85b1e25680fc189d", + "_id": "01252ebc30a8b343d9a2708c3b2c93c2", "_order": 7, "cache": {}, "request": { @@ -50698,7 +50550,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1991, + "headersSize": 1992, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -50707,14 +50559,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SoftwarePublisher?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" }, "response": { - "bodySize": 478, + "bodySize": 939, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 478, - "text": "{\"result\":[{\"_id\":\"test software publisher\",\"_rev\":\"1510799304\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"softwareStatementSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"issuer\":null,\"jwkStoreCacheMissCacheTime\":60000,\"jwksUri\":null,\"agentgroup\":null,\"_type\":{\"_id\":\"SoftwarePublisher\",\"name\":\"OAuth2 Software Publisher\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 939, + "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -50760,7 +50612,7 @@ }, { "name": "content-length", - "value": "478" + "value": "939" }, { "name": "date", @@ -50793,8 +50645,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.359Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:52.386Z", + "time": 102, "timings": { "blocked": -1, "connect": -1, @@ -50802,7 +50654,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 102 } }, { @@ -50941,8 +50793,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.359Z", - "time": 122, + "startedDateTime": "2026-07-14T21:32:52.387Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -50950,7 +50802,155 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 122 + "wait": 85 + } + }, + { + "_id": "e8e4fb44f886063f60da0ddb195b97c1", + "_order": 7, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=2.1,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1990, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "_queryFilter", + "value": "true" + } + ], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/TrustedJwtIssuer?_queryFilter=true" + }, + "response": { + "bodySize": 138, + "content": { + "mimeType": "application/json;charset=UTF-8", + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + }, + "cookies": [], + "headers": [ + { + "name": "x-frame-options", + "value": "DENY" + }, + { + "name": "content-security-policy", + "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" + }, + { + "name": "content-security-policy-report-only", + "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "cache-control", + "value": "private" + }, + { + "name": "cross-origin-opener-policy", + "value": "same-origin" + }, + { + "name": "cross-origin-resource-policy", + "value": "same-origin" + }, + { + "name": "expires", + "value": "0" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-type", + "value": "application/json;charset=UTF-8" + }, + { + "name": "content-length", + "value": "138" + }, + { + "name": "date", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 749, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:32:52.387Z", + "time": 96, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 96 } }, { @@ -51083,14 +51083,14 @@ "value": "chunked" } ], - "headersSize": 731, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.359Z", - "time": 207, + "startedDateTime": "2026-07-14T21:32:52.388Z", + "time": 151, "timings": { "blocked": -1, "connect": -1, @@ -51098,11 +51098,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 207 + "wait": 151 } }, { - "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_id": "a3eb0ad597450c61df00537b21750233", "_order": 8, "cache": {}, "request": { @@ -51142,7 +51142,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1983, + "headersSize": 1982, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -51151,14 +51151,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/WebAgent?_queryFilter=true" }, "response": { - "bodySize": 307, + "bodySize": 7320, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 307, - "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 7320, + "text": "{\"result\":[{\"_id\":\"frodo-test-web-agent2\",\"_rev\":\"930101313\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}},{\"_id\":\"frodo-test-web-agent\",\"_rev\":\"218393939\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -51204,7 +51204,7 @@ }, { "name": "content-length", - "value": "307" + "value": "7320" }, { "name": "date", @@ -51231,14 +51231,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 750, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.571Z", - "time": 113, + "startedDateTime": "2026-07-14T21:32:52.550Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -51246,11 +51246,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 113 + "wait": 100 } }, { - "_id": "a3eb0ad597450c61df00537b21750233", + "_id": "f41259a4eadb375c91e01113418a4d25", "_order": 8, "cache": {}, "request": { @@ -51290,7 +51290,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1982, + "headersSize": 1983, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -51299,14 +51299,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/WebAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" }, "response": { - "bodySize": 7320, + "bodySize": 10677, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 7320, - "text": "{\"result\":[{\"_id\":\"frodo-test-web-agent2\",\"_rev\":\"930101313\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}},{\"_id\":\"frodo-test-web-agent\",\"_rev\":\"218393939\",\"miscWebAgentConfig\":{\"anonymousUserId\":\"anonymous\",\"profileAttributesCookieMaxAge\":300,\"urlJsonResponse\":[\"\"],\"caseInsensitiveUrlComparison\":true,\"compositeAdviceRedirect\":false,\"compositeAdviceEncode\":false,\"addCacheControlHeader\":false,\"anonymousUserEnabled\":false,\"invalidUrlRegex\":null,\"ignorePathInfo\":false,\"invertUrlJsonResponse\":false,\"statusCodeJsonResponse\":202,\"headerJsonResponse\":{},\"encodeSpecialCharsInCookies\":false,\"gotoParameterName\":\"goto\",\"encodeUrlSpecialCharacters\":false,\"mineEncodeHeader\":0,\"profileAttributesCookiePrefix\":\"HTTP_\"},\"advancedWebAgentConfig\":{\"overrideRequestHost\":false,\"pdpSkipPostUrl\":[\"\"],\"pdpStickySessionValue\":null,\"postDataPreservation\":false,\"hostnameToIpAddress\":[],\"showPasswordInHeader\":false,\"overrideRequestProtocol\":false,\"clientIpHeader\":null,\"replayPasswordKey\":null,\"customProperties\":[],\"postDataCachePeriod\":10,\"retainSessionCache\":false,\"pdpJavascriptRepost\":false,\"pdpStickySessionMode\":\"OFF\",\"overrideRequestPort\":false,\"apacheAuthDirectives\":null,\"clientHostnameHeader\":null,\"fragmentRedirectEnabled\":false,\"pdpStickySessionCookieName\":null,\"logonAndImpersonation\":false},\"ssoWebAgentConfig\":{\"cookieResetList\":[\"\"],\"cdssoRedirectUri\":\"agent/cdsso-oauth2\",\"persistentJwtCookie\":false,\"secureCookies\":false,\"acceptSsoToken\":false,\"cookieResetOnRedirect\":false,\"sameSite\":null,\"cdssoCookieDomain\":[\"\"],\"cookieResetEnabled\":false,\"cookieName\":\"iPlanetDirectoryPro\",\"multivaluePreAuthnCookie\":false,\"httpOnly\":true},\"amServicesWebAgent\":{\"policyClockSkew\":0,\"enableLogoutRegex\":false,\"policyEvaluationRealm\":\"/\",\"fetchPoliciesFromRootResource\":false,\"logoutUrlRegex\":null,\"conditionalLoginUrl\":[\"\"],\"customLoginMode\":0,\"invalidateLogoutSession\":true,\"logoutResetCookies\":[\"\"],\"logoutRedirectUrl\":null,\"regexConditionalLoginUrl\":[\"\"],\"policyCachePollingInterval\":3,\"regexConditionalLoginPattern\":[\"\"],\"logoutRedirectDisabled\":false,\"retrieveClientHostname\":false,\"applicationLogoutUrls\":[\"\"],\"userIdParameterType\":\"session\",\"publicAmUrl\":null,\"userIdParameter\":\"UserToken\",\"amLoginUrl\":[],\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"amLogoutUrl\":[\"http://testserverurl.com:8080/UI/Logout\"],\"ssoCachePollingInterval\":3},\"applicationWebAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"clientIpValidation\":false,\"notEnforcedIpsRegex\":false,\"continuousSecurityCookies\":{},\"fetchAttributesForNotEnforcedUrls\":false,\"ignorePathInfoForNotEnforcedUrls\":true,\"responseAttributeFetchMode\":\"NONE\",\"attributeMultiValueSeparator\":\"|\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"notEnforcedIpsList\":[\"\"],\"responseAttributeMap\":{},\"notEnforcedUrls\":[\"\"],\"sessionAttributeMap\":{},\"notEnforcedUrlsRegex\":false,\"invertNotEnforcedUrls\":false,\"notEnforcedIps\":[\"\"]},\"globalWebAgentConfig\":{\"agentDebugLevel\":\"Error\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testagenturl.com\",\"webSocketConnectionIntervalInMinutes\":30,\"status\":\"Inactive\",\"configurationPollingInterval\":60,\"auditLogLocation\":\"REMOTE\",\"fqdnCheck\":false,\"amLbCookieEnable\":false,\"fqdnMapping\":{},\"accessDeniedUrl\":null,\"resetIdleTime\":false,\"ssoOnlyMode\":false,\"auditAccessType\":\"LOG_NONE\",\"agentgroup\":null,\"notificationsEnabled\":true,\"agentUriPrefix\":\"http://testagenturl.com:8080/amagent\",\"disableJwtAudit\":false,\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"cdssoRootUrl\":[\"agentRootURL=http://testagenturl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"jwtAuditWhitelist\":null},\"_type\":{\"_id\":\"WebAgent\",\"name\":\"Web Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 10677, + "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -51350,10 +51350,6 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, - { - "name": "content-length", - "value": "7320" - }, { "name": "date", "value": "" @@ -51377,15 +51373,19 @@ { "name": "alt-svc", "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 725, + "headersSize": 731, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.571Z", + "startedDateTime": "2026-07-14T21:32:52.553Z", "time": 119, "timings": { "blocked": -1, @@ -51398,7 +51398,7 @@ } }, { - "_id": "f41259a4eadb375c91e01113418a4d25", + "_id": "eb20bd8db70d15d88f0c766b62946af3", "_order": 8, "cache": {}, "request": { @@ -51447,14 +51447,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" }, "response": { - "bodySize": 10677, + "bodySize": 307, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 10677, - "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 307, + "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -51498,6 +51498,10 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, + { + "name": "content-length", + "value": "307" + }, { "name": "date", "value": "" @@ -51521,20 +51525,16 @@ { "name": "alt-svc", "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" } ], - "headersSize": 756, + "headersSize": 749, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.571Z", - "time": 128, + "startedDateTime": "2026-07-14T21:32:52.555Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -51542,11 +51542,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 96 } }, { - "_id": "01252ebc30a8b343d9a2708c3b2c93c2", + "_id": "47eb718be76e00df79a1b4012fe144a4", "_order": 8, "cache": {}, "request": { @@ -51586,7 +51586,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1992, + "headersSize": 1985, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -51595,14 +51595,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" }, "response": { - "bodySize": 939, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 939, - "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -51648,7 +51648,7 @@ }, { "name": "content-length", - "value": "939" + "value": "138" }, { "name": "date", @@ -51675,14 +51675,14 @@ "value": "" } ], - "headersSize": 724, + "headersSize": 749, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.572Z", - "time": 106, + "startedDateTime": "2026-07-14T21:32:52.556Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -51690,11 +51690,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 106 + "wait": 92 } }, { - "_id": "47eb718be76e00df79a1b4012fe144a4", + "_id": "01252ebc30a8b343d9a2708c3b2c93c2", "_order": 8, "cache": {}, "request": { @@ -51734,7 +51734,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1985, + "headersSize": 1992, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -51743,14 +51743,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/RemoteConsentAgent?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 939, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 939, + "text": "{\"result\":[{\"_id\":\"test\",\"_rev\":\"-1262869401\",\"pushedConsentRequestUrl\":null,\"remoteConsentRequestEncryptionAlgorithm\":\"RSA-OAEP-256\",\"publicKeyLocation\":\"jwks_uri\",\"jwksCacheTimeout\":3600000,\"remoteConsentResponseSigningAlg\":\"RS256\",\"remoteConsentRequestSigningAlgorithm\":\"RS256\",\"jwkSet\":null,\"jwkStoreCacheMissCacheTime\":60000,\"pushedConsentAuthenticationMethod\":\"None\",\"remoteConsentResponseEncryptionMethod\":\"A128GCM\",\"agentgroup\":null,\"remoteConsentRedirectUrl\":null,\"remoteConsentRequestEncryptionEnabled\":true,\"remoteConsentRequestEncryptionMethod\":\"A128GCM\",\"remoteConsentResponseEncryptionAlgorithm\":\"RSA-OAEP-256\",\"requestTimeLimit\":180,\"jwksUri\":null,\"resourceOwnerSessionProperties\":{},\"metadataUrl\":null,\"_type\":{\"_id\":\"RemoteConsentAgent\",\"name\":\"OAuth2 Remote Consent Service\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -51796,7 +51796,7 @@ }, { "name": "content-length", - "value": "138" + "value": "939" }, { "name": "date", @@ -51829,8 +51829,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.572Z", - "time": 112, + "startedDateTime": "2026-07-14T21:32:52.557Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -51838,7 +51838,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 97 } }, { @@ -51977,8 +51977,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.572Z", - "time": 112, + "startedDateTime": "2026-07-14T21:32:52.558Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -51986,11 +51986,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 94 } }, { - "_id": "e8e4fb44f886063f60da0ddb195b97c1", + "_id": "9362a24f93ec5ea8e622101901b28a83", "_order": 8, "cache": {}, "request": { @@ -52030,7 +52030,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1990, + "headersSize": 1994, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -52039,14 +52039,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/TrustedJwtIssuer?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 1847, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 1847, + "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -52092,7 +52092,7 @@ }, { "name": "content-length", - "value": "138" + "value": "1847" }, { "name": "date", @@ -52119,14 +52119,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 725, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.573Z", - "time": 101, + "startedDateTime": "2026-07-14T21:32:52.559Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -52134,11 +52134,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 92 } }, { - "_id": "9362a24f93ec5ea8e622101901b28a83", + "_id": "e8e4fb44f886063f60da0ddb195b97c1", "_order": 8, "cache": {}, "request": { @@ -52178,7 +52178,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1994, + "headersSize": 1990, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -52187,14 +52187,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/TrustedJwtIssuer?_queryFilter=true" }, "response": { - "bodySize": 1847, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 1847, - "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -52240,7 +52240,7 @@ }, { "name": "content-length", - "value": "1847" + "value": "138" }, { "name": "date", @@ -52267,14 +52267,14 @@ "value": "" } ], - "headersSize": 725, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.573Z", - "time": 111, + "startedDateTime": "2026-07-14T21:32:52.560Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -52282,7 +52282,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 93 } }, { @@ -52421,8 +52421,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.574Z", - "time": 191, + "startedDateTime": "2026-07-14T21:32:52.561Z", + "time": 140, "timings": { "blocked": -1, "connect": -1, @@ -52430,7 +52430,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 191 + "wait": 140 } }, { @@ -52534,10 +52534,154 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, - { - "name": "content-length", - "value": "7320" - }, + { + "name": "content-length", + "value": "7320" + }, + { + "name": "date", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 725, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:32:52.708Z", + "time": 94, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 94 + } + }, + { + "_id": "f41259a4eadb375c91e01113418a4d25", + "_order": 9, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=2.1,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1983, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "_queryFilter", + "value": "true" + } + ], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" + }, + "response": { + "bodySize": 10677, + "content": { + "mimeType": "application/json;charset=UTF-8", + "size": 10677, + "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + }, + "cookies": [], + "headers": [ + { + "name": "x-frame-options", + "value": "DENY" + }, + { + "name": "content-security-policy", + "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" + }, + { + "name": "content-security-policy-report-only", + "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "cache-control", + "value": "private" + }, + { + "name": "cross-origin-opener-policy", + "value": "same-origin" + }, + { + "name": "cross-origin-resource-policy", + "value": "same-origin" + }, + { + "name": "expires", + "value": "0" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-type", + "value": "application/json;charset=UTF-8" + }, { "name": "date", "value": "" @@ -52561,16 +52705,20 @@ { "name": "alt-svc", "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 725, + "headersSize": 731, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.769Z", - "time": 139, + "startedDateTime": "2026-07-14T21:32:52.710Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -52578,11 +52726,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 139 + "wait": 99 } }, { - "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_id": "47eb718be76e00df79a1b4012fe144a4", "_order": 9, "cache": {}, "request": { @@ -52622,7 +52770,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1983, + "headersSize": 1985, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -52631,14 +52779,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" }, "response": { - "bodySize": 307, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 307, - "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -52684,7 +52832,7 @@ }, { "name": "content-length", - "value": "307" + "value": "138" }, { "name": "date", @@ -52717,8 +52865,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.770Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:52.711Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -52726,11 +52874,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 91 } }, { - "_id": "f41259a4eadb375c91e01113418a4d25", + "_id": "eb20bd8db70d15d88f0c766b62946af3", "_order": 9, "cache": {}, "request": { @@ -52779,162 +52927,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" - }, - "response": { - "bodySize": 10677, - "content": { - "mimeType": "application/json;charset=UTF-8", - "size": 10677, - "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" - }, - "cookies": [], - "headers": [ - { - "name": "x-frame-options", - "value": "DENY" - }, - { - "name": "content-security-policy", - "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" - }, - { - "name": "content-security-policy-report-only", - "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "cross-origin-opener-policy", - "value": "same-origin" - }, - { - "name": "cross-origin-resource-policy", - "value": "same-origin" - }, - { - "name": "expires", - "value": "0" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "content-type", - "value": "application/json;charset=UTF-8" - }, - { - "name": "date", - "value": "" - }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "" - }, - { - "name": "alt-svc", - "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" - } - ], - "headersSize": 756, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2026-07-13T17:00:18.770Z", - "time": 128, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 128 - } - }, - { - "_id": "47eb718be76e00df79a1b4012fe144a4", - "_order": 9, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "" - }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "accept-api-version", - "value": "protocol=2.1,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1985, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "_queryFilter", - "value": "true" - } - ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/SharedAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 307, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 307, + "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -52980,7 +52980,7 @@ }, { "name": "content-length", - "value": "138" + "value": "307" }, { "name": "date", @@ -53013,8 +53013,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.771Z", - "time": 126, + "startedDateTime": "2026-07-14T21:32:52.711Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -53022,7 +53022,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 126 + "wait": 91 } }, { @@ -53161,8 +53161,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.771Z", - "time": 126, + "startedDateTime": "2026-07-14T21:32:52.712Z", + "time": 88, "timings": { "blocked": -1, "connect": -1, @@ -53170,7 +53170,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 126 + "wait": 88 } }, { @@ -53309,8 +53309,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.772Z", - "time": 136, + "startedDateTime": "2026-07-14T21:32:52.714Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -53318,7 +53318,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 136 + "wait": 85 } }, { @@ -53451,14 +53451,14 @@ "value": "" } ], - "headersSize": 750, + "headersSize": 725, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.773Z", - "time": 130, + "startedDateTime": "2026-07-14T21:32:52.715Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -53466,7 +53466,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 130 + "wait": 85 } }, { @@ -53599,14 +53599,14 @@ "value": "" } ], - "headersSize": 724, + "headersSize": 749, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.773Z", - "time": 135, + "startedDateTime": "2026-07-14T21:32:52.716Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -53614,7 +53614,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 135 + "wait": 82 } }, { @@ -53753,8 +53753,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.773Z", - "time": 215, + "startedDateTime": "2026-07-14T21:32:52.717Z", + "time": 128, "timings": { "blocked": -1, "connect": -1, @@ -53762,7 +53762,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 215 + "wait": 128 } }, { @@ -53901,8 +53901,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.997Z", - "time": 140, + "startedDateTime": "2026-07-14T21:32:52.853Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -53910,11 +53910,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 100 } }, { - "_id": "f41259a4eadb375c91e01113418a4d25", + "_id": "eb20bd8db70d15d88f0c766b62946af3", "_order": 10, "cache": {}, "request": { @@ -53963,14 +53963,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" }, "response": { - "bodySize": 10677, + "bodySize": 307, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 10677, - "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" + "size": 307, + "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -54014,6 +54014,10 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, + { + "name": "content-length", + "value": "307" + }, { "name": "date", "value": "" @@ -54037,20 +54041,16 @@ { "name": "alt-svc", "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" } ], - "headersSize": 731, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.998Z", - "time": 139, + "startedDateTime": "2026-07-14T21:32:52.854Z", + "time": 86, "timings": { "blocked": -1, "connect": -1, @@ -54058,11 +54058,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 139 + "wait": 86 } }, { - "_id": "eb20bd8db70d15d88f0c766b62946af3", + "_id": "f41259a4eadb375c91e01113418a4d25", "_order": 10, "cache": {}, "request": { @@ -54111,14 +54111,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/2.2_Agent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/J2EEAgent?_queryFilter=true" }, "response": { - "bodySize": 307, + "bodySize": 10677, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 307, - "text": "{\"result\":[{\"_id\":\"my-policy-agent\",\"_rev\":\"-504717871\",\"cdssoRootUrl\":[],\"description\":null,\"status\":\"Active\",\"_type\":{\"_id\":\"2.2_Agent\",\"name\":\"Policy Agents\",\"collection\":true}}],\"resultCount\":1,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":1,\"remainingPagedResults\":-1}" + "size": 10677, + "text": "{\"result\":[{\"_id\":\"frodo-test-java-agent\",\"_rev\":\"1131793354\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}},{\"_id\":\"frodo-test-java-agent2\",\"_rev\":\"561894916\",\"ssoJ2EEAgentConfig\":{\"encodeCookies\":false,\"cookieResetDomains\":{},\"authExchangeUri\":null,\"authExchangeCookieName\":null,\"setCookieInternalMap\":{},\"excludedUserAgentsList\":[],\"cdssoRedirectUri\":\"/agent/post-authn-redirect\",\"cookieResetPaths\":{},\"cdssoSecureCookies\":false,\"acceptSsoTokenEnabled\":false,\"acceptSsoTokenDomainList\":[\"\"],\"cdssoDomainList\":[\"\"],\"setCookieAttributeMap\":{},\"cookieResetEnabled\":false,\"cookieResetNames\":[\"\"],\"acceptIPDPCookie\":false,\"httpOnly\":true},\"amServicesJ2EEAgent\":{\"urlPolicyEnvPostParameters\":[\"\"],\"policyEvaluationRealm\":\"/\",\"authServiceHost\":\"testurl.com\",\"policyNotifications\":true,\"conditionalLoginUrl\":[\"\"],\"customLoginEnabled\":false,\"legacyLoginUrlList\":[\"\"],\"agentAdviceEncode\":false,\"authServicePort\":8080,\"urlPolicyEnvGetParameters\":[\"\"],\"restrictToRealm\":{},\"urlPolicyEnvJsessionParameters\":[\"\"],\"amLoginUrl\":[],\"conditionalLogoutUrl\":[\"\"],\"authServiceProtocol\":\"http\",\"policyEvaluationApplication\":\"iPlanetAMWebAgentService\",\"authSuccessRedirectUrl\":false,\"strategyWhenAMUnavailable\":\"EVAL_NER_USE_CACHE_UNTIL_EXPIRED_ELSE_503\",\"overridePolicyEvaluationRealmEnabled\":false},\"applicationJ2EEAgentConfig\":{\"profileAttributeFetchMode\":\"NONE\",\"notEnforcedUris\":[\"\"],\"notEnforcedIpsCacheEnabled\":true,\"logoutIntrospection\":false,\"invertNotEnforcedUris\":false,\"cookieAttributeUrlEncoded\":true,\"cookieAttributeMultiValueSeparator\":\"|\",\"notEnforcedRuleCompoundSeparator\":\"|\",\"logoutRequestParameters\":{},\"resourceAccessDeniedUri\":{},\"continuousSecurityCookies\":{},\"responseAttributeFetchMode\":\"NONE\",\"notEnforcedUrisCacheEnabled\":true,\"headerAttributeDateFormat\":\"EEE, d MMM yyyy hh:mm:ss z\",\"profileAttributeMap\":{},\"sessionAttributeFetchMode\":\"NONE\",\"continuousSecurityHeaders\":{},\"responseAttributeMap\":{},\"notEnforcedUrisCacheSize\":1000,\"invertNotEnforcedIps\":false,\"sessionAttributeMap\":{},\"clientIpValidationRange\":{},\"notEnforcedIpsCacheSize\":1000,\"clientIpValidationMode\":{\"\":\"OFF\"},\"notEnforcedFavicon\":true,\"logoutEntryUri\":{},\"notEnforcedIps\":[\"\"],\"applicationLogoutUris\":{}},\"globalJ2EEAgentConfig\":{\"userTokenName\":\"UserToken\",\"secretLabelIdentifier\":null,\"fqdnDefault\":\"testurl.com\",\"recheckAmUnavailabilityInSeconds\":5,\"httpSessionBinding\":true,\"webSocketConnectionIntervalInMinutes\":30,\"localAuditLogRotation\":false,\"filterMode\":{\"\":\"ALL\"},\"debugLogfileRotationSize\":52428800,\"status\":\"Inactive\",\"debugLevel\":\"error\",\"lbCookieName\":\"amlbcookie\",\"auditLogLocation\":\"REMOTE\",\"lbCookieEnabled\":false,\"userPrincipalFlag\":false,\"fqdnCheck\":false,\"preAuthCookieMaxAge\":300,\"localAuditRotationSize\":52428800,\"fqdnMapping\":{},\"debugLogfileRotationMinutes\":-1,\"loginAttemptLimit\":0,\"auditAccessType\":\"LOG_NONE\",\"redirectAttemptLimitCookieName\":\"amFilterRDParam\",\"debugLogfileRetentionCount\":-1,\"configurationReloadInterval\":0,\"agentgroup\":null,\"debugLogfileSuffix\":\"-yyyy.MM.dd-HH.mm.ss\",\"userAttributeName\":\"employeenumber\",\"localAuditLogfileRetentionCount\":-1,\"customResponseHeader\":{},\"redirectAttemptLimit\":0,\"userMappingMode\":\"USER_ID\",\"jwtName\":\"am-auth-jwt\",\"repositoryLocation\":\"centralized\",\"loginAttemptLimitCookieName\":\"amFilterParam\",\"cdssoRootUrl\":[\"agentRootURL=http://testurl.com:8080/\"],\"agentConfigChangeNotificationsEnabled\":true,\"debugLogfilePrefix\":null,\"preAuthCookieName\":\"amFilterCDSSORequest\"},\"advancedJ2EEAgentConfig\":{\"postDataStickySessionKeyValue\":null,\"xssDetectionRedirectUri\":{},\"postDataCacheTtlMin\":5,\"jwtCacheSize\":5000,\"postDataPreservation\":false,\"policyCacheSize\":5000,\"postDataPreserveCacheEntryMaxEntries\":1000,\"postDataPreserveCacheEntryMaxTotalSizeMb\":-1,\"ssoExchangeCacheSize\":100,\"sessionCacheTTL\":15,\"idleTimeRefreshWindow\":1,\"ssoExchangeCacheTTL\":5,\"possibleXssCodeElements\":[\"\"],\"alternativeAgentPort\":null,\"policyClientPollingInterval\":3,\"missingPostDataPreservationEntryUri\":[\"\"],\"alternativeAgentProtocol\":null,\"clientIpHeader\":null,\"retainPreviousOverrideBehavior\":true,\"postDataPreserveMultipartLimitBytes\":104857600,\"jwtCacheTTL\":30,\"customProperties\":[],\"policyCachePerUser\":50,\"expiredSessionCacheTTL\":20,\"fragmentRelayUri\":null,\"postDataStickySessionMode\":\"URL\",\"alternativeAgentHostname\":null,\"expiredSessionCacheSize\":500,\"clientHostnameHeader\":null,\"monitoringToCSV\":false,\"postDataPreserveMultipartParameterLimitBytes\":104857600},\"miscJ2EEAgentConfig\":{\"legacyUserAgentList\":[\"Mozilla/4.7*\"],\"loginReasonMap\":{},\"authFailReasonParameterRemapper\":{},\"agent302RedirectStatusCode\":200,\"loginReasonParameterName\":null,\"gotoUrl\":null,\"localeLanguage\":\"en\",\"authFailReasonParameterName\":null,\"unwantedHttpUrlParams\":[\"\"],\"agent302RedirectContentType\":\"application/json\",\"agent302RedirectEnabled\":true,\"legacyUserAgentSupport\":false,\"wantedHttpUrlParams\":[\"\"],\"ignorePathInfo\":false,\"agent302RedirectInvertEnabled\":false,\"wantedHttpUrlRegexParams\":[\"\"],\"localeCountry\":\"US\",\"agent302RedirectHttpData\":\"{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}\",\"agent302RedirectNerList\":[\"\"],\"legacyRedirectUri\":\"/agent/sunwLegacySupportURI\",\"portCheckFile\":\"PortCheckContent.txt\",\"authFailReasonUrl\":null,\"gotoParameterName\":\"goto\",\"portCheckSetting\":{\"8080\":\"http\"},\"unwantedHttpUrlRegexParams\":[\"\"],\"portCheckEnabled\":false},\"_type\":{\"_id\":\"J2EEAgent\",\"name\":\"J2EE Agents\",\"collection\":true}}],\"resultCount\":2,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":2,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -54162,10 +54162,6 @@ "name": "content-type", "value": "application/json;charset=UTF-8" }, - { - "name": "content-length", - "value": "307" - }, { "name": "date", "value": "" @@ -54189,16 +54185,20 @@ { "name": "alt-svc", "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 724, + "headersSize": 731, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:18.999Z", - "time": 119, + "startedDateTime": "2026-07-14T21:32:52.854Z", + "time": 104, "timings": { "blocked": -1, "connect": -1, @@ -54206,7 +54206,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 104 } }, { @@ -54339,14 +54339,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.001Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:52.855Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -54354,7 +54354,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 95 } }, { @@ -54487,14 +54487,14 @@ "value": "" } ], - "headersSize": 749, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.002Z", - "time": 116, + "startedDateTime": "2026-07-14T21:32:52.856Z", + "time": 87, "timings": { "blocked": -1, "connect": -1, @@ -54502,7 +54502,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 116 + "wait": 87 } }, { @@ -54641,8 +54641,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.003Z", - "time": 107, + "startedDateTime": "2026-07-14T21:32:52.857Z", + "time": 88, "timings": { "blocked": -1, "connect": -1, @@ -54650,11 +54650,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 88 } }, { - "_id": "9362a24f93ec5ea8e622101901b28a83", + "_id": "e8e4fb44f886063f60da0ddb195b97c1", "_order": 10, "cache": {}, "request": { @@ -54694,7 +54694,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1994, + "headersSize": 1990, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -54703,14 +54703,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/TrustedJwtIssuer?_queryFilter=true" }, "response": { - "bodySize": 1847, + "bodySize": 138, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 1847, - "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" + "size": 138, + "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -54756,7 +54756,7 @@ }, { "name": "content-length", - "value": "1847" + "value": "138" }, { "name": "date", @@ -54783,14 +54783,14 @@ "value": "" } ], - "headersSize": 750, + "headersSize": 724, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.004Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:52.858Z", + "time": 90, "timings": { "blocked": -1, "connect": -1, @@ -54798,11 +54798,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 90 } }, { - "_id": "e8e4fb44f886063f60da0ddb195b97c1", + "_id": "9362a24f93ec5ea8e622101901b28a83", "_order": 10, "cache": {}, "request": { @@ -54842,7 +54842,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1990, + "headersSize": 1994, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -54851,14 +54851,14 @@ "value": "true" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/TrustedJwtIssuer?_queryFilter=true" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/agents/IdentityGatewayAgent?_queryFilter=true" }, "response": { - "bodySize": 138, + "bodySize": 1847, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 138, - "text": "{\"result\":[],\"resultCount\":0,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":0,\"remainingPagedResults\":-1}" + "size": 1847, + "text": "{\"result\":[{\"_id\":\"cdsso-ig-agent\",\"_rev\":\"-1524382492\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[\"https://volker-demo.encore.forgerock.com:443/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com:443/apps/contractor/redirect\",\"https://volker-demo.encore.forgerock.com/apps/hrlite-rest/redirect\",\"https://volker-demo.encore.forgerock.com/apps/contractor/redirect\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"ig-agent\",\"_rev\":\"-1566320906\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm_Subs\",\"igCdssoLoginUrlTemplate\":null,\"status\":\"Active\",\"igCdssoRedirectUrls\":[],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent2\",\"_rev\":\"1365023305\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":null,\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}},{\"_id\":\"frodo-test-ig-agent\",\"_rev\":\"-1490423122\",\"secretLabelIdentifier\":null,\"igTokenIntrospection\":\"Realm\",\"igCdssoLoginUrlTemplate\":\"http://testurl.com:8080/frodo\",\"status\":\"Inactive\",\"igCdssoRedirectUrls\":[\"http://testurl.com:8080/frodo\"],\"agentgroup\":\"test_ig_group\",\"_type\":{\"_id\":\"IdentityGatewayAgent\",\"name\":\"Identity Gateway Agents\",\"collection\":true}}],\"resultCount\":4,\"pagedResultsCookie\":null,\"totalPagedResultsPolicy\":\"EXACT\",\"totalPagedResults\":4,\"remainingPagedResults\":-1}" }, "cookies": [], "headers": [ @@ -54904,7 +54904,7 @@ }, { "name": "content-length", - "value": "138" + "value": "1847" }, { "name": "date", @@ -54931,14 +54931,14 @@ "value": "" } ], - "headersSize": 724, + "headersSize": 725, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.005Z", - "time": 117, + "startedDateTime": "2026-07-14T21:32:52.858Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -54946,7 +54946,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 93 } }, { @@ -55079,14 +55079,14 @@ "value": "chunked" } ], - "headersSize": 731, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.005Z", - "time": 201, + "startedDateTime": "2026-07-14T21:32:52.859Z", + "time": 140, "timings": { "blocked": -1, "connect": -1, @@ -55094,7 +55094,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 201 + "wait": 140 } }, { @@ -55231,14 +55231,14 @@ "value": "chunked" } ], - "headersSize": 818, + "headersSize": 793, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.213Z", - "time": 196, + "startedDateTime": "2026-07-14T21:32:53.007Z", + "time": 160, "timings": { "blocked": -1, "connect": -1, @@ -55246,7 +55246,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 196 + "wait": 160 } }, { @@ -55383,14 +55383,14 @@ "value": "chunked" } ], - "headersSize": 818, + "headersSize": 793, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.603Z", - "time": 184, + "startedDateTime": "2026-07-14T21:32:53.322Z", + "time": 134, "timings": { "blocked": -1, "connect": -1, @@ -55398,7 +55398,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 184 + "wait": 134 } }, { @@ -55545,8 +55545,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:20.148Z", - "time": 178, + "startedDateTime": "2026-07-14T21:32:53.749Z", + "time": 175, "timings": { "blocked": -1, "connect": -1, @@ -55554,7 +55554,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 178 + "wait": 175 } }, { @@ -55690,14 +55690,14 @@ "value": "" } ], - "headersSize": 806, + "headersSize": 781, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:20.329Z", - "time": 110, + "startedDateTime": "2026-07-14T21:32:53.929Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -55705,7 +55705,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 110 + "wait": 85 } }, { @@ -55846,14 +55846,14 @@ "value": "" } ], - "headersSize": 784, + "headersSize": 759, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:20.523Z", - "time": 97, + "startedDateTime": "2026-07-14T21:32:54.088Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -55861,7 +55861,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 76 } }, { @@ -55997,14 +55997,14 @@ "value": "" } ], - "headersSize": 803, + "headersSize": 778, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:20.623Z", - "time": 99, + "startedDateTime": "2026-07-14T21:32:54.169Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -56012,7 +56012,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 99 + "wait": 85 } }, { @@ -56150,8 +56150,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:20.816Z", - "time": 120, + "startedDateTime": "2026-07-14T21:32:54.338Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -56159,7 +56159,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 120 + "wait": 81 } }, { @@ -56287,14 +56287,14 @@ "value": "" } ], - "headersSize": 748, + "headersSize": 723, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 404, "statusText": "Not Found" }, - "startedDateTime": "2026-07-13T17:00:20.943Z", - "time": 103, + "startedDateTime": "2026-07-14T21:32:54.424Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -56302,7 +56302,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 103 + "wait": 74 } }, { @@ -56445,8 +56445,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:21.051Z", - "time": 192, + "startedDateTime": "2026-07-14T21:32:54.504Z", + "time": 149, "timings": { "blocked": -1, "connect": -1, @@ -56454,7 +56454,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 192 + "wait": 149 } }, { @@ -56591,14 +56591,14 @@ "value": "chunked" } ], - "headersSize": 818, + "headersSize": 793, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:21.247Z", - "time": 364, + "startedDateTime": "2026-07-14T21:32:54.658Z", + "time": 203, "timings": { "blocked": -1, "connect": -1, @@ -56606,7 +56606,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 364 + "wait": 203 } }, { @@ -56743,14 +56743,14 @@ "value": "chunked" } ], - "headersSize": 818, + "headersSize": 793, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:21.629Z", - "time": 160, + "startedDateTime": "2026-07-14T21:32:54.871Z", + "time": 120, "timings": { "blocked": -1, "connect": -1, @@ -56758,7 +56758,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 160 + "wait": 120 } }, { @@ -56895,14 +56895,14 @@ "value": "chunked" } ], - "headersSize": 818, + "headersSize": 793, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:22.789Z", - "time": 198, + "startedDateTime": "2026-07-14T21:32:56.819Z", + "time": 274, "timings": { "blocked": -1, "connect": -1, @@ -56910,7 +56910,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 198 + "wait": 274 } }, { @@ -57003,14 +57003,14 @@ "value": "chunked" } ], - "headersSize": 292, + "headersSize": 267, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 403, "statusText": "Forbidden" }, - "startedDateTime": "2026-07-13T17:00:22.991Z", - "time": 66, + "startedDateTime": "2026-07-14T21:32:57.097Z", + "time": 55, "timings": { "blocked": -1, "connect": -1, @@ -57018,7 +57018,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 66 + "wait": 55 } }, { @@ -57155,14 +57155,14 @@ "value": "chunked" } ], - "headersSize": 818, + "headersSize": 793, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:23.139Z", - "time": 190, + "startedDateTime": "2026-07-14T21:32:57.235Z", + "time": 148, "timings": { "blocked": -1, "connect": -1, @@ -57170,7 +57170,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 190 + "wait": 148 } }, { @@ -57263,14 +57263,14 @@ "value": "chunked" } ], - "headersSize": 283, + "headersSize": 258, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 403, "statusText": "Forbidden" }, - "startedDateTime": "2026-07-13T17:00:23.332Z", - "time": 61, + "startedDateTime": "2026-07-14T21:32:57.388Z", + "time": 72, "timings": { "blocked": -1, "connect": -1, @@ -57278,7 +57278,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 61 + "wait": 72 } }, { @@ -57411,14 +57411,14 @@ "value": "chunked" } ], - "headersSize": 756, + "headersSize": 731, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:23.396Z", - "time": 885, + "startedDateTime": "2026-07-14T21:32:57.466Z", + "time": 391, "timings": { "blocked": -1, "connect": -1, @@ -57426,7 +57426,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 885 + "wait": 391 } }, { @@ -57558,14 +57558,14 @@ "value": "chunked" } ], - "headersSize": 776, + "headersSize": 751, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.285Z", - "time": 96, + "startedDateTime": "2026-07-14T21:32:57.867Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -57573,7 +57573,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 80 } }, { @@ -57706,14 +57706,14 @@ "value": "" } ], - "headersSize": 723, + "headersSize": 748, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.286Z", - "time": 84, + "startedDateTime": "2026-07-14T21:32:57.868Z", + "time": 323, "timings": { "blocked": -1, "connect": -1, @@ -57721,7 +57721,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 323 } }, { @@ -57853,14 +57853,14 @@ "value": "" } ], - "headersSize": 744, + "headersSize": 769, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.286Z", - "time": 257, + "startedDateTime": "2026-07-14T21:32:57.869Z", + "time": 316, "timings": { "blocked": -1, "connect": -1, @@ -57868,7 +57868,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 257 + "wait": 316 } }, { @@ -58007,8 +58007,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.287Z", - "time": 291, + "startedDateTime": "2026-07-14T21:32:57.870Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -58016,7 +58016,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 291 + "wait": 77 } }, { @@ -58154,8 +58154,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.288Z", - "time": 255, + "startedDateTime": "2026-07-14T21:32:57.871Z", + "time": 66, "timings": { "blocked": -1, "connect": -1, @@ -58163,7 +58163,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 255 + "wait": 66 } }, { @@ -58296,14 +58296,14 @@ "value": "chunked" } ], - "headersSize": 731, + "headersSize": 756, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.288Z", - "time": 531, + "startedDateTime": "2026-07-14T21:32:57.872Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -58311,7 +58311,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 531 + "wait": 150 } }, { @@ -58399,14 +58399,14 @@ "value": "chunked" } ], - "headersSize": 267, + "headersSize": 292, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 403, "statusText": "Forbidden" }, - "startedDateTime": "2026-07-13T17:00:24.289Z", - "time": 210, + "startedDateTime": "2026-07-14T21:32:57.873Z", + "time": 55, "timings": { "blocked": -1, "connect": -1, @@ -58414,7 +58414,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 210 + "wait": 55 } }, { @@ -58513,8 +58513,8 @@ "status": 403, "statusText": "Forbidden" }, - "startedDateTime": "2026-07-13T17:00:24.290Z", - "time": 208, + "startedDateTime": "2026-07-14T21:32:57.874Z", + "time": 52, "timings": { "blocked": -1, "connect": -1, @@ -58522,7 +58522,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 208 + "wait": 52 } }, { @@ -58660,8 +58660,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.290Z", - "time": 242, + "startedDateTime": "2026-07-14T21:32:57.875Z", + "time": 70, "timings": { "blocked": -1, "connect": -1, @@ -58669,7 +58669,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 242 + "wait": 70 } }, { @@ -58808,8 +58808,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.291Z", - "time": 241, + "startedDateTime": "2026-07-14T21:32:57.876Z", + "time": 239, "timings": { "blocked": -1, "connect": -1, @@ -58817,7 +58817,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 241 + "wait": 239 } }, { @@ -58949,14 +58949,14 @@ "value": "" } ], - "headersSize": 769, + "headersSize": 744, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.291Z", - "time": 252, + "startedDateTime": "2026-07-14T21:32:57.877Z", + "time": 1162, "timings": { "blocked": -1, "connect": -1, @@ -58964,7 +58964,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 252 + "wait": 1162 } }, { @@ -59103,8 +59103,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.293Z", - "time": 249, + "startedDateTime": "2026-07-14T21:32:57.879Z", + "time": 1159, "timings": { "blocked": -1, "connect": -1, @@ -59112,7 +59112,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 249 + "wait": 1159 } }, { @@ -59250,111 +59250,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.293Z", - "time": 249, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 249 - } - }, - { - "_id": "53dc4597d1233d73e1f8f96589fe6466", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "" - }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "accept-api-version", - "value": "protocol=2.0,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1973, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/services/id-repositories" - }, - "response": { - "bodySize": 114, - "content": { - "mimeType": "application/json;charset=UTF-8", - "size": 114, - "text": "{\"code\":403,\"reason\":\"Forbidden\",\"message\":\"This operation is not available in PingOne Advanced Identity Cloud.\"}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "private, no-store" - }, - { - "name": "content-type", - "value": "application/json;charset=UTF-8" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000;includeSubDomains;preload" - }, - { - "name": "date", - "value": "" - }, - { - "name": "via", - "value": "" - }, - { - "name": "alt-svc", - "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" - } - ], - "headersSize": 267, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 403, - "statusText": "Forbidden" - }, - "startedDateTime": "2026-07-13T17:00:24.294Z", - "time": 204, + "startedDateTime": "2026-07-14T21:32:57.881Z", + "time": 228, "timings": { "blocked": -1, "connect": -1, @@ -59362,7 +59259,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 204 + "wait": 228 } }, { @@ -59495,14 +59392,117 @@ "value": "" } ], - "headersSize": 748, + "headersSize": 723, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.294Z", - "time": 238, + "startedDateTime": "2026-07-14T21:32:57.883Z", + "time": 228, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 228 + } + }, + { + "_id": "53dc4597d1233d73e1f8f96589fe6466", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=2.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1973, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/alpha/realm-config/services/id-repositories" + }, + "response": { + "bodySize": 114, + "content": { + "mimeType": "application/json;charset=UTF-8", + "size": 114, + "text": "{\"code\":403,\"reason\":\"Forbidden\",\"message\":\"This operation is not available in PingOne Advanced Identity Cloud.\"}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "private, no-store" + }, + { + "name": "content-type", + "value": "application/json;charset=UTF-8" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000;includeSubDomains;preload" + }, + { + "name": "date", + "value": "" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" + } + ], + "headersSize": 292, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 403, + "statusText": "Forbidden" + }, + "startedDateTime": "2026-07-14T21:32:57.884Z", + "time": 140, "timings": { "blocked": -1, "connect": -1, @@ -59510,7 +59510,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 238 + "wait": 140 } }, { @@ -59609,8 +59609,8 @@ "status": 403, "statusText": "Forbidden" }, - "startedDateTime": "2026-07-13T17:00:24.295Z", - "time": 205, + "startedDateTime": "2026-07-14T21:32:57.885Z", + "time": 1146, "timings": { "blocked": -1, "connect": -1, @@ -59618,7 +59618,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 205 + "wait": 1146 } }, { @@ -59750,14 +59750,14 @@ "value": "" } ], - "headersSize": 743, + "headersSize": 768, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.295Z", - "time": 248, + "startedDateTime": "2026-07-14T21:32:57.886Z", + "time": 1153, "timings": { "blocked": -1, "connect": -1, @@ -59765,7 +59765,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 248 + "wait": 1153 } }, { @@ -59898,14 +59898,14 @@ "value": "" } ], - "headersSize": 748, + "headersSize": 723, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.296Z", - "time": 247, + "startedDateTime": "2026-07-14T21:32:57.888Z", + "time": 222, "timings": { "blocked": -1, "connect": -1, @@ -59913,7 +59913,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 247 + "wait": 222 } }, { @@ -60052,8 +60052,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:24.826Z", - "time": 392, + "startedDateTime": "2026-07-14T21:32:59.047Z", + "time": 299, "timings": { "blocked": -1, "connect": -1, @@ -60061,7 +60061,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 392 + "wait": 299 } }, { @@ -60199,8 +60199,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.226Z", - "time": 120, + "startedDateTime": "2026-07-14T21:32:59.353Z", + "time": 85, "timings": { "blocked": -1, "connect": -1, @@ -60208,7 +60208,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 120 + "wait": 85 } }, { @@ -60341,14 +60341,161 @@ "value": "" } ], - "headersSize": 723, + "headersSize": 748, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:32:59.354Z", + "time": 77, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 77 + } + }, + { + "_id": "be9d64cd60e1efd336425211e15ef276", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=2.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1981, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/SocialIdentityProviders" + }, + "response": { + "bodySize": 148, + "content": { + "mimeType": "application/json;charset=UTF-8", + "size": 148, + "text": "{\"_id\":\"\",\"_rev\":\"1077208638\",\"enabled\":true,\"_type\":{\"_id\":\"SocialIdentityProviders\",\"name\":\"Social Identity Provider Service\",\"collection\":false}}" + }, + "cookies": [], + "headers": [ + { + "name": "x-frame-options", + "value": "DENY" + }, + { + "name": "content-security-policy", + "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" + }, + { + "name": "content-security-policy-report-only", + "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "cache-control", + "value": "private" + }, + { + "name": "cross-origin-opener-policy", + "value": "same-origin" + }, + { + "name": "cross-origin-resource-policy", + "value": "same-origin" + }, + { + "name": "etag", + "value": "" + }, + { + "name": "expires", + "value": "0" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-type", + "value": "application/json;charset=UTF-8" + }, + { + "name": "content-length", + "value": "148" + }, + { + "name": "date", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 769, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.227Z", - "time": 120, + "startedDateTime": "2026-07-14T21:32:59.355Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -60356,11 +60503,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 120 + "wait": 81 } }, { - "_id": "be9d64cd60e1efd336425211e15ef276", + "_id": "e182919458a3cd7f92b462ed279d2189", "_order": 0, "cache": {}, "request": { @@ -60400,18 +60547,23 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1981, + "headersSize": 2006, "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/SocialIdentityProviders" + "method": "POST", + "queryString": [ + { + "name": "_action", + "value": "nextdescendents" + } + ], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/SocialIdentityProviders?_action=nextdescendents" }, "response": { - "bodySize": 148, + "bodySize": 13, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 148, - "text": "{\"_id\":\"\",\"_rev\":\"1077208638\",\"enabled\":true,\"_type\":{\"_id\":\"SocialIdentityProviders\",\"name\":\"Social Identity Provider Service\",\"collection\":false}}" + "size": 13, + "text": "{\"result\":[]}" }, "cookies": [], "headers": [ @@ -60443,10 +60595,6 @@ "name": "cross-origin-resource-policy", "value": "same-origin" }, - { - "name": "etag", - "value": "" - }, { "name": "expires", "value": "0" @@ -60461,7 +60609,7 @@ }, { "name": "content-length", - "value": "148" + "value": "13" }, { "name": "date", @@ -60488,14 +60636,14 @@ "value": "" } ], - "headersSize": 769, + "headersSize": 748, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.228Z", - "time": 106, + "startedDateTime": "2026-07-14T21:32:59.356Z", + "time": 124, "timings": { "blocked": -1, "connect": -1, @@ -60503,11 +60651,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 106 + "wait": 124 } }, { - "_id": "e182919458a3cd7f92b462ed279d2189", + "_id": "fa0d0e58c29b7d410c44c18c6cf9567b", "_order": 0, "cache": {}, "request": { @@ -60547,86 +60695,37 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2006, + "headersSize": 1974, "httpVersion": "HTTP/1.1", - "method": "POST", - "queryString": [ - { - "name": "_action", - "value": "nextdescendents" - } - ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/SocialIdentityProviders?_action=nextdescendents" + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/DataStoreService" }, "response": { - "bodySize": 13, + "bodySize": 114, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 13, - "text": "{\"result\":[]}" + "size": 114, + "text": "{\"code\":403,\"reason\":\"Forbidden\",\"message\":\"This operation is not available in PingOne Advanced Identity Cloud.\"}" }, "cookies": [], "headers": [ - { - "name": "x-frame-options", - "value": "DENY" - }, - { - "name": "content-security-policy", - "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" - }, - { - "name": "content-security-policy-report-only", - "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, { "name": "cache-control", - "value": "private" - }, - { - "name": "cross-origin-opener-policy", - "value": "same-origin" - }, - { - "name": "cross-origin-resource-policy", - "value": "same-origin" - }, - { - "name": "expires", - "value": "0" - }, - { - "name": "pragma", - "value": "no-cache" + "value": "private, no-store" }, { "name": "content-type", "value": "application/json;charset=UTF-8" }, { - "name": "content-length", - "value": "13" + "name": "strict-transport-security", + "value": "max-age=31536000;includeSubDomains;preload" }, { "name": "date", "value": "" }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, { "name": "via", "value": "" @@ -60634,16 +60733,20 @@ { "name": "alt-svc", "value": "" + }, + { + "name": "transfer-encoding", + "value": "chunked" } ], - "headersSize": 723, + "headersSize": 292, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 403, + "statusText": "Forbidden" }, - "startedDateTime": "2026-07-13T17:00:25.229Z", - "time": 238, + "startedDateTime": "2026-07-14T21:32:59.357Z", + "time": 52, "timings": { "blocked": -1, "connect": -1, @@ -60651,7 +60754,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 238 + "wait": 52 } }, { @@ -60750,8 +60853,8 @@ "status": 403, "statusText": "Forbidden" }, - "startedDateTime": "2026-07-13T17:00:25.230Z", - "time": 69, + "startedDateTime": "2026-07-14T21:32:59.357Z", + "time": 54, "timings": { "blocked": -1, "connect": -1, @@ -60759,11 +60862,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 69 + "wait": 54 } }, { - "_id": "fa0d0e58c29b7d410c44c18c6cf9567b", + "_id": "eb43723b5a888da8a42f6e921f3bcac5", "_order": 0, "cache": {}, "request": { @@ -60803,37 +60906,85 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1974, + "headersSize": 1965, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/DataStoreService" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/baseurl" }, "response": { - "bodySize": 114, + "bodySize": 178, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 114, - "text": "{\"code\":403,\"reason\":\"Forbidden\",\"message\":\"This operation is not available in PingOne Advanced Identity Cloud.\"}" + "size": 178, + "text": "{\"_id\":\"\",\"_rev\":\"-1889820858\",\"source\":\"REQUEST_VALUES\",\"fixedValue\":\"https://&{fqdn}\",\"contextPath\":\"/am\",\"_type\":{\"_id\":\"baseurl\",\"name\":\"Base URL Source\",\"collection\":false}}" }, "cookies": [], "headers": [ + { + "name": "x-frame-options", + "value": "DENY" + }, + { + "name": "content-security-policy", + "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" + }, + { + "name": "content-security-policy-report-only", + "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, { "name": "cache-control", - "value": "private, no-store" + "value": "private" + }, + { + "name": "cross-origin-opener-policy", + "value": "same-origin" + }, + { + "name": "cross-origin-resource-policy", + "value": "same-origin" + }, + { + "name": "etag", + "value": "" + }, + { + "name": "expires", + "value": "0" + }, + { + "name": "pragma", + "value": "no-cache" }, { "name": "content-type", "value": "application/json;charset=UTF-8" }, { - "name": "strict-transport-security", - "value": "max-age=31536000;includeSubDomains;preload" + "name": "content-length", + "value": "178" }, { "name": "date", "value": "" }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, { "name": "via", "value": "" @@ -60841,20 +60992,16 @@ { "name": "alt-svc", "value": "" - }, - { - "name": "transfer-encoding", - "value": "chunked" } ], - "headersSize": 267, + "headersSize": 770, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 403, - "statusText": "Forbidden" + "status": 200, + "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.230Z", - "time": 69, + "startedDateTime": "2026-07-14T21:32:59.358Z", + "time": 70, "timings": { "blocked": -1, "connect": -1, @@ -60862,11 +61009,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 69 + "wait": 70 } }, { - "_id": "eb43723b5a888da8a42f6e921f3bcac5", + "_id": "6106479c8101f1a2eb50b525d682a41e", "_order": 0, "cache": {}, "request": { @@ -60906,18 +61053,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1965, + "headersSize": 1977, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/baseurl" + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/policyconfiguration" }, "response": { - "bodySize": 178, + "bodySize": 926, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 178, - "text": "{\"_id\":\"\",\"_rev\":\"-1889820858\",\"source\":\"REQUEST_VALUES\",\"fixedValue\":\"https://&{fqdn}\",\"contextPath\":\"/am\",\"_type\":{\"_id\":\"baseurl\",\"name\":\"Base URL Source\",\"collection\":false}}" + "size": 926, + "text": "{\"_id\":\"\",\"_rev\":\"-247595145\",\"userAliasEnabled\":false,\"connectionPoolMinimumSize\":1,\"maximumSearchResults\":100,\"policyHeartbeatTimeUnit\":\"SECONDS\",\"usersSearchAttribute\":\"uid\",\"searchTimeout\":5,\"policyHeartbeatInterval\":10,\"usersSearchScope\":\"SCOPE_SUB\",\"subjectsResultTTL\":10,\"checkIfResourceTypeExists\":true,\"connectionPoolMaximumSize\":10,\"sslEnabled\":{\"$bool\":\"&{am.stores.ssl.enabled}\"},\"bindDn\":\"&{am.stores.user.username}\",\"ldapServer\":[\"userstore-1.userstore.fr-platform.svc.cluster.local:1389\",\"userstore-2.userstore.fr-platform.svc.cluster.local:1389\",\"userstore-0.userstore.fr-platform.svc.cluster.local:1389\"],\"mtlsEnabled\":false,\"bindPassword\":{\"$string\":\"&{am.stores.user.password}\"},\"realmSearchFilter\":\"(objectclass=sunismanagedorganization)\",\"usersSearchFilter\":\"(objectclass=inetorgperson)\",\"usersBaseDn\":\"ou=identities\",\"_type\":{\"_id\":\"policyconfiguration\",\"name\":\"Policy Configuration\",\"collection\":false}}" }, "cookies": [], "headers": [ @@ -60967,7 +61114,7 @@ }, { "name": "content-length", - "value": "178" + "value": "926" }, { "name": "date", @@ -60994,14 +61141,14 @@ "value": "" } ], - "headersSize": 745, + "headersSize": 744, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.231Z", - "time": 109, + "startedDateTime": "2026-07-14T21:32:59.359Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -61009,7 +61156,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 109 + "wait": 71 } }, { @@ -61148,8 +61295,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.232Z", - "time": 108, + "startedDateTime": "2026-07-14T21:32:59.359Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -61157,11 +61304,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 79 } }, { - "_id": "6106479c8101f1a2eb50b525d682a41e", + "_id": "51035a6e6ff65188fa59efdffaad2184", "_order": 0, "cache": {}, "request": { @@ -61201,18 +61348,23 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1977, + "headersSize": 2002, "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/policyconfiguration" + "method": "POST", + "queryString": [ + { + "name": "_action", + "value": "nextdescendents" + } + ], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/policyconfiguration?_action=nextdescendents" }, "response": { - "bodySize": 926, + "bodySize": 13, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 926, - "text": "{\"_id\":\"\",\"_rev\":\"-247595145\",\"userAliasEnabled\":false,\"connectionPoolMinimumSize\":1,\"maximumSearchResults\":100,\"policyHeartbeatTimeUnit\":\"SECONDS\",\"usersSearchAttribute\":\"uid\",\"searchTimeout\":5,\"policyHeartbeatInterval\":10,\"usersSearchScope\":\"SCOPE_SUB\",\"subjectsResultTTL\":10,\"checkIfResourceTypeExists\":true,\"connectionPoolMaximumSize\":10,\"sslEnabled\":{\"$bool\":\"&{am.stores.ssl.enabled}\"},\"bindDn\":\"&{am.stores.user.username}\",\"ldapServer\":[\"userstore-1.userstore.fr-platform.svc.cluster.local:1389\",\"userstore-2.userstore.fr-platform.svc.cluster.local:1389\",\"userstore-0.userstore.fr-platform.svc.cluster.local:1389\"],\"mtlsEnabled\":false,\"bindPassword\":{\"$string\":\"&{am.stores.user.password}\"},\"realmSearchFilter\":\"(objectclass=sunismanagedorganization)\",\"usersSearchFilter\":\"(objectclass=inetorgperson)\",\"usersBaseDn\":\"ou=identities\",\"_type\":{\"_id\":\"policyconfiguration\",\"name\":\"Policy Configuration\",\"collection\":false}}" + "size": 13, + "text": "{\"result\":[]}" }, "cookies": [], "headers": [ @@ -61244,10 +61396,6 @@ "name": "cross-origin-resource-policy", "value": "same-origin" }, - { - "name": "etag", - "value": "" - }, { "name": "expires", "value": "0" @@ -61262,7 +61410,7 @@ }, { "name": "content-length", - "value": "926" + "value": "13" }, { "name": "date", @@ -61289,14 +61437,14 @@ "value": "" } ], - "headersSize": 769, + "headersSize": 748, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.233Z", - "time": 107, + "startedDateTime": "2026-07-14T21:32:59.360Z", + "time": 83, "timings": { "blocked": -1, "connect": -1, @@ -61304,11 +61452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 83 } }, { - "_id": "51035a6e6ff65188fa59efdffaad2184", + "_id": "56f1ee37f9b69e29235a6caad39b03d9", "_order": 0, "cache": {}, "request": { @@ -61348,23 +61496,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 2002, + "headersSize": 1974, "httpVersion": "HTTP/1.1", - "method": "POST", - "queryString": [ - { - "name": "_action", - "value": "nextdescendents" - } - ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/policyconfiguration?_action=nextdescendents" + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/selfServiceTrees" }, "response": { - "bodySize": 13, + "bodySize": 279, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 13, - "text": "{\"result\":[]}" + "size": 279, + "text": "{\"_id\":\"\",\"_rev\":\"-948959244\",\"treeMapping\":{\"resetPassword\":\"ResetPassword\",\"updatePassword\":\"UpdatePassword\",\"forgottenUsername\":\"ForgottenUsername\",\"registration\":\"Registration\"},\"enabled\":true,\"_type\":{\"_id\":\"selfServiceTrees\",\"name\":\"Self Service Trees\",\"collection\":false}}" }, "cookies": [], "headers": [ @@ -61396,6 +61539,10 @@ "name": "cross-origin-resource-policy", "value": "same-origin" }, + { + "name": "etag", + "value": "" + }, { "name": "expires", "value": "0" @@ -61410,7 +61557,7 @@ }, { "name": "content-length", - "value": "13" + "value": "279" }, { "name": "date", @@ -61437,14 +61584,14 @@ "value": "" } ], - "headersSize": 723, + "headersSize": 744, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.234Z", - "time": 100, + "startedDateTime": "2026-07-14T21:32:59.361Z", + "time": 77, "timings": { "blocked": -1, "connect": -1, @@ -61452,11 +61599,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 77 } }, { - "_id": "56f1ee37f9b69e29235a6caad39b03d9", + "_id": "3db1215925122a2e86913c13cb73fa07", "_order": 0, "cache": {}, "request": { @@ -61496,18 +61643,23 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1974, + "headersSize": 1999, "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/selfServiceTrees" + "method": "POST", + "queryString": [ + { + "name": "_action", + "value": "nextdescendents" + } + ], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/selfServiceTrees?_action=nextdescendents" }, "response": { - "bodySize": 279, + "bodySize": 13, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 279, - "text": "{\"_id\":\"\",\"_rev\":\"-948959244\",\"treeMapping\":{\"resetPassword\":\"ResetPassword\",\"updatePassword\":\"UpdatePassword\",\"forgottenUsername\":\"ForgottenUsername\",\"registration\":\"Registration\"},\"enabled\":true,\"_type\":{\"_id\":\"selfServiceTrees\",\"name\":\"Self Service Trees\",\"collection\":false}}" + "size": 13, + "text": "{\"result\":[]}" }, "cookies": [], "headers": [ @@ -61539,10 +61691,6 @@ "name": "cross-origin-resource-policy", "value": "same-origin" }, - { - "name": "etag", - "value": "" - }, { "name": "expires", "value": "0" @@ -61557,7 +61705,7 @@ }, { "name": "content-length", - "value": "279" + "value": "13" }, { "name": "date", @@ -61584,14 +61732,14 @@ "value": "" } ], - "headersSize": 769, + "headersSize": 748, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.235Z", - "time": 105, + "startedDateTime": "2026-07-14T21:32:59.361Z", + "time": 84, "timings": { "blocked": -1, "connect": -1, @@ -61599,11 +61747,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 105 + "wait": 84 } }, { - "_id": "11378ef75f20c4102c2fbfe78764f3fc", + "_id": "c4c1ce80542cb6f5eea24b4890e0019d", "_order": 0, "cache": {}, "request": { @@ -61643,11 +61791,16 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1973, + "headersSize": 1998, "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/id-repositories" + "method": "POST", + "queryString": [ + { + "name": "_action", + "value": "nextdescendents" + } + ], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/id-repositories?_action=nextdescendents" }, "response": { "bodySize": 114, @@ -61660,7 +61813,7 @@ "headers": [ { "name": "cache-control", - "value": "private, no-store" + "value": "no-cache" }, { "name": "content-type", @@ -61687,14 +61840,14 @@ "value": "chunked" } ], - "headersSize": 267, + "headersSize": 258, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 403, "statusText": "Forbidden" }, - "startedDateTime": "2026-07-13T17:00:25.236Z", - "time": 71, + "startedDateTime": "2026-07-14T21:32:59.362Z", + "time": 51, "timings": { "blocked": -1, "connect": -1, @@ -61702,159 +61855,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 71 + "wait": 51 } }, { - "_id": "3db1215925122a2e86913c13cb73fa07", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "" - }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "accept-api-version", - "value": "protocol=2.0,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1999, - "httpVersion": "HTTP/1.1", - "method": "POST", - "queryString": [ - { - "name": "_action", - "value": "nextdescendents" - } - ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/selfServiceTrees?_action=nextdescendents" - }, - "response": { - "bodySize": 13, - "content": { - "mimeType": "application/json;charset=UTF-8", - "size": 13, - "text": "{\"result\":[]}" - }, - "cookies": [], - "headers": [ - { - "name": "x-frame-options", - "value": "DENY" - }, - { - "name": "content-security-policy", - "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" - }, - { - "name": "content-security-policy-report-only", - "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "cross-origin-opener-policy", - "value": "same-origin" - }, - { - "name": "cross-origin-resource-policy", - "value": "same-origin" - }, - { - "name": "expires", - "value": "0" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "content-type", - "value": "application/json;charset=UTF-8" - }, - { - "name": "content-length", - "value": "13" - }, - { - "name": "date", - "value": "" - }, - { - "name": "x-forgerock-transactionid", - "value": "" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "" - }, - { - "name": "alt-svc", - "value": "" - } - ], - "headersSize": 748, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2026-07-13T17:00:25.236Z", - "time": 111, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 111 - } - }, - { - "_id": "c4c1ce80542cb6f5eea24b4890e0019d", + "_id": "11378ef75f20c4102c2fbfe78764f3fc", "_order": 0, "cache": {}, "request": { @@ -61894,16 +61899,11 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1998, + "headersSize": 1973, "httpVersion": "HTTP/1.1", - "method": "POST", - "queryString": [ - { - "name": "_action", - "value": "nextdescendents" - } - ], - "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/id-repositories?_action=nextdescendents" + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/realms/root/realms/bravo/realm-config/services/id-repositories" }, "response": { "bodySize": 114, @@ -61916,7 +61916,7 @@ "headers": [ { "name": "cache-control", - "value": "no-cache" + "value": "private, no-store" }, { "name": "content-type", @@ -61943,14 +61943,14 @@ "value": "chunked" } ], - "headersSize": 258, + "headersSize": 267, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 403, "statusText": "Forbidden" }, - "startedDateTime": "2026-07-13T17:00:25.237Z", - "time": 65, + "startedDateTime": "2026-07-14T21:32:59.362Z", + "time": 52, "timings": { "blocked": -1, "connect": -1, @@ -61958,7 +61958,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 65 + "wait": 52 } }, { @@ -62096,8 +62096,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.237Z", - "time": 98, + "startedDateTime": "2026-07-14T21:32:59.363Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -62105,7 +62105,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 80 } }, { @@ -62244,8 +62244,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.239Z", - "time": 95, + "startedDateTime": "2026-07-14T21:32:59.364Z", + "time": 70, "timings": { "blocked": -1, "connect": -1, @@ -62253,7 +62253,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 70 } }, { @@ -62396,8 +62396,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.472Z", - "time": 241, + "startedDateTime": "2026-07-14T21:32:59.489Z", + "time": 169, "timings": { "blocked": -1, "connect": -1, @@ -62405,7 +62405,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 241 + "wait": 169 } } ], diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/environment_1072573434/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/environment_1072573434/recording.har index dec34c7d4..a698c1d0e 100644 --- a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/environment_1072573434/recording.har +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/environment_1072573434/recording.har @@ -100,14 +100,14 @@ "value": "" } ], - "headersSize": 388, + "headersSize": 413, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:00.083Z", - "time": 76, + "startedDateTime": "2026-07-14T21:32:36.621Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -115,7 +115,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 76 + "wait": 80 } }, { @@ -207,14 +207,14 @@ "value": "" } ], - "headersSize": 334, + "headersSize": 359, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.182Z", - "time": 136, + "startedDateTime": "2026-07-14T21:32:39.421Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -222,7 +222,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 136 + "wait": 105 } }, { @@ -269,11 +269,11 @@ "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets" }, "response": { - "bodySize": 908, + "bodySize": 1168, "content": { "mimeType": "application/json", - "size": 908, - "text": "{\"pagedResultsCookie\":null,\"remainingPagedResults\":-1,\"result\":[{\"_id\":\"esv-test-secret\",\"activeVersion\":\"1\",\"description\":\"Test Secret\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:06.765897Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-2\",\"activeVersion\":\"1\",\"description\":\"Test Secret Two\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:36.657796Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-3\",\"activeVersion\":\"1\",\"description\":\"Test Secret Three\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:52:02.874153Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}],\"resultCount\":3,\"totalPagedResults\":-1,\"totalPagedResultsPolicy\":\"NONE\"}" + "size": 1168, + "text": "{\"pagedResultsCookie\":null,\"remainingPagedResults\":-1,\"result\":[{\"_id\":\"esv-test-secret\",\"activeVersion\":\"1\",\"description\":\"Test Secret\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:06.765897Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-2\",\"activeVersion\":\"1\",\"description\":\"Test Secret Two\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:36.657796Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-3\",\"activeVersion\":\"1\",\"description\":\"Test Secret Three\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:52:02.874153Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-4\",\"activeVersion\":\"3\",\"description\":\"Testing secret using versioning\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-13T17:51:55.773277Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"3\",\"useInPlaceholders\":false}],\"resultCount\":4,\"totalPagedResults\":-1,\"totalPagedResultsPolicy\":\"NONE\"}" }, "cookies": [], "headers": [ @@ -287,7 +287,7 @@ }, { "name": "content-length", - "value": "908" + "value": "1168" }, { "name": "x-forgerock-transactionid", @@ -310,14 +310,14 @@ "value": "" } ], - "headersSize": 325, + "headersSize": 301, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:21.804Z", - "time": 246, + "startedDateTime": "2026-07-14T21:32:55.000Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -325,7 +325,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 246 + "wait": 146 } }, { @@ -413,14 +413,14 @@ "value": "" } ], - "headersSize": 325, + "headersSize": 300, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:22.054Z", - "time": 213, + "startedDateTime": "2026-07-14T21:32:55.152Z", + "time": 156, "timings": { "blocked": -1, "connect": -1, @@ -428,7 +428,110 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 213 + "wait": 156 + } + }, + { + "_id": "af909eff3df160d3df6370a97855ac51", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1876, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret/versions" + }, + "response": { + "bodySize": 95, + "content": { + "mimeType": "application/json", + "size": 95, + "text": "[{\"createDate\":\"2026-07-08T17:51:06.621525Z\",\"loaded\":false,\"status\":\"ENABLED\",\"version\":\"1\"}]" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "95" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 299, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:32:55.315Z", + "time": 252, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 252 } }, { @@ -516,14 +619,117 @@ "value": "" } ], - "headersSize": 325, + "headersSize": 300, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:32:55.573Z", + "time": 124, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 124 + } + }, + { + "_id": "699f54d6ed993d957899ddaacc79d730", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1878, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-2/versions" + }, + "response": { + "bodySize": 95, + "content": { + "mimeType": "application/json", + "size": 95, + "text": "[{\"createDate\":\"2026-07-08T17:51:36.386756Z\",\"loaded\":false,\"status\":\"ENABLED\",\"version\":\"1\"}]" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "95" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 299, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:22.271Z", - "time": 215, + "startedDateTime": "2026-07-14T21:32:55.707Z", + "time": 298, "timings": { "blocked": -1, "connect": -1, @@ -531,7 +737,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 215 + "wait": 298 } }, { @@ -625,8 +831,317 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:22.490Z", - "time": 295, + "startedDateTime": "2026-07-14T21:32:56.014Z", + "time": 149, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 149 + } + }, + { + "_id": "ec33b4f1112c2a3c49b3845535f68a14", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1878, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-3/versions" + }, + "response": { + "bodySize": 95, + "content": { + "mimeType": "application/json", + "size": 95, + "text": "[{\"createDate\":\"2026-07-08T17:52:02.786452Z\",\"loaded\":false,\"status\":\"ENABLED\",\"version\":\"1\"}]" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "95" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 299, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:32:56.168Z", + "time": 274, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 274 + } + }, + { + "_id": "6776580f338394b3e7eac7d90b0d0236", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1869, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-4" + }, + "response": { + "bodySize": 260, + "content": { + "mimeType": "application/json", + "size": 260, + "text": "{\"_id\":\"esv-test-secret-4\",\"activeVersion\":\"3\",\"description\":\"Testing secret using versioning\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-13T17:51:55.773277Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"3\",\"useInPlaceholders\":false}" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "260" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 300, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:32:56.447Z", + "time": 144, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 144 + } + }, + { + "_id": "30971c7c21976c06639b39d18f819637", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1878, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-4/versions" + }, + "response": { + "bodySize": 282, + "content": { + "mimeType": "application/json", + "size": 282, + "text": "[{\"createDate\":\"2026-07-13T17:51:51.333303Z\",\"loaded\":false,\"status\":\"ENABLED\",\"version\":\"3\"},{\"createDate\":\"2026-07-13T17:51:35.308731Z\",\"loaded\":false,\"status\":\"ENABLED\",\"version\":\"2\"},{\"createDate\":\"2026-07-13T17:51:22.422248Z\",\"loaded\":false,\"status\":\"DISABLED\",\"version\":\"1\"}]" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "282" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 300, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:32:56.597Z", + "time": 216, "timings": { "blocked": -1, "connect": -1, @@ -634,7 +1149,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 295 + "wait": 216 } }, { @@ -722,14 +1237,14 @@ "value": "chunked" } ], - "headersSize": 307, + "headersSize": 332, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:26.298Z", - "time": 425, + "startedDateTime": "2026-07-14T21:33:00.054Z", + "time": 717, "timings": { "blocked": -1, "connect": -1, @@ -737,7 +1252,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 425 + "wait": 717 } } ], diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/oauth2_393036114/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/oauth2_393036114/recording.har index e3323a01c..e49b057a0 100644 --- a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/oauth2_393036114/recording.har +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/oauth2_393036114/recording.har @@ -121,14 +121,14 @@ "value": "" } ], - "headersSize": 556, + "headersSize": 581, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T16:59:59.847Z", - "time": 133, + "startedDateTime": "2026-07-14T21:32:36.403Z", + "time": 125, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 133 + "wait": 125 } } ], diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/openidm_3290118515/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/openidm_3290118515/recording.har index 424282882..c0b25507e 100644 --- a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/openidm_3290118515/recording.har +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/openidm_3290118515/recording.har @@ -53,14 +53,14 @@ "value": "*" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/8a4fce63-e7f1-452c-a984-086150f83be0?_fields=%2A" + "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/59add48c-1b03-40d2-b1ee-2db021509e0a?_fields=%2A" }, "response": { - "bodySize": 1312, + "bodySize": 1372, "content": { "mimeType": "application/json;charset=utf-8", - "size": 1312, - "text": "{\"_id\":\"8a4fce63-e7f1-452c-a984-086150f83be0\",\"_rev\":\"140ec59e-7c33-4a61-a5b6-44934868b356-230\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1782747461119\",\"description\":\"volker.scheuber@pingidentity.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:dataset:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"e\\\":\\\"AQAB\\\",\\\"kty\\\":\\\"RSA\\\",\\\"n\\\":\\\"yKUN7H0d7KPBv-CQ4Sxg89WOcvMsLNX31dcsfIDWKbPQJYq8WD32GsiCfU8TB0RaQNU78SQLMMFCMGswsv7Ne59QBFS6Xrhugpxeb8LjrzPEzKqYcnxLdPPhsucOdmELwaMXi_yOWh8GSDKAd9Dp1YSi7vDGyCL35GvgY16PlxMJcqjWawHWIJl4fz9aU0LmZUV7jdlwX2Ww8V6wqUZUb-WpNAVKehAPY-JL6_uuuZpYm3OJqjfH5bL5JseZCaUAxxYpdpJDJ0XnrScS2XLkfvms096IjDf6WXEbt73SbnznDhBGl8rzvbjRTcDMoCH401tUF8pZH5wDqY8eKChXJSMTmDirX1VaTMK1R42epSb9OKJ4qkDLZx6z8BcA3L9qiq-mzIBnLsGqQ552fTowl67KgQKUTM9q21vMH-iXQTvx29b-y3aW6LiX1A7u3xMjlcIIfRrFzV-JXy6zFeJdcxKAubN0s9bpbVB2XOQd_EFbuAtnBTy1jebl0YPtAofg9bW_LkhD_mP1Q3f6Q0VAomwFERaVTWX2U_HcZK_oDEzj9GIx9NHIjIKs8rtVpD2QS91zXmLU3FgZM7SDP0DECJMqiLQPzEv9Y6AuMiB9rEYx8FBrRbzVuPadhu5dbkBVK-DAD1AIy8WAODMbtRa3Hu8u8LICSa2SDtnfookwfp8\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" + "size": 1372, + "text": "{\"_id\":\"59add48c-1b03-40d2-b1ee-2db021509e0a\",\"_rev\":\"122b5886-4dd0-4bf1-abfa-b237ffed0133-6807\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1783028811524\",\"description\":\"phales@trivir.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:dataset:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"kty\\\":\\\"RSA\\\",\\\"kid\\\":\\\"kmNDanm9kSh7e052pGdrRgYpTXYYaeEpKxjABeHEtHM\\\",\\\"alg\\\":\\\"RS256\\\",\\\"e\\\":\\\"AQAB\\\",\\\"n\\\":\\\"zlA-kS3tmyRPFu-STaIdhzVzKgErhw545oC5nKi6n0mpkwNpt2w7Ucn8mWYkS1-Xdl4WaS2HwIyiGOqhPbhzG-Vxcki1d450h7mMKbuOYMAeK89oaGEvvDQcgCcY3JyAkfjoKXAdnWcjWdmMVKCvNbKNqxQjEPoVEOnwlqJsMoW8P0Qtb6Te7kUCCzOKtd7m27zDCU7MEfh5iGotB1s9NZ2gkqNqUJ75NKi0IVPJcTZ9KzQPETOA-U8mdOxkV0hfwVKA2a4iZw28uRh6Zsraf6Dys82z0G2YBuJxSst3nxY3T1qEm7IqBA2a0zhx-refzthI8JIWArveoY-jDllNnqhtNks2O1RnvvAVFrUubGCKYz70rW8_tTYsTtITuMpXaI875TmI76aJS-_pMhRr7FoFOshXNvp6eNsbOsY_76tJ0s6eMsIZ7IeIlcDuorimQodyEp1kkYbNiCA0XicXEIq1CeQ4aXEe5ZgPClqWZSXBPm-7Wqea2kTjCt0tfywWqtf-v4drB3OW93v5ZMfoDUXmpLEOw9CwUuTRqkf3iTz_EpC2bfbIg9kS9GytQ5XcRh9JbE9Av1_ZB9ylb-OekPUQb2Wpxs9uRYH1mC5mTBan2M8_gjDdlRMCL1btdeJlWai9Nyv-KkcqRN9cJNjFHtnnBMyXq2yEuFo4VISqzEk\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" }, "cookies": [], "headers": [ @@ -114,7 +114,7 @@ }, { "name": "content-length", - "value": "1312" + "value": "1372" }, { "name": "x-forgerock-transactionid", @@ -137,14 +137,14 @@ "value": "" } ], - "headersSize": 656, + "headersSize": 657, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:00.015Z", - "time": 152, + "startedDateTime": "2026-07-14T21:32:36.578Z", + "time": 293, "timings": { "blocked": -1, "connect": -1, @@ -152,7 +152,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 152 + "wait": 293 } }, { @@ -201,14 +201,14 @@ "value": "*" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/8a4fce63-e7f1-452c-a984-086150f83be0?_fields=%2A" + "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/59add48c-1b03-40d2-b1ee-2db021509e0a?_fields=%2A" }, "response": { - "bodySize": 1312, + "bodySize": 1372, "content": { "mimeType": "application/json;charset=utf-8", - "size": 1312, - "text": "{\"_id\":\"8a4fce63-e7f1-452c-a984-086150f83be0\",\"_rev\":\"140ec59e-7c33-4a61-a5b6-44934868b356-230\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1782747461119\",\"description\":\"volker.scheuber@pingidentity.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:dataset:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"e\\\":\\\"AQAB\\\",\\\"kty\\\":\\\"RSA\\\",\\\"n\\\":\\\"yKUN7H0d7KPBv-CQ4Sxg89WOcvMsLNX31dcsfIDWKbPQJYq8WD32GsiCfU8TB0RaQNU78SQLMMFCMGswsv7Ne59QBFS6Xrhugpxeb8LjrzPEzKqYcnxLdPPhsucOdmELwaMXi_yOWh8GSDKAd9Dp1YSi7vDGyCL35GvgY16PlxMJcqjWawHWIJl4fz9aU0LmZUV7jdlwX2Ww8V6wqUZUb-WpNAVKehAPY-JL6_uuuZpYm3OJqjfH5bL5JseZCaUAxxYpdpJDJ0XnrScS2XLkfvms096IjDf6WXEbt73SbnznDhBGl8rzvbjRTcDMoCH401tUF8pZH5wDqY8eKChXJSMTmDirX1VaTMK1R42epSb9OKJ4qkDLZx6z8BcA3L9qiq-mzIBnLsGqQ552fTowl67KgQKUTM9q21vMH-iXQTvx29b-y3aW6LiX1A7u3xMjlcIIfRrFzV-JXy6zFeJdcxKAubN0s9bpbVB2XOQd_EFbuAtnBTy1jebl0YPtAofg9bW_LkhD_mP1Q3f6Q0VAomwFERaVTWX2U_HcZK_oDEzj9GIx9NHIjIKs8rtVpD2QS91zXmLU3FgZM7SDP0DECJMqiLQPzEv9Y6AuMiB9rEYx8FBrRbzVuPadhu5dbkBVK-DAD1AIy8WAODMbtRa3Hu8u8LICSa2SDtnfookwfp8\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" + "size": 1372, + "text": "{\"_id\":\"59add48c-1b03-40d2-b1ee-2db021509e0a\",\"_rev\":\"122b5886-4dd0-4bf1-abfa-b237ffed0133-6807\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1783028811524\",\"description\":\"phales@trivir.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:dataset:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"kty\\\":\\\"RSA\\\",\\\"kid\\\":\\\"kmNDanm9kSh7e052pGdrRgYpTXYYaeEpKxjABeHEtHM\\\",\\\"alg\\\":\\\"RS256\\\",\\\"e\\\":\\\"AQAB\\\",\\\"n\\\":\\\"zlA-kS3tmyRPFu-STaIdhzVzKgErhw545oC5nKi6n0mpkwNpt2w7Ucn8mWYkS1-Xdl4WaS2HwIyiGOqhPbhzG-Vxcki1d450h7mMKbuOYMAeK89oaGEvvDQcgCcY3JyAkfjoKXAdnWcjWdmMVKCvNbKNqxQjEPoVEOnwlqJsMoW8P0Qtb6Te7kUCCzOKtd7m27zDCU7MEfh5iGotB1s9NZ2gkqNqUJ75NKi0IVPJcTZ9KzQPETOA-U8mdOxkV0hfwVKA2a4iZw28uRh6Zsraf6Dys82z0G2YBuJxSst3nxY3T1qEm7IqBA2a0zhx-refzthI8JIWArveoY-jDllNnqhtNks2O1RnvvAVFrUubGCKYz70rW8_tTYsTtITuMpXaI875TmI76aJS-_pMhRr7FoFOshXNvp6eNsbOsY_76tJ0s6eMsIZ7IeIlcDuorimQodyEp1kkYbNiCA0XicXEIq1CeQ4aXEe5ZgPClqWZSXBPm-7Wqea2kTjCt0tfywWqtf-v4drB3OW93v5ZMfoDUXmpLEOw9CwUuTRqkf3iTz_EpC2bfbIg9kS9GytQ5XcRh9JbE9Av1_ZB9ylb-OekPUQb2Wpxs9uRYH1mC5mTBan2M8_gjDdlRMCL1btdeJlWai9Nyv-KkcqRN9cJNjFHtnnBMyXq2yEuFo4VISqzEk\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" }, "cookies": [], "headers": [ @@ -262,7 +262,7 @@ }, { "name": "content-length", - "value": "1312" + "value": "1372" }, { "name": "x-forgerock-transactionid", @@ -285,14 +285,14 @@ "value": "" } ], - "headersSize": 656, + "headersSize": 682, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:00.166Z", - "time": 70, + "startedDateTime": "2026-07-14T21:32:36.708Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -300,7 +300,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 70 + "wait": 97 } }, { @@ -428,14 +428,14 @@ "value": "" } ], - "headersSize": 654, + "headersSize": 679, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:00.239Z", - "time": 77, + "startedDateTime": "2026-07-14T21:32:36.811Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -443,7 +443,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 77 + "wait": 97 } }, { @@ -571,14 +571,14 @@ "value": "" } ], - "headersSize": 654, + "headersSize": 679, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:00.324Z", - "time": 75, + "startedDateTime": "2026-07-14T21:32:36.915Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -586,7 +586,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 75 + "wait": 94 } }, { @@ -719,14 +719,14 @@ "value": "" } ], - "headersSize": 655, + "headersSize": 680, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:02.987Z", - "time": 87, + "startedDateTime": "2026-07-14T21:32:39.254Z", + "time": 69, "timings": { "blocked": -1, "connect": -1, @@ -734,7 +734,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 87 + "wait": 69 } }, { @@ -862,14 +862,14 @@ "value": "" } ], - "headersSize": 655, + "headersSize": 680, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.079Z", - "time": 91, + "startedDateTime": "2026-07-14T21:32:39.332Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -877,7 +877,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 81 } }, { @@ -1005,14 +1005,14 @@ "value": "" } ], - "headersSize": 653, + "headersSize": 678, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.320Z", - "time": 50, + "startedDateTime": "2026-07-14T21:32:39.530Z", + "time": 65, "timings": { "blocked": -1, "connect": -1, @@ -1020,7 +1020,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 50 + "wait": 65 } }, { @@ -1154,8 +1154,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.651Z", - "time": 59, + "startedDateTime": "2026-07-14T21:32:39.829Z", + "time": 61, "timings": { "blocked": -1, "connect": -1, @@ -1163,7 +1163,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 59 + "wait": 61 } }, { @@ -1302,8 +1302,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.714Z", - "time": 81, + "startedDateTime": "2026-07-14T21:32:39.895Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -1311,7 +1311,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 81 + "wait": 92 } }, { @@ -1450,7 +1450,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.802Z", + "startedDateTime": "2026-07-14T21:32:39.993Z", "time": 60, "timings": { "blocked": -1, @@ -1602,8 +1602,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:03.866Z", - "time": 72, + "startedDateTime": "2026-07-14T21:32:40.058Z", + "time": 61, "timings": { "blocked": -1, "connect": -1, @@ -1611,7 +1611,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 72 + "wait": 61 } }, { @@ -1745,8 +1745,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.761Z", - "time": 85, + "startedDateTime": "2026-07-14T21:32:50.700Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -1754,7 +1754,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 85 + "wait": 91 } }, { @@ -1893,8 +1893,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.850Z", - "time": 97, + "startedDateTime": "2026-07-14T21:32:50.797Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -1902,7 +1902,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 73 } }, { @@ -2036,8 +2036,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:15.951Z", - "time": 369, + "startedDateTime": "2026-07-14T21:32:50.875Z", + "time": 159, "timings": { "blocked": -1, "connect": -1, @@ -2045,7 +2045,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 369 + "wait": 159 } }, { @@ -2173,14 +2173,14 @@ "value": "" } ], - "headersSize": 653, + "headersSize": 678, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.212Z", - "time": 74, + "startedDateTime": "2026-07-14T21:32:53.005Z", + "time": 61, "timings": { "blocked": -1, "connect": -1, @@ -2188,7 +2188,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 74 + "wait": 61 } }, { @@ -2316,14 +2316,14 @@ "value": "" } ], - "headersSize": 679, + "headersSize": 654, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.413Z", - "time": 87, + "startedDateTime": "2026-07-14T21:32:53.172Z", + "time": 71, "timings": { "blocked": -1, "connect": -1, @@ -2331,7 +2331,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 87 + "wait": 71 } }, { @@ -2459,14 +2459,14 @@ "value": "" } ], - "headersSize": 679, + "headersSize": 654, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.505Z", - "time": 93, + "startedDateTime": "2026-07-14T21:32:53.250Z", + "time": 66, "timings": { "blocked": -1, "connect": -1, @@ -2474,7 +2474,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 66 } }, { @@ -2602,14 +2602,14 @@ "value": "chunked" } ], - "headersSize": 685, + "headersSize": 660, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.791Z", - "time": 89, + "startedDateTime": "2026-07-14T21:32:53.464Z", + "time": 68, "timings": { "blocked": -1, "connect": -1, @@ -2617,7 +2617,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 68 } }, { @@ -2745,14 +2745,14 @@ "value": "chunked" } ], - "headersSize": 685, + "headersSize": 660, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:19.884Z", - "time": 84, + "startedDateTime": "2026-07-14T21:32:53.536Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -2760,7 +2760,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 73 } }, { @@ -2888,14 +2888,14 @@ "value": "" } ], - "headersSize": 677, + "headersSize": 652, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 404, "statusText": "Not Found" }, - "startedDateTime": "2026-07-13T17:00:19.972Z", - "time": 87, + "startedDateTime": "2026-07-14T21:32:53.614Z", + "time": 60, "timings": { "blocked": -1, "connect": -1, @@ -2903,7 +2903,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 87 + "wait": 60 } }, { @@ -3036,14 +3036,14 @@ "value": "" } ], - "headersSize": 678, + "headersSize": 653, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:20.063Z", - "time": 82, + "startedDateTime": "2026-07-14T21:32:53.682Z", + "time": 62, "timings": { "blocked": -1, "connect": -1, @@ -3051,7 +3051,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 82 + "wait": 62 } }, { @@ -3192,14 +3192,14 @@ "value": "" } ], - "headersSize": 678, + "headersSize": 653, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:23.060Z", - "time": 77, + "startedDateTime": "2026-07-14T21:32:57.160Z", + "time": 69, "timings": { "blocked": -1, "connect": -1, @@ -3207,7 +3207,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 77 + "wait": 69 } }, { @@ -3335,14 +3335,14 @@ "value": "chunked" } ], - "headersSize": 660, + "headersSize": 685, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.716Z", - "time": 237, + "startedDateTime": "2026-07-14T21:32:59.666Z", + "time": 137, "timings": { "blocked": -1, "connect": -1, @@ -3350,7 +3350,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 237 + "wait": 137 } }, { @@ -3478,14 +3478,14 @@ "value": "chunked" } ], - "headersSize": 660, + "headersSize": 685, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:25.968Z", - "time": 178, + "startedDateTime": "2026-07-14T21:32:59.814Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -3493,7 +3493,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 178 + "wait": 81 } }, { @@ -3627,8 +3627,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:26.154Z", - "time": 66, + "startedDateTime": "2026-07-14T21:32:59.901Z", + "time": 65, "timings": { "blocked": -1, "connect": -1, @@ -3636,7 +3636,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 66 + "wait": 65 } }, { @@ -3764,14 +3764,14 @@ "value": "" } ], - "headersSize": 653, + "headersSize": 678, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:26.224Z", - "time": 70, + "startedDateTime": "2026-07-14T21:32:59.972Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -3779,7 +3779,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 70 + "wait": 76 } } ], diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/saml2_3242371462/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/saml2_3242371462/recording.har index b7dfea882..2e878cd29 100644 --- a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/saml2_3242371462/recording.har +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/all_321211332/0_F_D_2873540921/saml2_3242371462/recording.har @@ -121,14 +121,14 @@ "value": "chunked" } ], - "headersSize": 554, + "headersSize": 529, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:20.443Z", - "time": 75, + "startedDateTime": "2026-07-14T21:32:54.019Z", + "time": 63, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 75 + "wait": 63 } }, { @@ -253,14 +253,14 @@ "value": "" } ], - "headersSize": 548, + "headersSize": 523, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2026-07-13T17:00:20.726Z", - "time": 85, + "startedDateTime": "2026-07-14T21:32:54.263Z", + "time": 69, "timings": { "blocked": -1, "connect": -1, @@ -268,7 +268,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 85 + "wait": 69 } } ], diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/am_1076162899/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/am_1076162899/recording.har index a277a80d4..994364a07 100644 --- a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/am_1076162899/recording.har +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/am_1076162899/recording.har @@ -25,11 +25,11 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "accept-api-version", @@ -44,24 +44,24 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 385, + "headersSize": 388, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], "url": "https://openam-frodo-dev.forgeblocks.com/am/json/serverinfo/*" }, "response": { - "bodySize": 553, + "bodySize": 614, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 553, - "text": "{\"_id\":\"*\",\"_rev\":\"1874515102\",\"domains\":[],\"protectedUserAttributes\":[\"telephoneNumber\",\"mail\"],\"cookieName\":\"6ac6499e9da2071\",\"secureCookie\":true,\"forgotPassword\":\"false\",\"forgotUsername\":\"false\",\"kbaEnabled\":\"false\",\"selfRegistration\":\"false\",\"lang\":\"en-US\",\"successfulUserRegistrationDestination\":\"default\",\"socialImplementations\":[],\"referralsEnabled\":\"false\",\"zeroPageLogin\":{\"enabled\":false,\"refererWhitelist\":[],\"allowedWithoutReferer\":true},\"realm\":\"/\",\"xuiUserSessionValidationEnabled\":true,\"fileBasedConfiguration\":true,\"userIdAttributes\":[]}" + "size": 614, + "text": "{\"_id\":\"*\",\"_rev\":\"1955877865\",\"domains\":[],\"protectedUserAttributes\":[\"telephoneNumber\",\"mail\"],\"cookieName\":\"6ac6499e9da2071\",\"secureCookie\":true,\"forgotPassword\":\"false\",\"forgotUsername\":\"false\",\"kbaEnabled\":\"false\",\"selfRegistration\":\"false\",\"lang\":\"en-US\",\"successfulUserRegistrationDestination\":\"default\",\"socialImplementations\":[],\"referralsEnabled\":\"false\",\"zeroPageLogin\":{\"enabled\":false,\"refererWhitelist\":[],\"allowedWithoutReferer\":true},\"realm\":\"/\",\"xuiUserSessionValidationEnabled\":true,\"fileBasedConfiguration\":true,\"userIdAttributes\":[],\"cloudOnlyFeaturesEnabled\":true,\"oauth2AIAgentsEnabled\":true}" }, "cookies": [], "headers": [ { - "name": "x-frame-options", - "value": "SAMEORIGIN" + "name": "content-security-policy", + "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" }, { "name": "content-security-policy-report-only", @@ -79,10 +79,6 @@ "name": "content-api-version", "value": "resource=1.1" }, - { - "name": "content-security-policy", - "value": "default-src 'none';frame-ancestors 'none';sandbox" - }, { "name": "cross-origin-opener-policy", "value": "same-origin" @@ -93,7 +89,7 @@ }, { "name": "etag", - "value": "\"1874515102\"" + "value": "" }, { "name": "expires", @@ -103,21 +99,25 @@ "name": "pragma", "value": "no-cache" }, + { + "name": "x-frame-options", + "value": "DENY" + }, { "name": "content-type", "value": "application/json;charset=UTF-8" }, { "name": "content-length", - "value": "553" + "value": "614" }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:02 GMT" + "value": "" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "strict-transport-security", @@ -129,21 +129,21 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], - "headersSize": 787, + "headersSize": 805, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:02.223Z", - "time": 150, + "startedDateTime": "2026-07-14T21:52:05.321Z", + "time": 1167, "timings": { "blocked": -1, "connect": -1, @@ -151,7 +151,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 150 + "wait": 1167 } }, { @@ -172,11 +172,11 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "accept-api-version", @@ -195,24 +195,28 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1913, + "headersSize": 1916, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], "url": "https://openam-frodo-dev.forgeblocks.com/am/json/serverinfo/version" }, "response": { - "bodySize": 273, + "bodySize": 274, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 273, - "text": "{\"_id\":\"version\",\"_rev\":\"-750667214\",\"version\":\"8.0.0-SNAPSHOT\",\"fullVersion\":\"ForgeRock Access Management 8.0.0-SNAPSHOT Build 2afa9838c3cd077e075ad764cf803942edda1c9a (2025-June-05 16:09)\",\"revision\":\"2afa9838c3cd077e075ad764cf803942edda1c9a\",\"date\":\"2025-June-05 16:09\"}" + "size": 274, + "text": "{\"_id\":\"version\",\"_rev\":\"-1986495916\",\"version\":\"9.0.0-SNAPSHOT\",\"fullVersion\":\"ForgeRock Access Management 9.0.0-SNAPSHOT Build c6c99b2f35d4d905937aeef7e7b8426bf5d8e820 (2026-June-12 09:10)\",\"revision\":\"c6c99b2f35d4d905937aeef7e7b8426bf5d8e820\",\"date\":\"2026-June-12 09:10\"}" }, "cookies": [], "headers": [ { "name": "x-frame-options", - "value": "SAMEORIGIN" + "value": "DENY" + }, + { + "name": "content-security-policy", + "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" }, { "name": "content-security-policy-report-only", @@ -230,10 +234,6 @@ "name": "content-api-version", "value": "resource=1.0" }, - { - "name": "content-security-policy", - "value": "default-src 'none';frame-ancestors 'none';sandbox" - }, { "name": "cross-origin-opener-policy", "value": "same-origin" @@ -244,7 +244,7 @@ }, { "name": "etag", - "value": "\"-750667214\"" + "value": "" }, { "name": "expires", @@ -260,15 +260,15 @@ }, { "name": "content-length", - "value": "273" + "value": "274" }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:02 GMT" + "value": "" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "strict-transport-security", @@ -280,21 +280,21 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], - "headersSize": 787, + "headersSize": 806, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:02.485Z", - "time": 121, + "startedDateTime": "2026-07-14T21:52:06.618Z", + "time": 75, "timings": { "blocked": -1, "connect": -1, @@ -302,7 +302,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 75 } } ], diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/environment_1072573434/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/environment_1072573434/recording.har index 479da2c58..61cf55f60 100644 --- a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/environment_1072573434/recording.har +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/environment_1072573434/recording.har @@ -8,419 +8,7 @@ }, "entries": [ { - "_id": "a24d647eb74a9e69a6b0bd9ed23dc6ce", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" - }, - { - "name": "accept-api-version", - "value": "protocol=1.0,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1848, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets" - }, - "response": { - "bodySize": 4311, - "content": { - "mimeType": "application/json", - "size": 4311, - "text": "{\"pagedResultsCookie\":null,\"remainingPagedResults\":-1,\"result\":[{\"_id\":\"esv-admin-token\",\"activeVersion\":\"1\",\"description\":\"Long-lived admin token\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-03-20T14:46:13.461793Z\",\"lastChangedBy\":\"ba58ff99-76d3-4c69-9c4a-7f150ac70e2c\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-brando-pingone\",\"activeVersion\":\"4\",\"description\":\"This is to show the connection between PingOne and AIC. \",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-06-24T00:44:06.154598Z\",\"lastChangedBy\":\"Frodo-SA-1701393386423\",\"loaded\":true,\"loadedVersion\":\"4\",\"useInPlaceholders\":true},{\"_id\":\"esv-sean-test\",\"activeVersion\":\"1\",\"description\":\"\",\"encoding\":\"generic\",\"lastChangeDate\":\"2025-04-11T21:35:33.98194Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-secret-import-test1\",\"activeVersion\":\"1\",\"description\":\"Secret Import Test 1\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-06-22T01:13:13.904591Z\",\"lastChangedBy\":\"volker.scheuber@forgerock.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-secret-import-test2\",\"activeVersion\":\"1\",\"description\":\"Secret Import Test 2\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-06-22T01:13:41.914076Z\",\"lastChangedBy\":\"volker.scheuber@forgerock.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-client-cert\",\"activeVersion\":\"1\",\"description\":\"Test HTTP Client client cert\",\"encoding\":\"pem\",\"lastChangeDate\":\"2025-06-12T20:19:16.975613Z\",\"lastChangedBy\":\"Frodo-SA-1725981758244\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":false},{\"_id\":\"esv-test-secret\",\"activeVersion\":\"1\",\"description\":\"This is a test secret containing a simple string value.\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-07-05T17:53:53.682578Z\",\"lastChangedBy\":\"Frodo-SA-1701393386423\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-cert-pem\",\"activeVersion\":\"1\",\"description\":\"This is a test secret from a pem encoded cert file.\",\"encoding\":\"pem\",\"lastChangeDate\":\"2024-01-20T03:48:49.005574Z\",\"lastChangedBy\":\"6bac97fb-0665-4ba9-b66c-1cf70e074d72\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-cert-pem-raw\",\"activeVersion\":\"1\",\"description\":\"This is a test secret from a pem encoded cert file (raw).\",\"encoding\":\"pem\",\"lastChangeDate\":\"2024-01-20T03:49:20.270526Z\",\"lastChangedBy\":\"6bac97fb-0665-4ba9-b66c-1cf70e074d72\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-euler\",\"activeVersion\":\"1\",\"description\":\"A test secret containing the value of Euler's number\",\"encoding\":\"generic\",\"lastChangeDate\":\"2023-12-14T15:27:34.607038Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-file-base64hmac\",\"activeVersion\":\"1\",\"description\":\"This is a test secret from base64 encoded hmac key file.\",\"encoding\":\"base64hmac\",\"lastChangeDate\":\"2024-01-20T03:46:37.42544Z\",\"lastChangedBy\":\"6bac97fb-0665-4ba9-b66c-1cf70e074d72\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-file-base64hmac-raw\",\"activeVersion\":\"1\",\"description\":\"This is a test secret from base64 encoded hmac key file (raw).\",\"encoding\":\"base64hmac\",\"lastChangeDate\":\"2024-01-20T03:47:03.695151Z\",\"lastChangedBy\":\"6bac97fb-0665-4ba9-b66c-1cf70e074d72\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-pi\",\"activeVersion\":\"1\",\"description\":\"Secret that contains the value of pi\",\"encoding\":\"generic\",\"lastChangeDate\":\"2023-12-14T15:22:28.519043Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-pi-generic\",\"activeVersion\":\"3\",\"description\":\"\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-07-15T03:20:09.136266Z\",\"lastChangedBy\":\"Frodo-SA-1701393386423\",\"loaded\":true,\"loadedVersion\":\"3\",\"useInPlaceholders\":true},{\"_id\":\"esv-volkers-test-secret\",\"activeVersion\":\"10\",\"description\":\"Volker's test secret\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-06-26T01:37:06.116117Z\",\"lastChangedBy\":\"Frodo-SA-1701393386423\",\"loaded\":true,\"loadedVersion\":\"10\",\"useInPlaceholders\":true}],\"resultCount\":15,\"totalPagedResults\":-1,\"totalPagedResultsPolicy\":\"NONE\"}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "date", - "value": "Mon, 23 Jun 2025 23:22:02 GMT" - }, - { - "name": "x-forgerock-transactionid", - "value": "8f42156a-40ee-4ce3-8e23-3062cba9ef55" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "1.1 google" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "transfer-encoding", - "value": "chunked" - } - ], - "headersSize": 332, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2025-06-23T23:22:02.682Z", - "time": 241, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 241 - } - }, - { - "_id": "6f6fa199a3b2b45773ec762a6aaef513", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" - }, - { - "name": "accept-api-version", - "value": "protocol=1.0,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1864, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-admin-token" - }, - "response": { - "bodySize": 267, - "content": { - "mimeType": "application/json", - "size": 267, - "text": "{\"_id\":\"esv-admin-token\",\"activeVersion\":\"1\",\"description\":\"Long-lived admin token\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-03-20T14:46:13.461793Z\",\"lastChangedBy\":\"ba58ff99-76d3-4c69-9c4a-7f150ac70e2c\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "date", - "value": "Mon, 23 Jun 2025 23:22:03 GMT" - }, - { - "name": "content-length", - "value": "267" - }, - { - "name": "x-forgerock-transactionid", - "value": "450786af-9144-4287-85f1-12d180d155cd" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "1.1 google" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - } - ], - "headersSize": 325, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2025-06-23T23:22:02.931Z", - "time": 193, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 193 - } - }, - { - "_id": "fc70796aba78406c1b497972e519e4df", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" - }, - { - "name": "accept-api-version", - "value": "protocol=1.0,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1867, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-brando-pingone" - }, - "response": { - "bodySize": 290, - "content": { - "mimeType": "application/json", - "size": 290, - "text": "{\"_id\":\"esv-brando-pingone\",\"activeVersion\":\"4\",\"description\":\"This is to show the connection between PingOne and AIC. \",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-06-24T00:44:06.154598Z\",\"lastChangedBy\":\"Frodo-SA-1701393386423\",\"loaded\":true,\"loadedVersion\":\"4\",\"useInPlaceholders\":true}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "date", - "value": "Mon, 23 Jun 2025 23:22:03 GMT" - }, - { - "name": "content-length", - "value": "290" - }, - { - "name": "x-forgerock-transactionid", - "value": "475cf14e-9742-4c80-ae5f-764731c7475a" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "1.1 google" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - } - ], - "headersSize": 325, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2025-06-23T23:22:03.133Z", - "time": 158, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 158 - } - }, - { - "_id": "681dceffb34f31a95f94793a125c330b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" - }, - { - "name": "accept-api-version", - "value": "protocol=1.0,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1862, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-sean-test" - }, - "response": { - "bodySize": 223, - "content": { - "mimeType": "application/json", - "size": 223, - "text": "{\"_id\":\"esv-sean-test\",\"activeVersion\":\"1\",\"description\":\"\",\"encoding\":\"generic\",\"lastChangeDate\":\"2025-04-11T21:35:33.98194Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "date", - "value": "Mon, 23 Jun 2025 23:22:03 GMT" - }, - { - "name": "content-length", - "value": "223" - }, - { - "name": "x-forgerock-transactionid", - "value": "c925fb33-5994-4a1a-9a02-6b6d9fd06ef5" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "1.1 google" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - } - ], - "headersSize": 325, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2025-06-23T23:22:03.297Z", - "time": 168, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 168 - } - }, - { - "_id": "158ca6baeb73ca72ca5a92072e5cc8ea", + "_id": "ccc7ec61c2094114d7917814bb19b83b", "_order": 0, "cache": {}, "request": { @@ -437,7 +25,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -456,139 +44,44 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1872, + "headersSize": 1867, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-secret-import-test1" + "url": "https://openam-frodo-dev.forgeblocks.com/environment/scopes/service-accounts" }, "response": { - "bodySize": 266, + "bodySize": 1991, "content": { - "mimeType": "application/json", - "size": 266, - "text": "{\"_id\":\"esv-secret-import-test1\",\"activeVersion\":\"1\",\"description\":\"Secret Import Test 1\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-06-22T01:13:13.904591Z\",\"lastChangedBy\":\"volker.scheuber@forgerock.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + "mimeType": "application/json; charset=utf-8", + "size": 1991, + "text": "[{\"scope\":\"fr:am:*\",\"description\":\"All Access Management APIs\"},{\"scope\":\"fr:idc:analytics:*\",\"description\":\"All Analytics APIs\"},{\"scope\":\"fr:idc:certificate:*\",\"description\":\"All TLS certificate APIs\",\"childScopes\":[{\"scope\":\"fr:idc:certificate:read\",\"description\":\"Read TLS certificates\"}]},{\"scope\":\"fr:idc:content-security-policy:*\",\"description\":\"All content security policy APIs\",\"childScopes\":[{\"scope\":\"fr:idc:content-security-policy:read\",\"description\":\"Read content security policy\"}]},{\"scope\":\"fr:idc:cookie-domain:*\",\"description\":\"All cookie domain APIs\",\"childScopes\":[{\"scope\":\"fr:idc:cookie-domain:read\",\"description\":\"Read cookie domains\"}]},{\"scope\":\"fr:idc:custom-domain:*\",\"description\":\"All custom domain APIs\",\"childScopes\":[{\"scope\":\"fr:idc:custom-domain:read\",\"description\":\"Read custom domains\"}]},{\"scope\":\"fr:idc:dataset:*\",\"description\":\"All dataset deletion APIs\",\"childScopes\":[{\"scope\":\"fr:idc:dataset:read\",\"description\":\"Read dataset deletions\"}]},{\"scope\":\"fr:idc:esv:*\",\"description\":\"All ESV APIs\",\"childScopes\":[{\"scope\":\"fr:idc:esv:read\",\"description\":\"Read ESVs, excluding values of secrets\"},{\"scope\":\"fr:idc:esv:update\",\"description\":\"Create, modify, and delete ESVs\"},{\"scope\":\"fr:idc:esv:restart\",\"description\":\"Restart workloads that consume ESVs\"}]},{\"scope\":\"fr:idc:promotion:*\",\"description\":\"All configuration promotion APIs\",\"childScopes\":[{\"scope\":\"fr:idc:promotion:read\",\"description\":\"Read configuration promotion\"}]},{\"scope\":\"fr:idc:release:*\",\"description\":\"All product release APIs\",\"childScopes\":[{\"scope\":\"fr:idc:release:read\",\"description\":\"Read product release\"}]},{\"scope\":\"fr:idc:sso-cookie:*\",\"description\":\"All SSO cookie APIs\",\"childScopes\":[{\"scope\":\"fr:idc:sso-cookie:read\",\"description\":\"Read SSO cookie\"}]},{\"scope\":\"fr:idc:telemetry:*\",\"description\":\"All telemetry APIs\",\"childScopes\":[{\"scope\":\"fr:idc:telemetry:read\",\"description\":\"Read telemetry\"}]},{\"scope\":\"fr:idm:*\",\"description\":\"All Identity Management APIs\"}]" }, "cookies": [], "headers": [ { - "name": "content-type", - "value": "application/json" - }, - { - "name": "date", - "value": "Mon, 23 Jun 2025 23:22:03 GMT" - }, - { - "name": "content-length", - "value": "266" - }, - { - "name": "x-forgerock-transactionid", - "value": "92dcc3d3-f224-4a15-a229-7b5233015adf" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "1.1 google" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - } - ], - "headersSize": 325, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2025-06-23T23:22:03.470Z", - "time": 140, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 140 - } - }, - { - "_id": "a5ca9e9d93804eab09728c17b9ceb3ab", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" + "name": "x-frame-options", + "value": "SAMEORIGIN" }, { "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" - }, - { - "name": "accept-api-version", - "value": "protocol=1.0,resource=1.0" + "value": "application/json; charset=utf-8" }, { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" + "name": "content-length", + "value": "1991" }, { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1872, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-secret-import-test2" - }, - "response": { - "bodySize": 266, - "content": { - "mimeType": "application/json", - "size": 266, - "text": "{\"_id\":\"esv-secret-import-test2\",\"activeVersion\":\"1\",\"description\":\"Secret Import Test 2\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-06-22T01:13:41.914076Z\",\"lastChangedBy\":\"volker.scheuber@forgerock.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json" + "name": "etag", + "value": "" }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:03 GMT" - }, - { - "name": "content-length", - "value": "266" + "value": "" }, { "name": "x-forgerock-transactionid", - "value": "64ea3781-042e-4ace-81b2-e0c94048dcbc" + "value": "" }, { "name": "strict-transport-security", @@ -600,21 +93,21 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], - "headersSize": 325, + "headersSize": 413, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:03.614Z", - "time": 138, + "startedDateTime": "2026-07-14T21:52:06.700Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -622,11 +115,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 138 + "wait": 73 } }, { - "_id": "4755051cf62fc4f9843712d25f71e1dd", + "_id": "a24d647eb74a9e69a6b0bd9ed23dc6ce", "_order": 0, "cache": {}, "request": { @@ -643,7 +136,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -662,18 +155,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1869, + "headersSize": 1851, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-client-cert" + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets" }, "response": { - "bodySize": 261, + "bodySize": 1168, "content": { "mimeType": "application/json", - "size": 261, - "text": "{\"_id\":\"esv-test-client-cert\",\"activeVersion\":\"1\",\"description\":\"Test HTTP Client client cert\",\"encoding\":\"pem\",\"lastChangeDate\":\"2025-06-12T20:19:16.975613Z\",\"lastChangedBy\":\"Frodo-SA-1725981758244\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":false}" + "size": 1168, + "text": "{\"pagedResultsCookie\":null,\"remainingPagedResults\":-1,\"result\":[{\"_id\":\"esv-test-secret\",\"activeVersion\":\"1\",\"description\":\"Test Secret\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:06.765897Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-2\",\"activeVersion\":\"1\",\"description\":\"Test Secret Two\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:36.657796Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-3\",\"activeVersion\":\"1\",\"description\":\"Test Secret Three\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:52:02.874153Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-4\",\"activeVersion\":\"3\",\"description\":\"Testing secret using versioning\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-14T21:44:38.423338Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"3\",\"useInPlaceholders\":false}],\"resultCount\":4,\"totalPagedResults\":-1,\"totalPagedResultsPolicy\":\"NONE\"}" }, "cookies": [], "headers": [ @@ -683,15 +176,15 @@ }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:03 GMT" + "value": "" }, { "name": "content-length", - "value": "261" + "value": "1168" }, { "name": "x-forgerock-transactionid", - "value": "6ab63e8e-6d65-4fb2-b9de-dbb6d434f152" + "value": "" }, { "name": "strict-transport-security", @@ -703,21 +196,21 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], - "headersSize": 325, + "headersSize": 326, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:03.758Z", - "time": 152, + "startedDateTime": "2026-07-14T21:52:06.852Z", + "time": 135, "timings": { "blocked": -1, "connect": -1, @@ -725,7 +218,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 152 + "wait": 135 } }, { @@ -746,7 +239,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -765,121 +258,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1864, + "headersSize": 1867, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret" }, "response": { - "bodySize": 286, - "content": { - "mimeType": "application/json", - "size": 286, - "text": "{\"_id\":\"esv-test-secret\",\"activeVersion\":\"1\",\"description\":\"This is a test secret containing a simple string value.\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-07-05T17:53:53.682578Z\",\"lastChangedBy\":\"Frodo-SA-1701393386423\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "date", - "value": "Mon, 23 Jun 2025 23:22:04 GMT" - }, - { - "name": "content-length", - "value": "286" - }, - { - "name": "x-forgerock-transactionid", - "value": "59513888-71b3-4945-82b2-20ebe3b93bac" - }, - { - "name": "strict-transport-security", - "value": "max-age=31536000; includeSubDomains; preload;" - }, - { - "name": "x-robots-tag", - "value": "none" - }, - { - "name": "via", - "value": "1.1 google" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - } - ], - "headersSize": 325, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2025-06-23T23:22:03.914Z", - "time": 148, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 148 - } - }, - { - "_id": "f1a36f0c8c23ad2517859948b275031d", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/json, text/plain, */*" - }, - { - "name": "content-type", - "value": "application/json" - }, - { - "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" - }, - { - "name": "accept-api-version", - "value": "protocol=1.0,resource=1.0" - }, - { - "name": "authorization", - "value": "Bearer " - }, - { - "name": "accept-encoding", - "value": "gzip, compress, deflate, br" - }, - { - "name": "host", - "value": "openam-frodo-dev.forgeblocks.com" - } - ], - "headersSize": 1873, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-cert-pem" - }, - "response": { - "bodySize": 301, + "bodySize": 252, "content": { "mimeType": "application/json", - "size": 301, - "text": "{\"_id\":\"esv-test-secret-cert-pem\",\"activeVersion\":\"1\",\"description\":\"This is a test secret from a pem encoded cert file.\",\"encoding\":\"pem\",\"lastChangeDate\":\"2024-01-20T03:48:49.005574Z\",\"lastChangedBy\":\"6bac97fb-0665-4ba9-b66c-1cf70e074d72\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + "size": 252, + "text": "{\"_id\":\"esv-test-secret\",\"activeVersion\":\"1\",\"description\":\"Test Secret\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:06.765897Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" }, "cookies": [], "headers": [ @@ -889,15 +279,15 @@ }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:04 GMT" + "value": "" }, { "name": "content-length", - "value": "301" + "value": "252" }, { "name": "x-forgerock-transactionid", - "value": "ac52bd75-7fb9-455a-a6c9-eb6df63d38b8" + "value": "" }, { "name": "strict-transport-security", @@ -909,11 +299,11 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], "headersSize": 325, @@ -922,8 +312,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:04.068Z", - "time": 242, + "startedDateTime": "2026-07-14T21:52:06.994Z", + "time": 162, "timings": { "blocked": -1, "connect": -1, @@ -931,11 +321,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 242 + "wait": 162 } }, { - "_id": "7ef6862dfbad2070cfc0d0d9e027abaf", + "_id": "af909eff3df160d3df6370a97855ac51", "_order": 0, "cache": {}, "request": { @@ -952,7 +342,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -971,18 +361,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1877, + "headersSize": 1876, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-cert-pem-raw" + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret/versions" }, "response": { - "bodySize": 311, + "bodySize": 95, "content": { "mimeType": "application/json", - "size": 311, - "text": "{\"_id\":\"esv-test-secret-cert-pem-raw\",\"activeVersion\":\"1\",\"description\":\"This is a test secret from a pem encoded cert file (raw).\",\"encoding\":\"pem\",\"lastChangeDate\":\"2024-01-20T03:49:20.270526Z\",\"lastChangedBy\":\"6bac97fb-0665-4ba9-b66c-1cf70e074d72\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + "size": 95, + "text": "[{\"createDate\":\"2026-07-08T17:51:06.621525Z\",\"loaded\":false,\"status\":\"ENABLED\",\"version\":\"1\"}]" }, "cookies": [], "headers": [ @@ -992,15 +382,15 @@ }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:04 GMT" + "value": "" }, { "name": "content-length", - "value": "311" + "value": "95" }, { "name": "x-forgerock-transactionid", - "value": "bcc789e3-8199-474c-ae89-a04d4fe7dc6f" + "value": "" }, { "name": "strict-transport-security", @@ -1012,21 +402,21 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], - "headersSize": 325, + "headersSize": 324, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:04.314Z", - "time": 141, + "startedDateTime": "2026-07-14T21:52:07.162Z", + "time": 213, "timings": { "blocked": -1, "connect": -1, @@ -1034,11 +424,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 141 + "wait": 213 } }, { - "_id": "b3545751d0a5c20d5944f2da8b0f8780", + "_id": "e8d2f5eccfa3f1999f352ca32412624c", "_order": 0, "cache": {}, "request": { @@ -1055,7 +445,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -1074,18 +464,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1870, + "headersSize": 1869, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-euler" + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-2" }, "response": { - "bodySize": 284, + "bodySize": 258, "content": { "mimeType": "application/json", - "size": 284, - "text": "{\"_id\":\"esv-test-secret-euler\",\"activeVersion\":\"1\",\"description\":\"A test secret containing the value of Euler's number\",\"encoding\":\"generic\",\"lastChangeDate\":\"2023-12-14T15:27:34.607038Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + "size": 258, + "text": "{\"_id\":\"esv-test-secret-2\",\"activeVersion\":\"1\",\"description\":\"Test Secret Two\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:36.657796Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" }, "cookies": [], "headers": [ @@ -1095,15 +485,15 @@ }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:04 GMT" + "value": "" }, { "name": "content-length", - "value": "284" + "value": "258" }, { "name": "x-forgerock-transactionid", - "value": "61c33e1a-4851-4946-95c4-1ad3dccc43a3" + "value": "" }, { "name": "strict-transport-security", @@ -1115,11 +505,11 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], "headersSize": 325, @@ -1128,8 +518,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:04.459Z", - "time": 143, + "startedDateTime": "2026-07-14T21:52:07.382Z", + "time": 134, "timings": { "blocked": -1, "connect": -1, @@ -1137,11 +527,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 143 + "wait": 134 } }, { - "_id": "2d836ff76d6fdc45d7ae14af5082ad95", + "_id": "699f54d6ed993d957899ddaacc79d730", "_order": 0, "cache": {}, "request": { @@ -1158,7 +548,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -1177,18 +567,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1880, + "headersSize": 1878, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-file-base64hmac" + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-2/versions" }, "response": { - "bodySize": 319, + "bodySize": 95, "content": { "mimeType": "application/json", - "size": 319, - "text": "{\"_id\":\"esv-test-secret-file-base64hmac\",\"activeVersion\":\"1\",\"description\":\"This is a test secret from base64 encoded hmac key file.\",\"encoding\":\"base64hmac\",\"lastChangeDate\":\"2024-01-20T03:46:37.42544Z\",\"lastChangedBy\":\"6bac97fb-0665-4ba9-b66c-1cf70e074d72\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + "size": 95, + "text": "[{\"createDate\":\"2026-07-08T17:51:36.386756Z\",\"loaded\":false,\"status\":\"ENABLED\",\"version\":\"1\"}]" }, "cookies": [], "headers": [ @@ -1198,15 +588,15 @@ }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:04 GMT" + "value": "" }, { "name": "content-length", - "value": "319" + "value": "95" }, { "name": "x-forgerock-transactionid", - "value": "6ceb599e-8412-44f7-8a4d-cd5baa57c3a3" + "value": "" }, { "name": "strict-transport-security", @@ -1218,21 +608,21 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], - "headersSize": 325, + "headersSize": 324, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:04.607Z", - "time": 153, + "startedDateTime": "2026-07-14T21:52:07.521Z", + "time": 221, "timings": { "blocked": -1, "connect": -1, @@ -1240,11 +630,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 153 + "wait": 221 } }, { - "_id": "6e59d85b5f0bc2faf34e221c77a3df5b", + "_id": "a56456e33d219b6c50504aecce6a738d", "_order": 0, "cache": {}, "request": { @@ -1261,7 +651,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -1280,18 +670,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1884, + "headersSize": 1869, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-file-base64hmac-raw" + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-3" }, "response": { - "bodySize": 330, + "bodySize": 260, "content": { "mimeType": "application/json", - "size": 330, - "text": "{\"_id\":\"esv-test-secret-file-base64hmac-raw\",\"activeVersion\":\"1\",\"description\":\"This is a test secret from base64 encoded hmac key file (raw).\",\"encoding\":\"base64hmac\",\"lastChangeDate\":\"2024-01-20T03:47:03.695151Z\",\"lastChangedBy\":\"6bac97fb-0665-4ba9-b66c-1cf70e074d72\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + "size": 260, + "text": "{\"_id\":\"esv-test-secret-3\",\"activeVersion\":\"1\",\"description\":\"Test Secret Three\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:52:02.874153Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" }, "cookies": [], "headers": [ @@ -1301,15 +691,15 @@ }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:04 GMT" + "value": "" }, { "name": "content-length", - "value": "330" + "value": "260" }, { "name": "x-forgerock-transactionid", - "value": "c65f9d47-ac1a-4705-ac61-1f8cd883acfe" + "value": "" }, { "name": "strict-transport-security", @@ -1321,11 +711,11 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], "headersSize": 325, @@ -1334,8 +724,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:04.765Z", - "time": 156, + "startedDateTime": "2026-07-14T21:52:07.748Z", + "time": 139, "timings": { "blocked": -1, "connect": -1, @@ -1343,11 +733,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 156 + "wait": 139 } }, { - "_id": "bd4a792e01ef8010ccddbc990f9d0df5", + "_id": "ec33b4f1112c2a3c49b3845535f68a14", "_order": 0, "cache": {}, "request": { @@ -1364,7 +754,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -1383,18 +773,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1867, + "headersSize": 1878, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-pi" + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-3/versions" }, "response": { - "bodySize": 265, + "bodySize": 95, "content": { "mimeType": "application/json", - "size": 265, - "text": "{\"_id\":\"esv-test-secret-pi\",\"activeVersion\":\"1\",\"description\":\"Secret that contains the value of pi\",\"encoding\":\"generic\",\"lastChangeDate\":\"2023-12-14T15:22:28.519043Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + "size": 95, + "text": "[{\"createDate\":\"2026-07-08T17:52:02.786452Z\",\"loaded\":false,\"status\":\"ENABLED\",\"version\":\"1\"}]" }, "cookies": [], "headers": [ @@ -1404,15 +794,15 @@ }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:05 GMT" + "value": "" }, { "name": "content-length", - "value": "265" + "value": "95" }, { "name": "x-forgerock-transactionid", - "value": "3904c9ce-722c-473c-b871-67edb4f32395" + "value": "" }, { "name": "strict-transport-security", @@ -1424,21 +814,21 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], - "headersSize": 325, + "headersSize": 299, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:04.926Z", - "time": 138, + "startedDateTime": "2026-07-14T21:52:07.893Z", + "time": 233, "timings": { "blocked": -1, "connect": -1, @@ -1446,11 +836,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 138 + "wait": 233 } }, { - "_id": "d97e1fd9e83a63bc5b930dc683bb58a7", + "_id": "6776580f338394b3e7eac7d90b0d0236", "_order": 0, "cache": {}, "request": { @@ -1467,7 +857,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -1486,18 +876,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1875, + "headersSize": 1869, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-pi-generic" + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-4" }, "response": { - "bodySize": 242, + "bodySize": 260, "content": { "mimeType": "application/json", - "size": 242, - "text": "{\"_id\":\"esv-test-secret-pi-generic\",\"activeVersion\":\"3\",\"description\":\"\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-07-15T03:20:09.136266Z\",\"lastChangedBy\":\"Frodo-SA-1701393386423\",\"loaded\":true,\"loadedVersion\":\"3\",\"useInPlaceholders\":true}" + "size": 260, + "text": "{\"_id\":\"esv-test-secret-4\",\"activeVersion\":\"3\",\"description\":\"Testing secret using versioning\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-14T21:44:38.423338Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"3\",\"useInPlaceholders\":false}" }, "cookies": [], "headers": [ @@ -1507,15 +897,15 @@ }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:05 GMT" + "value": "" }, { "name": "content-length", - "value": "242" + "value": "260" }, { "name": "x-forgerock-transactionid", - "value": "ae75919a-58d6-4e29-abee-696ab0d48aef" + "value": "" }, { "name": "strict-transport-security", @@ -1527,11 +917,11 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], "headersSize": 325, @@ -1540,8 +930,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:05.069Z", - "time": 145, + "startedDateTime": "2026-07-14T21:52:08.131Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -1549,11 +939,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 145 + "wait": 150 } }, { - "_id": "9ce7353c2284116f1a5627e3c65d9f54", + "_id": "30971c7c21976c06639b39d18f819637", "_order": 0, "cache": {}, "request": { @@ -1570,7 +960,7 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "accept-api-version", @@ -1589,18 +979,18 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1872, + "headersSize": 1878, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-volkers-test-secret" + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-4/versions" }, "response": { - "bodySize": 261, + "bodySize": 283, "content": { "mimeType": "application/json", - "size": 261, - "text": "{\"_id\":\"esv-volkers-test-secret\",\"activeVersion\":\"10\",\"description\":\"Volker's test secret\",\"encoding\":\"generic\",\"lastChangeDate\":\"2024-06-26T01:37:06.116117Z\",\"lastChangedBy\":\"Frodo-SA-1701393386423\",\"loaded\":true,\"loadedVersion\":\"10\",\"useInPlaceholders\":true}" + "size": 283, + "text": "[{\"createDate\":\"2026-07-13T17:51:51.333303Z\",\"loaded\":false,\"status\":\"ENABLED\",\"version\":\"3\"},{\"createDate\":\"2026-07-13T17:51:35.308731Z\",\"loaded\":false,\"status\":\"DISABLED\",\"version\":\"2\"},{\"createDate\":\"2026-07-13T17:51:22.422248Z\",\"loaded\":false,\"status\":\"DISABLED\",\"version\":\"1\"}]" }, "cookies": [], "headers": [ @@ -1610,15 +1000,15 @@ }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:05 GMT" + "value": "" }, { "name": "content-length", - "value": "261" + "value": "283" }, { "name": "x-forgerock-transactionid", - "value": "f06557cb-d323-4b3b-80bc-8dc155135b53" + "value": "" }, { "name": "strict-transport-security", @@ -1630,11 +1020,11 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], "headersSize": 325, @@ -1643,8 +1033,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:05.219Z", - "time": 167, + "startedDateTime": "2026-07-14T21:52:08.287Z", + "time": 311, "timings": { "blocked": -1, "connect": -1, @@ -1652,7 +1042,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 167 + "wait": 311 } } ], diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/oauth2_393036114/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/oauth2_393036114/recording.har index 3e6b6105e..ab58fc78b 100644 --- a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/oauth2_393036114/recording.har +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/oauth2_393036114/recording.har @@ -12,7 +12,7 @@ "_order": 0, "cache": {}, "request": { - "bodySize": 1329, + "bodySize": 1330, "cookies": [], "headers": [ { @@ -25,11 +25,11 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "accept-api-version", @@ -37,7 +37,7 @@ }, { "name": "content-length", - "value": "1329" + "value": "1330" }, { "name": "accept-encoding", @@ -48,29 +48,29 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 440, + "headersSize": 443, "httpVersion": "HTTP/1.1", "method": "POST", "postData": { "mimeType": "application/x-www-form-urlencoded", "params": [], - "text": "assertion=&client_id=service-account&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer&scope=fr:am:* fr:autoaccess:* fr:idc:esv:* fr:idc:analytics:* fr:idc:custom-domain:* fr:idc:release:* fr:idc:sso-cookie:* fr:idc:content-security-policy:* fr:idc:certificate:* fr:idm:* fr:idc:cookie-domain:* fr:idc:promotion:*" + "text": "assertion=&client_id=service-account&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer&scope=fr:idc:custom-domain:* fr:idc:release:* fr:idc:sso-cookie:* fr:am:* fr:idc:content-security-policy:* fr:idc:esv:* fr:idc:certificate:* fr:idm:* fr:idc:dataset:* fr:idc:analytics:* fr:idc:cookie-domain:* fr:idc:promotion:*" }, "queryString": [], "url": "https://openam-frodo-dev.forgeblocks.com/am/oauth2/access_token" }, "response": { - "bodySize": 1787, + "bodySize": 1788, "content": { "mimeType": "application/json;charset=UTF-8", - "size": 1787, - "text": "{\"access_token\":\"\",\"scope\":\"fr:am:* fr:autoaccess:* fr:idc:esv:* fr:idc:analytics:* fr:idc:custom-domain:* fr:idc:release:* fr:idc:sso-cookie:* fr:idc:content-security-policy:* fr:idc:certificate:* fr:idm:* fr:idc:cookie-domain:* fr:idc:promotion:*\",\"token_type\":\"Bearer\",\"expires_in\":899}" + "size": 1788, + "text": "{\"access_token\":\"\",\"scope\":\"fr:idc:custom-domain:* fr:idc:release:* fr:idc:sso-cookie:* fr:am:* fr:idc:content-security-policy:* fr:idc:esv:* fr:idc:certificate:* fr:idm:* fr:idc:dataset:* fr:idc:analytics:* fr:idc:cookie-domain:* fr:idc:promotion:*\",\"token_type\":\"Bearer\",\"expires_in\":899}" }, "cookies": [], "headers": [ { - "name": "x-frame-options", - "value": "SAMEORIGIN" + "name": "content-security-policy", + "value": "frame-ancestors 'self'" }, { "name": "content-security-policy-report-only", @@ -94,15 +94,15 @@ }, { "name": "content-length", - "value": "1787" + "value": "1788" }, { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:02 GMT" + "value": "" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "strict-transport-security", @@ -114,21 +114,21 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], - "headersSize": 561, + "headersSize": 581, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:02.387Z", - "time": 90, + "startedDateTime": "2026-07-14T21:52:06.501Z", + "time": 109, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 109 } } ], diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/openidm_3290118515/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/openidm_3290118515/recording.har index d97f6e34b..704d82e45 100644 --- a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/openidm_3290118515/recording.har +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_D_2157136892/openidm_3290118515/recording.har @@ -25,11 +25,11 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "authorization", @@ -44,7 +44,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1925, + "headersSize": 1928, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -53,20 +53,20 @@ "value": "*" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/a2b4d68f-ca4a-4078-b2d8-f610b54623a5?_fields=%2A" + "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/59add48c-1b03-40d2-b1ee-2db021509e0a?_fields=%2A" }, "response": { - "bodySize": 1371, + "bodySize": 1372, "content": { "mimeType": "application/json;charset=utf-8", - "size": 1371, - "text": "{\"_id\":\"a2b4d68f-ca4a-4078-b2d8-f610b54623a5\",\"_rev\":\"3a3bb2d9-1302-40f4-9e5f-a1dc6aff6ac0-3429\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1748967688823\",\"description\":\"phales@trivir.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:autoaccess:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"kty\\\":\\\"RSA\\\",\\\"kid\\\":\\\"jyXSlOCC0dQkPAMD8PV9st_PI9v640HDNWPyDAlQLic\\\",\\\"alg\\\":\\\"RS256\\\",\\\"e\\\":\\\"AQAB\\\",\\\"n\\\":\\\"s2QM7rmK4k0Yoth7ybP6p-ud0ENpXtJBg21cUCMnlnNZXpxBkKWpjk75x9EQJzO2RpN35Nigi0tGShxP0HnyOrpUFl2_d02NPD1iAgiMw8-63bgJ6sc09zNdr5wX2tm1vigeZXN0GvjGLrjywf167g3O53gxL_7GwuTH5B-Y4Mxd65mg2wa5Q14533iXJGyf5soku2nVRz2DsZrSUo7tQYkdtxlSdIAa6HDtQCyUDQh2l6BMOaJXU2PIFwdnpcNyrZiIq_Au3oeFX94zDHCeUbbdrF2-jyGOCMMtNEGcdJkgXkLFkLyQcwMPcPeknjKCapTASrEG-kXWutxWmItRRqdAQCG2iV7pNtums7ryxmL4U3w7RWyDINYT9RbihDp3gG4TpCSEVvt2M-Q8wMmjCoUPkoNV9iqfQa3ErgYo9ISAO7tPEMiZlbH4Zr5p43ugSPG50gOyc1YcUc-lCMkgZhjiQazDVjshSIYDGfUJQeDMCNlR424gMNoL4DccqBNL9zOC9_a2fyrjtQBOI04UqLdC7rELnjGdhHHSwrVm62DD2fgySgD3UhOuBekHXn4v2i5viRbXdxfpMinJ14d3lhf-QYcBR2cNxH-6X6HB6j6n2Q2W6LiBBe84rDmLLNVW5kExDD2ra-p8fZGFVZkUw6Fyd67W5eOJXKng7Hi8TXE\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" + "size": 1372, + "text": "{\"_id\":\"59add48c-1b03-40d2-b1ee-2db021509e0a\",\"_rev\":\"122b5886-4dd0-4bf1-abfa-b237ffed0133-6807\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1783028811524\",\"description\":\"phales@trivir.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:dataset:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"kty\\\":\\\"RSA\\\",\\\"kid\\\":\\\"kmNDanm9kSh7e052pGdrRgYpTXYYaeEpKxjABeHEtHM\\\",\\\"alg\\\":\\\"RS256\\\",\\\"e\\\":\\\"AQAB\\\",\\\"n\\\":\\\"zlA-kS3tmyRPFu-STaIdhzVzKgErhw545oC5nKi6n0mpkwNpt2w7Ucn8mWYkS1-Xdl4WaS2HwIyiGOqhPbhzG-Vxcki1d450h7mMKbuOYMAeK89oaGEvvDQcgCcY3JyAkfjoKXAdnWcjWdmMVKCvNbKNqxQjEPoVEOnwlqJsMoW8P0Qtb6Te7kUCCzOKtd7m27zDCU7MEfh5iGotB1s9NZ2gkqNqUJ75NKi0IVPJcTZ9KzQPETOA-U8mdOxkV0hfwVKA2a4iZw28uRh6Zsraf6Dys82z0G2YBuJxSst3nxY3T1qEm7IqBA2a0zhx-refzthI8JIWArveoY-jDllNnqhtNks2O1RnvvAVFrUubGCKYz70rW8_tTYsTtITuMpXaI875TmI76aJS-_pMhRr7FoFOshXNvp6eNsbOsY_76tJ0s6eMsIZ7IeIlcDuorimQodyEp1kkYbNiCA0XicXEIq1CeQ4aXEe5ZgPClqWZSXBPm-7Wqea2kTjCt0tfywWqtf-v4drB3OW93v5ZMfoDUXmpLEOw9CwUuTRqkf3iTz_EpC2bfbIg9kS9GytQ5XcRh9JbE9Av1_ZB9ylb-OekPUQb2Wpxs9uRYH1mC5mTBan2M8_gjDdlRMCL1btdeJlWai9Nyv-KkcqRN9cJNjFHtnnBMyXq2yEuFo4VISqzEk\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" }, "cookies": [], "headers": [ { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:02 GMT" + "value": "" }, { "name": "vary", @@ -94,7 +94,7 @@ }, { "name": "etag", - "value": "\"3a3bb2d9-1302-40f4-9e5f-a1dc6aff6ac0-3429\"" + "value": "" }, { "name": "expires", @@ -114,11 +114,11 @@ }, { "name": "content-length", - "value": "1371" + "value": "1372" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "strict-transport-security", @@ -130,11 +130,11 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], "headersSize": 682, @@ -143,8 +143,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:02.484Z", - "time": 90, + "startedDateTime": "2026-07-14T21:52:06.656Z", + "time": 152, "timings": { "blocked": -1, "connect": -1, @@ -152,7 +152,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 152 } }, { @@ -173,11 +173,11 @@ }, { "name": "user-agent", - "value": "@rockcarver/frodo-lib/3.3.0" + "value": "" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "authorization", @@ -192,7 +192,7 @@ "value": "openam-frodo-dev.forgeblocks.com" } ], - "headersSize": 1925, + "headersSize": 1928, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -201,20 +201,20 @@ "value": "*" } ], - "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/a2b4d68f-ca4a-4078-b2d8-f610b54623a5?_fields=%2A" + "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/59add48c-1b03-40d2-b1ee-2db021509e0a?_fields=%2A" }, "response": { - "bodySize": 1371, + "bodySize": 1372, "content": { "mimeType": "application/json;charset=utf-8", - "size": 1371, - "text": "{\"_id\":\"a2b4d68f-ca4a-4078-b2d8-f610b54623a5\",\"_rev\":\"3a3bb2d9-1302-40f4-9e5f-a1dc6aff6ac0-3429\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1748967688823\",\"description\":\"phales@trivir.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:autoaccess:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"kty\\\":\\\"RSA\\\",\\\"kid\\\":\\\"jyXSlOCC0dQkPAMD8PV9st_PI9v640HDNWPyDAlQLic\\\",\\\"alg\\\":\\\"RS256\\\",\\\"e\\\":\\\"AQAB\\\",\\\"n\\\":\\\"s2QM7rmK4k0Yoth7ybP6p-ud0ENpXtJBg21cUCMnlnNZXpxBkKWpjk75x9EQJzO2RpN35Nigi0tGShxP0HnyOrpUFl2_d02NPD1iAgiMw8-63bgJ6sc09zNdr5wX2tm1vigeZXN0GvjGLrjywf167g3O53gxL_7GwuTH5B-Y4Mxd65mg2wa5Q14533iXJGyf5soku2nVRz2DsZrSUo7tQYkdtxlSdIAa6HDtQCyUDQh2l6BMOaJXU2PIFwdnpcNyrZiIq_Au3oeFX94zDHCeUbbdrF2-jyGOCMMtNEGcdJkgXkLFkLyQcwMPcPeknjKCapTASrEG-kXWutxWmItRRqdAQCG2iV7pNtums7ryxmL4U3w7RWyDINYT9RbihDp3gG4TpCSEVvt2M-Q8wMmjCoUPkoNV9iqfQa3ErgYo9ISAO7tPEMiZlbH4Zr5p43ugSPG50gOyc1YcUc-lCMkgZhjiQazDVjshSIYDGfUJQeDMCNlR424gMNoL4DccqBNL9zOC9_a2fyrjtQBOI04UqLdC7rELnjGdhHHSwrVm62DD2fgySgD3UhOuBekHXn4v2i5viRbXdxfpMinJ14d3lhf-QYcBR2cNxH-6X6HB6j6n2Q2W6LiBBe84rDmLLNVW5kExDD2ra-p8fZGFVZkUw6Fyd67W5eOJXKng7Hi8TXE\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" + "size": 1372, + "text": "{\"_id\":\"59add48c-1b03-40d2-b1ee-2db021509e0a\",\"_rev\":\"122b5886-4dd0-4bf1-abfa-b237ffed0133-6807\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1783028811524\",\"description\":\"phales@trivir.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:dataset:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"kty\\\":\\\"RSA\\\",\\\"kid\\\":\\\"kmNDanm9kSh7e052pGdrRgYpTXYYaeEpKxjABeHEtHM\\\",\\\"alg\\\":\\\"RS256\\\",\\\"e\\\":\\\"AQAB\\\",\\\"n\\\":\\\"zlA-kS3tmyRPFu-STaIdhzVzKgErhw545oC5nKi6n0mpkwNpt2w7Ucn8mWYkS1-Xdl4WaS2HwIyiGOqhPbhzG-Vxcki1d450h7mMKbuOYMAeK89oaGEvvDQcgCcY3JyAkfjoKXAdnWcjWdmMVKCvNbKNqxQjEPoVEOnwlqJsMoW8P0Qtb6Te7kUCCzOKtd7m27zDCU7MEfh5iGotB1s9NZ2gkqNqUJ75NKi0IVPJcTZ9KzQPETOA-U8mdOxkV0hfwVKA2a4iZw28uRh6Zsraf6Dys82z0G2YBuJxSst3nxY3T1qEm7IqBA2a0zhx-refzthI8JIWArveoY-jDllNnqhtNks2O1RnvvAVFrUubGCKYz70rW8_tTYsTtITuMpXaI875TmI76aJS-_pMhRr7FoFOshXNvp6eNsbOsY_76tJ0s6eMsIZ7IeIlcDuorimQodyEp1kkYbNiCA0XicXEIq1CeQ4aXEe5ZgPClqWZSXBPm-7Wqea2kTjCt0tfywWqtf-v4drB3OW93v5ZMfoDUXmpLEOw9CwUuTRqkf3iTz_EpC2bfbIg9kS9GytQ5XcRh9JbE9Av1_ZB9ylb-OekPUQb2Wpxs9uRYH1mC5mTBan2M8_gjDdlRMCL1btdeJlWai9Nyv-KkcqRN9cJNjFHtnnBMyXq2yEuFo4VISqzEk\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" }, "cookies": [], "headers": [ { "name": "date", - "value": "Mon, 23 Jun 2025 23:22:02 GMT" + "value": "" }, { "name": "vary", @@ -242,7 +242,7 @@ }, { "name": "etag", - "value": "\"3a3bb2d9-1302-40f4-9e5f-a1dc6aff6ac0-3429\"" + "value": "" }, { "name": "expires", @@ -262,11 +262,11 @@ }, { "name": "content-length", - "value": "1371" + "value": "1372" }, { "name": "x-forgerock-transactionid", - "value": "frodo-93c9cba5-db71-435f-bc8c-352f35d7263a" + "value": "" }, { "name": "strict-transport-security", @@ -278,11 +278,11 @@ }, { "name": "via", - "value": "1.1 google" + "value": "" }, { "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "value": "" } ], "headersSize": 682, @@ -291,7 +291,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2025-06-23T23:22:02.612Z", + "startedDateTime": "2026-07-14T21:52:06.779Z", "time": 66, "timings": { "blocked": -1, diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/am_1076162899/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/am_1076162899/recording.har new file mode 100644 index 000000000..09cbaa184 --- /dev/null +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/am_1076162899/recording.har @@ -0,0 +1,312 @@ +{ + "log": { + "_recordingName": "config-manager/pull/secrets/0_aD/am", + "creator": { + "comment": "persister:fs", + "name": "Polly.JS", + "version": "6.0.6" + }, + "entries": [ + { + "_id": "ccd7a5defd0fdeaa986a2b54642d911a", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "accept-api-version", + "value": "resource=1.1" + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 388, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/serverinfo/*" + }, + "response": { + "bodySize": 614, + "content": { + "mimeType": "application/json;charset=UTF-8", + "size": 614, + "text": "{\"_id\":\"*\",\"_rev\":\"1955877865\",\"domains\":[],\"protectedUserAttributes\":[\"telephoneNumber\",\"mail\"],\"cookieName\":\"6ac6499e9da2071\",\"secureCookie\":true,\"forgotPassword\":\"false\",\"forgotUsername\":\"false\",\"kbaEnabled\":\"false\",\"selfRegistration\":\"false\",\"lang\":\"en-US\",\"successfulUserRegistrationDestination\":\"default\",\"socialImplementations\":[],\"referralsEnabled\":\"false\",\"zeroPageLogin\":{\"enabled\":false,\"refererWhitelist\":[],\"allowedWithoutReferer\":true},\"realm\":\"/\",\"xuiUserSessionValidationEnabled\":true,\"fileBasedConfiguration\":true,\"userIdAttributes\":[],\"cloudOnlyFeaturesEnabled\":true,\"oauth2AIAgentsEnabled\":true}" + }, + "cookies": [], + "headers": [ + { + "name": "content-security-policy", + "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" + }, + { + "name": "content-security-policy-report-only", + "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "cache-control", + "value": "no-store" + }, + { + "name": "content-api-version", + "value": "resource=1.1" + }, + { + "name": "cross-origin-opener-policy", + "value": "same-origin" + }, + { + "name": "cross-origin-resource-policy", + "value": "same-origin" + }, + { + "name": "etag", + "value": "" + }, + { + "name": "expires", + "value": "0" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "x-frame-options", + "value": "DENY" + }, + { + "name": "content-type", + "value": "application/json;charset=UTF-8" + }, + { + "name": "content-length", + "value": "614" + }, + { + "name": "date", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 805, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:26.397Z", + "time": 219, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 219 + } + }, + { + "_id": "6125d0328ad0dcaee55f73fd8b22ca14", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "accept-api-version", + "value": "resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1916, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/am/json/serverinfo/version" + }, + "response": { + "bodySize": 274, + "content": { + "mimeType": "application/json;charset=UTF-8", + "size": 274, + "text": "{\"_id\":\"version\",\"_rev\":\"-1986495916\",\"version\":\"9.0.0-SNAPSHOT\",\"fullVersion\":\"ForgeRock Access Management 9.0.0-SNAPSHOT Build c6c99b2f35d4d905937aeef7e7b8426bf5d8e820 (2026-June-12 09:10)\",\"revision\":\"c6c99b2f35d4d905937aeef7e7b8426bf5d8e820\",\"date\":\"2026-June-12 09:10\"}" + }, + "cookies": [], + "headers": [ + { + "name": "x-frame-options", + "value": "DENY" + }, + { + "name": "content-security-policy", + "value": "frame-ancestors 'self', default-src 'none';frame-ancestors 'none';sandbox" + }, + { + "name": "content-security-policy-report-only", + "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "cache-control", + "value": "no-store" + }, + { + "name": "content-api-version", + "value": "resource=1.0" + }, + { + "name": "cross-origin-opener-policy", + "value": "same-origin" + }, + { + "name": "cross-origin-resource-policy", + "value": "same-origin" + }, + { + "name": "etag", + "value": "" + }, + { + "name": "expires", + "value": "0" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-type", + "value": "application/json;charset=UTF-8" + }, + { + "name": "content-length", + "value": "274" + }, + { + "name": "date", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 781, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:26.761Z", + "time": 107, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 107 + } + } + ], + "pages": [], + "version": "1.2" + } +} diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/environment_1072573434/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/environment_1072573434/recording.har new file mode 100644 index 000000000..d3646c2b8 --- /dev/null +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/environment_1072573434/recording.har @@ -0,0 +1,640 @@ +{ + "log": { + "_recordingName": "config-manager/pull/secrets/0_aD/environment", + "creator": { + "comment": "persister:fs", + "name": "Polly.JS", + "version": "6.0.6" + }, + "entries": [ + { + "_id": "ccc7ec61c2094114d7917814bb19b83b", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1867, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/scopes/service-accounts" + }, + "response": { + "bodySize": 1991, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1991, + "text": "[{\"scope\":\"fr:am:*\",\"description\":\"All Access Management APIs\"},{\"scope\":\"fr:idc:analytics:*\",\"description\":\"All Analytics APIs\"},{\"scope\":\"fr:idc:certificate:*\",\"description\":\"All TLS certificate APIs\",\"childScopes\":[{\"scope\":\"fr:idc:certificate:read\",\"description\":\"Read TLS certificates\"}]},{\"scope\":\"fr:idc:content-security-policy:*\",\"description\":\"All content security policy APIs\",\"childScopes\":[{\"scope\":\"fr:idc:content-security-policy:read\",\"description\":\"Read content security policy\"}]},{\"scope\":\"fr:idc:cookie-domain:*\",\"description\":\"All cookie domain APIs\",\"childScopes\":[{\"scope\":\"fr:idc:cookie-domain:read\",\"description\":\"Read cookie domains\"}]},{\"scope\":\"fr:idc:custom-domain:*\",\"description\":\"All custom domain APIs\",\"childScopes\":[{\"scope\":\"fr:idc:custom-domain:read\",\"description\":\"Read custom domains\"}]},{\"scope\":\"fr:idc:dataset:*\",\"description\":\"All dataset deletion APIs\",\"childScopes\":[{\"scope\":\"fr:idc:dataset:read\",\"description\":\"Read dataset deletions\"}]},{\"scope\":\"fr:idc:esv:*\",\"description\":\"All ESV APIs\",\"childScopes\":[{\"scope\":\"fr:idc:esv:read\",\"description\":\"Read ESVs, excluding values of secrets\"},{\"scope\":\"fr:idc:esv:update\",\"description\":\"Create, modify, and delete ESVs\"},{\"scope\":\"fr:idc:esv:restart\",\"description\":\"Restart workloads that consume ESVs\"}]},{\"scope\":\"fr:idc:promotion:*\",\"description\":\"All configuration promotion APIs\",\"childScopes\":[{\"scope\":\"fr:idc:promotion:read\",\"description\":\"Read configuration promotion\"}]},{\"scope\":\"fr:idc:release:*\",\"description\":\"All product release APIs\",\"childScopes\":[{\"scope\":\"fr:idc:release:read\",\"description\":\"Read product release\"}]},{\"scope\":\"fr:idc:sso-cookie:*\",\"description\":\"All SSO cookie APIs\",\"childScopes\":[{\"scope\":\"fr:idc:sso-cookie:read\",\"description\":\"Read SSO cookie\"}]},{\"scope\":\"fr:idc:telemetry:*\",\"description\":\"All telemetry APIs\",\"childScopes\":[{\"scope\":\"fr:idc:telemetry:read\",\"description\":\"Read telemetry\"}]},{\"scope\":\"fr:idm:*\",\"description\":\"All Identity Management APIs\"}]" + }, + "cookies": [], + "headers": [ + { + "name": "x-frame-options", + "value": "SAMEORIGIN" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + }, + { + "name": "content-length", + "value": "1991" + }, + { + "name": "etag", + "value": "" + }, + { + "name": "date", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 413, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:26.874Z", + "time": 73, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 73 + } + }, + { + "_id": "a24d647eb74a9e69a6b0bd9ed23dc6ce", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1851, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets" + }, + "response": { + "bodySize": 1168, + "content": { + "mimeType": "application/json", + "size": 1168, + "text": "{\"pagedResultsCookie\":null,\"remainingPagedResults\":-1,\"result\":[{\"_id\":\"esv-test-secret\",\"activeVersion\":\"1\",\"description\":\"Test Secret\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:06.765897Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-2\",\"activeVersion\":\"1\",\"description\":\"Test Secret Two\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:36.657796Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-3\",\"activeVersion\":\"1\",\"description\":\"Test Secret Three\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:52:02.874153Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true},{\"_id\":\"esv-test-secret-4\",\"activeVersion\":\"3\",\"description\":\"Testing secret using versioning\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-14T21:44:38.423338Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"3\",\"useInPlaceholders\":false}],\"resultCount\":4,\"totalPagedResults\":-1,\"totalPagedResultsPolicy\":\"NONE\"}" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "1168" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 326, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:27.025Z", + "time": 216, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 216 + } + }, + { + "_id": "0b347f3163c26e50f02a2c38a0f934f8", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1867, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret" + }, + "response": { + "bodySize": 252, + "content": { + "mimeType": "application/json", + "size": 252, + "text": "{\"_id\":\"esv-test-secret\",\"activeVersion\":\"1\",\"description\":\"Test Secret\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:06.765897Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "252" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 300, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:27.248Z", + "time": 163, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 163 + } + }, + { + "_id": "e8d2f5eccfa3f1999f352ca32412624c", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1869, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-2" + }, + "response": { + "bodySize": 258, + "content": { + "mimeType": "application/json", + "size": 258, + "text": "{\"_id\":\"esv-test-secret-2\",\"activeVersion\":\"1\",\"description\":\"Test Secret Two\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:51:36.657796Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "258" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 325, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:27.418Z", + "time": 144, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 144 + } + }, + { + "_id": "a56456e33d219b6c50504aecce6a738d", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1869, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-3" + }, + "response": { + "bodySize": 260, + "content": { + "mimeType": "application/json", + "size": 260, + "text": "{\"_id\":\"esv-test-secret-3\",\"activeVersion\":\"1\",\"description\":\"Test Secret Three\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-08T17:52:02.874153Z\",\"lastChangedBy\":\"volker.scheuber@pingidentity.com\",\"loaded\":true,\"loadedVersion\":\"1\",\"useInPlaceholders\":true}" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "260" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 325, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:27.569Z", + "time": 155, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 155 + } + }, + { + "_id": "6776580f338394b3e7eac7d90b0d0236", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=1.0,resource=1.0" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1869, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/environment/secrets/esv-test-secret-4" + }, + "response": { + "bodySize": 260, + "content": { + "mimeType": "application/json", + "size": 260, + "text": "{\"_id\":\"esv-test-secret-4\",\"activeVersion\":\"3\",\"description\":\"Testing secret using versioning\",\"encoding\":\"generic\",\"lastChangeDate\":\"2026-07-14T21:44:38.423338Z\",\"lastChangedBy\":\"phales@trivir.com\",\"loaded\":true,\"loadedVersion\":\"3\",\"useInPlaceholders\":false}" + }, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "date", + "value": "" + }, + { + "name": "content-length", + "value": "260" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 325, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:27.731Z", + "time": 159, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 159 + } + } + ], + "pages": [], + "version": "1.2" + } +} diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/oauth2_393036114/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/oauth2_393036114/recording.har new file mode 100644 index 000000000..9a4364de6 --- /dev/null +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/oauth2_393036114/recording.har @@ -0,0 +1,146 @@ +{ + "log": { + "_recordingName": "config-manager/pull/secrets/0_aD/oauth2", + "creator": { + "comment": "persister:fs", + "name": "Polly.JS", + "version": "6.0.6" + }, + "entries": [ + { + "_id": "ff75519a93ccab829f8ee8cf5e92b49f", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 1330, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/x-www-form-urlencoded" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "accept-api-version", + "value": "protocol=2.1,resource=1.0" + }, + { + "name": "content-length", + "value": "1330" + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 443, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded", + "params": [], + "text": "assertion=&client_id=service-account&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer&scope=fr:idc:custom-domain:* fr:idc:release:* fr:idc:sso-cookie:* fr:am:* fr:idc:content-security-policy:* fr:idc:esv:* fr:idc:certificate:* fr:idm:* fr:idc:dataset:* fr:idc:analytics:* fr:idc:cookie-domain:* fr:idc:promotion:*" + }, + "queryString": [], + "url": "https://openam-frodo-dev.forgeblocks.com/am/oauth2/access_token" + }, + "response": { + "bodySize": 1788, + "content": { + "mimeType": "application/json;charset=UTF-8", + "size": 1788, + "text": "{\"access_token\":\"\",\"scope\":\"fr:idc:custom-domain:* fr:idc:release:* fr:idc:sso-cookie:* fr:am:* fr:idc:content-security-policy:* fr:idc:esv:* fr:idc:certificate:* fr:idm:* fr:idc:dataset:* fr:idc:analytics:* fr:idc:cookie-domain:* fr:idc:promotion:*\",\"token_type\":\"Bearer\",\"expires_in\":899}" + }, + "cookies": [], + "headers": [ + { + "name": "content-security-policy", + "value": "frame-ancestors 'self'" + }, + { + "name": "content-security-policy-report-only", + "value": "frame-ancestors 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "cache-control", + "value": "no-store" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "content-type", + "value": "application/json;charset=UTF-8" + }, + { + "name": "content-length", + "value": "1788" + }, + { + "name": "date", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 581, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:26.630Z", + "time": 123, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 123 + } + } + ], + "pages": [], + "version": "1.2" + } +} diff --git a/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/openidm_3290118515/recording.har b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/openidm_3290118515/recording.har new file mode 100644 index 000000000..eb19389f0 --- /dev/null +++ b/test/e2e/mocks/config-manager_4167095917/pull_2167214206/secrets_3084510534/0_aD_4129875621/openidm_3290118515/recording.har @@ -0,0 +1,310 @@ +{ + "log": { + "_recordingName": "config-manager/pull/secrets/0_aD/openidm", + "creator": { + "comment": "persister:fs", + "name": "Polly.JS", + "version": "6.0.6" + }, + "entries": [ + { + "_id": "9cb8561357870863838a9948da32d1e8", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1928, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "_fields", + "value": "*" + } + ], + "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/59add48c-1b03-40d2-b1ee-2db021509e0a?_fields=%2A" + }, + "response": { + "bodySize": 1372, + "content": { + "mimeType": "application/json;charset=utf-8", + "size": 1372, + "text": "{\"_id\":\"59add48c-1b03-40d2-b1ee-2db021509e0a\",\"_rev\":\"122b5886-4dd0-4bf1-abfa-b237ffed0133-6807\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1783028811524\",\"description\":\"phales@trivir.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:dataset:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"kty\\\":\\\"RSA\\\",\\\"kid\\\":\\\"kmNDanm9kSh7e052pGdrRgYpTXYYaeEpKxjABeHEtHM\\\",\\\"alg\\\":\\\"RS256\\\",\\\"e\\\":\\\"AQAB\\\",\\\"n\\\":\\\"zlA-kS3tmyRPFu-STaIdhzVzKgErhw545oC5nKi6n0mpkwNpt2w7Ucn8mWYkS1-Xdl4WaS2HwIyiGOqhPbhzG-Vxcki1d450h7mMKbuOYMAeK89oaGEvvDQcgCcY3JyAkfjoKXAdnWcjWdmMVKCvNbKNqxQjEPoVEOnwlqJsMoW8P0Qtb6Te7kUCCzOKtd7m27zDCU7MEfh5iGotB1s9NZ2gkqNqUJ75NKi0IVPJcTZ9KzQPETOA-U8mdOxkV0hfwVKA2a4iZw28uRh6Zsraf6Dys82z0G2YBuJxSst3nxY3T1qEm7IqBA2a0zhx-refzthI8JIWArveoY-jDllNnqhtNks2O1RnvvAVFrUubGCKYz70rW8_tTYsTtITuMpXaI875TmI76aJS-_pMhRr7FoFOshXNvp6eNsbOsY_76tJ0s6eMsIZ7IeIlcDuorimQodyEp1kkYbNiCA0XicXEIq1CeQ4aXEe5ZgPClqWZSXBPm-7Wqea2kTjCt0tfywWqtf-v4drB3OW93v5ZMfoDUXmpLEOw9CwUuTRqkf3iTz_EpC2bfbIg9kS9GytQ5XcRh9JbE9Av1_ZB9ylb-OekPUQb2Wpxs9uRYH1mC5mTBan2M8_gjDdlRMCL1btdeJlWai9Nyv-KkcqRN9cJNjFHtnnBMyXq2yEuFo4VISqzEk\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" + }, + "cookies": [], + "headers": [ + { + "name": "date", + "value": "" + }, + { + "name": "vary", + "value": "Origin" + }, + { + "name": "cache-control", + "value": "no-store" + }, + { + "name": "content-security-policy", + "value": "default-src 'none';frame-ancestors 'none';sandbox" + }, + { + "name": "content-type", + "value": "application/json;charset=utf-8" + }, + { + "name": "cross-origin-opener-policy", + "value": "same-origin" + }, + { + "name": "cross-origin-resource-policy", + "value": "same-origin" + }, + { + "name": "etag", + "value": "" + }, + { + "name": "expires", + "value": "0" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "x-frame-options", + "value": "DENY" + }, + { + "name": "content-length", + "value": "1372" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 657, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:26.803Z", + "time": 196, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 196 + } + }, + { + "_id": "9cb8561357870863838a9948da32d1e8", + "_order": 1, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/json, text/plain, */*" + }, + { + "name": "content-type", + "value": "application/json" + }, + { + "name": "user-agent", + "value": "" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "authorization", + "value": "Bearer " + }, + { + "name": "accept-encoding", + "value": "gzip, compress, deflate, br" + }, + { + "name": "host", + "value": "openam-frodo-dev.forgeblocks.com" + } + ], + "headersSize": 1928, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "_fields", + "value": "*" + } + ], + "url": "https://openam-frodo-dev.forgeblocks.com/openidm/managed/svcacct/59add48c-1b03-40d2-b1ee-2db021509e0a?_fields=%2A" + }, + "response": { + "bodySize": 1372, + "content": { + "mimeType": "application/json;charset=utf-8", + "size": 1372, + "text": "{\"_id\":\"59add48c-1b03-40d2-b1ee-2db021509e0a\",\"_rev\":\"122b5886-4dd0-4bf1-abfa-b237ffed0133-6807\",\"accountStatus\":\"active\",\"name\":\"Frodo-SA-1783028811524\",\"description\":\"phales@trivir.com's Frodo Service Account\",\"scopes\":[\"fr:am:*\",\"fr:idc:analytics:*\",\"fr:idc:certificate:*\",\"fr:idc:content-security-policy:*\",\"fr:idc:cookie-domain:*\",\"fr:idc:custom-domain:*\",\"fr:idc:dataset:*\",\"fr:idc:esv:*\",\"fr:idm:*\",\"fr:idc:promotion:*\",\"fr:idc:release:*\",\"fr:idc:sso-cookie:*\"],\"jwks\":\"{\\\"keys\\\":[{\\\"kty\\\":\\\"RSA\\\",\\\"kid\\\":\\\"kmNDanm9kSh7e052pGdrRgYpTXYYaeEpKxjABeHEtHM\\\",\\\"alg\\\":\\\"RS256\\\",\\\"e\\\":\\\"AQAB\\\",\\\"n\\\":\\\"zlA-kS3tmyRPFu-STaIdhzVzKgErhw545oC5nKi6n0mpkwNpt2w7Ucn8mWYkS1-Xdl4WaS2HwIyiGOqhPbhzG-Vxcki1d450h7mMKbuOYMAeK89oaGEvvDQcgCcY3JyAkfjoKXAdnWcjWdmMVKCvNbKNqxQjEPoVEOnwlqJsMoW8P0Qtb6Te7kUCCzOKtd7m27zDCU7MEfh5iGotB1s9NZ2gkqNqUJ75NKi0IVPJcTZ9KzQPETOA-U8mdOxkV0hfwVKA2a4iZw28uRh6Zsraf6Dys82z0G2YBuJxSst3nxY3T1qEm7IqBA2a0zhx-refzthI8JIWArveoY-jDllNnqhtNks2O1RnvvAVFrUubGCKYz70rW8_tTYsTtITuMpXaI875TmI76aJS-_pMhRr7FoFOshXNvp6eNsbOsY_76tJ0s6eMsIZ7IeIlcDuorimQodyEp1kkYbNiCA0XicXEIq1CeQ4aXEe5ZgPClqWZSXBPm-7Wqea2kTjCt0tfywWqtf-v4drB3OW93v5ZMfoDUXmpLEOw9CwUuTRqkf3iTz_EpC2bfbIg9kS9GytQ5XcRh9JbE9Av1_ZB9ylb-OekPUQb2Wpxs9uRYH1mC5mTBan2M8_gjDdlRMCL1btdeJlWai9Nyv-KkcqRN9cJNjFHtnnBMyXq2yEuFo4VISqzEk\\\"}]}\",\"maxCachingTime\":\"15\",\"maxIdleTime\":\"15\",\"maxSessionTime\":\"15\",\"quotaLimit\":\"5\"}" + }, + "cookies": [], + "headers": [ + { + "name": "date", + "value": "" + }, + { + "name": "vary", + "value": "Origin" + }, + { + "name": "cache-control", + "value": "no-store" + }, + { + "name": "content-security-policy", + "value": "default-src 'none';frame-ancestors 'none';sandbox" + }, + { + "name": "content-type", + "value": "application/json;charset=utf-8" + }, + { + "name": "cross-origin-opener-policy", + "value": "same-origin" + }, + { + "name": "cross-origin-resource-policy", + "value": "same-origin" + }, + { + "name": "etag", + "value": "" + }, + { + "name": "expires", + "value": "0" + }, + { + "name": "pragma", + "value": "no-cache" + }, + { + "name": "x-content-type-options", + "value": "nosniff" + }, + { + "name": "x-frame-options", + "value": "DENY" + }, + { + "name": "content-length", + "value": "1372" + }, + { + "name": "x-forgerock-transactionid", + "value": "" + }, + { + "name": "strict-transport-security", + "value": "max-age=31536000; includeSubDomains; preload;" + }, + { + "name": "x-robots-tag", + "value": "none" + }, + { + "name": "via", + "value": "" + }, + { + "name": "alt-svc", + "value": "" + } + ], + "headersSize": 682, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2026-07-14T21:52:26.953Z", + "time": 65, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 65 + } + } + ], + "pages": [], + "version": "1.2" + } +}