@rockcarver/frodo-lib 0.16.2-2 → 0.16.2-3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/cjs/api/AgentApi.js +221 -0
  3. package/cjs/api/AgentApi.js.map +1 -0
  4. package/cjs/api/AgentApi.test.js.map +1 -0
  5. package/cjs/api/ApiTypes.js.map +1 -1
  6. package/cjs/api/BaseApi.js +15 -11
  7. package/cjs/api/BaseApi.js.map +1 -1
  8. package/cjs/index.js +5 -1
  9. package/cjs/index.js.map +1 -1
  10. package/cjs/ops/AgentOps.js +805 -0
  11. package/cjs/ops/AgentOps.js.map +1 -0
  12. package/cjs/ops/AgentOps.test.js.map +1 -0
  13. package/cjs/ops/AuthenticateOps.js +8 -8
  14. package/cjs/ops/AuthenticateOps.js.map +1 -1
  15. package/cjs/ops/JourneyOps.test.js.map +1 -1
  16. package/cjs/ops/OpsTypes.js.map +1 -1
  17. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  18. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  19. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  20. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  21. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  22. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  23. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  24. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/webserver.json +455 -0
  25. package/cjs/test/mocks/AgentApi/findAgentById/ajays_client.json +19 -0
  26. package/cjs/test/mocks/AgentApi/findAgentById/apacheagent.json +142 -0
  27. package/cjs/test/mocks/AgentApi/findAgentById/api_client.json +19 -0
  28. package/cjs/test/mocks/AgentApi/findAgentById/ig_chico.json +19 -0
  29. package/cjs/test/mocks/AgentApi/findAgentById/ig_mytestrun_com.json +29 -0
  30. package/cjs/test/mocks/AgentApi/findAgentById/javaAgent.json +190 -0
  31. package/cjs/test/mocks/AgentApi/findAgentById/tomcatagent.json +191 -0
  32. package/cjs/test/mocks/AgentApi/findAgentById/webserver.json +144 -0
  33. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +23 -0
  34. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  35. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  36. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +33 -0
  37. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/javaAgent.json +193 -0
  38. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/tomcatagent.json +195 -0
  39. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/apacheagent.json +145 -0
  40. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/webserver.json +148 -0
  41. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/not_found.json +8 -0
  42. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  43. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  44. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  45. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  46. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  47. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  48. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  49. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/webserver.json +455 -0
  50. package/cjs/test/mocks/AgentApi/getAgentTypes/agentTypes.json +54 -0
  51. package/cjs/test/mocks/AgentApi/getAgents/agents.json +3862 -0
  52. package/cjs/test/mocks/AgentApi/getAgentsByType/IdentityGatewayAgents.json +73 -0
  53. package/cjs/test/mocks/AgentApi/getAgentsByType/J2EEAgents.json +379 -0
  54. package/cjs/test/mocks/AgentApi/getAgentsByType/WebAgents.json +284 -0
  55. package/cjs/test/mocks/ForgeRockApiMockEngine.js +147 -20
  56. package/cjs/test/mocks/ForgeRockApiMockEngine.js.map +1 -1
  57. package/esm/api/AgentApi.mjs +164 -0
  58. package/esm/api/AgentApi.test.mjs +267 -0
  59. package/esm/api/BaseApi.mjs +16 -4
  60. package/esm/index.mjs +2 -0
  61. package/esm/ops/AgentOps.mjs +576 -0
  62. package/esm/ops/AgentOps.test.mjs +1212 -0
  63. package/esm/ops/AuthenticateOps.mjs +8 -8
  64. package/esm/ops/JourneyOps.test.mjs +4 -8
  65. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  66. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  67. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  68. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  69. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  70. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  71. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  72. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/webserver.json +455 -0
  73. package/esm/test/mocks/AgentApi/findAgentById/ajays_client.json +19 -0
  74. package/esm/test/mocks/AgentApi/findAgentById/apacheagent.json +142 -0
  75. package/esm/test/mocks/AgentApi/findAgentById/api_client.json +19 -0
  76. package/esm/test/mocks/AgentApi/findAgentById/ig_chico.json +19 -0
  77. package/esm/test/mocks/AgentApi/findAgentById/ig_mytestrun_com.json +29 -0
  78. package/esm/test/mocks/AgentApi/findAgentById/javaAgent.json +190 -0
  79. package/esm/test/mocks/AgentApi/findAgentById/tomcatagent.json +191 -0
  80. package/esm/test/mocks/AgentApi/findAgentById/webserver.json +144 -0
  81. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +23 -0
  82. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  83. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  84. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +33 -0
  85. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/javaAgent.json +193 -0
  86. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/tomcatagent.json +195 -0
  87. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/apacheagent.json +145 -0
  88. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/webserver.json +148 -0
  89. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/not_found.json +8 -0
  90. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  91. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  92. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  93. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  94. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  95. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  96. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  97. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/webserver.json +455 -0
  98. package/esm/test/mocks/AgentApi/getAgentTypes/agentTypes.json +54 -0
  99. package/esm/test/mocks/AgentApi/getAgents/agents.json +3862 -0
  100. package/esm/test/mocks/AgentApi/getAgentsByType/IdentityGatewayAgents.json +73 -0
  101. package/esm/test/mocks/AgentApi/getAgentsByType/J2EEAgents.json +379 -0
  102. package/esm/test/mocks/AgentApi/getAgentsByType/WebAgents.json +284 -0
  103. package/esm/test/mocks/ForgeRockApiMockEngine.mjs +136 -20
  104. package/package.json +2 -2
  105. package/types/api/AgentApi.d.ts +51 -0
  106. package/types/api/AgentApi.d.ts.map +1 -0
  107. package/types/api/ApiTypes.d.ts +3 -0
  108. package/types/api/ApiTypes.d.ts.map +1 -1
  109. package/types/api/BaseApi.d.ts.map +1 -1
  110. package/types/index.d.ts +2 -0
  111. package/types/index.d.ts.map +1 -1
  112. package/types/ops/AgentOps.d.ts +210 -0
  113. package/types/ops/AgentOps.d.ts.map +1 -0
  114. package/types/ops/AuthenticateOps.d.ts.map +1 -1
  115. package/types/ops/OpsTypes.d.ts +5 -1
  116. package/types/ops/OpsTypes.d.ts.map +1 -1
  117. package/types/test/mocks/ForgeRockApiMockEngine.d.ts +35 -2
  118. package/types/test/mocks/ForgeRockApiMockEngine.d.ts.map +1 -1
@@ -0,0 +1,193 @@
1
+ {
2
+ "result": [
3
+ {
4
+ "_id": "javaAgent",
5
+ "_rev": "409658535",
6
+ "ssoJ2EEAgentConfig": {
7
+ "encodeCookies": false,
8
+ "cookieResetDomains": {},
9
+ "authExchangeUri": null,
10
+ "authExchangeCookieName": null,
11
+ "setCookieInternalMap": {},
12
+ "excludedUserAgentsList": [],
13
+ "cdssoRedirectUri": "/agent/post-authn-redirect",
14
+ "cookieResetPaths": {},
15
+ "cdssoSecureCookies": false,
16
+ "acceptSsoTokenEnabled": false,
17
+ "acceptSsoTokenDomainList": [""],
18
+ "cdssoDomainList": [""],
19
+ "setCookieAttributeMap": {},
20
+ "cookieResetEnabled": false,
21
+ "cookieResetNames": [""],
22
+ "acceptIPDPCookie": false,
23
+ "httpOnly": true
24
+ },
25
+ "amServicesJ2EEAgent": {
26
+ "urlPolicyEnvPostParameters": [""],
27
+ "policyEvaluationRealm": "/",
28
+ "authServiceHost": "openam-volker-dev.forgeblocks.com",
29
+ "policyNotifications": true,
30
+ "conditionalLoginUrl": [""],
31
+ "customLoginEnabled": false,
32
+ "legacyLoginUrlList": [""],
33
+ "agentAdviceEncode": false,
34
+ "authServicePort": 443,
35
+ "urlPolicyEnvGetParameters": [""],
36
+ "restrictToRealm": {},
37
+ "urlPolicyEnvJsessionParameters": [""],
38
+ "amLoginUrl": [],
39
+ "conditionalLogoutUrl": [""],
40
+ "authServiceProtocol": "https",
41
+ "policyEvaluationApplication": "iPlanetAMWebAgentService",
42
+ "authSuccessRedirectUrl": false,
43
+ "overridePolicyEvaluationRealmEnabled": false
44
+ },
45
+ "globalJ2EEAgentConfig": {
46
+ "userTokenName": "UserToken",
47
+ "fqdnDefault": "openam-volker-dev.forgeblocks.com",
48
+ "httpSessionBinding": true,
49
+ "userpassword": null,
50
+ "webSocketConnectionIntervalInMinutes": 30,
51
+ "localAuditLogRotation": false,
52
+ "filterMode": {
53
+ "": "ALL"
54
+ },
55
+ "debugLogfileRotationSize": 52428800,
56
+ "status": "Active",
57
+ "debugLevel": "error",
58
+ "lbCookieName": "amlbcookie",
59
+ "auditLogLocation": "REMOTE",
60
+ "lbCookieEnabled": false,
61
+ "userPrincipalFlag": false,
62
+ "fqdnCheck": false,
63
+ "preAuthCookieMaxAge": 300,
64
+ "localAuditRotationSize": 52428800,
65
+ "fqdnMapping": {},
66
+ "debugLogfileRotationMinutes": -1,
67
+ "loginAttemptLimit": 0,
68
+ "auditAccessType": "LOG_NONE",
69
+ "redirectAttemptLimitCookieName": "amFilterRDParam",
70
+ "debugLogfileRetentionCount": -1,
71
+ "configurationReloadInterval": 0,
72
+ "agentgroup": null,
73
+ "debugLogfileSuffix": "-yyyy.MM.dd-HH.mm.ss",
74
+ "userAttributeName": "employeenumber",
75
+ "localAuditLogfileRetentionCount": -1,
76
+ "customResponseHeader": {},
77
+ "redirectAttemptLimit": 0,
78
+ "userMappingMode": "USER_ID",
79
+ "jwtName": "am-auth-jwt",
80
+ "repositoryLocation": "centralized",
81
+ "loginAttemptLimitCookieName": "amFilterParam",
82
+ "cdssoRootUrl": [
83
+ "agentRootURL=https://openam-volker-dev.forgeblocks.com:443/"
84
+ ],
85
+ "agentConfigChangeNotificationsEnabled": true,
86
+ "debugLogfilePrefix": null,
87
+ "preAuthCookieName": "amFilterCDSSORequest"
88
+ },
89
+ "applicationJ2EEAgentConfig": {
90
+ "profileAttributeFetchMode": "NONE",
91
+ "notEnforcedUris": [""],
92
+ "notEnforcedIpsCacheEnabled": true,
93
+ "logoutIntrospection": false,
94
+ "invertNotEnforcedUris": false,
95
+ "cookieAttributeUrlEncoded": true,
96
+ "cookieAttributeMultiValueSeparator": "|",
97
+ "notEnforcedRuleCompoundSeparator": "|",
98
+ "logoutRequestParameters": {},
99
+ "resourceAccessDeniedUri": {},
100
+ "continuousSecurityCookies": {},
101
+ "responseAttributeFetchMode": "NONE",
102
+ "notEnforcedUrisCacheEnabled": true,
103
+ "headerAttributeDateFormat": "EEE, d MMM yyyy hh:mm:ss z",
104
+ "profileAttributeMap": {},
105
+ "sessionAttributeFetchMode": "NONE",
106
+ "continuousSecurityHeaders": {},
107
+ "responseAttributeMap": {},
108
+ "notEnforcedUrisCacheSize": 1000,
109
+ "invertNotEnforcedIps": false,
110
+ "sessionAttributeMap": {},
111
+ "clientIpValidationRange": {},
112
+ "notEnforcedIpsCacheSize": 1000,
113
+ "clientIpValidationMode": {
114
+ "": "OFF"
115
+ },
116
+ "notEnforcedFavicon": true,
117
+ "logoutEntryUri": {},
118
+ "notEnforcedIps": [""],
119
+ "applicationLogoutUris": {}
120
+ },
121
+ "advancedJ2EEAgentConfig": {
122
+ "postDataStickySessionKeyValue": null,
123
+ "xssDetectionRedirectUri": {},
124
+ "postDataCacheTtlMin": 5,
125
+ "jwtCacheSize": 5000,
126
+ "postDataPreservation": false,
127
+ "policyCacheSize": 5000,
128
+ "postDataPreserveCacheEntryMaxEntries": 1000,
129
+ "postDataPreserveCacheEntryMaxTotalSizeMb": -1,
130
+ "ssoExchangeCacheSize": 100,
131
+ "sessionCacheTTL": 15,
132
+ "idleTimeRefreshWindow": 1,
133
+ "ssoExchangeCacheTTL": 5,
134
+ "possibleXssCodeElements": [""],
135
+ "alternativeAgentPort": null,
136
+ "policyClientPollingInterval": 3,
137
+ "missingPostDataPreservationEntryUri": [""],
138
+ "clientIpHeader": null,
139
+ "alternativeAgentProtocol": null,
140
+ "jwtCacheTTL": 30,
141
+ "customProperties": [],
142
+ "policyCachePerUser": 50,
143
+ "expiredSessionCacheTTL": 20,
144
+ "fragmentRelayUri": null,
145
+ "postDataStickySessionMode": "URL",
146
+ "alternativeAgentHostname": null,
147
+ "expiredSessionCacheSize": 500,
148
+ "clientHostnameHeader": null,
149
+ "monitoringToCSV": false
150
+ },
151
+ "miscJ2EEAgentConfig": {
152
+ "legacyUserAgentList": ["Mozilla/4.7*"],
153
+ "loginReasonMap": {},
154
+ "authFailReasonParameterRemapper": {},
155
+ "agent302RedirectStatusCode": 200,
156
+ "loginReasonParameterName": null,
157
+ "gotoUrl": null,
158
+ "localeLanguage": "en",
159
+ "authFailReasonParameterName": null,
160
+ "unwantedHttpUrlParams": [""],
161
+ "agent302RedirectContentType": "application/json",
162
+ "agent302RedirectEnabled": true,
163
+ "legacyUserAgentSupport": false,
164
+ "wantedHttpUrlParams": [""],
165
+ "ignorePathInfo": false,
166
+ "agent302RedirectInvertEnabled": false,
167
+ "wantedHttpUrlRegexParams": [""],
168
+ "localeCountry": "US",
169
+ "agent302RedirectHttpData": "{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}",
170
+ "agent302RedirectNerList": [""],
171
+ "legacyRedirectUri": "/agent/sunwLegacySupportURI",
172
+ "portCheckFile": "PortCheckContent.txt",
173
+ "authFailReasonUrl": null,
174
+ "gotoParameterName": "goto",
175
+ "portCheckSetting": {
176
+ "443": "https"
177
+ },
178
+ "unwantedHttpUrlRegexParams": [""],
179
+ "portCheckEnabled": false
180
+ },
181
+ "_type": {
182
+ "_id": "J2EEAgent",
183
+ "name": "J2EE Agents",
184
+ "collection": true
185
+ }
186
+ }
187
+ ],
188
+ "resultCount": 1,
189
+ "pagedResultsCookie": null,
190
+ "totalPagedResultsPolicy": "EXACT",
191
+ "totalPagedResults": 1,
192
+ "remainingPagedResults": -1
193
+ }
@@ -0,0 +1,195 @@
1
+ {
2
+ "result": [
3
+ {
4
+ "_id": "tomcatagent",
5
+ "_rev": "-2141735165",
6
+ "ssoJ2EEAgentConfig": {
7
+ "encodeCookies": false,
8
+ "cookieResetDomains": {},
9
+ "authExchangeUri": null,
10
+ "authExchangeCookieName": null,
11
+ "setCookieInternalMap": {},
12
+ "excludedUserAgentsList": [],
13
+ "cdssoRedirectUri": "/agentapp/post-authn-redirect",
14
+ "cookieResetPaths": {},
15
+ "cdssoSecureCookies": false,
16
+ "acceptSsoTokenEnabled": false,
17
+ "acceptSsoTokenDomainList": [""],
18
+ "cdssoDomainList": [""],
19
+ "setCookieAttributeMap": {},
20
+ "cookieResetEnabled": false,
21
+ "cookieResetNames": [""],
22
+ "acceptIPDPCookie": false,
23
+ "httpOnly": true
24
+ },
25
+ "amServicesJ2EEAgent": {
26
+ "urlPolicyEnvPostParameters": [""],
27
+ "policyEvaluationRealm": "/alpha",
28
+ "authServiceHost": "openam-volker-dev.forgeblocks.com",
29
+ "policyNotifications": true,
30
+ "conditionalLoginUrl": ["|?realm=/alpha"],
31
+ "customLoginEnabled": false,
32
+ "legacyLoginUrlList": [""],
33
+ "agentAdviceEncode": false,
34
+ "authServicePort": 443,
35
+ "urlPolicyEnvGetParameters": [""],
36
+ "restrictToRealm": {},
37
+ "urlPolicyEnvJsessionParameters": [""],
38
+ "amLoginUrl": [],
39
+ "conditionalLogoutUrl": [""],
40
+ "authServiceProtocol": "https",
41
+ "policyEvaluationApplication": "apps",
42
+ "authSuccessRedirectUrl": false,
43
+ "overridePolicyEvaluationRealmEnabled": false
44
+ },
45
+ "globalJ2EEAgentConfig": {
46
+ "userTokenName": "UserToken",
47
+ "fqdnDefault": "apps2.mytestrun.com",
48
+ "recheckAmUnavailabilityInSeconds": 5,
49
+ "httpSessionBinding": true,
50
+ "userpassword": null,
51
+ "webSocketConnectionIntervalInMinutes": 30,
52
+ "localAuditLogRotation": false,
53
+ "filterMode": {
54
+ "": "URL_POLICY"
55
+ },
56
+ "debugLogfileRotationSize": 52428800,
57
+ "status": "Active",
58
+ "debugLevel": "message",
59
+ "lbCookieName": "amlbcookie",
60
+ "auditLogLocation": "ALL",
61
+ "lbCookieEnabled": false,
62
+ "userPrincipalFlag": false,
63
+ "fqdnCheck": false,
64
+ "preAuthCookieMaxAge": 300,
65
+ "localAuditRotationSize": 52428800,
66
+ "fqdnMapping": {},
67
+ "debugLogfileRotationMinutes": -1,
68
+ "loginAttemptLimit": 0,
69
+ "auditAccessType": "LOG_NONE",
70
+ "redirectAttemptLimitCookieName": "amFilterRDParam",
71
+ "debugLogfileRetentionCount": -1,
72
+ "configurationReloadInterval": 10,
73
+ "agentgroup": null,
74
+ "debugLogfileSuffix": "-yyyy.MM.dd-HH.mm.ss",
75
+ "userAttributeName": "uid",
76
+ "localAuditLogfileRetentionCount": -1,
77
+ "customResponseHeader": {},
78
+ "redirectAttemptLimit": 0,
79
+ "userMappingMode": "USER_ID",
80
+ "jwtName": "am-auth-jwt",
81
+ "repositoryLocation": "centralized",
82
+ "loginAttemptLimitCookieName": "amFilterParam",
83
+ "cdssoRootUrl": [
84
+ "agentRootURL=http://localhost:8080/",
85
+ "agentRootURL=https://apps2.mytestrun.com:443/"
86
+ ],
87
+ "agentConfigChangeNotificationsEnabled": false,
88
+ "debugLogfilePrefix": null,
89
+ "preAuthCookieName": "amFilterCDSSORequest"
90
+ },
91
+ "applicationJ2EEAgentConfig": {
92
+ "profileAttributeFetchMode": "NONE",
93
+ "notEnforcedUris": [""],
94
+ "notEnforcedIpsCacheEnabled": true,
95
+ "logoutIntrospection": false,
96
+ "invertNotEnforcedUris": false,
97
+ "cookieAttributeUrlEncoded": true,
98
+ "cookieAttributeMultiValueSeparator": "|",
99
+ "notEnforcedRuleCompoundSeparator": "|",
100
+ "logoutRequestParameters": {},
101
+ "resourceAccessDeniedUri": {},
102
+ "continuousSecurityCookies": {},
103
+ "responseAttributeFetchMode": "NONE",
104
+ "notEnforcedUrisCacheEnabled": true,
105
+ "headerAttributeDateFormat": "EEE, d MMM yyyy hh:mm:ss z",
106
+ "profileAttributeMap": {},
107
+ "sessionAttributeFetchMode": "NONE",
108
+ "continuousSecurityHeaders": {},
109
+ "responseAttributeMap": {},
110
+ "notEnforcedUrisCacheSize": 1000,
111
+ "invertNotEnforcedIps": false,
112
+ "sessionAttributeMap": {},
113
+ "clientIpValidationRange": {},
114
+ "notEnforcedIpsCacheSize": 1000,
115
+ "clientIpValidationMode": {
116
+ "": "OFF"
117
+ },
118
+ "notEnforcedFavicon": true,
119
+ "logoutEntryUri": {},
120
+ "notEnforcedIps": [""],
121
+ "applicationLogoutUris": {}
122
+ },
123
+ "advancedJ2EEAgentConfig": {
124
+ "postDataStickySessionKeyValue": null,
125
+ "xssDetectionRedirectUri": {},
126
+ "postDataCacheTtlMin": 5,
127
+ "jwtCacheSize": 5000,
128
+ "postDataPreservation": false,
129
+ "policyCacheSize": 5000,
130
+ "postDataPreserveCacheEntryMaxEntries": 1000,
131
+ "postDataPreserveCacheEntryMaxTotalSizeMb": -1,
132
+ "ssoExchangeCacheSize": 100,
133
+ "sessionCacheTTL": 15,
134
+ "idleTimeRefreshWindow": 1,
135
+ "ssoExchangeCacheTTL": 5,
136
+ "possibleXssCodeElements": [""],
137
+ "alternativeAgentPort": null,
138
+ "policyClientPollingInterval": 3,
139
+ "missingPostDataPreservationEntryUri": [""],
140
+ "clientIpHeader": null,
141
+ "alternativeAgentProtocol": null,
142
+ "jwtCacheTTL": 30,
143
+ "customProperties": [],
144
+ "policyCachePerUser": 50,
145
+ "expiredSessionCacheTTL": 20,
146
+ "fragmentRelayUri": null,
147
+ "postDataStickySessionMode": "URL",
148
+ "alternativeAgentHostname": null,
149
+ "expiredSessionCacheSize": 500,
150
+ "clientHostnameHeader": null,
151
+ "monitoringToCSV": false
152
+ },
153
+ "miscJ2EEAgentConfig": {
154
+ "legacyUserAgentList": ["Mozilla/4.7*"],
155
+ "loginReasonMap": {},
156
+ "authFailReasonParameterRemapper": {},
157
+ "agent302RedirectStatusCode": 200,
158
+ "loginReasonParameterName": null,
159
+ "gotoUrl": null,
160
+ "localeLanguage": "en",
161
+ "authFailReasonParameterName": null,
162
+ "unwantedHttpUrlParams": [""],
163
+ "agent302RedirectContentType": "application/json",
164
+ "agent302RedirectEnabled": true,
165
+ "legacyUserAgentSupport": false,
166
+ "wantedHttpUrlParams": [""],
167
+ "ignorePathInfo": false,
168
+ "agent302RedirectInvertEnabled": false,
169
+ "wantedHttpUrlRegexParams": [""],
170
+ "localeCountry": "US",
171
+ "agent302RedirectHttpData": "{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}",
172
+ "agent302RedirectNerList": [""],
173
+ "legacyRedirectUri": "/app1/sunwLegacySupportURI",
174
+ "portCheckFile": "PortCheckContent.txt",
175
+ "authFailReasonUrl": null,
176
+ "gotoParameterName": "goto",
177
+ "portCheckSetting": {
178
+ "443": "https"
179
+ },
180
+ "unwantedHttpUrlRegexParams": [""],
181
+ "portCheckEnabled": false
182
+ },
183
+ "_type": {
184
+ "_id": "J2EEAgent",
185
+ "name": "J2EE Agents",
186
+ "collection": true
187
+ }
188
+ }
189
+ ],
190
+ "resultCount": 1,
191
+ "pagedResultsCookie": null,
192
+ "totalPagedResultsPolicy": "EXACT",
193
+ "totalPagedResults": 1,
194
+ "remainingPagedResults": -1
195
+ }
@@ -0,0 +1,145 @@
1
+ {
2
+ "result": [
3
+ {
4
+ "_id": "apacheagent",
5
+ "_rev": "-470024024",
6
+ "miscWebAgentConfig": {
7
+ "anonymousUserId": "anonymous",
8
+ "profileAttributesCookieMaxAge": 300,
9
+ "urlJsonResponse": [""],
10
+ "caseInsensitiveUrlComparison": true,
11
+ "compositeAdviceRedirect": false,
12
+ "compositeAdviceEncode": false,
13
+ "addCacheControlHeader": true,
14
+ "anonymousUserEnabled": false,
15
+ "invalidUrlRegex": null,
16
+ "ignorePathInfo": false,
17
+ "invertUrlJsonResponse": false,
18
+ "statusCodeJsonResponse": 202,
19
+ "headerJsonResponse": {},
20
+ "encodeSpecialCharsInCookies": false,
21
+ "gotoParameterName": "goto",
22
+ "encodeUrlSpecialCharacters": false,
23
+ "mineEncodeHeader": 0,
24
+ "profileAttributesCookiePrefix": "HTTP_"
25
+ },
26
+ "ssoWebAgentConfig": {
27
+ "cookieResetList": [""],
28
+ "cdssoRedirectUri": "agent/cdsso-oauth2",
29
+ "persistentJwtCookie": false,
30
+ "acceptSsoToken": false,
31
+ "secureCookies": false,
32
+ "cookieResetOnRedirect": false,
33
+ "sameSite": null,
34
+ "cdssoCookieDomain": [""],
35
+ "cookieResetEnabled": false,
36
+ "cookieName": "iPlanetDirectoryPro",
37
+ "multivaluePreAuthnCookie": false,
38
+ "httpOnly": true
39
+ },
40
+ "advancedWebAgentConfig": {
41
+ "overrideRequestHost": true,
42
+ "pdpSkipPostUrl": [""],
43
+ "pdpStickySessionValue": null,
44
+ "postDataPreservation": false,
45
+ "hostnameToIpAddress": [],
46
+ "showPasswordInHeader": false,
47
+ "overrideRequestProtocol": true,
48
+ "clientIpHeader": null,
49
+ "replayPasswordKey": null,
50
+ "customProperties": [],
51
+ "postDataCachePeriod": 10,
52
+ "retainSessionCache": false,
53
+ "pdpJavascriptRepost": false,
54
+ "pdpStickySessionMode": "OFF",
55
+ "overrideRequestPort": true,
56
+ "apacheAuthDirectives": null,
57
+ "fragmentRedirectEnabled": false,
58
+ "clientHostnameHeader": null,
59
+ "pdpStickySessionCookieName": null,
60
+ "logonAndImpersonation": false
61
+ },
62
+ "amServicesWebAgent": {
63
+ "policyClockSkew": 0,
64
+ "enableLogoutRegex": false,
65
+ "policyEvaluationRealm": "/alpha",
66
+ "fetchPoliciesFromRootResource": false,
67
+ "logoutUrlRegex": null,
68
+ "conditionalLoginUrl": [
69
+ "mytestrun.com|https://idc.scheuber.io:443/am/oauth2/authorize?realm=/alpha"
70
+ ],
71
+ "customLoginMode": 0,
72
+ "invalidateLogoutSession": true,
73
+ "logoutResetCookies": [""],
74
+ "logoutRedirectUrl": null,
75
+ "regexConditionalLoginUrl": [""],
76
+ "policyCachePollingInterval": 3,
77
+ "regexConditionalLoginPattern": [""],
78
+ "logoutRedirectDisabled": false,
79
+ "retrieveClientHostname": false,
80
+ "applicationLogoutUrls": [""],
81
+ "userIdParameterType": "session",
82
+ "publicAmUrl": null,
83
+ "userIdParameter": "UserToken",
84
+ "amLoginUrl": ["https://idc.scheuber.io/login?realm=/alpha"],
85
+ "policyEvaluationApplication": "apps",
86
+ "amLogoutUrl": ["https://idc.scheuber.io:443/am/UI/Logout"],
87
+ "ssoCachePollingInterval": 3
88
+ },
89
+ "applicationWebAgentConfig": {
90
+ "profileAttributeFetchMode": "NONE",
91
+ "clientIpValidation": false,
92
+ "notEnforcedIpsRegex": false,
93
+ "continuousSecurityCookies": {},
94
+ "fetchAttributesForNotEnforcedUrls": false,
95
+ "ignorePathInfoForNotEnforcedUrls": true,
96
+ "responseAttributeFetchMode": "NONE",
97
+ "attributeMultiValueSeparator": "|",
98
+ "profileAttributeMap": {},
99
+ "sessionAttributeFetchMode": "NONE",
100
+ "continuousSecurityHeaders": {},
101
+ "notEnforcedIpsList": [""],
102
+ "responseAttributeMap": {},
103
+ "notEnforcedUrls": ["", "https://apps.mytestrun.com/app1/*"],
104
+ "sessionAttributeMap": {},
105
+ "notEnforcedUrlsRegex": false,
106
+ "invertNotEnforcedUrls": false,
107
+ "notEnforcedIps": [""]
108
+ },
109
+ "globalWebAgentConfig": {
110
+ "agentDebugLevel": "Info",
111
+ "fqdnDefault": "apps.mytestrun.com",
112
+ "userpassword": null,
113
+ "webSocketConnectionIntervalInMinutes": 30,
114
+ "status": "Active",
115
+ "configurationPollingInterval": 60,
116
+ "auditLogLocation": "ALL",
117
+ "fqdnCheck": false,
118
+ "amLbCookieEnable": false,
119
+ "fqdnMapping": {},
120
+ "accessDeniedUrl": null,
121
+ "resetIdleTime": false,
122
+ "auditAccessType": "LOG_BOTH",
123
+ "ssoOnlyMode": false,
124
+ "notificationsEnabled": true,
125
+ "agentUriPrefix": "https://apps.mytestrun.com:443/amagent",
126
+ "disableJwtAudit": false,
127
+ "jwtName": "am-auth-jwt",
128
+ "repositoryLocation": "centralized",
129
+ "cdssoRootUrl": ["agentRootURL=https://apps.mytestrun.com:443/"],
130
+ "agentConfigChangeNotificationsEnabled": true,
131
+ "jwtAuditWhitelist": null
132
+ },
133
+ "_type": {
134
+ "_id": "WebAgent",
135
+ "name": "Web Agents",
136
+ "collection": true
137
+ }
138
+ }
139
+ ],
140
+ "resultCount": 1,
141
+ "pagedResultsCookie": null,
142
+ "totalPagedResultsPolicy": "EXACT",
143
+ "totalPagedResults": 1,
144
+ "remainingPagedResults": -1
145
+ }
@@ -0,0 +1,148 @@
1
+ {
2
+ "result": [
3
+ {
4
+ "_id": "webserver",
5
+ "_rev": "-309240002",
6
+ "miscWebAgentConfig": {
7
+ "anonymousUserId": "anonymous",
8
+ "profileAttributesCookieMaxAge": 300,
9
+ "urlJsonResponse": [""],
10
+ "caseInsensitiveUrlComparison": true,
11
+ "compositeAdviceRedirect": false,
12
+ "compositeAdviceEncode": false,
13
+ "addCacheControlHeader": false,
14
+ "anonymousUserEnabled": false,
15
+ "invalidUrlRegex": null,
16
+ "ignorePathInfo": false,
17
+ "invertUrlJsonResponse": false,
18
+ "statusCodeJsonResponse": 202,
19
+ "headerJsonResponse": {},
20
+ "encodeSpecialCharsInCookies": false,
21
+ "gotoParameterName": "goto",
22
+ "encodeUrlSpecialCharacters": false,
23
+ "mineEncodeHeader": 0,
24
+ "profileAttributesCookiePrefix": "HTTP_"
25
+ },
26
+ "advancedWebAgentConfig": {
27
+ "overrideRequestHost": false,
28
+ "pdpSkipPostUrl": [""],
29
+ "pdpStickySessionValue": null,
30
+ "postDataPreservation": false,
31
+ "hostnameToIpAddress": [],
32
+ "showPasswordInHeader": false,
33
+ "overrideRequestProtocol": false,
34
+ "clientIpHeader": null,
35
+ "replayPasswordKey": null,
36
+ "customProperties": [],
37
+ "postDataCachePeriod": 10,
38
+ "retainSessionCache": false,
39
+ "pdpJavascriptRepost": false,
40
+ "pdpStickySessionMode": "OFF",
41
+ "overrideRequestPort": false,
42
+ "apacheAuthDirectives": null,
43
+ "fragmentRedirectEnabled": false,
44
+ "clientHostnameHeader": null,
45
+ "pdpStickySessionCookieName": null,
46
+ "logonAndImpersonation": false
47
+ },
48
+ "ssoWebAgentConfig": {
49
+ "cookieResetList": [""],
50
+ "cdssoRedirectUri": "agent/cdsso-oauth2",
51
+ "persistentJwtCookie": false,
52
+ "acceptSsoToken": false,
53
+ "secureCookies": false,
54
+ "cookieResetOnRedirect": false,
55
+ "sameSite": null,
56
+ "cdssoCookieDomain": [""],
57
+ "cookieResetEnabled": false,
58
+ "cookieName": "iPlanetDirectoryPro",
59
+ "multivaluePreAuthnCookie": false,
60
+ "httpOnly": true
61
+ },
62
+ "amServicesWebAgent": {
63
+ "policyClockSkew": 0,
64
+ "enableLogoutRegex": false,
65
+ "policyEvaluationRealm": "/alpha",
66
+ "fetchPoliciesFromRootResource": false,
67
+ "logoutUrlRegex": null,
68
+ "conditionalLoginUrl": [
69
+ "|https://openam-volker-dev.forgeblocks.com:443/am/oauth2/authorize?realm=/alpha"
70
+ ],
71
+ "customLoginMode": 0,
72
+ "invalidateLogoutSession": true,
73
+ "logoutResetCookies": [""],
74
+ "logoutRedirectUrl": null,
75
+ "regexConditionalLoginUrl": [""],
76
+ "policyCachePollingInterval": 3,
77
+ "regexConditionalLoginPattern": [""],
78
+ "logoutRedirectDisabled": false,
79
+ "retrieveClientHostname": false,
80
+ "applicationLogoutUrls": [""],
81
+ "userIdParameterType": "session",
82
+ "publicAmUrl": null,
83
+ "userIdParameter": "UserToken",
84
+ "amLoginUrl": [],
85
+ "policyEvaluationApplication": null,
86
+ "amLogoutUrl": [
87
+ "https://openam-volker-dev.forgeblocks.com:443/am/UI/Logout"
88
+ ],
89
+ "ssoCachePollingInterval": 3
90
+ },
91
+ "applicationWebAgentConfig": {
92
+ "profileAttributeFetchMode": "NONE",
93
+ "clientIpValidation": false,
94
+ "notEnforcedIpsRegex": false,
95
+ "continuousSecurityCookies": {},
96
+ "fetchAttributesForNotEnforcedUrls": false,
97
+ "ignorePathInfoForNotEnforcedUrls": true,
98
+ "responseAttributeFetchMode": "NONE",
99
+ "attributeMultiValueSeparator": "|",
100
+ "profileAttributeMap": {},
101
+ "sessionAttributeFetchMode": "NONE",
102
+ "continuousSecurityHeaders": {},
103
+ "notEnforcedIpsList": [""],
104
+ "responseAttributeMap": {},
105
+ "notEnforcedUrls": [""],
106
+ "sessionAttributeMap": {},
107
+ "notEnforcedUrlsRegex": false,
108
+ "invertNotEnforcedUrls": false,
109
+ "notEnforcedIps": [""]
110
+ },
111
+ "globalWebAgentConfig": {
112
+ "agentDebugLevel": "Error",
113
+ "fqdnDefault": "www.mytestrun.com",
114
+ "userpassword": null,
115
+ "webSocketConnectionIntervalInMinutes": 30,
116
+ "status": "Active",
117
+ "configurationPollingInterval": 60,
118
+ "auditLogLocation": "REMOTE",
119
+ "fqdnCheck": false,
120
+ "amLbCookieEnable": false,
121
+ "fqdnMapping": {},
122
+ "accessDeniedUrl": null,
123
+ "resetIdleTime": false,
124
+ "auditAccessType": "LOG_NONE",
125
+ "ssoOnlyMode": false,
126
+ "agentgroup": null,
127
+ "notificationsEnabled": true,
128
+ "agentUriPrefix": "https://www.mytestrun.com:443/amagent",
129
+ "disableJwtAudit": false,
130
+ "jwtName": "am-auth-jwt",
131
+ "repositoryLocation": "centralized",
132
+ "cdssoRootUrl": ["agentRootURL=https://www.mytestrun.com:443/"],
133
+ "agentConfigChangeNotificationsEnabled": true,
134
+ "jwtAuditWhitelist": null
135
+ },
136
+ "_type": {
137
+ "_id": "WebAgent",
138
+ "name": "Web Agents",
139
+ "collection": true
140
+ }
141
+ }
142
+ ],
143
+ "resultCount": 1,
144
+ "pagedResultsCookie": null,
145
+ "totalPagedResultsPolicy": "EXACT",
146
+ "totalPagedResults": 1,
147
+ "remainingPagedResults": -1
148
+ }